:root {
  --bg: #f7f3ea;
  --bg-strong: #f0e7d6;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 248, 236, 0.94);
  --ink: #171412;
  --muted: #5f5448;
  --line: rgba(23, 20, 18, 0.12);
  --accent: #ef6b3d;
  --accent-deep: #bf3f18;
  --teal: #196b72;
  --yellow: #f4d76d;
  --shadow: 0 24px 80px rgba(76, 53, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(25, 107, 114, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(239, 107, 61, 0.2), transparent 24%),
    linear-gradient(180deg, #fbf7ef 0%, #f1e5d2 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.7;
}

body::before {
  width: 18rem;
  height: 18rem;
  background: rgba(244, 215, 109, 0.55);
  top: 4rem;
  right: 4rem;
}

body::after {
  width: 22rem;
  height: 22rem;
  background: rgba(25, 107, 114, 0.16);
  bottom: 2rem;
  left: -4rem;
}

a {
  color: inherit;
  text-decoration: none;
}

[data-reveal] {
  --delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay);
}

[data-reveal="fade-left"] {
  transform: translate3d(36px, 0, 0);
}

[data-reveal="fade-down"] {
  transform: translate3d(0, -22px, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.hero,
.feature-section,
.workflow-section,
.audience-section,
.cta-panel,
.site-footer {
  position: relative;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-mark {
  height: 3.5rem;
  width: auto;
}

.topbar-links {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.topbar-links a {
  position: relative;
}

.topbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.topbar-links a:hover::after {
  transform: scaleX(1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0 4rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Syne", sans-serif;
  line-height: 0.96;
}

h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.7rem, 3.3vw, 2.9rem);
  max-width: 13ch;
}

h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
}

.hero-text,
.feature-card p,
.workflow-step p,
.audience-card p,
.cta-panel p,
.site-footer p,
.status-strip p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.hero-text {
  max-width: 56ch;
  margin: 1.35rem 0 0;
}

.status-strip {
  display: grid;
  gap: 0.65rem;
  margin: 1.8rem 0 0;
  padding: 1rem 1.1rem;
  background: rgba(255, 248, 236, 0.88);
  border: 1px solid rgba(25, 107, 114, 0.16);
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
  max-width: 36rem;
}

.status-strip p {
  margin: 0;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.45rem 0.8rem;
  background: var(--ink);
  color: #fff5e6;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: pulse-pill 3s ease-in-out infinite;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff8f0;
  box-shadow: 0 14px 32px rgba(239, 107, 61, 0.28);
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
}

.browser-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(255, 255, 255, 0.68));
  box-shadow: 0 34px 80px rgba(73, 55, 39, 0.18);
  transform: rotate(-2deg);
  animation: drift-card 6s ease-in-out infinite;
}

.browser-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 20%;
  height: 10rem;
  background: radial-gradient(circle, rgba(239, 107, 61, 0.26), transparent 65%);
}

.browser-bar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.browser-bar span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(23, 20, 18, 0.18);
}

.browser-content {
  padding: 1rem;
  border-radius: 1.3rem;
  background: rgba(250, 246, 237, 0.92);
}

.toolbar-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.toolbar-preview span {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.76rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  animation: rise-chip 3.2s ease-in-out infinite;
}

.toolbar-preview span:nth-child(2) {
  animation-delay: 180ms;
}

.toolbar-preview span:nth-child(3) {
  animation-delay: 320ms;
}

.toolbar-preview span:nth-child(4) {
  animation-delay: 460ms;
}

.toolbar-preview span:nth-child(5) {
  animation-delay: 600ms;
}

.toolbar-preview span:nth-child(6) {
  animation-delay: 740ms;
}

.toolbar-preview span:nth-child(7) {
  animation-delay: 880ms;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.content-card {
  min-height: 6.8rem;
  padding: 1rem;
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 1.1rem;
  background: white;
  color: var(--ink);
  font-weight: 500;
}

.hidden-card {
  background: repeating-linear-gradient(
    135deg,
    rgba(23, 20, 18, 0.08),
    rgba(23, 20, 18, 0.08) 10px,
    rgba(23, 20, 18, 0.02) 10px,
    rgba(23, 20, 18, 0.02) 20px
  );
  color: rgba(23, 20, 18, 0.48);
}

.blurred-card {
  filter: blur(1.4px);
}

.highlighted-card {
  background: linear-gradient(135deg, rgba(244, 215, 109, 0.92), rgba(255, 242, 190, 0.96));
}

.accent-card {
  background: linear-gradient(135deg, rgba(25, 107, 114, 0.12), rgba(25, 107, 114, 0.02));
  border-color: rgba(25, 107, 114, 0.2);
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.section-heading.narrow h2 {
  max-width: 16ch;
}

.feature-section,
.workflow-section,
.audience-section {
  margin-top: 2rem;
  padding: 2rem 0;
}

.feature-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.audience-card,
.workflow-step,
.cta-panel,
.site-footer {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.feature-card,
.audience-card,
.workflow-step {
  padding: 1.3rem;
  border-radius: 1.4rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.audience-card:hover,
.workflow-step:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 107, 61, 0.26);
  box-shadow: 0 26px 60px rgba(76, 53, 35, 0.18);
}

.feature-kicker {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-card p:last-child,
.audience-card p,
.workflow-step p,
.cta-panel p,
.site-footer p {
  margin-bottom: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-step span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--teal);
  color: #f7f3ea;
  font-weight: 700;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1.7rem;
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.94), rgba(255, 255, 255, 0.68));
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--teal);
  font-weight: 700;
}

.policy-main {
  display: grid;
  place-items: center;
  padding: 0.5rem 0 2.5rem;
}

.policy-card {
  width: min(860px, 100%);
  padding: 1.6rem;
  border-radius: 1.4rem;
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.policy-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0;
}

.policy-meta {
  margin: 0.7rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-card h2 {
  margin-top: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.policy-card ul {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  padding-left: 1.2rem;
}

.policy-back-link {
  margin-top: 1.4rem;
}

.policy-back-link a {
  color: var(--teal);
  font-weight: 700;
}

.made-by {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0 0;
  padding: 0.75rem 0;
  text-align: center;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.made-by a {
  color: var(--accent-deep);
  font-weight: 700;
}

@keyframes drift-card {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(-1deg) translateY(-10px);
  }
}

@keyframes rise-chip {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes pulse-pill {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(23, 20, 18, 0.15);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(23, 20, 18, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .status-pill,
  .browser-card,
  .toolbar-preview span,
  .button,
  .feature-card,
  .audience-card,
  .workflow-step,
  .topbar-links a::after {
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .workflow-grid,
  .audience-grid,
  .cta-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 1rem;
  }

  .feature-grid,
  .workflow-grid,
  .audience-grid {
    display: grid;
  }

  .cta-panel,
  .site-footer,
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .browser-card {
    transform: none;
    animation: none;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(1180px, calc(100% - 1rem));
  }

  .topbar-links {
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  h1 {
    max-width: 11ch;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }
}