/* =========================================================
   MUNISS AI · Dr. Poongodi diagnostic landing page
   Design system: emerald + gold + cream + urgency red
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; padding: 0; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--emerald-700); outline-offset: 3px; border-radius: 3px; }

:root {
  /* Surfaces */
  --bg: #FAFBF7;            /* Off-white, slight green undertone */
  --paper: #FFFFFF;
  --cream: #F4EFE3;          /* Warm cream wash */
  --cream-deep: #E8DFC6;
  --soft: #F1F4EE;

  /* Ink + brand */
  --ink: #0A1A12;
  --ink-soft: #1A2D24;
  --muted: #56685E;
  --emerald-900: #0B5D3B;
  --emerald-800: #0E6E45;
  --emerald-700: #10764A;
  --emerald-600: #1A8856;
  --emerald-50: #ECF5EF;
  --emerald-tint: rgba(11, 93, 59, 0.10);

  /* Accents */
  --gold: #C9A961;
  --gold-deep: #A8862F;
  --gold-soft: #ECDBA8;

  /* Urgency */
  --urgent: #C8341C;
  --urgent-soft: #FCEBE6;
  --urgent-tint: rgba(200, 52, 28, 0.10);
  --alert: #B7791F;
  --alert-soft: #FEF6E0;

  /* Hairlines */
  --hairline: #E3E6DE;
  --hairline-strong: #CFD5C9;
  --hairline-dark: rgba(255,255,255,0.14);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-shadow: 0 18px 60px -18px rgba(11, 26, 20, 0.22), inset 0 1px 0 rgba(255,255,255,0.7);

  /* Type */
  --display: 'Fraunces', 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* Layout */
  --container: 1200px;
  --pad-x: 32px;
  --pad-x-mobile: 20px;
  --section-py: 120px;
  --section-py-mobile: 72px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-weight: 800; letter-spacing: -0.04em; }

.serif { font-family: var(--display); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }

p { color: var(--ink); }

/* ============================================================
   GLOBAL MESH GRADIENT BACKDROP
   A single fixed canvas that ambient-colors the whole page;
   blobs drift slowly to create continuous blending between sections
   ============================================================ */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--bg);
  overflow: hidden;
}
.mesh-bg::before,
.mesh-bg::after,
.mesh-bg span {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
}
.mesh-bg::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle at 30% 30%, rgba(16,118,74,0.28), transparent 65%);
  top: -200px; left: -150px;
  animation: drift1 26s ease-in-out infinite;
}
.mesh-bg::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle at 50% 50%, rgba(201,169,97,0.22), transparent 65%);
  top: 30%; right: -180px;
  animation: drift2 32s ease-in-out infinite;
}
.mesh-bg span {
  width: 800px; height: 800px;
  background: radial-gradient(circle at 50% 50%, rgba(11,93,59,0.18), transparent 65%);
  bottom: -260px; left: 30%;
  animation: drift3 38s ease-in-out infinite;
}
.mesh-bg .b4 {
  width: 500px; height: 500px;
  background: radial-gradient(circle at 50% 50%, rgba(244, 239, 227, 0.9), transparent 65%);
  top: 60%; left: -80px;
  filter: blur(100px);
  opacity: 0.7;
  animation: drift4 30s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(80px, 120px) scale(1.1); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-100px, 80px) scale(0.9); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(100px, -60px) scale(1.05); }
}
@keyframes drift4 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px, -80px) scale(1.1); }
}

/* Page grain texture, very subtle */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); position: relative; z-index: 2; }
@media (max-width: 768px) { .container { padding: 0 var(--pad-x-mobile); } }
section { padding: var(--section-py) 0; position: relative; }
@media (max-width: 768px) { section { padding: var(--section-py-mobile) 0; } }

.section__head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
@media (max-width: 768px) { .section__head { margin-bottom: 44px; } }

/* ============================================================
   EYEBROW · uppercase mono pill
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--emerald-700);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--emerald-tint);
  box-shadow: 0 4px 18px -8px rgba(11,93,59,0.18);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,169,97,0.5);
}
.eyebrow--urgent {
  color: var(--urgent);
  border-color: var(--urgent-tint);
  background: rgba(252,235,230,0.75);
}
.eyebrow--urgent .dot { background: var(--urgent); box-shadow: 0 0 8px rgba(200,52,28,0.5); }
.eyebrow--dark {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,169,97,0.35);
  box-shadow: none;
}

/* ============================================================
   HEADLINES
   ============================================================ */
.h-section {
  font-family: var(--sans);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 26px auto 22px;
  color: var(--ink);
  max-width: 920px;
  text-wrap: balance;
}
.h-section .accent { color: var(--emerald-700); }
.h-section .gold { color: var(--gold-deep); }
.h-section .urgent-em { color: var(--urgent); font-weight: 700; }
.h-section .underline-mark {
  position: relative;
  white-space: nowrap;
}
.h-section .underline-mark::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 10px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 6px;
  opacity: 0.55;
  z-index: -1;
  transform: skewX(-6deg);
}

.lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.lede strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   BUTTONS · with creative micro-interaction
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 30px;
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.btn::before {
  /* sheen */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
  z-index: 1;
  pointer-events: none;
}
.btn:hover::before { transform: translateX(120%); }
.btn > * { position: relative; z-index: 2; }
.btn .arrow {
  transition: transform .3s var(--ease-spring);
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(5px); }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-900) 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 12px 30px -10px rgba(11,93,59,0.45);
}
.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 18px 40px -10px rgba(11,93,59,0.55);
}
.btn-gold {
  background: linear-gradient(135deg, #D4B36C 0%, #B58F36 100%);
  color: #1a1409;
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 12px 30px -10px rgba(168,134,47,0.5);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 18px 40px -10px rgba(168,134,47,0.6);
}
.btn-ghost {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--hairline-strong);
  color: var(--ink);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: var(--paper);
  border-color: var(--emerald-700);
  color: var(--emerald-900);
  transform: translateY(-2px);
}
.btn-nav { min-height: 44px; padding: 10px 18px; font-size: 13.5px; border-radius: 999px; }

