:root {
  --bg: #fafafa;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --ink: #141218;
  --ink-soft: #3d3a45;
  --muted: #6b6675;
  --line: rgba(20, 18, 24, 0.08);
  --pink: #ec4899;
  --pink-soft: #fce7f3;
  --purple: #8b5cf6;
  --orange: #f97316;
  /* Brand CTA — violet → orange (matches reference) */
  --grad: linear-gradient(115deg, #8b5cf6 0%, #d946ef 42%, #f97316 100%);
  --grad-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(249, 115, 22, 0.1));
  /* Ambient BG washes from reference SS */
  --ambient-a: #e9d5ff; /* soft lavender — top left */
  --ambient-b: #ffedd5; /* warm peach — top right */
  --ambient-c: #fce7f3; /* soft pink — mid / behind CTA */
  --shadow: 0 4px 24px rgba(20, 18, 24, 0.06);
  --shadow-lift: 0 16px 40px rgba(20, 18, 24, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --font: "Outfit", system-ui, sans-serif;
  --script: "Caveat", cursive;
  --nav-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 28px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.scroll-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section[id] {
  scroll-margin-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 28px);
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input {
  font: inherit;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 8% 0%, rgba(233, 213, 255, 0.7) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 92% 4%, rgba(255, 237, 213, 0.65) 0%, transparent 68%),
    radial-gradient(ellipse 60% 50% at 48% 42%, rgba(252, 231, 243, 0.55) 0%, transparent 72%),
    #fafafa;
}

.bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.85;
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 20%, black 20%, transparent 85%);
  mask-image: radial-gradient(ellipse 90% 75% at 50% 20%, black 20%, transparent 85%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: breathe 16s ease-in-out infinite;
}

.glow-a {
  width: 520px;
  height: 520px;
  background: #e9d5ff;
  top: -180px;
  left: -140px;
  opacity: 0.55;
}

.glow-b {
  width: 480px;
  height: 480px;
  background: #ffedd5;
  top: -120px;
  right: -160px;
  animation-delay: -5s;
  opacity: 0.5;
}

.glow-c {
  width: 560px;
  height: 420px;
  background: #fbcfe8;
  top: 28%;
  left: 30%;
  animation-delay: -9s;
  opacity: 0.35;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.06) translate(6px, -4px);
    opacity: 0.58;
  }
}

.container {
  width: min(1160px, calc(100% - clamp(2rem, 6vw, 5.5rem)));
  margin-inline: auto;
}

.container.narrow {
  width: min(820px, calc(100% - clamp(2rem, 6vw, 5.5rem)));
}

.section {
  padding: clamp(4.75rem, 8vw, 7.25rem) 0;
}

.section-soft {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55), transparent);
}

