/* Inspire Marketing AI: design system, Yaniv's palette call 2026-09-01.
   White base, deep forest green, one gold accent, warm brown-tinted neutrals.
   Gold is decoration and on-dark text only; it never carries body text on light. */

:root {
  --ink: #16332A;        /* deep forest, text and dark bands */
  --brand: #17573F;      /* rich green, buttons and focus */
  --brand-deep: #104130; /* button hover */
  --gold: #D4AF37;       /* the one accent: dots, underlines, marks (Yaniv's call, classic gold) */
  --gold-dark: #8A6B1F;  /* gold that passes contrast on light backgrounds */
  --bg: #F7F5F0;         /* warm bone with the brown touch */
  --card: #FFFFFF;
  --soft: #6B6459;       /* warm gray-brown */
  --border: #E6E1D6;
  --tint: #F3EFE6;       /* deeper bone for side panels and strips */
  --green: #087A55;
  --yellow: #F5B942;
  --radius-card: 16px;
  --radius-btn: 12px;
  --maxw: 1180px;
  --maxw-text: 680px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  line-height: 29px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
p a, li a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--maxw-text); }

section { padding: 96px 0; }
@media (max-width: 767px) { section { padding: 64px 0; } body { font-size: 17px; line-height: 27px; } }

h1, h2, h3 { letter-spacing: -0.02em; }
h1 { font-size: 64px; line-height: 68px; font-weight: 750; }
h2 { font-size: 44px; line-height: 50px; font-weight: 700; }
h3 { font-size: 26px; line-height: 34px; font-weight: 700; }
@media (max-width: 767px) {
  h1 { font-size: 42px; line-height: 46px; }
  h2 { font-size: 32px; line-height: 38px; }
  h3 { font-size: 23px; line-height: 30px; }
}

.soft { color: var(--soft); }
.small { font-size: 14px; line-height: 21px; }
.eyebrow {
  font-size: 13px; font-weight: 650; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 26px; border-radius: var(--radius-btn);
  font-size: 16px; font-weight: 650; font-family: inherit; cursor: pointer;
  border: 1px solid transparent; text-decoration: none !important;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); }
/* On dark green bands the green button vanishes; the gold accent carries the CTA there. */
.band-navy .btn-primary, .card-navy .btn-primary {
  background: var(--gold); color: var(--ink);
}
.band-navy .btn-primary:hover, .card-navy .btn-primary:hover { background: #C09B2A; }
.btn-primary::after { content: "\2192"; font-weight: 400; }
.btn-secondary { background: var(--card); color: var(--ink); border-color: var(--ink); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--brand); outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40; background: var(--card);
  border-bottom: 1px solid transparent; transition: border-color 0.2s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.site-header .wrap { display: flex; align-items: center; gap: 32px; height: 84px; }
.logo { display: inline-flex; align-items: center; white-space: nowrap; }
.logo img { height: 64px; width: auto; display: block; }
footer .logo img { height: 44px; }
@media (max-width: 767px) { .logo img { height: 50px; } }
.nav-links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav-links a { font-size: 16px; font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: var(--brand); }
.nav-cta { margin-left: 8px; min-height: 44px; padding: 10px 20px; }
.menu-btn { display: none; margin-left: auto; background: none; border: none; cursor: pointer; padding: 10px; }
.menu-btn svg { display: block; }
@media (max-width: 900px) {
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--card); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px;
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
  .nav-cta { margin-left: 0; }
}

/* Sticky mobile CTA bar */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 39;
  background: var(--card); border-top: 1px solid var(--border); padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.sticky-cta .btn { width: 100%; }
@media (max-width: 767px) { .sticky-cta.visible { display: block; } }

/* Hero */
.hero { padding: 72px 0 96px; background: var(--card); }
.hero .wrap { display: grid; grid-template-columns: 6fr 5fr; gap: 64px; align-items: center; }
.hero p.sub { font-size: 20px; line-height: 32px; margin: 22px 0 30px; max-width: 34ch; color: var(--soft); }
.hero-form { display: flex; gap: 12px; max-width: 520px; }
.hero-form input { flex: 1; }
.hero-note { margin-top: 14px; }
.hero-secondary { margin-top: 26px; display: inline-block; font-weight: 650; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-form { flex-direction: column; }
}