/* CTA meta line */
.cta-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  max-width: 100%;
}
.cta-meta .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald-600);
  position: relative;
  flex-shrink: 0;
}
.cta-meta .pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--emerald-600);
  opacity: 0.35;
  animation: pulse-ring 2s var(--ease-out) infinite;
}
.cta-meta .pulse.red { background: var(--urgent); }
.cta-meta .pulse.red::after { background: var(--urgent); }
.cta-stack { display: flex; flex-direction: column; align-items: center; gap: 0; }

@keyframes pulse-ring {
  0% { transform: scale(0.7); opacity: 0.55; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ============================================================
   NAV · floating glass pill with logo
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1140px;
  z-index: 100;
  display: flex; align-items: center;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 18px 50px -16px rgba(11, 26, 20, 0.2), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: top .3s var(--ease-out), padding .3s, background-color .3s;
}
.nav.is-scrolled {
  top: 10px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 24px 60px -16px rgba(11, 26, 20, 0.28), inset 0 1px 0 rgba(255,255,255,0.6);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  width: 100%; height: 100%;
}
.nav__left { display: inline-flex; align-items: center; gap: 14px; }
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.025em;
}
.nav__brand img {
  width: 44px; height: 44px;
  object-fit: contain;
  border-radius: 10px;
}
.nav__brand .brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.nav__brand .brand-name { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.nav__brand .brand-sub { font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }

.nav__center {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 980px) { .nav__center { display: inline-flex; } }
.nav__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background-color .2s, color .2s;
}
.nav__link:hover { background: var(--emerald-50); color: var(--emerald-800); }

.nav__pill {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--urgent-soft);
  color: var(--urgent);
  font-weight: 600;
  border: 1px solid var(--urgent-tint);
}
.nav__pill .pulse-red {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--urgent);
  position: relative;
  flex-shrink: 0;
}
.nav__pill .pulse-red::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--urgent);
  opacity: 0.4;
  animation: pulse-ring 1.6s ease-out infinite;
}
@media (min-width: 1100px) { .nav__pill { display: inline-flex; } }

@media (max-width: 640px) {
  .nav { top: 10px; padding: 6px 8px 6px 14px; }
  .nav__brand .brand-sub { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
}

.hero__left { text-align: left; }
.hero__floating-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--urgent-tint);
  color: var(--urgent);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 8px 30px -10px rgba(200, 52, 28, 0.25);
}
.hero__floating-tag .pulse-red {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--urgent);
  position: relative;
}
.hero__floating-tag .pulse-red::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--urgent);
  opacity: 0.4;
  animation: pulse-ring 1.6s ease-out infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero h1 .stalled,
.hero h1 .accent {
  color: var(--emerald-800);
  font-weight: 800;
}
.hero h1 .serif-em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  letter-spacing: -0.015em;
}
.hero h1 .line { display: block; }

.hero__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
  list-style: none;
  padding-left: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero__signals li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__signal-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--emerald-700);
  flex-shrink: 0;
}

/* HERO VIDEO (VSL) */
.hero__video-wrap {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}

/* Stacked hero: centered copy on top, VSL at ~70% viewport width below */
.hero__inner.hero__inner--stacked {
  grid-template-columns: 1fr;
  gap: 52px;
  justify-items: center;
}
.hero__inner--stacked .hero__left {
  text-align: center;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__inner--stacked .hero__cta-row,
.hero__inner--stacked .hero__signals {
  justify-content: center;
}
.hero__inner--stacked .hero__right {
  width: 100%;
}
.hero__inner--stacked .hero__video-wrap {
  width: min(70vw, 100%);
  max-width: none;
}
@media (max-width: 767px) {
  .hero__inner--stacked .hero__video-wrap { width: 100%; }
}
.hero__video-frame {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #073d27;
  padding: 8px;
  box-shadow:
    0 30px 80px -20px rgba(11,93,59,0.5),
    0 6px 20px rgba(11,93,59,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero__video-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 17px;
  background: #000;
}

/* HERO PHOTO TREATMENT */
.hero__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 4/5;
}
.hero__photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(160deg, #0e6e45 0%, #0b5d3b 55%, #073d27 100%);
  box-shadow:
    0 30px 80px -20px rgba(11,93,59,0.5),
    0 6px 20px rgba(11,93,59,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero__photo-frame::before {
  /* gold radial wash */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(201,169,97,0.32), transparent 60%),
    radial-gradient(circle at 90% 95%, rgba(201,169,97,0.18), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero__photo-frame::after {
  /* subtle grid */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}
.hero__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 2;
  mix-blend-mode: normal;
  filter: contrast(1.04) saturate(0.92);
}

/* Gradient overlay at bottom for legibility */
.hero__photo-frame .photo-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(11,93,59,0.7) 0%, rgba(11,93,59,0) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Photo name plate */
.hero__photo-plate {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 5;
  padding: 18px 22px;
  background: rgba(11, 22, 17, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__photo-plate .plate-crest {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a1a12;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.hero__photo-plate .plate-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; }
.hero__photo-plate .plate-sub { font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; font-family: var(--mono); }

/* Floating accent chips around photo */
.hero__chip {
  position: absolute;
  z-index: 6;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 40px -12px rgba(11,26,20,0.22);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  animation: float 5s ease-in-out infinite;
}
.hero__chip .chip-ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--emerald-50);
  color: var(--emerald-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__chip--1 { top: 30px; left: -32px; animation-delay: -0s; }
.hero__chip--2 { top: 38%; right: -42px; animation-delay: -1.6s; }
.hero__chip--3 { bottom: 28%; left: -52px; animation-delay: -3.2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero stat band */
.hero__stat-band {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 20px 50px -20px rgba(11,26,20,0.12);
}
@media (min-width: 720px) { .hero__stat-band { grid-template-columns: repeat(4, 1fr); } }
.hero__stat {
  padding: 28px 26px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  text-align: left;
}
.hero__stat .stat-num {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--emerald-800);
  line-height: 1;
}
.hero__stat .stat-lbl {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   SECTORS marquee
   ============================================================ */
.sectors {
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(255,255,255,0.4);
  overflow: hidden;
  position: relative;
}
.sectors::before, .sectors::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.sectors::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.sectors::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.sectors__marquee {
  display: flex;
  gap: 56px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.sectors__marquee:hover { animation-play-state: paused; }
.sectors__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -0.015em;
}
.sectors__item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.sectors__lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald-700);
  font-weight: 600;
  background: var(--emerald-50);
  padding: 4px 10px;
  border-radius: 999px;
}
@keyframes marquee {
  to { transform: translateX(calc(-50% - 28px)); }
}

/* ============================================================
   DISAPPEAR · honest test
   ============================================================ */
.disappear {
  position: relative;
}
.disappear::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,52,28,0.05), transparent 60%);
  pointer-events: none;
}
.disappear-timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 0;
}
.disappear-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--urgent), var(--urgent) 90%, transparent);
  opacity: 0.25;
}
.dt-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  position: relative;
  transition: transform .3s var(--ease-out);
}
.dt-item:hover { transform: translateX(8px); }
.dt-day {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-left: 56px;
}
.dt-day::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--urgent);
  z-index: 2;
  transition: transform .3s var(--ease-spring), background .3s;
}
.dt-item:hover .dt-day::before { transform: translateY(-50%) scale(1.3); background: var(--urgent); }
.dt-text {
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.025em;
}
@media (max-width: 640px) {
  .disappear-timeline::before { left: 30px; }
  .dt-item { grid-template-columns: 60px 1fr; gap: 16px; padding: 20px 0; }
  .dt-day { padding-left: 36px; font-size: 10px; }
  .dt-day::before { left: 22px; width: 12px; height: 12px; border-width: 2.5px; }
  .dt-text { font-size: 1.1rem; }
}