/* NAV */
.nav {
  position: fixed;
  top: env(safe-area-inset-top, 0px);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1.25rem;
  width: min(1160px, calc(100% - clamp(2rem, 6vw, 5.5rem)));
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  /* Contain logo / paints so nothing smears into page content */
  overflow: visible;
  isolation: isolate;
  transition:
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

/* Full-bleed solid bar (no backdrop-filter — blur was smearing text under the nav) */
.nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.nav.scrolled::before {
  background: rgba(250, 250, 252, 0.97);
  border-bottom-color: rgba(20, 18, 24, 0.06);
  box-shadow: 0 1px 0 rgba(20, 18, 24, 0.04);
}

main {
  padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  max-height: calc(var(--nav-h) - 16px);
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.4s var(--ease);
}

.nav-logo img {
  height: 52px;
  width: auto;
  max-height: calc(var(--nav-h) - 20px);
  object-fit: contain;
  transition: transform 0.4s var(--ease);
  transform-origin: left center;
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.nav-logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 1.6vw, 1.45rem);
  justify-self: center;
  padding-bottom: 0.65rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-links a.active {
  color: var(--ink);
}

.nav-indicator {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  /* Solid fill anti-aliases cleaner than a tiny linear-gradient */
  background: #ec4899;
  box-shadow:
    0 0 0 3px rgba(236, 72, 153, 0.14),
    0 1px 4px rgba(236, 72, 153, 0.35);
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  will-change: transform;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.2s ease;
  backface-visibility: hidden;
}

.nav-indicator.visible {
  opacity: 1;
}

.nav-indicator.no-motion {
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .nav-indicator {
    transition: none !important;
  }
}

/* Higher specificity so .btn { display:inline-flex } can't un-hide this on mobile */
a.nav-cta.btn,
button.nav-cta.btn {
  display: none;
  justify-self: end;
}

.nav-toggle {
  justify-self: end;
  align-self: center;
  width: 44px;
  height: 44px;
  border: 0 !important;
  border-radius: 10px;
  background: transparent !important;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 2;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.2s var(--ease);
}

.nav-toggle:hover,
.nav-toggle:active,
.nav-toggle:focus-visible {
  background: transparent !important;
  transform: none;
  box-shadow: none !important;
  opacity: 0.7;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile sheet menu */
.mobile-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.mobile-sheet[hidden] {
  display: none;
}

.mobile-sheet-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(250, 250, 252, 0.52);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  cursor: pointer;
  animation: fadeIn 0.28s ease;
}

.mobile-sheet-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: auto;
  padding: 2rem 1.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: menuFade 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.mobile-sheet-close {
  position: absolute;
  top: calc(0.85rem + env(safe-area-inset-top));
  right: 1.15rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0.5rem;
  pointer-events: auto;
}

.mobile-sheet-close:active {
  opacity: 0.45;
}

.mobile-sheet-links {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  width: 100%;
  pointer-events: auto;
}

.mobile-sheet-links a {
  display: block;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border: 0;
  background: transparent;
  font-weight: 650;
  font-size: clamp(1.35rem, 5.5vw, 1.65rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: opacity 0.2s ease, color 0.2s ease;
}

.mobile-sheet-links a:active {
  opacity: 0.4;
}

.mobile-sheet-cta {
  margin-top: 1.35rem;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 650;
  font-size: 1rem;
  cursor: pointer;
  color: #7c3aed;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .mobile-sheet-cta {
    color: transparent;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.menu-open {
  overflow: hidden;
}


@media (min-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-links {
    display: flex;
  }

  a.nav-cta.btn,
  button.nav-cta.btn {
    display: inline-flex;
  }

  .nav-toggle,
  .mobile-sheet {
    display: none !important;
  }
}

/* Six nav items: keep gaps readable before the CTA on mid-width desktops */
@media (min-width: 900px) and (max-width: 1099px) {
  .nav-links {
    gap: 0.65rem;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  a.nav-cta.btn,
  button.nav-cta.btn {
    padding-inline: 0.95rem;
    font-size: 0.84rem;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  font-weight: 650;
  border-radius: 999px;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    background-position 0.6s var(--ease);
}

.btn:active {
  transform: translateY(0.5px);
  transition-duration: 0.15s;
}

.btn-sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1rem 1.55rem;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

.btn-gradient {
  position: relative;
  color: #fff;
  background-image: var(--grad);
  background-size: 180% 100%;
  background-position: 0% 50%;
  box-shadow:
    0 8px 24px rgba(139, 92, 246, 0.22),
    0 4px 12px rgba(249, 115, 22, 0.14);
}

.btn-gradient:hover {
  transform: translateY(-1px);
  background-position: 100% 50%;
  box-shadow:
    0 12px 30px rgba(139, 92, 246, 0.26),
    0 6px 14px rgba(249, 115, 22, 0.16);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.45s var(--ease);
}

.btn-gradient:hover .btn-arrow {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn-arrow {
    transition: none;
  }

  .btn-gradient:hover {
    transform: none;
  }
}

/* TYPE */
.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #be185d;
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head.left {
  text-align: left;
}

.section-head h2,
.hero h1,
.early-copy h2,
.finale h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 750;
}

.section-sub {
  margin: 1.15rem auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head.left .section-sub {
  margin-left: 0;
}

.section-sub.tight {
  margin-top: 0.65rem;
}

.section-sub strong,
.punch strong,
.center-note strong {
  color: var(--ink);
  font-weight: 650;
}

.grad-text {
  color: #7c3aed;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}

.script-accent {
  font-family: var(--script);
  font-weight: 700;
  font-size: 1.18em;
  color: #c026d3;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0.01em;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .grad-text,
  .script-accent {
    color: transparent;
  }
}

/* HERO */
.hero {
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
}

@media (max-width: 979px) {
  .hero {
    min-height: 0;
    align-items: flex-start;
  }
}

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(3.5rem, 6vw, 5.5rem);
    align-items: center;
  }
}

.hero-copy {
  max-width: 34rem;
}

.brand-mark {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 1.65rem;
  box-shadow: var(--shadow);
  max-width: 100%;
  text-wrap: balance;
}

.avatar-stack {
  display: inline-flex;
}

.av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -6px;
}

.av:first-child {
  margin-left: 0;
}

.av-1 {
  background: #1f1b24;
}

.av-2 {
  background: linear-gradient(135deg, #f97316, #fb7185);
}

.av-3 {
  background: linear-gradient(135deg, #ec4899, #a855f7);
}

.hero-questions {
  list-style: none;
  padding: 0;
  margin: 1.65rem 0 1.6rem;
  display: grid;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero-questions li {
  position: relative;
  padding-left: 1.35rem;
  line-height: 1.45;
}

.hero-questions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32rem;
  line-height: 1.6;
}

.hero-lead strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 650;
}

.hero-actions {
  margin-top: 1.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
}

.hero-actions .btn-lg {
  padding: 1.12rem 1.75rem;
  font-size: 1.12rem;
}

.hero-join-line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  max-width: 30rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-join-line .avatar-stack {
  flex-shrink: 0;
}

.hero-join-line .av {
  width: 24px;
  height: 24px;
}

.hero-join-text strong {
  font-weight: 750;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-join-text em {
  font-style: normal;
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fomo-line,
.fomo-note,
.fomo-modal-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 550;
  line-height: 1.4;
}

.fomo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 auto 1.15rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(236, 72, 153, 0.18);
  box-shadow: var(--shadow);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.fomo-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: fomoPulse 1.8s ease-out infinite;
}

.fomo-note {
  justify-content: center;
  margin-top: 0.9rem;
  width: 100%;
}

.fomo-modal-line {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
}

.trust-badge strong {
  color: var(--ink);
  font-weight: 750;
}

@keyframes fomoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* HERO VISUAL */
.transform-scene {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  width: 100%;
  max-width: 520px;
  padding: 0.5rem 0;
}

.brochure-card {
  position: absolute;
  left: 2%;
  top: 10%;
  width: min(200px, 42%);
  display: flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatY 5.5s ease-in-out infinite;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.brochure-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow-lift);
}

.brochure-spine {
  width: 14px;
  background: linear-gradient(180deg, #2a2433, #141218);
}

.brochure-body {
  padding: 1rem;
  flex: 1;
}

.brochure-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.brochure-lines {
  margin: 0.85rem 0;
  display: grid;
  gap: 0.4rem;
}

.brochure-lines span {
  height: 7px;
  border-radius: 99px;
  background: #eceaf0;
}

.brochure-lines span:nth-child(2) {
  width: 78%;
}

.brochure-lines span:nth-child(3) {
  width: 90%;
}

.brochure-lines span:nth-child(4) {
  width: 62%;
}

.brochure-thumb {
  height: 64px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f3e8ff, #ffe4e6 50%, #ffedd5);
  margin-bottom: 0.65rem;
}

.brochure-meta {
  font-size: 0.72rem;
  color: var(--muted);
}

.black-box {
  position: absolute;
  left: 42%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.black-box-inner {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: #141218;
  color: #fff;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(20, 18, 24, 0.28);
}

.box-pulse {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.45), transparent 55%);
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.box-label {
  position: relative;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
}

.flow-arrow {
  text-align: center;
  margin-top: 0.45rem;
  color: var(--muted);
  font-weight: 700;
  animation: nudge 1.8s ease-in-out infinite;
}

.flow-connector {
  display: none;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.intent-card {
  position: absolute;
  right: 0;
  top: 16%;
  width: min(270px, 58%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow-lift);
  animation: floatY 6.2s ease-in-out infinite;
  animation-delay: -1.5s;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.intent-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 50px rgba(168, 85, 247, 0.18);
}

.intent-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.intent-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.intent-head p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.badge-hot {
  background: var(--pink-soft);
  color: var(--pink);
}

.pulse-badge {
  animation: badgePulse 2.4s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.25);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(233, 30, 99, 0);
  }
}

.intent-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.intent-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.pink {
  background: var(--pink);
}

.dot.orange {
  background: var(--orange);
}

.dot.purple {
  background: var(--purple);
}

.intent-score,
.score-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.intent-score {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.intent-score strong,
.score-pill span:last-child {
  display: block;
  font-size: 0.9rem;
}

.intent-score span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
}

.score-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* PROBLEM */
.problem-section {
  position: relative;
  overflow: hidden;
}

.problem-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.problem-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  animation: breathe 12s ease-in-out infinite;
}

.problem-glow-a {
  width: 340px;
  height: 340px;
  background: #e9d5ff;
  top: 8%;
  left: -6%;
  opacity: 0.55;
}

.problem-glow-b {
  width: 380px;
  height: 380px;
  background: #ffedd5;
  top: 35%;
  right: -8%;
  animation-delay: -4s;
  opacity: 0.55;
}

.problem-wrap {
  position: relative;
  z-index: 1;
}

.question-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 720px) {
  .question-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.q-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 1.25rem 1.3rem;
  color: var(--ink-soft);
  box-shadow: 0 8px 28px rgba(20, 18, 24, 0.05);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
}

.q-card p {
  margin: 0;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
}

.q-index {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-top: 0.2rem;
}

.q-card:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: rgba(236, 72, 153, 0.22);
  box-shadow: 0 16px 40px rgba(168, 85, 247, 0.1);
}