/* Video hero: full-bleed clip, premium dark-green fade, text centered on top */
.hero-video { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: 0; min-height: min(82dvh, 760px); display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(22,51,42,0.55) 0%, rgba(22,51,42,0.42) 45%, rgba(22,51,42,0.78) 100%),
    radial-gradient(ellipse at center, rgba(22,51,42,0.15) 0%, rgba(22,51,42,0.55) 100%);
}
.hero-video::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; z-index: 1; background: linear-gradient(180deg, rgba(247,245,240,0) 0%, var(--bg) 100%); }
.hero-video .hero-center { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; padding-top: 96px; padding-bottom: 150px; }
.hero-video .eyebrow { margin-bottom: 18px; }
.hero-video .hero-note { margin-top: 14px; }
.hero-video h1 { color: #fff; max-width: 19ch; text-shadow: 0 2px 24px rgba(0,0,0,0.25); font-family: "Poppins", "Inter", sans-serif; font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase; font-size: 58px; line-height: 64px; }
@media (max-width: 640px) { .hero-video h1 { font-size: 38px; line-height: 42px; } }
.hero-video .eyebrow { color: var(--gold); font-family: "Playfair Display", Georgia, serif; font-weight: 400; font-size: 15px; letter-spacing: 0.26em; }
.hero-video p.sub { color: #E6EDE8; max-width: 44ch; margin: 18px auto 26px; font-family: "Playfair Display", Georgia, serif; font-weight: 400; font-size: 22px; line-height: 34px; }
.hero-video .hero-form { margin: 0 auto; }
.hero-video .hero-form input { border: none; }
.hero-video .btn-primary { background: var(--gold); color: var(--ink); }
.hero-video .btn-primary:hover { background: #C09B2A; }
.hero-video .hero-note { color: #C3D2C7; }
.hero-video .hero-secondary { color: #fff; border-bottom-color: var(--gold); }
@media (max-width: 767px) { .hero-video .hero-center { padding-top: 64px; padding-bottom: 120px; } .hero-video { min-height: 70dvh; } }
@media (prefers-reduced-motion: reduce) { .hero-bg { display: none; } .hero-video { background: var(--ink) url("/assets/img/hero-poster.jpg") center / cover no-repeat; } }

/* Lead path stack (H-01, code-built, labeled) */
.leadpath { position: relative; }
.leadpath-label { font-size: 12px; letter-spacing: 0.16em; font-weight: 650; color: var(--soft); margin-bottom: 14px; text-transform: uppercase; }
.leadpath-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  font-weight: 600; font-size: 17px; box-shadow: 0 2px 10px rgba(23, 32, 51, 0.05);
}
.leadpath-card + .leadpath-card { margin-top: 12px; }
.leadpath-card:nth-child(odd) { margin-left: 26px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex: none; }
.leadpath .time { margin-left: auto; font-size: 13px; color: var(--soft); font-weight: 500; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) { .leadpath-card:nth-child(odd) { margin-left: 0; } }

/* Inputs */
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], select, textarea {
  font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-btn);
  padding: 12px 16px; min-height: 48px; width: 100%;
}
input::placeholder { color: #98A2B3; }
label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.field { margin-bottom: 18px; }
.field .err { display: none; color: #B42318; font-size: 14px; margin-top: 6px; }
.field.invalid .err { display: block; }
.field.invalid input { border-color: #B42318; }

/* Bands and cards */
.band-white { background: var(--card); }
.band-navy { background: var(--ink); color: #fff; }
.band-navy h2 { color: #fff; }
.band-navy .soft { color: #9DB3A4; }
.leak-band, .path-band { position: relative; overflow: hidden; }
.leak-band .leak-parallax, .path-band .path-parallax { position: absolute; inset: 0; z-index: 0; aspect-ratio: auto; height: auto; overflow: hidden; border: 0; border-radius: 0; margin: 0; }
.leak-band .leak-parallax img, .path-band .path-parallax img { position: absolute; left: 0; top: -20%; width: 100%; height: 140%; object-fit: cover; opacity: .36; filter: saturate(.6) contrast(1.05); will-change: transform; }
.leak-band::before, .path-band::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(22,51,42,.96) 0%, rgba(22,51,42,.88) 42%, rgba(22,51,42,.42) 75%, rgba(22,51,42,.62) 100%), linear-gradient(180deg, rgba(22,51,42,.9) 0%, rgba(22,51,42,0) 25%, rgba(22,51,42,0) 75%, rgba(22,51,42,.9) 100%); }
.leak-band > .wrap, .path-band > .wrap { position: relative; z-index: 2; }
.path-band .path-parallax img { opacity: .5; filter: saturate(.8) contrast(1.05); }
.path-band::before { background: linear-gradient(90deg, rgba(22,51,42,.9) 0%, rgba(22,51,42,.7) 40%, rgba(22,51,42,.35) 75%, rgba(22,51,42,.55) 100%), linear-gradient(180deg, rgba(22,51,42,.85) 0%, rgba(22,51,42,0) 30%, rgba(22,51,42,0) 70%, rgba(22,51,42,.85) 100%); }
.path-band .funnel-card { margin-top: 28px; color: var(--ink); box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.path-band .funnel-card .metric b { color: var(--ink); }
.path-band .funnel-card .metric b.up { color: var(--green); }
.path-band .funnel-card .soft { color: var(--soft); }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 32px;
}

/* Trust strip */
.trust-strip { padding: 44px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--tint); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.client-names { display: flex; gap: 40px; align-items: baseline; flex-wrap: wrap; }
.client-name { font-weight: 700; font-size: 19px; color: var(--soft); letter-spacing: 0.01em; }
.client-name small { display: block; font-weight: 500; font-size: 12.5px; letter-spacing: 0.04em; margin-top: 2px; }

/* Proof card */
.proof-card { display: grid; grid-template-columns: 5fr 4fr; gap: 0; overflow: hidden; padding: 0; }
.proof-main { padding: 40px; }
.proof-side { background: var(--tint); border-left: 1px solid var(--border); padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.metric b { display: block; font-size: 30px; font-weight: 750; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.metric span { font-size: 14px; color: var(--soft); }
.proof-label { font-size: 13px; font-weight: 650; letter-spacing: 0.14em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 14px; }
.badge { display: inline-block; font-size: 13px; font-weight: 600; color: #0B5B3F; background: #EAF3EC; border-radius: 999px; padding: 4px 12px; }
@media (max-width: 900px) { .proof-card { grid-template-columns: 1fr; } .proof-side { border-left: 0; border-top: 1px solid var(--border); } }

/* Founder */
.founder { background: var(--card); }
.founder .wrap { display: grid; grid-template-columns: 4fr 7fr; gap: 64px; align-items: center; }
.founder-photo { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo:not(:has(img)) { aspect-ratio: 1 / 1; max-width: 300px; }
.founder-monogram { font-size: 72px; font-weight: 750; color: #fff; }
.founder-contact { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 16px; line-height: 28px; }
@media (max-width: 900px) { .founder .wrap { grid-template-columns: 1fr; gap: 40px; } .founder-photo { max-width: 300px; } .founder-photo:not(:has(img)) { max-width: 200px; } }

/* Problem */
.break-line { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 36px 0; font-weight: 600; font-size: 16px; }
.break-line .step { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 10px 16px; }
.break-line .arrow { color: var(--soft); }
.break-line .broken { border-color: #F4B0A1; color: #B42318; }
.navy-box { background: var(--ink); color: #fff; border-radius: var(--radius-card); padding: 26px 32px; font-size: 21px; font-weight: 650; }
.stat-callout { border-left: 4px solid var(--gold); padding: 6px 0 6px 20px; font-size: 21px; font-weight: 650; margin: 30px 0; }

/* System grid */
.system-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 24px; }
.system-item { padding: 36px 40px 36px 0; border-top: 1px solid var(--border); }
.system-item .num { font-size: 15px; font-weight: 750; color: var(--gold-dark); font-variant-numeric: tabular-nums; }
.system-item h3 { margin: 8px 0 10px; }
.system-item p { color: var(--soft); font-size: 17px; line-height: 28px; }
@media (max-width: 900px) { .system-grid { grid-template-columns: 1fr; } .system-item { padding-right: 0; } }

/* Sample report mock (H-05, labeled) */
.report-mock { background: #fff; border-radius: var(--radius-card); padding: 28px; color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,0.25); }
.report-mock .mock-label { font-size: 11px; letter-spacing: 0.16em; font-weight: 700; color: var(--soft); text-transform: uppercase; margin-bottom: 16px; }
.mock-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-top: 1px solid var(--border); font-weight: 600; font-size: 15px; }
.mock-blur { filter: blur(5px); user-select: none; color: var(--soft); font-variant-numeric: tabular-nums; }
.tier { font-size: 13px; font-weight: 650; border-radius: 999px; padding: 3px 12px; }
.tier-strong { background: #EAF5F0; color: var(--green); }
.tier-leak { background: #FDF3DC; color: #8a6a12; }
.tier-broken { background: #FBEAE5; color: #B42318; }
.tier-look { background: #F0F1F3; color: var(--soft); }

/* Leak preview split */
.leak-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .leak-preview-grid { grid-template-columns: 1fr; gap: 48px; } }

/* Results grid */
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.result-card h3 { margin-bottom: 4px; }
.result-card .meta { color: var(--soft); font-size: 15px; margin-bottom: 20px; }
.result-card .big { font-size: 34px; font-weight: 750; letter-spacing: -0.02em; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.result-card .link { font-weight: 650; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
@media (max-width: 900px) { .results-grid { grid-template-columns: 1fr; } }

/* Fit filter */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.fit-grid .card h3 { margin-bottom: 18px; }
.fit-grid ul { list-style: none; }
.fit-grid li { padding: 9px 0 9px 30px; position: relative; font-size: 17px; line-height: 27px; }
.fit-good li::before { content: ""; position: absolute; left: 0; top: 15px; width: 14px; height: 14px; border-radius: 50%; background: #EAF5F0; border: 4px solid var(--green); }
.fit-bad li::before { content: ""; position: absolute; left: 2px; top: 17px; width: 12px; height: 12px; border-radius: 3px; background: var(--border); }
@media (max-width: 900px) { .fit-grid { grid-template-columns: 1fr; } }

/* Three things we do best */
.three-things { padding: 80px 0; }
.things-rows { margin-top: 40px; display: grid; gap: 56px; }
.thing-row { display: grid; grid-template-columns: 6fr 5fr; gap: 56px; align-items: center; }
.thing-row.flip .thing-pic { order: 2; }
.thing-row.flip .thing-text { order: 1; }
.thing-pic { border-radius: 18px; overflow: hidden; background: var(--tint); aspect-ratio: 4 / 3; box-shadow: 0 18px 44px rgba(22,51,42,.12); }
.thing-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thing-pic { position: relative; }
.fx { position: absolute; inset: 0; pointer-events: none; }
.chip { position: absolute; width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 12px 30px rgba(16,65,48,.22), inset 0 1px 0 rgba(255,255,255,.9); backdrop-filter: blur(10px) saturate(1.3); -webkit-backdrop-filter: blur(10px) saturate(1.3); animation: chipfloat 6s ease-in-out infinite; }
.chip svg { width: 32px; height: 32px; }
.chip::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%); background-size: 250% 100%; animation: sheen 5s linear infinite; }
.holo { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; color: #fff; font-size: 13px; line-height: 1.2; background: linear-gradient(135deg, rgba(23,87,63,.85), rgba(16,65,48,.7)); border: 1px solid rgba(212,175,55,.55); box-shadow: 0 10px 28px rgba(16,65,48,.3), 0 0 0 1px rgba(255,255,255,.12) inset; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); animation: chipfloat 7s ease-in-out infinite; overflow: hidden; }
.holo::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.07) 0 1px, transparent 1px 4px); }
.holo::after { content: ""; position: absolute; inset: -40% -60%; background: linear-gradient(115deg, transparent 40%, rgba(212,175,55,.35) 50%, transparent 60%); animation: sheen 4.5s linear infinite; }
.holo b { display: block; font-weight: 700; color: var(--gold); }
.holo i { font-style: normal; color: #fff; opacity: .95; }
.holo-a { flex-direction: column; align-items: flex-start; gap: 2px; }
.holo-search { color: var(--gold); padding: 9px 14px 9px 12px; }
.holo-search svg { width: 16px; height: 16px; flex: none; }
.holo-window { flex-wrap: wrap; gap: 5px; width: 120px; padding: 10px; align-content: flex-start; }
.holo-window em { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.7); }
.holo-window em:first-child { background: var(--gold); }
.holo-window u { display: block; width: 100%; height: 6px; border-radius: 3px; background: rgba(255,255,255,.35); text-decoration: none; margin-top: 4px; }
.holo-window u:last-child { width: 60%; background: var(--gold); }
.cursor { position: absolute; width: 26px; height: 26px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.35)); animation: cursormove 9s ease-in-out infinite; }
.cursor svg { width: 100%; height: 100%; }
.grid-glow { position: absolute; right: -10%; bottom: -10%; width: 60%; height: 55%; background: radial-gradient(closest-side, rgba(212,175,55,.22), transparent 70%), repeating-linear-gradient(0deg, rgba(212,175,55,.14) 0 1px, transparent 1px 22px), repeating-linear-gradient(90deg, rgba(212,175,55,.14) 0 1px, transparent 1px 22px); -webkit-mask-image: radial-gradient(closest-side, #000 20%, transparent 100%); mask-image: radial-gradient(closest-side, #000 20%, transparent 100%); transform: perspective(500px) rotateX(55deg); transform-origin: bottom; opacity: .9; }
/* placement per row */
.chip-fb { left: 6%; top: 10%; animation-delay: -1s; }
.chip-ig { right: 8%; top: 16%; animation-delay: -3s; }
.chip-meta { right: 22%; bottom: 14%; animation-delay: -5s; }
.holo-a { left: 7%; bottom: 14%; animation-delay: -2s; }
.chip-g { left: 8%; top: 12%; animation-delay: -2s; }
.holo-search { left: 6%; bottom: 16%; animation-delay: -4s; }
.chip-pin { right: 10%; top: 12%; animation-delay: -1s; }
.chip-call { right: 12%; bottom: 14%; animation-delay: -3s; }
.chip-code { left: 7%; top: 12%; animation-delay: -1.5s; }
.holo-window { right: 8%; top: 14%; animation-delay: -3.5s; }
.chip-bolt { left: 9%; bottom: 14%; animation-delay: -5s; }
.cursor { right: 26%; bottom: 30%; }
@keyframes chipfloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1.5deg); } }
@keyframes sheen { 0% { background-position: 200% 0; transform: translateX(-60%); } 100% { background-position: -100% 0; transform: translateX(60%); } }
@keyframes cursormove { 0%,100% { transform: translate(0,0); } 30% { transform: translate(-70px,-40px); } 60% { transform: translate(30px,-90px); } }
@media (max-width: 600px) { .chip { width: 46px; height: 46px; border-radius: 14px; } .chip svg { width: 24px; height: 24px; } .holo { font-size: 12px; padding: 8px 11px; } .holo-window { width: 96px; } }
@media (prefers-reduced-motion: reduce) { .chip, .holo, .cursor, .chip::after, .holo::after { animation: none; } }
.thing-text { max-width: 480px; }
.thing-row.flip .thing-text { justify-self: end; }
.proof-wrap { position: relative; }
.proof-seal { position: absolute; top: -86px; right: -74px; width: 172px; height: auto; z-index: 3; transform: rotate(9deg); filter: drop-shadow(0 12px 22px rgba(60,40,10,.28)); pointer-events: none; }
@media (max-width: 900px) { .proof-seal { width: 110px; top: -48px; right: 8px; } }
.things-title { text-align: center; }
.thing-logo { display: inline-flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 750; letter-spacing: -0.01em; }
.thing-logo svg { width: 30px; height: 30px; }
.icon-chart-network .cn-line, .icon-chart-network .cn-axis { stroke-dasharray: 1; stroke-dashoffset: 0; }
.icon-chart-network .cn-dot { transform-origin: center; transform-box: fill-box; }
.thing-row.in .icon-chart-network .cn-line, .thing-row.in .icon-chart-network .cn-axis { animation: cnDraw .7s cubic-bezier(.65,0,.35,1) both; }
.thing-row.in .icon-chart-network .cn-dot { animation: cnPop .45s cubic-bezier(.22,1,.36,1) both; }
.icon-chart-network .cn-axis { animation-delay: 0s; }
.thing-row.in .icon-chart-network .cn-line:nth-of-type(1) { animation-delay: .3s; }
.thing-row.in .icon-chart-network .cn-line:nth-of-type(2) { animation-delay: .4s; }
.thing-row.in .icon-chart-network .cn-line:nth-of-type(3) { animation-delay: .5s; }
.thing-row.in .icon-chart-network .cn-dot:nth-of-type(1) { animation-delay: .55s; }
.thing-row.in .icon-chart-network .cn-dot:nth-of-type(2) { animation-delay: .65s; }
.thing-row.in .icon-chart-network .cn-dot:nth-of-type(3) { animation-delay: .75s; }
.thing-logo:hover .icon-chart-network .cn-line, .thing-logo:hover .icon-chart-network .cn-axis { animation: cnDraw .6s cubic-bezier(.65,0,.35,1) both; }
.thing-logo:hover .icon-chart-network .cn-dot { animation: cnPop .4s cubic-bezier(.22,1,.36,1) both; }
@keyframes cnDraw { from { stroke-dashoffset: 1; opacity: .5; } to { stroke-dashoffset: 0; opacity: 1; } }
@keyframes cnPop { from { transform: scale(0); opacity: .4; } to { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .icon-chart-network * { animation: none !important; stroke-dashoffset: 0 !important; } }
.thing-logo i { font-style: normal; }
.thing-cta { margin-top: 22px; }
.things-rows { margin-top: 48px; }
.thing-text h3 { margin: 12px 0 12px; font-size: clamp(26px, 3vw, 34px); }
.thing-text p { color: var(--soft); font-size: 17px; line-height: 28px; }
@media (max-width: 900px) {
  .things-rows { gap: 40px; }
  .thing-row, .thing-row.flip { grid-template-columns: 1fr; gap: 20px; }
  .thing-row.flip .thing-pic { order: 1; }
  .thing-row.flip .thing-text { order: 2; justify-self: start; }
}

/* Self-qualification list */
.tweet-wrap { display: flex; justify-content: center; margin-top: 8px; }
.tweet-card { width: 100%; max-width: 560px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px; box-shadow: 0 14px 40px rgba(22,51,42,.08); font-size: 15px; }
.tweet-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.tweet-user { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.tweet-user img { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); display: block; }
.tweet-user span { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.tweet-user b { font-weight: 650; display: inline-flex; align-items: center; gap: 4px; }
.tweet-verified { width: 16px; height: 16px; flex: none; }
.tweet-user small { font-size: 14px; color: var(--soft); }
.tweet-x { color: var(--soft); transition: color .2s, transform .2s; display: inline-flex; margin-top: 2px; }
.tweet-x:hover { color: var(--ink); transform: scale(1.05); }
.tweet-x svg { width: 20px; height: 20px; }
.tweet-body { margin-top: 16px; font-size: 16px; line-height: 25px; color: var(--ink); }
.tweet-body p + p { margin-top: 14px; }
.tweet-body p:first-child { font-weight: 650; }
.tweet-body p:last-child { font-weight: 650; }
.tweet-foot { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 13.5px; }
.tweet-foot a { color: var(--soft); text-decoration: none; }
.tweet-foot a:hover { color: var(--ink); text-decoration: underline; }

/* Next steps strip */
.next-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 40px; }
.next-steps .num { width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 15px; }
.next-steps h3 { font-size: 19px; line-height: 26px; margin-bottom: 6px; }
.next-steps p { font-size: 15.5px; line-height: 25px; color: var(--soft); }
@media (max-width: 900px) { .next-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .next-steps { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: var(--maxw-text); margin: 36px auto 0; }
.faq details { border-top: 1px solid var(--border); }
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary { cursor: pointer; font-weight: 650; font-size: 18px; padding: 20px 36px 20px 0; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 24px; font-weight: 400; color: var(--brand); }
.faq details[open] summary::after { content: "\2212"; }
.faq .a { padding: 0 0 22px; color: var(--soft); max-width: 62ch; }

/* Final CTA */
.final-cta .card-navy {
  background: var(--ink); color: #fff; border-radius: var(--radius-card);
  padding: 64px; text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta form { display: flex; gap: 12px; max-width: 560px; margin: 30px auto 14px; }
.final-cta input { border: none; }
@media (max-width: 700px) { .final-cta .card-navy { padding: 40px 24px; } .final-cta form { flex-direction: column; } }

/* Footer: leak-report card on top, brand + link columns, legal bar */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 80px 0 40px; }
.footer-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 48px; display: grid; grid-template-columns: 6fr 5fr; gap: 48px; align-items: center;
  box-shadow: 0 18px 50px rgba(22,51,42,0.06);
}
.footer-card h3 { font-size: 30px; line-height: 38px; }
.footer-form { display: flex; gap: 12px; max-width: 520px; }
.footer-form input { flex: 1; }
.footer-card-pic { display: flex; justify-content: flex-end; }
.pic-frame { position: relative; width: 100%; max-width: 420px; }
.pic-frame::before { content: ""; position: absolute; inset: 0; border-radius: 16px; background: var(--brand); opacity: 0.16; transform: rotate(5deg); }
.pic-frame img { position: relative; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; border: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-top: 72px; }
.footer-brand .logo img { height: 44px; }
.footer-brand p { max-width: 38ch; font-size: 16px; line-height: 27px; }
.footer-social { list-style: none; display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border); background: var(--card); color: var(--brand); }
.footer-social a:hover { background: var(--brand); color: #fff; }
.footer-grid h4 { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft); margin-bottom: 16px; font-weight: 650; }
.footer-grid a, .footer-grid .contact-line { display: block; font-size: 16px; line-height: 30px; }
.footer-grid a:hover { color: var(--brand); }
.contact-line { display: flex !important; align-items: center; gap: 10px; }
a.contact-line { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.contact-line svg { flex: none; color: var(--gold-dark); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 14px; }
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom a { color: var(--soft); font-size: 14px; }
.footer-bottom a:hover { color: var(--brand); }
@media (max-width: 900px) {
  .footer-card { grid-template-columns: 1fr; padding: 32px; }
  .footer-card-pic { display: none; }
  .footer-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-card h3 { font-size: 26px; line-height: 33px; } }

/* Wizard (audit page) */
.wizard-shell { min-height: 100dvh; display: flex; flex-direction: column; background: var(--bg); }
.wizard-top { display: flex; align-items: center; gap: 20px; padding: 20px 24px; }
.progress { flex: 1; height: 6px; background: var(--border); border-radius: 999px; overflow: hidden; max-width: 420px; }
.progress i { display: block; height: 100%; background: var(--brand); border-radius: 999px; transition: width 0.3s ease; }
.wizard-main { flex: 1; display: flex; align-items: flex-start; justify-content: center; padding: 40px 24px 120px; }
.wizard-step { width: 100%; max-width: 560px; display: none; }
.wizard-step.active { display: block; }
.step-label { font-size: 13px; font-weight: 650; letter-spacing: 0.14em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 12px; }
.wizard-step h1 { font-size: 34px; line-height: 42px; margin-bottom: 26px; }
.choices { display: grid; gap: 10px; }
.choice {
  display: block; width: 100%; text-align: left; font-family: inherit; font-size: 17px; font-weight: 600;
  background: var(--card); color: var(--ink); border: 1.5px solid var(--border); border-radius: var(--radius-btn);
  padding: 15px 18px; min-height: 52px; cursor: pointer; transition: border-color 0.12s ease, transform 0.12s ease;
}
.choice:hover { border-color: var(--ink); }
.choice:active { transform: scale(0.98); }
.choice.selected { border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand); }
.choices-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choices-row .choice { width: auto; flex: 1 1 auto; text-align: center; }
.wizard-nav { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.back-link { background: none; border: none; font-family: inherit; font-size: 16px; font-weight: 600; color: var(--soft); cursor: pointer; padding: 10px 0; }
.q-sub { font-weight: 650; font-size: 18px; margin: 26px 0 12px; }

/* First look rows */
.look-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 18px 0; border-top: 1px solid var(--border); }
.look-row b { font-size: 17px; }
.look-row p { font-size: 15px; color: var(--soft); margin-top: 4px; max-width: 40ch; }

/* Handwritten line (founder section) */
.handwrite-row { display: flex; align-items: center; gap: 18px; }
.handwrite-markbox { flex: none; width: 56px; height: 56px; color: var(--brand); }
.handwrite-mark { width: 100%; height: 100%; display: block; overflow: visible; }
.handwrite { color: var(--brand); font-size: 22px; line-height: 1.3; flex: 1; min-width: 0; }
.handwrite .gold { color: var(--gold); }
.signature-mark { display: block; margin-top: 14px; }
.handwrite-svg { display: block; width: 100%; height: auto; overflow: visible; }
@media (max-width: 560px) { .handwrite-markbox { width: 44px; height: 44px; } .handwrite-row { gap: 12px; } }

/* Parallax bands: CSS scroll-driven where supported, plain image everywhere else */
.parallax { position: relative; overflow: hidden; aspect-ratio: 21 / 9; border-radius: var(--radius-card); border: 1px solid var(--border); margin-bottom: 44px; }
.parallax img { position: absolute; left: 0; top: -20%; width: 100%; height: 140%; object-fit: cover; will-change: transform; }

/* Brown band: What Happens Next, with a gold line that draws across the four steps */
.band-brown { background: #5A3A1F; color: var(--gold); }
.band-brown .next-steps { position: relative; }
.band-brown .next-steps > .steps-line { position: absolute; left: 17px; right: calc(25% - 41px); top: 16px; height: 2px; z-index: 0; pointer-events: none; }
.steps-line svg { width: 100%; height: 100%; display: block; overflow: visible; }
.steps-line line { stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.band-brown .next-steps > div { position: relative; z-index: 1; }
.band-brown .next-steps .num { position: relative; background: var(--brand); color: #fff; box-shadow: 0 0 0 6px #5A3A1F; transform: scale(0.4); opacity: 0; }
.band-brown .next-steps .num svg { position: absolute; inset: -4px; width: calc(100% + 8px); height: calc(100% + 8px); overflow: visible; }
.band-brown .next-steps .num circle { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-dasharray: 1; stroke-dashoffset: 1; transform: rotate(-90deg); transform-origin: center; }
.band-brown .next-steps .num i { font-style: normal; position: relative; }
.band-brown h2, .band-brown .next-steps h3, .band-brown .next-steps p { clip-path: inset(0 100% 0 0); }
.band-brown.in h2 { transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1) 0s; clip-path: inset(0 0 0 0); }
.band-brown.in .steps-line line { transition: stroke-dashoffset 1.8s cubic-bezier(0.65, 0, 0.35, 1) 0.5s; stroke-dashoffset: 0; }
.band-brown.in .next-steps .num { transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease; transform: scale(1); opacity: 1; }
.band-brown.in .next-steps .num circle { transition: stroke-dashoffset 0.7s cubic-bezier(0.65, 0, 0.35, 1); stroke-dashoffset: 0; }
.band-brown.in .next-steps h3 { transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1); clip-path: inset(0 0 0 0); }
.band-brown.in .next-steps p { transition: clip-path 0.9s cubic-bezier(0.65, 0, 0.35, 1); clip-path: inset(0 0 0 0); }
.band-brown.in .next-steps > div:nth-child(2) .num, .band-brown.in .next-steps > div:nth-child(2) .num circle { transition-delay: 0.5s; }
.band-brown.in .next-steps > div:nth-child(3) .num, .band-brown.in .next-steps > div:nth-child(3) .num circle { transition-delay: 1.0s; }
.band-brown.in .next-steps > div:nth-child(4) .num, .band-brown.in .next-steps > div:nth-child(4) .num circle { transition-delay: 1.5s; }
.band-brown.in .next-steps > div:nth-child(5) .num, .band-brown.in .next-steps > div:nth-child(5) .num circle { transition-delay: 2.0s; }
.band-brown.in .next-steps > div:nth-child(2) h3 { transition-delay: 0.9s; } .band-brown.in .next-steps > div:nth-child(2) p { transition-delay: 1.2s; }
.band-brown.in .next-steps > div:nth-child(3) h3 { transition-delay: 1.4s; } .band-brown.in .next-steps > div:nth-child(3) p { transition-delay: 1.7s; }
.band-brown.in .next-steps > div:nth-child(4) h3 { transition-delay: 1.9s; } .band-brown.in .next-steps > div:nth-child(4) p { transition-delay: 2.2s; }
.band-brown.in .next-steps > div:nth-child(5) h3 { transition-delay: 2.4s; } .band-brown.in .next-steps > div:nth-child(5) p { transition-delay: 2.7s; }
@media (max-width: 900px) { .steps-line { display: none; } .band-brown .next-steps .num { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .steps-line line, .band-brown .next-steps .num circle { stroke-dashoffset: 0; } .band-brown .next-steps .num { transform: none; opacity: 1; } .band-brown h2, .band-brown .next-steps h3, .band-brown .next-steps p { clip-path: none; } }
.band-brown h2 { color: var(--gold); }
.band-brown .next-steps h3 { color: var(--gold); }
.band-brown .next-steps p { color: #E6C766; }

/* Footer photo wall behind the leak card */
.site-footer { position: relative; overflow: hidden; }
.footer-wall { position: absolute; left: 0; right: 0; top: 0; height: 520px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; z-index: 0; opacity: 0.32; }
.footer-wall img { width: 100%; height: 100%; object-fit: cover; }
.footer-wall::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(247,245,240,0.35) 0%, rgba(247,245,240,0.55) 55%, var(--bg) 100%); }
.site-footer .wrap { position: relative; z-index: 1; }
@media (max-width: 900px) { .footer-wall { grid-template-columns: repeat(3, 1fr); height: 420px; } }

/* Section photography (generated, editorial, never presented as client proof) */
.photo-band, .system-item .pic, .pillar-pic { height: auto; }
.photo-band { display: block; width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--radius-card); border: 1px solid var(--border); margin-bottom: 44px; }
.system-item .pic { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); margin-bottom: 20px; }
.system-grid.with-pics { grid-template-columns: repeat(4, 1fr); gap: 28px; }
.system-grid.with-pics .system-item { padding: 0; border-top: 0; }
@media (max-width: 900px) { .system-grid.with-pics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .system-grid.with-pics { grid-template-columns: 1fr; } }
.final-cta .card-navy.has-photo {
  background: linear-gradient(rgba(22,51,42,0.72), rgba(22,51,42,0.82)), url("/assets/img/08-dream.jpg") center / cover no-repeat;
}
.pillar-pic { width: 100%; max-width: 420px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); margin-bottom: 20px; }

/* Full-funnel table (the August money trail) */
.funnel-card { padding: 44px; }
.funnel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 40px; margin-top: 30px; }
.funnel-grid .metric b { font-size: 36px; }
@media (max-width: 900px) { .funnel-grid { grid-template-columns: 1fr 1fr; } .funnel-card { padding: 28px; } }
@media (max-width: 560px) { .funnel-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Proof photos (redacted, real) */
.proof-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.proof-photo img { border-radius: var(--radius-card); border: 1px solid var(--border); width: 100%; height: auto; }
.proof-photo figcaption { font-size: 14px; line-height: 21px; color: var(--soft); margin-top: 10px; }
@media (max-width: 700px) { .proof-photos { grid-template-columns: 1fr; } }

/* Book page */
.book-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } }
.checklist { list-style: none; margin: 18px 0; }
.checklist li { padding: 7px 0 7px 30px; position: relative; }
.checklist li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Utility */
.center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Case study card (USHB): partial src/partials/case-card.html, used on index + results */
.case-eyebrow { text-align: center; margin-bottom: 26px; }
.case-shell { position: relative; }
.case-card { display: grid; grid-template-columns: 1fr 320px; gap: 0; overflow: hidden; padding: 0; }
.case-main { padding: 34px 32px; display: grid; grid-template-columns: 1fr 244px; gap: 28px; align-items: center; }
.case-main .btn { padding: 12px 20px; }
.case-title { font-size: 28px; line-height: 36px; font-weight: 400; letter-spacing: -0.01em; color: var(--ink); margin: 0; }
.case-title b { font-family: "Poppins", "Inter", sans-serif; font-weight: 800; }
.case-title b.up, .metric b.up { color: var(--green); }
.case-title-soft { white-space: nowrap; color: var(--gold-dark); font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 400; }
.case-sub { font-size: 15px; line-height: 24px; margin-top: 14px; max-width: 40ch; }
.case-deck { position: relative; aspect-ratio: 3 / 4; margin: 10px 12px 0 0; }
.deck-card { position: absolute; inset: 0; border: 1px solid var(--border); padding: 0; margin: 0; background: var(--tint); border-radius: 12px; overflow: hidden; cursor: pointer; text-align: left; transition: transform .55s cubic-bezier(.22,1,.36,1), filter .55s ease, box-shadow .55s ease; }
.deck-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deck-card.pos-sheet img { object-position: center 62%; transform: scale(1.5); transform-origin: 94% 60%; }
.deck-card.pos-chat img { object-position: center 40%; transform: scale(1.55); transform-origin: 50% 50%; }
.deck-card.is-front { z-index: 2; transform: none; box-shadow: 0 14px 30px rgba(22,51,42,.16); }
.deck-card.is-back { z-index: 1; transform: translate(12px, -12px) rotate(2deg) scale(.97); filter: brightness(.9); box-shadow: none; }
.deck-card.is-back .case-shot-tag { opacity: 0; }
.deck-card:hover.is-back { filter: brightness(1); }
.case-shot-tag { position: absolute; left: 10px; bottom: 10px; font-size: 12px; font-weight: 650; color: #fff; background: rgba(22,51,42,.86); padding: 4px 10px; border-radius: 999px; transition: opacity .3s; }
.deck-dots { position: absolute; z-index: 3; left: 50%; bottom: -18px; transform: translateX(-50%); display: flex; gap: 6px; }
.deck-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--border); display: block; transition: background .3s, width .3s; }
.deck-dots i.on { background: var(--gold); width: 18px; border-radius: 3px; }
.case-ctas { display: flex; align-items: center; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.case-or { font-size: 13px; font-weight: 650; letter-spacing: .12em; color: var(--soft); text-transform: uppercase; }
.case-side { background: var(--tint); border-left: 1px solid var(--border); display: flex; flex-direction: column; }
.case-logo { padding: 22px 24px 18px; display: flex; justify-content: flex-start; border-bottom: 1px solid var(--border); background: var(--card); }
.case-logo img { width: 168px; height: auto; }
.case-facts { margin: 0; display: flex; flex-direction: column; flex: 1; }
.case-facts > div { padding: 10px 24px; border-bottom: 1px solid var(--border); flex: 1; display: flex; flex-direction: column; justify-content: center; }
.case-facts > div:last-child { border-bottom: 0; }
.case-facts dt { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1px; }
.case-facts dd { margin: 0; font-size: 15px; font-weight: 650; color: var(--ink); line-height: 20px; }
.case-seal-row { display: flex; justify-content: center; margin: 6px 0 -34px; }
.case-seal { width: 210px; height: auto; filter: drop-shadow(0 10px 18px rgba(60,40,10,.22)); }
.case-first { padding-top: 56px; }
@media (max-width: 1100px) { .case-main { grid-template-columns: 1fr 220px; gap: 24px; } .case-ctas { flex-direction: column; align-items: stretch; } }
@media (max-width: 900px) {
  .case-card { grid-template-columns: 1fr; }
  .case-main { grid-template-columns: 1fr; padding: 28px 22px; gap: 28px; }
  .case-seal { width: 160px; }
  .case-eyebrow { font-size: 12px; letter-spacing: 0.1em; }
  .case-deck { max-width: 280px; width: 100%; margin: 0 auto; }
  .case-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .case-ctas .btn { justify-content: center; }
  .case-or { text-align: center; }
  .case-side { border-left: 0; border-top: 1px solid var(--border); }
  .case-title { font-size: 24px; line-height: 32px; }
  .case-logo { justify-content: center; }
  .case-facts > div { padding: 10px 22px; }
}
@media (prefers-reduced-motion: reduce) { .deck-card { transition: none; } }

/* What Happens Next: white step titles, step 1 is the one clickable link */
.band-brown .next-steps h3 { color: #fff; }
.band-brown .next-steps p { color: #E9D9C4; }
.step-link { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 6px; transition: color .2s, text-decoration-color .2s; }
.step-link::after { content: " \2197"; font-weight: 400; }
.step-link:hover { color: #fff; text-decoration-color: #fff; }

/* Full Path card: trucks photo lives INSIDE the numbers card as a soft parallax layer */
.funnel-photo { position: relative; overflow: hidden; margin-top: 28px; }
.funnel-photo .card-parallax { position: absolute; inset: 0; z-index: 0; aspect-ratio: auto; height: auto; overflow: hidden; border: 0; border-radius: 0; margin: 0; }
.funnel-photo .card-parallax img { position: absolute; left: 0; top: -20%; width: 100%; height: 140%; object-fit: cover; opacity: 1; will-change: transform; }
.funnel-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.8) 45%, rgba(255,255,255,.66) 75%, rgba(255,255,255,.58) 100%); }
.funnel-photo > * { position: relative; z-index: 2; }
.funnel-photo > .card-parallax { z-index: 0; }

/* Hero video on small screens: full-bleed clean video, one headline, one button (NeatMetric-style) */
.hero-mobile-cta { display: none; }
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-video { min-height: min(68dvh, 620px); }
  .hero-bg { object-position: 42% 50%; }
}
@media (max-width: 767px) {
  .hero-video { min-height: 0; height: 64dvh; max-height: 640px; }
  .hero-bg { object-position: 38% 50%; }
  .hero-scrim { background: linear-gradient(180deg, rgba(22,51,42,.62) 0%, rgba(22,51,42,.5) 50%, rgba(22,51,42,.8) 100%); }
  .hero-video .hero-center { padding-top: 0; padding-bottom: 40px; justify-content: center; height: 100%; }
  .hero-video .eyebrow { font-size: 12px; letter-spacing: .2em; margin-bottom: 14px; }
  .hero-video h1 { font-size: 40px; line-height: 44px; }
  .hero-video p.sub, .hero-video .hero-form-wrap, .hero-video .hero-secondary { display: none; }
  .hero-mobile-cta { display: inline-flex; margin-top: 26px; background: transparent; color: #fff; border: 2px solid var(--gold); padding: 14px 30px; font-size: 17px; }
  .hero-video::after { height: 80px; }
}