.disappear__close {
  max-width: 760px;
  margin: 64px auto 0;
  text-align: center;
  padding: 48px 36px;
  background: linear-gradient(135deg, #0a1a12 0%, #0e2820 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,97,0.2);
}
.disappear__close::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,169,97,0.18), transparent 60%),
    radial-gradient(ellipse at 90% 100%, rgba(200,52,28,0.15), transparent 60%);
}
.disappear__close p {
  position: relative;
  font-family: var(--sans);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.025em;
}
.disappear__close p.em-line {
  color: #fff;
  font-weight: 700;
  margin-top: 6px;
}
.disappear__close em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* ============================================================
   PROBLEM · Bento grid editorial
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.p-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 28px;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
}
.p-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(16,118,74,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.p-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -18px rgba(11,26,20,0.18); border-color: var(--emerald-tint); }
.p-card:hover::before { opacity: 1; }
.p-card .p-num {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.p-card .p-text {
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.p-card .p-text em {
  font-style: normal;
  color: var(--emerald-800);
  font-weight: 700;
}
/* Bento spans */
@media (min-width: 720px) {
  .p-card:nth-child(1) { grid-column: span 2; }
  .p-card:nth-child(2) { grid-column: span 2; }
  .p-card:nth-child(3) { grid-column: span 1; }
  .p-card:nth-child(4) { grid-column: span 1; }
  .p-card:nth-child(5) { grid-column: span 2; }
  .p-card:nth-child(6) { grid-column: span 1; }
  .p-card:nth-child(7) { grid-column: span 2; }
  .p-card:nth-child(8) { grid-column: span 1; }
}
.p-card.is-dark {
  background: linear-gradient(135deg, #0e2820 0%, #0a1a12 100%);
  border-color: transparent;
  color: #fff;
}
.p-card.is-dark .p-text { color: #fff; font-size: 1.4rem; line-height: 1.25; }
.p-card.is-dark .p-text em { color: var(--gold); font-family: var(--display); font-style: italic; font-weight: 400; }
.p-card.is-dark .p-num { color: var(--gold); }
.p-card.is-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 100%, rgba(201,169,97,0.2), transparent 55%);
  pointer-events: none;
}

.problem__close {
  max-width: 800px;
  margin: 56px auto 0;
  text-align: center;
}
.problem__close p {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.problem__close em {
  font-style: italic;
  color: var(--emerald-800);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================================
   DIFFERENTIATION · stacked plus rows
   ============================================================ */
.diff-stack {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.diff-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 36px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.diff-row:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -16px rgba(11,26,20,0.14); }
.diff-row__num {
  position: relative;
  width: 100px; height: 100px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--urgent) 0%, #8a230f 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  box-shadow: 0 12px 30px -10px rgba(200,52,28,0.4);
  flex-shrink: 0;
}
.diff-row__num::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 18px;
}
.diff-row__body h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.diff-row__body p { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 620px; }
@media (max-width: 640px) {
  .diff-row { grid-template-columns: 72px 1fr; gap: 20px; padding: 24px; }
  .diff-row__num { width: 72px; height: 72px; font-size: 46px; border-radius: 18px; }
}
.diff__close {
  max-width: 820px;
  margin: 56px auto 0;
  text-align: center;
}
.diff__close p {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.diff__close em {
  font-style: italic;
  font-family: var(--display);
  font-weight: 400;
  color: var(--emerald-800);
  letter-spacing: -0.01em;
}

/* ============================================================
   OFFER · the diagnostic feature card + pillars
   ============================================================ */
.offer__hero-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 48px;
  background: linear-gradient(160deg, #0e6e45 0%, #0b5d3b 55%, #073d27 100%);
  border-radius: 32px;
  padding: 60px 56px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 40px 80px -30px rgba(11,93,59,0.5);
}
.offer__hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,169,97,0.3), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(201,169,97,0.18), transparent 50%);
}
.offer__hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.6;
}
.offer__hero-card > * { position: relative; z-index: 2; }
.offer__hero-card h3 {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
}
.offer__hero-card h3 em {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.offer__hero-card p {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
}

.offer__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 720px) { .offer__pillars { grid-template-columns: repeat(4, 1fr); } }
.offer__pillar {
  padding: 26px 22px;
  background: rgba(11,93,59,0.5);
  position: relative;
}
.offer__pillar .pl-ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(201,169,97,0.18);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.offer__pillar .pl-ic svg { width: 20px; height: 20px; }
.offer__pillar .pl-num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1;
}
.offer__pillar .pl-lbl {
  margin-top: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.offer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

/* ============================================================
   OUTCOMES · magazine TOC
   ============================================================ */
.toc-list {
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline-strong);
}
.toc-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 36px 12px;
  border-bottom: 1px solid var(--hairline-strong);
  transition: padding .3s var(--ease-out), background-color .3s;
  cursor: pointer;
  position: relative;
}
.toc-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,118,74,0.04), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.toc-row:hover { padding-left: 28px; }
.toc-row:hover::before { opacity: 1; }
.toc-num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.9;
  color: var(--emerald-800);
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}
.toc-body h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.022em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.toc-body p { font-size: 15.5px; line-height: 1.6; color: var(--muted); max-width: 620px; position: relative; z-index: 1; }
.toc-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--emerald-50);
  color: var(--emerald-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease-spring), background-color .3s, color .3s;
  position: relative;
  z-index: 1;
}
.toc-row:hover .toc-arrow { transform: rotate(-45deg) scale(1.1); background: var(--emerald-800); color: #fff; }
@media (max-width: 640px) {
  .toc-row { grid-template-columns: 60px 1fr 30px; gap: 18px; padding: 24px 0; }
  .toc-num { font-size: 1.9rem; }
  .toc-arrow { width: 32px; height: 32px; }
}
.outcomes__close {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
}
.outcomes__close p {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.outcomes__close em {
  font-style: italic;
  font-family: var(--display);
  font-weight: 400;
  color: var(--emerald-800);
}

/* ============================================================
   IMAGINE · dark band with bold list
   ============================================================ */
.imagine {
  position: relative;
  background: linear-gradient(180deg, #0a1a12 0%, #0e2820 100%);
  color: #fff;
}
.imagine::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,169,97,0.12), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(16,118,74,0.3), transparent 55%);
  pointer-events: none;
}
.imagine::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.6;
}
.imagine .container { position: relative; z-index: 2; }
.imagine .h-section { color: #fff; }
.imagine .h-section .accent { color: var(--gold); font-family: var(--display); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.imagine .lede { color: rgba(255,255,255,0.7); }

.imagine-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}
.imagine-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 22px;
  padding: 26px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--sans);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.02em;
  transition: padding-left .3s var(--ease-out);
}
.imagine-list li:hover { padding-left: 24px; }
.imagine-list li .check {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(201,169,97,0.15);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,169,97,0.4);
}
.imagine-list li .check svg { width: 16px; height: 16px; }