.quote-card {
  margin: 0 0 1.65rem;
  padding: 1.55rem 1.7rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    linear-gradient(120deg, rgba(233, 213, 255, 0.45), rgba(255, 237, 213, 0.4));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 40px rgba(20, 18, 24, 0.05);
  color: var(--ink-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(168, 85, 247, 0.1);
}

.quote-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}

.quote-lead {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.quote-line {
  margin: 0.85rem 0 0;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.journey-block {
  margin-top: 0.75rem;
}

.punch {
  text-align: center;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 750;
  margin: 0 0 1.65rem;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: var(--ink);
}

.journey-panel {
  position: relative;
  overflow: hidden;
  padding: 1.85rem 1.5rem 1.6rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(20, 18, 24, 0.06);
  box-shadow:
    0 20px 55px rgba(20, 18, 24, 0.07),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.journey-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 64px rgba(20, 18, 24, 0.09);
}

.journey-panel-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  background: rgba(236, 72, 153, 0.18);
  left: 52%;
  top: 42%;
  transform: translate(-50%, -40%);
  opacity: 0.9;
}

.journey-panel-glow-b {
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.12);
  left: 18%;
  top: 10%;
  transform: none;
  opacity: 0.7;
}

.journey-label {
  position: relative;
  margin: 0 0 1.4rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5c5666;
}

.journey-track {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem 0.5rem;
  padding: 0.35rem 0 0.5rem;
}

.journey-rail {
  display: none;
}

@media (min-width: 900px) {
  .journey-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem 0.75rem;
  }

  .journey-rail {
    display: block;
    position: absolute;
    left: 8%;
    right: 8%;
    top: 2.1rem;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(
      90deg,
      #e8e4ee 0%,
      #ddd7e6 40%,
      #141218 50%,
      #ddd7e6 60%,
      #e8e4ee 100%
    );
    opacity: 0.9;
    overflow: hidden;
  }

  .journey-rail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: sepShine 2.4s ease-in-out infinite;
  }
}

.journey-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.09s + 0.1s);
}

.journey-block.visible .journey-node {
  opacity: 1;
  transform: translateY(0);
}

.journey-step {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(20, 18, 24, 0.07);
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(20, 18, 24, 0.05);
  white-space: nowrap;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.step-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4d0db;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.journey-step:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 12px 28px rgba(20, 18, 24, 0.08);
}

.journey-step:hover .step-dot {
  background: var(--grad);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.12);
}

.journey-step.faded {
  opacity: 0.72;
}

.mystery-node {
  min-width: 5.5rem;
}

.journey-step.mystery {
  width: 4.35rem;
  height: 4.35rem;
  padding: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a2433, #141218 70%);
  color: #fff;
  border: 1px solid #141218;
  box-shadow:
    0 16px 36px rgba(20, 18, 24, 0.28),
    0 0 0 8px rgba(236, 72, 153, 0.08);
  overflow: visible;
}

.journey-block.visible .journey-step.mystery {
  animation: mysteryPulse 2.4s ease-in-out infinite;
  animation-delay: 0.55s;
}

.mystery-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px dashed rgba(236, 72, 153, 0.35);
  animation: spinSlow 10s linear infinite;
  pointer-events: none;
}

.mystery-mark {
  position: relative;
  z-index: 1;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 1.05rem;
}

.mystery-glow {
  position: absolute;
  inset: -55%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.45), transparent 58%);
  animation: pulseGlow 2.6s ease-in-out infinite;
  pointer-events: none;
}

.mystery-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes mysteryPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 16px 36px rgba(20, 18, 24, 0.28),
      0 0 0 8px rgba(236, 72, 153, 0.08);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 20px 44px rgba(236, 72, 153, 0.28),
      0 0 0 12px rgba(236, 72, 153, 0.1);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sepShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.journey-caption {
  position: relative;
  z-index: 1;
  margin: 1.45rem auto 0;
  text-align: center;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.5;
}

/* TRANSFORM */
.transform-row {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

@media (min-width: 800px) {
  .transform-row {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
  }
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.card-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.glass-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.glass-card p {
  margin: 0;
  color: var(--muted);
}

.transform-to {
  border-color: rgba(236, 72, 153, 0.25);
  background: linear-gradient(180deg, #fff, #fff9fb);
}

.transform-mid {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
}

.mid-pill {
  display: inline-flex;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 22px rgba(236, 72, 153, 0.28);
}

.mid-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.5), transparent);
}

@media (min-width: 800px) {
  .mid-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.5), transparent);
  }
}

.explore-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.explore-pills span {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.explore-pills span:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.35);
  background: #faf5ff;
}

/* INTELLIGENCE */
.intel-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .intel-layout {
    grid-template-columns: 1fr 1.05fr;
    grid-template-areas:
      "head card"
      "compare card";
    align-items: start;
  }

  .intel-layout .section-head {
    grid-area: head;
    margin-bottom: 0;
  }

  .lead-intel {
    grid-area: card;
  }

  .call-compare {
    grid-area: compare;
  }
}

.lead-intel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.lead-intel::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 220px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.16), transparent 65%);
  pointer-events: none;
}

.lead-intel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(168, 85, 247, 0.16);
}

.lead-intel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  position: relative;
}

.lead-identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lead-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink-soft);
  color: var(--pink);
  font-weight: 750;
}

.lead-identity h3 {
  margin: 0;
  font-size: 1.2rem;
}

.lead-identity p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.lead-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  position: relative;
}