.imagine__close {
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
  padding: 36px 32px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid rgba(201,169,97,0.18);
  backdrop-filter: blur(20px);
}
.imagine__close p {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.02em;
}
.imagine__close p.em-line {
  color: #fff;
  font-weight: 700;
  margin-top: 4px;
}
.imagine__close em {
  font-style: italic;
  font-family: var(--display);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.005em;
}

/* ============================================================
   AGENDA · 8 ringed steps
   ============================================================ */
.agenda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 720px) { .agenda-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .agenda-grid { grid-template-columns: repeat(4, 1fr); } }
.ag-item {
  position: relative;
  padding: 28px 24px 28px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
/* When the grid is single-column (≤719px), center the card content */
@media (max-width: 719px) {
  .ag-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ag-item h3, .ag-item p { text-align: center; width: 100%; }
}
.ag-item:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -16px rgba(11,26,20,0.18); border-color: var(--emerald-tint); }
.ag-item .ag-ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px dashed var(--emerald-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--emerald-800);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  position: relative;
  transition: transform .4s var(--ease-spring), background-color .3s;
}
.ag-item:hover .ag-ring { transform: rotate(-12deg); background: var(--emerald-50); }
.ag-item h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.ag-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}
.agenda__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 56px;
}

/* ============================================================
   BONUSES · 3 deliverable cards
   ============================================================ */
.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) { .bonuses-grid { grid-template-columns: repeat(3, 1fr); } }
.b-card {
  position: relative;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.b-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(11,93,59,0.2); border-color: var(--emerald-tint); }
.b-card .b-document {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-card .b-document::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: var(--paper);
  background-image:
    repeating-linear-gradient(to bottom, transparent 0 16px, var(--hairline) 16px 17px);
  background-size: 100% 100%;
  background-position: 0 22px;
}
.b-card .b-document .b-stamp {
  position: relative;
  z-index: 2;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald-700), var(--emerald-900));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -10px rgba(11,93,59,0.45);
  transform: rotate(-4deg);
  transition: transform .4s var(--ease-spring);
}
.b-card:hover .b-document .b-stamp { transform: rotate(2deg) scale(1.05); }
.b-card .b-document .b-stamp svg { width: 24px; height: 24px; }
.b-card .b-document .b-corner {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  z-index: 2;
}
.b-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.018em;
  margin-bottom: 10px;
}
.b-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.b-card .b-format {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--hairline-strong);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-700);
  font-weight: 600;
}
.bonuses__close {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}
.bonuses__close strong { color: var(--emerald-800); font-weight: 700; }

/* ============================================================
   AUTHORITY · the photo showcase
   ============================================================ */
.authority {
  position: relative;
}
.auth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .auth-grid { grid-template-columns: 5fr 7fr; gap: 80px; } }

.auth-photo-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 4/5;
}
.auth-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0e6e45, #0b5d3b 60%, #073d27);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(11,93,59,0.5), 0 6px 20px rgba(11,93,59,0.2);
}
.auth-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 0%, rgba(201,169,97,0.35), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(201,169,97,0.2), transparent 50%);
  z-index: 1;
}
.auth-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
}
.auth-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 2;
}
.auth-photo .photo-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(11,93,59,0.85), rgba(11,93,59,0));
  z-index: 3;
}

/* Decorative card behind */
.auth-photo-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--cream), var(--cream-deep));
  border-radius: 30px;
  transform: rotate(-3deg) translate(-18px, 14px);
  z-index: -1;
  opacity: 0.8;
  border: 1px solid var(--hairline);
}
.auth-photo-stack::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 1px dashed var(--gold);
  transform: rotate(2deg) translate(12px, -10px);
  z-index: -1;
  opacity: 0.6;
}