.stat {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: #faf9fc;
  border: 1px solid var(--line);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.stat:hover {
  background: #fff;
  transform: translateY(-2px);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.stat strong {
  font-size: 1.02rem;
}

.lead-intel-foot {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
}

.last-active {
  color: var(--muted);
  font-size: 0.9rem;
}

.call-compare {
  display: grid;
  gap: 0.85rem;
}

.call-card {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.3s var(--ease);
}

.call-card:hover {
  transform: translateY(-3px);
}

.call-card.muted {
  opacity: 0.85;
}

.call-card.bright {
  border-color: rgba(236, 72, 153, 0.25);
  background: linear-gradient(180deg, #fff, #fff8fb);
}

.call-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.call-card p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.call-punch {
  margin: 0.35rem 0 0;
  font-weight: 750;
  font-size: 1.05rem;
}

/* COMPARE */
.compare-grid,
.compare-inline {
  display: grid;
  gap: 1rem;
}

.compare-inline {
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .compare-grid,
  .compare-inline {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.compare-card.highlight {
  border-color: rgba(236, 72, 153, 0.28);
  background: linear-gradient(180deg, #fff, #fff8fb);
}

.compare-tag {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare-tag.accent {
  color: var(--pink);
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  align-items: center;
  font-weight: 600;
  color: var(--ink-soft);
}

.flow-list .dim {
  color: var(--muted);
  text-decoration: line-through;
}

.flow-list .emph {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 750;
}

.center-note {
  text-align: center;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* WHY VEYA — intent matrix */
.why-veya-section {
  position: relative;
}

.matrix-block {
  position: relative;
  margin-top: 0.5rem;
}

.matrix-label {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c5666;
}

.matrix-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  outline: none;
}

.matrix-scroll:focus-visible {
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25), var(--shadow);
}

.intent-matrix {
  width: 100%;
  min-width: 720px;
  /* separate is required for sticky first-column to work in browsers */
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
}

.intent-matrix th,
.intent-matrix td {
  padding: 0.95rem 1rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(20, 18, 24, 0.06);
}

.intent-matrix thead th {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fafafc;
  position: sticky;
  top: 0;
  z-index: 1;
}

.intent-matrix thead th:first-child,
.intent-matrix tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  text-align: left;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  min-width: 14rem;
  max-width: 18rem;
  background: #fff;
  box-shadow: 1px 0 0 rgba(20, 18, 24, 0.06);
}

.intent-matrix thead th:first-child {
  z-index: 3;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fafafc;
}

.intent-matrix .col-veya {
  background: linear-gradient(180deg, rgba(252, 231, 243, 0.55), rgba(255, 247, 237, 0.4));
  font-weight: 650;
}

.intent-matrix thead .col-veya {
  color: #be185d;
  background: linear-gradient(180deg, #fdf2f8, #fff7ed);
}

.intent-matrix tbody tr:last-child th,
.intent-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.intent-matrix tbody tr.row-key th {
  color: var(--ink);
  font-weight: 650;
}

.cell-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-weight: 800;
}

.cell-no {
  color: #b0aab8;
  font-weight: 600;
}

.cell-soft {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 550;
}

.cell-signal {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(236, 72, 153, 0.22);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.sales-next {
  display: grid;
  gap: 1.75rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .sales-next {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.sales-next-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 750;
}

.data-dump {
  display: inline-block;
  margin: 0.35rem 0.35rem 0.35rem 0;
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  background: rgba(20, 18, 24, 0.05);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: rgba(107, 102, 117, 0.45);
}

.buyer-action-card {
  background: var(--surface);
  border: 1px solid rgba(236, 72, 153, 0.18);
  border-radius: 22px;
  padding: 1.35rem 1.4rem 1.25rem;
  box-shadow: var(--shadow-lift);
  background-image: linear-gradient(165deg, #fff, #fff8fb 55%, #fff7ed);
}

.buyer-action-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.buyer-action-name {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.buyer-action-meta {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.buyer-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  margin: 0 0 1.2rem;
}

.buyer-action-grid dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.buyer-action-grid dd {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.35;
}

.buyer-action-rec {
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 18, 24, 0.08);
}

.rec-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #be185d;
}

.buyer-action-rec p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-close {
  margin-top: clamp(3rem, 6vw, 4.75rem);
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.why-close h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 750;
}

.why-close-brand {
  margin: 0.85rem 0 1.15rem;
  font-size: 1.15rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-close-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.why-close-sub .grad-text {
  display: inline;
  font-weight: 700;
}

@media (max-width: 899px) {
  .matrix-label::after {
    content: " · Swipe →";
    letter-spacing: 0.08em;
    color: #8b8494;
    font-weight: 650;
  }

  /* Fixed-edge fade so clipped columns read as “more to the right” */
  .matrix-block::after {
    content: "";
    position: absolute;
    top: 2.35rem;
    right: 1px;
    bottom: 1px;
    width: 2.75rem;
    pointer-events: none;
    z-index: 4;
    border-radius: 0 19px 19px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92));
  }

  .intent-matrix {
    min-width: 620px;
    font-size: 0.86rem;
  }

  .intent-matrix th,
  .intent-matrix td {
    padding: 0.8rem 0.7rem;
  }

  .intent-matrix thead th:first-child,
  .intent-matrix tbody th {
    min-width: 8.75rem;
    max-width: 10.25rem;
    width: 10.25rem;
    font-size: 0.82rem;
    line-height: 1.35;
    padding-left: 0.8rem;
    padding-right: 0.65rem;
  }

  .intent-matrix thead th:first-child {
    font-size: 0.7rem;
  }

  .cell-signal {
    white-space: normal;
    max-width: 8.75rem;
    font-size: 0.78rem;
  }

  .buyer-action-grid {
    grid-template-columns: 1fr;
  }

  .buyer-action-name {
    font-size: 1.02rem;
  }

  .buyer-action-top {
    flex-wrap: wrap;
  }
}

/* OUTCOME */
.outcome-grid,
.outcome-compact {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 860px) {
  .outcome-grid,
  .outcome-compact {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.outcome-compact .funnel-card {
  margin: 0;
}

.finale-inline {
  margin: 1.35rem 0 1.1rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 248, 251, 0.9));
  border: 1px solid rgba(236, 72, 153, 0.14);
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.45;
}

.finale-inline strong {
  color: var(--ink);
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.benefit-list li {
  position: relative;
  padding: 1.05rem 1.15rem 1.05rem 2.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}

.benefit-list li:hover {
  transform: translateX(4px);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 1.25rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad);
}

.funnel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lift);
}

.funnel-top,
.funnel-bottom {
  display: inline-flex;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 750;
}

.funnel-top {
  background: #f3f0f7;
}

.funnel-bottom {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 28px rgba(236, 72, 153, 0.28);
}

.funnel-arrow {
  margin: 0.65rem 0;
  color: var(--muted);
  font-weight: 700;
}

.funnel-mid {
  margin: 0;
  color: var(--muted);
  font-weight: 550;
}

.intent-tiers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  text-align: left;
  width: min(260px, 100%);
  margin-inline: auto;
}

.intent-tiers li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: #faf9fc;
  border: 1px solid var(--line);
  font-weight: 650;
}

.intent-tiers .tier-hot {
  background: var(--pink-soft);
  border-color: rgba(233, 30, 99, 0.2);
  color: var(--pink);
}

.tier-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
}

.tier-mark.hot {
  border: 0;
  background: var(--grad);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}

.outcome-closer {
  text-align: center;
  margin: 2.5rem 0 0;
  font-size: 1.2rem;
  color: var(--muted);
}

.outcome-closer strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 1.35rem;
}