/* Photo nameplate */
.auth-nameplate {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 5;
  padding: 20px 24px;
  background: rgba(11, 22, 17, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: 18px;
  color: #fff;
}
.auth-nameplate__top { display: flex; align-items: center; gap: 14px; }
.auth-nameplate .crest {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a1a12;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  font-family: var(--display);
  font-style: italic;
}
.auth-nameplate .name { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.1; }
.auth-nameplate .sub { font-size: 10.5px; color: rgba(255,255,255,0.72); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; font-family: var(--mono); }
.auth-nameplate__credentials {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.auth-nameplate__credentials .crd {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201,169,97,0.1);
  border: 1px solid rgba(201,169,97,0.25);
  font-weight: 600;
}

/* Authority right column */
.auth-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.auth-pretitle .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.auth-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.auth-title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--emerald-800);
  letter-spacing: -0.01em;
}
.auth-lede { font-size: 17px; line-height: 1.6; color: var(--muted); margin-bottom: 32px; max-width: 560px; }
.auth-bullets {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.auth-bullet {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.auth-bullet:hover { transform: translateX(6px); border-color: var(--emerald-tint); box-shadow: 0 16px 30px -14px rgba(11,93,59,0.15); }
.auth-bullet .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald-50), #fff);
  color: var(--emerald-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--emerald-tint);
}
.auth-bullet .ic svg { width: 20px; height: 20px; }
.auth-bullet h3 { font-size: 16px; font-weight: 700; line-height: 1.3; letter-spacing: -0.015em; margin-bottom: 4px; }
.auth-bullet p { font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.auth-cta { margin-top: 32px; display: inline-flex; flex-direction: column; align-items: flex-start; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 900px) {
  .ba-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ba-grid::before {
    content: '→';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--hairline-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--emerald-800);
    z-index: 5;
    box-shadow: 0 12px 30px -10px rgba(11,26,20,0.18);
  }
}
.ba-col {
  position: relative;
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  overflow: hidden;
}
.ba-col--before {
  background: linear-gradient(180deg, #FCEBE6 0%, #fff 80%);
  border-top: 3px solid var(--urgent);
}
.ba-col--after {
  background: linear-gradient(180deg, var(--emerald-50) 0%, #fff 80%);
  border-top: 3px solid var(--emerald-700);
  box-shadow: 0 30px 60px -20px rgba(11,93,59,0.15);
}
.ba-col__head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
}
.ba-col--before .ba-col__head { color: var(--urgent); }
.ba-col--after .ba-col__head { color: var(--emerald-800); }
.ba-col__head .ba-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200,52,28,0.08);
}
.ba-col--after .ba-col__head .ba-tag { background: rgba(16,118,74,0.1); }
.ba-col h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
}
.ba-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.ba-col li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  align-items: start;
}
.ba-mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}
.ba-mark svg { width: 12px; height: 12px; }
.ba-col--before .ba-mark { background: rgba(200,52,28,0.12); color: var(--urgent); }
.ba-col--before li { color: var(--muted); }
.ba-col--after .ba-mark { background: var(--emerald-50); color: var(--emerald-800); border: 1px solid var(--emerald-tint); }
.ba-col--after li { color: var(--ink); }

/* ============================================================
   PROCESS · 4 steps
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
@media (min-width: 720px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-steps { grid-template-columns: repeat(4, 1fr); position: relative; } }
.ps-item {
  position: relative;
  padding: 32px 26px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.ps-item:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -16px rgba(11,93,59,0.15); }
.ps-item .ps-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.ps-item .ps-num::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold-deep);
}
.ps-item h3 { font-size: 19px; font-weight: 800; line-height: 1.2; letter-spacing: -0.022em; margin-bottom: 8px; }
.ps-item p { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* Step connector line */
@media (min-width: 1024px) {
  .ps-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50px;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--hairline-strong), transparent);
  }
}