/* PIPELINE */
.pipeline {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.pipe-node {
  width: min(420px, 100%);
  text-align: center;
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pipe-node:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.pipe-node h3 {
  margin: 0;
  font-size: 1.1rem;
}

.pipe-node p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pipe-node.accent {
  background: linear-gradient(180deg, #fff, #fff8fb);
  border-color: rgba(236, 72, 153, 0.25);
}

.pipe-node.result {
  background: #141218;
  color: #fff;
  border-color: #141218;
}

.pipe-logo {
  height: 42px;
  width: auto;
  margin: 0 auto 0.45rem;
  filter: none;
}

.pipe-arrow {
  color: var(--muted);
  font-weight: 700;
  animation: bounceDown 1.8s ease-in-out infinite;
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* EARLY ACCESS */
.early-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .early-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.early-copy .section-sub {
  margin-left: 0;
}

.early-ask {
  margin: 1.75rem 0 1rem;
  font-size: 1.35rem;
  line-height: 1.3;
}

.early-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--ink-soft);
}

.early-perks li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 550;
}

.early-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 750;
}

.early-solo {
  text-align: center;
}

.early-solo .section-sub,
.early-solo .finale-inline {
  margin-left: auto;
  margin-right: auto;
}

.early-solo .finale-inline {
  text-align: left;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.early-note {
  margin-top: 0.85rem;
}

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  align-items: safe center;
  justify-items: center;
  padding: 1.25rem;
  padding-top: calc(1.25rem + env(safe-area-inset-top));
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.access-modal[hidden] {
  display: none;
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  pointer-events: none;
  display: none;
}

.confetti-canvas.is-on {
  display: block;
}

.access-flow.is-thanks .fomo-modal-line,
.access-flow.is-thanks .flow-progress {
  display: none;
}

.access-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(250, 250, 252, 0.55);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  animation: fadeIn 0.28s ease;
}

.access-flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.access-modal-close {
  position: static;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem 0.15rem;
  line-height: 1;
}

.access-modal-close:hover {
  color: var(--ink);
}

.access-flow {
  position: relative;
  z-index: 2;
  width: min(460px, 100%);
  margin: auto;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.35rem, 3vw, 1.85rem) clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 24px 60px rgba(20, 18, 24, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  min-height: min(380px, calc(100dvh - 3rem));
  max-height: min(640px, calc(100vh - 2.5rem));
  max-height: min(640px, calc(100dvh - 2.5rem));
  overflow: auto;
  display: flex;
  flex-direction: column;
  animation: menuFade 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open,
body.access-open {
  overflow: hidden;
}


.flow-progress {
  height: 3px;
  border-radius: 99px;
  background: rgba(20, 18, 24, 0.06);
  overflow: hidden;
  margin-bottom: 1.15rem;
}

.flow-progress-bar {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: var(--grad);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-step-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.flow-stage {
  display: none;
  flex: 1;
  flex-direction: column;
}

.flow-stage.is-active {
  display: flex;
  animation: flowIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-stage.is-leaving {
  animation: flowOut 0.28s ease forwards;
}

.flow-question {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ink);
}

.flow-hint {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.flow-input-wrap {
  position: relative;
  margin-bottom: 0.65rem;
}

.flow-input-wrap input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(20, 18, 24, 0.1);
  border-radius: 0;
  padding: 0.85rem 0.1rem;
  background: transparent;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 550;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.flow-input-wrap input::placeholder {
  color: #b0a9ba;
  font-weight: 450;
}

.flow-input-wrap input:focus {
  border-bottom-color: #ec4899;
}

.flow-input-wrap input.error {
  border-bottom-color: #ef4444;
  background: rgba(239, 68, 68, 0.06);
}

.flow-error {
  margin: 0 0 0.85rem;
  color: #9f1239;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: #fff1f2;
  border: 1px solid #fda4af;
}

.flow-error[hidden] {
  display: none !important;
}

.flow-error.is-flash {
  animation: flow-error-flash 0.55s var(--ease);
}

.flow-stage.has-field-error .flow-input-wrap input {
  border-bottom-color: #ef4444;
}

@keyframes flow-error-flash {
  0% {
    transform: translateX(0);
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.35);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
    box-shadow: 0 0 0 6px rgba(244, 63, 94, 0);
  }
}

.flow-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.flow-back {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.65rem 0.2rem;
  margin-right: auto;
}

.flow-back:hover {
  color: var(--ink);
}

.flow-next.btn {
  margin-left: 0;
  width: auto;
  min-width: 0;
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.1;
  gap: 0.4rem;
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.2);
}

.flow-next.btn:hover {
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.24);
}

.flow-summary {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.flow-summary li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(250, 249, 252, 0.9);
  border: 1px solid rgba(20, 18, 24, 0.05);
}

.flow-summary .sum-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.flow-summary .sum-value {
  font-weight: 650;
  color: var(--ink);
  font-size: 1.02rem;
}

.flow-thanks {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.thanks-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: var(--grad);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(236, 72, 153, 0.28);
  animation: thanksPop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.thanks-fomo {
  margin: 0.65rem 0 0;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
}

.thanks-fomo #thanks-waitlist-num {
  color: #7c3aed;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .thanks-fomo #thanks-waitlist-num {
    color: transparent;
  }
}

.thanks-fomo-sub {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--ink-soft);
  line-height: 1.4;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

@keyframes flowIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flowOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@keyframes thanksPop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.flow-stage[hidden] {
  display: none !important;
}

/* CLOSING */
.close-section {
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.close-wrap {
  text-align: center;
}

.close-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 1.25rem;
}

.close-wrap h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 750;
}

.close-sub {
  margin: 0.9rem 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer img {
  height: 40px;
  width: auto;
}

.footer-brand p,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* REVEAL ANIMATIONS — only hide when JS enhances */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal.delay-1 {
  transition-delay: 0.12s;
}

.reveal.delay-2 {
  transition-delay: 0.22s;
}

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

  .glow,
  .brochure-card,
  .intent-card,
  .journey-step.mystery,
  .pulse-badge,
  .box-pulse,
  .flow-arrow,
  .pipe-arrow,
  .journey-rail::after,
  .mystery-glow,
  .mystery-ring,
  .fomo-pulse,
  .thanks-mark,
  .problem-glow,
  .access-modal-backdrop,
  .access-flow,
  .mobile-sheet-panel {
    animation: none !important;
  }

  .confetti-canvas {
    display: none !important;
  }

  html.js .reveal,
  .reveal,
  .journey-node {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .journey-block.visible .journey-step.mystery {
    animation: none !important;
  }
}

/* Tablet / small laptop: stack hero product story (avoid absolute overlap) */
@media (max-width: 979px) {
  .transform-scene {
    position: relative;
    min-height: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .brochure-card,
  .intent-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    animation: none;
    border-radius: 18px;
  }

  .brochure-spine {
    display: none;
  }

  .black-box {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    z-index: 1;
    padding: 0.85rem 0;
  }

  .flow-arrow {
    display: none;
  }

  .flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.7rem;
  }

  .flow-line {
    flex: 1;
    max-width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4d0db, transparent);
  }

  .flow-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: #141218;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .glow {
    filter: blur(70px);
    opacity: 0.45;
  }
}