.process__close {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
  padding: 24px 30px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--hairline);
  border-radius: 16px;
}
.process__close p { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.process__close em { font-style: italic; font-family: var(--display); font-weight: 400; color: var(--emerald-800); letter-spacing: -0.005em; }

/* ============================================================
   QUALIFICATION · two columns with clear difference
   ============================================================ */
.qual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 56px auto 0;
  position: relative;
}
@media (min-width: 768px) { .qual-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.qual-card {
  position: relative;
  padding: 64px 32px 40px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  overflow: visible;
}
.qual-card--for {
  background: linear-gradient(180deg, var(--emerald-50) 0%, #fff 60%);
  border-color: var(--emerald-tint);
}
.qual-card--not {
  background: linear-gradient(180deg, #FAF6EE 0%, #fff 60%);
  border-color: var(--cream-deep);
}
.qual-card .qual-badge {
  position: absolute;
  top: -28px; left: 32px;
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 16px 30px -10px rgba(11,26,20,0.25);
}
.qual-card--for .qual-badge { background: linear-gradient(135deg, var(--emerald-700), var(--emerald-900)); }
.qual-card--not .qual-badge { background: linear-gradient(135deg, #C9A961, #8a6f24); }
.qual-card .qual-badge svg { width: 24px; height: 24px; }
.qual-card .qual-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.qual-card--for .qual-eyebrow { color: var(--emerald-800); }
.qual-card--not .qual-eyebrow { color: var(--gold-deep); }
.qual-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.qual-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.qual-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  align-items: start;
}
.qual-card li .q-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.qual-card li .q-mark svg { width: 11px; height: 11px; }
.qual-card--for li .q-mark { color: var(--emerald-800); border: 1px solid var(--emerald-tint); }
.qual-card--not li .q-mark { color: var(--gold-deep); border: 1px solid var(--cream-deep); }
.qual-card--for li { color: var(--ink); }
.qual-card--not li { color: var(--muted); }

/* ============================================================
   TESTIMONIALS PLACEHOLDER
   ============================================================ */
.testi-placeholder {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 44px;
  background: var(--paper);
  border: 1px dashed var(--hairline-strong);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.testi-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(16,118,74,0.05), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(201,169,97,0.05), transparent 60%);
  pointer-events: none;
}
.testi-placeholder__ic {
  width: 72px; height: 72px;
  margin: 0 auto 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--emerald-50), #fff);
  color: var(--emerald-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--emerald-tint);
  box-shadow: 0 16px 30px -12px rgba(11,93,59,0.18);
}
.testi-placeholder__ic svg { width: 30px; height: 30px; }
.testi-placeholder h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.testi-placeholder h3 em { font-family: var(--display); font-style: italic; font-weight: 400; color: var(--emerald-800); }
.testi-placeholder p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testi-placeholder__meta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-700);
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding: 8px 16px;
  background: var(--emerald-50);
  border-radius: 999px;
}
.testi-placeholder__meta .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.is-open {
  border-color: var(--emerald-tint);
  box-shadow: 0 16px 30px -14px rgba(11,93,59,0.15);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.4;
  text-align: left;
  color: var(--ink);
}
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--emerald-50);
  color: var(--emerald-800);
  position: relative;
  transition: transform .3s var(--ease-spring), background-color .25s;
}
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: currentColor; border-radius: 1px; }
.faq-icon::before { top: 15.25px; left: 8px; right: 8px; height: 1.5px; }
.faq-icon::after { left: 15.25px; top: 8px; bottom: 8px; width: 1.5px; }
.faq-item.is-open .faq-icon { transform: rotate(135deg); background: var(--emerald-800); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a-inner { padding: 0 24px 22px 24px; font-size: 15px; line-height: 1.65; color: var(--muted); max-width: 720px; }

/* ============================================================
   SCARCITY STRIP
   ============================================================ */
.scarcity-strip {
  background: linear-gradient(90deg, rgba(254,246,224,0.6), rgba(252,235,230,0.6));
  border-top: 1px solid rgba(183,121,31,0.2);
  border-bottom: 1px solid rgba(183,121,31,0.2);
  padding: 18px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.scarcity-strip::before, .scarcity-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
}
.scarcity-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.scarcity-strip::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.scarcity-strip__inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--alert);
  font-weight: 700;
}
.scarcity-strip__inner .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--alert);
  position: relative;
  flex-shrink: 0;
}
.scarcity-strip__inner .pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--alert);
  opacity: 0.4;
  animation: pulse-ring 1.8s ease-out infinite;
}
.scarcity-strip__inner .sep { color: var(--alert); opacity: 0.5; }
@media (max-width: 640px) {
  .scarcity-strip__inner { font-size: 10px; gap: 10px; flex-wrap: wrap; padding: 0 16px; justify-content: center; }
}

/* ============================================================
   FINAL CTA + FORM
   ============================================================ */
.final {
  position: relative;
  padding-bottom: 140px;
}
.final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 600px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(16,118,74,0.08), transparent 60%);
  pointer-events: none;
}
.final__head { text-align: center; max-width: 780px; margin: 0 auto 48px; position: relative; z-index: 1; }
.form-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 40px 80px -30px rgba(11,93,59,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
  z-index: 2;
}
@media (min-width: 768px) { .form-card { padding: 48px; } }
.form-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 26px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}
.form-card__head .ic-box {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald-700), var(--emerald-900));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(11,93,59,0.4);
}
.form-card__head .ic-box svg { width: 22px; height: 22px; }
.form-card__head h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.018em; }
.form-card__head p { font-size: 13px; color: var(--muted); margin-top: 3px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.req { color: var(--urgent); margin-left: 3px; }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 52px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { resize: vertical; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--emerald-700);
  box-shadow: 0 0 0 4px rgba(16,118,74,0.12);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(86,104,94,0.5); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%2310764A' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.pill-group { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  min-height: 50px;
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  background: var(--paper);
  transition: background-color .2s, border-color .2s;
}
.pill:hover { border-color: var(--emerald-700); }
.pill input { width: 16px; height: 16px; accent-color: var(--emerald-700); margin: 0; min-height: auto; }
.pill:has(input:checked) { background: var(--emerald-50); border-color: var(--emerald-700); }

.submit-row {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.form-footer {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  max-width: 540px;
  line-height: 1.55;
}

.confirmation {
  max-width: 680px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--emerald-tint);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(11,93,59,0.15);
}
.confirmation .ic-success {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--emerald-700), var(--emerald-900));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.confirmation h3 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 14px; line-height: 1.25; }
.confirmation p { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin-bottom: 10px; }
.confirmation .sub { font-size: 13px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 56px 0 32px;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (min-width: 720px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand-block .nav__brand { margin-bottom: 16px; }
.footer__brand-block p { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 320px; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald-800);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer__col a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}
.footer__col a:hover { color: var(--emerald-800); }
.footer__bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  transform: translateY(160%);
  transition: transform .3s var(--ease-out);
  padding-bottom: env(safe-area-inset-bottom);
  display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; }
@media (max-width: 768px) { .sticky-cta { display: block; } }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="100"] { transition-delay: 0.08s; }
[data-reveal][data-delay="200"] { transition-delay: 0.16s; }
[data-reveal][data-delay="300"] { transition-delay: 0.24s; }
[data-reveal][data-delay="400"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .mesh-bg::before, .mesh-bg::after, .mesh-bg span { animation: none; }
  .sectors__marquee { animation: none; }
}

/* ============================================================
   MOBILE RESPONSIVENESS — comprehensive pass
   Prevents horizontal overflow, cutoffs, and overlap
   ============================================================ */

/* belt-and-braces: kill any horizontal scroll from rotated decorations */
html, body { overflow-x: hidden; max-width: 100vw; }

@media (max-width: 1024px) {
  :root { --section-py: 96px; }
}