/* ========== MOBILE NATIVE UI ========== */
@media (max-width: 899px) {
  :root {
    --nav-h: 68px;
  }

  .container,
  .container.narrow {
    width: min(100%, calc(100% - 1.75rem));
  }

  .nav {
    width: min(100%, calc(100% - 1.75rem));
    height: var(--nav-h);
  }

  .nav {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  a.nav-cta.btn,
  button.nav-cta.btn {
    display: none !important;
  }

  .nav-logo img {
    height: 48px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border: 0 !important;
    border-radius: 10px;
    background: transparent !important;
    box-shadow: none !important;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-head {
    margin-bottom: 1.75rem;
    text-align: left;
  }

  .section-head h2,
  .hero h1,
  .early-copy h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.25rem);
    letter-spacing: -0.025em;
  }

  .section-sub {
    margin-top: 0.85rem;
    font-size: 0.98rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
    align-items: flex-start;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-copy {
    max-width: none;
  }

  .trust-badge {
    max-width: 100%;
    margin-bottom: 1.15rem;
    font-size: 0.8rem;
    line-height: 1.3;
    padding: 0.45rem 0.8rem 0.45rem 0.45rem;
  }

  .brand-mark {
    margin-bottom: 0.45rem;
  }

  .hero-questions {
    margin: 1.2rem 0 1.25rem;
    gap: 0.65rem;
    font-size: 0.98rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 1.35rem;
    width: 100%;
  }

  .hero-actions .btn-lg {
    width: 100%;
    min-height: 56px;
    font-size: 1.08rem;
  }

  .hero-join-line {
    font-size: 0.98rem;
    align-items: flex-start;
  }

  .fomo-line {
    font-size: 0.85rem;
  }

  .fomo-pill {
    font-size: 0.82rem;
    text-align: left;
  }

  /* Clean stacked product story for mobile */
  .hero-visual {
    margin-top: 0.25rem;
  }

  .transform-scene {
    position: relative;
    min-height: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .brochure-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    animation: none;
    border-radius: 18px;
    overflow: hidden;
  }

  .brochure-spine {
    display: none; /* looks like a glitch when card is full-width */
  }

  .brochure-body {
    padding: 1.1rem 1.15rem;
  }

  .brochure-thumb {
    height: 72px;
  }

  .black-box {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    z-index: 1;
    padding: 0.85rem 0;
  }

  .black-box-inner {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(20, 18, 24, 0.2);
  }

  .box-label {
    font-size: 0.95rem;
  }

  .flow-arrow {
    display: none;
  }

  .flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.7rem;
  }

  .flow-line {
    flex: 1;
    max-width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4d0db, transparent);
  }

  .flow-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: #141218;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .intent-card {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    padding: 1.15rem;
    animation: none;
    border-radius: 18px;
  }

  .intent-head {
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .intent-list {
    font-size: 0.92rem;
  }

  /* Problem / journey — vertical timeline */
  .question-grid {
    gap: 0.7rem;
  }

  .q-card {
    padding: 1rem 1.05rem;
  }

  .q-card p {
    font-size: 0.95rem;
  }

  .quote-card {
    padding: 1.2rem 1.15rem;
    border-radius: 20px;
  }

  .quote-line {
    font-size: 1.1rem;
  }

  .punch {
    text-align: left;
    font-size: 1.25rem;
    margin-bottom: 1.15rem;
  }

  .journey-panel {
    border-radius: 20px;
    padding: 1.25rem 1rem 1.15rem;
  }

  .journey-track {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0;
  }

  .journey-rail {
    display: none !important;
  }

  .journey-node {
    width: 100%;
    align-items: stretch;
  }

  .journey-step {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    border-radius: 14px;
  }

  .mystery-node {
    min-width: 0;
    align-items: center;
    padding: 0.35rem 0;
  }

  .journey-step.mystery {
    width: 4.1rem;
    height: 4.1rem;
    border-radius: 50%;
    justify-content: center;
  }

  .journey-caption {
    text-align: left;
    font-size: 0.92rem;
    margin-top: 1.1rem;
  }

  /* Product transform */
  .transform-row {
    gap: 0.75rem;
  }

  .explore-pills {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .explore-pills span {
    font-size: 0.82rem;
    padding: 0.5rem 0.8rem;
  }

  .compare-inline {
    margin-top: 1.35rem;
    gap: 0.75rem;
  }

  .compare-card {
    padding: 1.15rem;
    border-radius: 16px;
  }

  .flow-list {
    font-size: 0.9rem;
  }

  /* Intelligence */
  .intel-layout .section-head.left {
    text-align: left;
  }

  .lead-intel {
    padding: 1.2rem;
    border-radius: 18px;
  }

  .lead-stats {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .lead-intel-top {
    flex-wrap: wrap;
  }

  .call-card {
    padding: 1rem 1.05rem;
  }

  /* Outcome */
  .outcome-compact {
    gap: 1rem;
  }

  .benefit-list li {
    padding: 0.95rem 1rem 0.95rem 2.5rem;
    font-size: 0.95rem;
  }

  .funnel-card {
    padding: 1.25rem 1rem;
    border-radius: 18px;
  }

  /* Early access form */
  .early-layout {
    gap: 1.5rem;
  }

  .early-ask,
  .finale-inline {
    font-size: 1.05rem;
  }

  .access-modal {
    padding: 1rem;
    align-items: center;
  }

  .access-flow {
    width: min(400px, 100%);
    padding: 1.2rem 1.1rem 1.15rem;
    border-radius: 22px;
    min-height: 0;
    max-height: none;
  }

  @media (max-height: 560px) {
    .access-flow {
      min-height: 0;
    }
  }

  .access-flow-top {
    margin-bottom: 0.65rem;
  }

  .early-solo {
    text-align: left;
  }

  .early-solo .btn {
    width: 100%;
  }

  .flow-input-wrap input {
    font-size: 16px; /* prevents iOS zoom */
  }

  .flow-next.btn {
    min-height: 44px;
    padding: 0.7rem 1.2rem;
  }

  .flow-actions {
    flex-wrap: nowrap;
    padding-top: 1.35rem;
  }

  .close-section {
    padding-top: 2.25rem;
    padding-bottom: 1.75rem;
  }

  .close-logo {
    height: 42px;
    margin-bottom: 1rem;
  }

  .close-wrap h2 {
    font-size: 1.45rem;
  }

  .close-sub {
    margin: 0.75rem 0 1.25rem;
    font-size: 0.98rem;
  }

  .close-wrap .btn {
    width: 100%;
  }

  .footer {
    padding: 1.1rem 0 calc(1.1rem + env(safe-area-inset-bottom));
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

@media (max-width: 480px) {
  .trust-badge {
    align-items: flex-start;
  }

  .hero-questions li:nth-child(3),
  .hero-questions li:nth-child(4) {
    font-size: 0.95rem;
  }

  .intent-head {
    flex-direction: column;
    gap: 0.45rem;
  }
}