@media (max-width: 860px) {
  :root { --section-py: 80px; }
  .section__head { margin-bottom: 48px; }
  /* Hero starts the page; tighten the top */
  .hero { padding: 130px 0 64px; }
  .hero__inner { gap: 36px; }
  .hero h1 { font-size: clamp(2.1rem, 7vw, 3rem); line-height: 1.05; }
  .hero__sub { font-size: 16px; }
  .hero__signals { gap: 6px 18px; font-size: 13px; }

  /* Photo gets smaller, chips pull INSIDE the frame */
  .hero__photo-wrap { max-width: 420px; }
  .hero__chip { padding: 9px 13px; font-size: 12px; }
  .hero__chip--1 { top: 16px; left: 12px; }
  .hero__chip--2 { top: 42%; right: 12px; }
  .hero__chip--3 { bottom: 100px; left: 12px; }

  /* Authority photo: smaller, pull decorative cards in */
  .auth-photo-stack { max-width: 380px; }
  .auth-photo-stack::before { transform: rotate(-3deg) translate(-8px, 8px); }
  .auth-photo-stack::after { transform: rotate(2deg) translate(6px, -6px); }
  .auth-title { font-size: clamp(1.7rem, 5vw, 2.4rem); }

  /* Nav: more breathing room, tighter chrome */
  .nav { width: calc(100% - 20px); padding: 6px 8px 6px 14px; }
  .nav__brand .brand-name { font-size: 16px; }
  .nav__brand img { width: 40px; height: 40px; }

  /* Offer hero card */
  .offer__hero-card { padding: 44px 28px; border-radius: 24px; }
  .offer__hero-card h3 { font-size: clamp(1.4rem, 4vw, 2rem); }

  /* Cards: tighten padding */
  .p-card { padding: 22px; }
  .p-card.is-dark .p-text { font-size: 1.15rem; }
  .diff-row { padding: 24px; }
  .ag-item { padding: 22px 20px; }
  .b-card { padding: 24px; }
  .ba-col { padding: 26px 22px; }
  .ps-item { padding: 26px 22px; }
  .qual-card { padding: 56px 24px 32px; }
  .testi-placeholder { padding: 48px 28px; }

  /* Form card: less interior */
  .form-card { padding: 24px; border-radius: 22px; }
  .form-card__head { gap: 14px; padding-bottom: 20px; margin-bottom: 22px; }
  .form-card__head .ic-box { width: 42px; height: 42px; }

  /* Disappear close */
  .disappear__close { padding: 32px 24px; }

  /* Imagine close */
  .imagine__close { padding: 28px 22px; }
  .imagine-list li { font-size: 1.05rem; gap: 16px; padding: 22px 4px; grid-template-columns: 44px 1fr; }
  .imagine-list li .check { width: 32px; height: 32px; }

  /* H-section: keep it from busting the column */
  .h-section { font-size: clamp(1.8rem, 5.4vw, 2.4rem); }

  /* CTA stack & button full width */
  .hero__cta-row { width: 100%; }
  .hero__cta-row .btn { flex: 1 1 100%; justify-content: center; }
}

@media (max-width: 640px) {
  :root { --section-py: 64px; --pad-x-mobile: 18px; }

  /* Hero photo full width, chips overlay the photo edges */
  .hero { padding: 120px 0 56px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); letter-spacing: -0.035em; }
  .hero__floating-tag { font-size: 10px; padding: 7px 13px; letter-spacing: 0.15em; }
  .hero__sub { font-size: 15.5px; margin-bottom: 26px; }
  .hero__signals { padding-top: 22px; margin-top: 26px; }
  .hero__photo-wrap { max-width: 100%; }
  .hero__chip { font-size: 11.5px; padding: 7px 11px; gap: 8px; }
  .hero__chip .chip-ic { width: 24px; height: 24px; }
  .hero__chip--1 { top: 12px; left: 10px; }
  .hero__chip--2 { top: 38%; right: 10px; }
  .hero__chip--3 { bottom: 96px; left: 10px; }

  /* Photo plate slimmer */
  .hero__photo-plate { padding: 14px 16px; left: 14px; right: 14px; bottom: 14px; gap: 12px; }
  .hero__photo-plate .plate-crest { width: 34px; height: 34px; }
  .hero__photo-plate .plate-name { font-size: 14.5px; }
  .hero__photo-plate .plate-sub { font-size: 10px; }

  /* Hero stat band: 2 columns is more comfortable than 1 */
  .hero__stat-band { grid-template-columns: 1fr 1fr; margin-top: 56px; border-radius: 20px; }
  .hero__stat { padding: 20px 18px; }
  .hero__stat .stat-num { font-size: 1.5rem; }
  .hero__stat .stat-lbl { font-size: 10px; letter-spacing: 0.14em; }

  /* Nav: ultra-compact on phones */
  .nav__brand .brand-sub { display: none; }
  .nav__brand img { width: 36px; height: 36px; }
  .nav__brand .brand-name { font-size: 15px; }
  .btn-nav { min-height: 38px; padding: 8px 14px; font-size: 12.5px; }

  /* Sectors marquee: smaller type */
  .sectors__item { font-size: 14px; gap: 12px; }
  .sectors__marquee { gap: 40px; }
  .sectors__lbl { font-size: 9.5px; letter-spacing: 0.18em; padding: 3px 8px; }

  /* Disappear timeline more compact */
  .disappear-timeline::before { left: 22px; top: 22px; bottom: 22px; }
  .dt-item { grid-template-columns: 50px 1fr; gap: 14px; padding: 18px 0; }
  .dt-day { padding-left: 30px; font-size: 9.5px; }
  .dt-day::before { left: 14px; width: 12px; height: 12px; border-width: 2.5px; }
  .dt-text { font-size: 1.05rem; }
  .disappear__close p { font-size: 1.15rem; }

  /* Problem bento: ensure no awkward spans */
  .problem-grid { gap: 12px; }
  .p-card { padding: 20px; border-radius: 18px; }
  .p-card .p-text { font-size: 15.5px; }
  .p-card.is-dark .p-text { font-size: 1.1rem; line-height: 1.3; }

  /* Diff row: stack the plus block on top */
  .diff-row { grid-template-columns: 56px 1fr; gap: 16px; padding: 22px 20px; border-radius: 20px; }
  .diff-row__num { width: 56px; height: 56px; font-size: 36px; border-radius: 14px; }
  .diff-row__num::before { inset: 4px; border-radius: 10px; }
  .diff-row__body h3 { font-size: 1.2rem; }
  .diff-row__body p { font-size: 15px; }

  /* Offer hero card */
  .offer__hero-card { padding: 36px 22px; border-radius: 22px; }
  .offer__hero-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
  .offer__hero-card p { font-size: 15.5px; }
  .offer__pillars { grid-template-columns: 1fr 1fr; }
  .offer__pillar { padding: 22px 18px; }
  .offer__pillar .pl-num { font-size: 19px; }

  /* Outcomes TOC: tighter */
  .toc-row { grid-template-columns: 50px 1fr 28px; gap: 14px; padding: 22px 0; }
  .toc-num { font-size: 1.7rem; }
  .toc-body h3 { font-size: 1.1rem; }
  .toc-body p { font-size: 14.5px; }
  .toc-arrow { width: 32px; height: 32px; }
  .toc-row:hover { padding-left: 8px; }

  /* Imagine list */
  .imagine-list li { font-size: 1rem; padding: 18px 4px; grid-template-columns: 38px 1fr; gap: 14px; }
  .imagine-list li .check { width: 30px; height: 30px; }

  /* Agenda items more compact + center-aligned on mobile */
  .ag-item { padding: 22px 18px; border-radius: 18px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .ag-item .ag-ring { width: 48px; height: 48px; margin-bottom: 16px; font-size: 12px; }
  .ag-item h3 { font-size: 16px; }
  .ag-item p { font-size: 14px; }

  /* Bonuses: stack already, slim padding */
  .b-card { padding: 22px; border-radius: 20px; }
  .b-card .b-document { aspect-ratio: 16/10; }

  /* Authority: photo + bullets */
  .auth-photo-stack { max-width: 320px; }
  .auth-photo-stack::before { transform: rotate(-2deg) translate(-4px, 6px); border-radius: 24px; }
  .auth-photo-stack::after { transform: rotate(1.5deg) translate(4px, -4px); border-radius: 24px; }
  .auth-nameplate { padding: 16px 18px; left: 14px; right: 14px; bottom: 14px; }
  .auth-nameplate .name { font-size: 16px; }
  .auth-nameplate .sub { font-size: 9.5px; }
  .auth-nameplate .crest { width: 36px; height: 36px; font-size: 14px; }
  .auth-nameplate__credentials .crd { font-size: 8.5px; padding: 3px 8px; letter-spacing: 0.14em; }
  .auth-bullet { padding: 16px 18px; grid-template-columns: 40px 1fr; gap: 14px; }
  .auth-bullet .ic { width: 36px; height: 36px; }
  .auth-bullet h3 { font-size: 15px; }
  .auth-title { font-size: 1.7rem; }

  /* Before / After */
  .ba-col { padding: 22px 18px; border-radius: 20px; }
  .ba-col h3 { font-size: 1.1rem; margin-bottom: 16px; }
  .ba-col li { font-size: 14.5px; }

  /* Process */
  .ps-item { padding: 22px 20px; border-radius: 18px; }
  .ps-item h3 { font-size: 17px; }

  /* Qualification: bigger top padding to clear floating badge */
  .qual-card { padding: 60px 22px 28px; border-radius: 22px; }
  .qual-card .qual-badge { top: -24px; left: 22px; width: 48px; height: 48px; border-radius: 14px; }
  .qual-card .qual-badge svg { width: 20px; height: 20px; }
  .qual-card h3 { font-size: 18px; margin-bottom: 18px; }
  .qual-card li { font-size: 14.5px; }

  /* Testimonial placeholder */
  .testi-placeholder { padding: 42px 24px; border-radius: 22px; }
  .testi-placeholder__ic { width: 56px; height: 56px; border-radius: 16px; }
  .testi-placeholder__ic svg { width: 24px; height: 24px; }
  .testi-placeholder h3 { font-size: 1.15rem; }
  .testi-placeholder p { font-size: 14.5px; }

  /* FAQ */
  .faq-q { padding: 18px 18px; font-size: 15px; gap: 14px; }
  .faq-icon { width: 28px; height: 28px; }
  .faq-icon::before { top: 13.25px; }
  .faq-icon::after { left: 13.25px; }
  .faq-a-inner { padding: 0 18px 18px; font-size: 14.5px; }

  /* Form */
  .final { padding-bottom: 110px; }
  .form-card { padding: 22px 18px; border-radius: 22px; }
  .form-card__head h3 { font-size: 16px; }
  .form-card__head p { font-size: 12px; }
  .field input, .field select, .field textarea { font-size: 15px; padding: 12px 14px; min-height: 48px; }
  .pill { padding: 11px 16px; min-height: 44px; font-size: 14.5px; }

  /* Scarcity strip */
  .scarcity-strip { padding: 14px 0; }
  .scarcity-strip__inner { gap: 8px 12px; font-size: 9.5px; flex-wrap: wrap; justify-content: center; padding: 0 14px; }

  /* Footer single column */
  .footer { padding: 44px 0 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { font-size: 12px; flex-direction: column; gap: 8px; }

  /* Buttons stay tappable */
  .btn { min-height: 52px; padding: 14px 24px; font-size: 14.5px; }
  .submit-row .btn { width: 100%; }

  /* CTA meta below buttons: shrink + allow wrap so it doesn't bust the viewport */
  .cta-meta {
    font-size: 10px;
    letter-spacing: 0.1em;
    gap: 8px;
    padding: 0 8px;
    line-height: 1.5;
  }
  /* cta-stack already centers but force tight constraint */
  .cta-stack { width: 100%; }
  .cta-stack .cta-meta { width: 100%; }
}

@media (max-width: 400px) {
  :root { --pad-x-mobile: 16px; }
  .hero h1 { font-size: 1.85rem; }
  /* Drop the bottom chip on very narrow screens to keep photo plate readable */
  .hero__chip--3 { display: none; }
  .hero__chip--1, .hero__chip--2 { font-size: 11px; padding: 6px 10px; }
  .nav__brand .brand-name { font-size: 14px; }
  .nav__brand img { width: 32px; height: 32px; }
  .btn-nav { padding: 7px 12px; font-size: 12px; }
  /* Stat band stack at extreme narrow */
  .hero__stat-band { grid-template-columns: 1fr; }
}
