/* =========================================================================
   DFY Ads Management Funnel — page styles (built on AdOutreach tokens)
   ========================================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ao-navy); overflow-x: hidden; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* page baseline (light surface default; dark wrappers flip via .ao-dark) */
.page { color: var(--fg-1); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
.section-sm { padding: clamp(40px, 5vw, 72px) 0; }

.bg-paper { background: var(--ao-paper); }
.bg-navy  { background: var(--ao-navy); }
.bg-navy-deep { background: linear-gradient(180deg, #0A1F3C 0%, #060F22 100%); }

/* ---------- shared bits ---------- */
.eyebrow2 {
  font-family: var(--font-body);
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 800; color: var(--ao-green-500); margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow2.teal { color: var(--ao-teal-400); }
.eyebrow2::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow2.center { justify-content: center; }
.eyebrow2.center::before { display: none; }

.kicker-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(73,222,50,.12); color: var(--ao-green-400);
  border: 1px solid rgba(73,222,50,.28); white-space: nowrap;
}

.lead2 { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: var(--fg-2); }

/* gradient text reused */
.grad { background: var(--ao-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px; letter-spacing: .01em;
  padding: 16px 30px; border-radius: 999px; border: 0; cursor: pointer; text-decoration: none;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-coral { background: var(--ao-coral); color: #fff; box-shadow: var(--sh-glow-coral); }
.btn-coral:hover { background: var(--ao-coral-dark); transform: translateY(-2px); }
.btn-coral:active { transform: translateY(0) scale(.98); }
.btn-grad { background: var(--ao-gradient); color: #08182E; }
.btn-grad:hover { transform: translateY(-2px); box-shadow: var(--sh-glow-green); }
.btn-ghost-d { background: rgba(255,255,255,.05); color: #fff; border: 1.5px solid rgba(255,255,255,.24); }
.btn-ghost-d:hover { border-color: var(--ao-green-400); color: var(--ao-green-400); }
.btn-lg { padding: 19px 38px; font-size: 17px; }
.btn-block { width: 100%; }

/* ============================ NAV ============================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: 74px; z-index: 50;
  display: flex; align-items: center;
  transition: background .3s var(--ease-out), backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(8,21,42,.82); backdrop-filter: blur(14px); border-bottom-color: rgba(255,255,255,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { height: 30px; }
.nav-logo img { height: 100%; width: auto; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-meta { color: rgba(255,255,255,.62); font-size: 13.5px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.nav-meta b { color: #fff; font-weight: 700; }
.nav .btn { padding: 11px 22px; font-size: 14px; }
@media (max-width: 760px){ .nav-meta { display: none; } }

/* ============================ HERO ============================ */
.hero { position: relative; padding-top: 122px; padding-bottom: 72px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(1100px 560px at 72% -8%, rgba(0,194,214,.22), transparent 60%),
    radial-gradient(820px 520px at 12% 6%, rgba(73,222,50,.16), transparent 60%),
    linear-gradient(180deg, #0A1F3C 0%, #08182E 100%);
}
.hero-grid-tex {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 62%);
  -webkit-mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 62%);
}
.hero-inner { position: relative; z-index: 2; }

/* hero entrance sequence - base state is VISIBLE; animate only when motion is allowed.
   This keeps the headline robust for crawlers, social-preview screenshotters, print
   and reduced-motion users (content never stuck at opacity:0). */
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .hero-head .kicker-pill { animation: heroIn .7s var(--ease-out) both; }
  .hero-head h1 { animation: heroIn .8s var(--ease-out) .1s both; }
  .hero-head > p { animation: heroIn .8s var(--ease-out) .24s both; }
  .hero-stage { animation: heroIn .9s var(--ease-out) .36s both; }
}

.hero-head { text-align: center; max-width: 940px; margin: 0 auto 34px; }
.hero-head h1 {
  color: #fff; font-weight: 800; font-size: clamp(34px, 5vw, 64px); line-height: 1.04;
  letter-spacing: -.02em; margin: 16px 0 0;
}
.hero-head p { color: rgba(255,255,255,.74); margin: 20px auto 0; max-width: 660px; }

/* layout: video-first (default) vs split */
.hero-stage { max-width: 940px; margin: 0 auto; }
.hero.split .hero-inner { display: grid; grid-template-columns: 1.05fr 1.25fr; gap: 52px; align-items: center; max-width: 1180px; }
.hero.split .hero-head { text-align: left; margin: 0; max-width: 560px; }
.hero.split .hero-head p { margin-left: 0; }
.hero.split .hero-stage { max-width: none; }
.hero.split .hero-cta-row { justify-content: flex-start; }
@media (max-width: 900px){ .hero.split .hero-inner { grid-template-columns: 1fr; } .hero.split .hero-head { text-align: center; } }

.hero-cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.hero-qual { color: rgba(255,255,255,.55); font-size: 13.5px; margin-top: 16px; text-align: center; display: flex; gap: 8px; align-items: center; justify-content: center; }
.hero.split .hero-qual { justify-content: flex-start; }
.hero-qual svg { width: 15px; height: 15px; color: var(--ao-green-400); }

/* dedicated apply CTA below the trust stats */
.hero-apply { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 40px; }
.hero-apply-qual { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,.82); font-size: 13.5px; }
.hero-apply-qual svg { width: 15px; height: 15px; color: var(--ao-green-400); flex-shrink: 0; }
@media (max-width: 600px){
  .hero-apply { margin-top: 30px; }
  .hero-apply .btn { width: 100%; }
}

/* trust stats */
.trust-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin: 48px auto 0; max-width: 880px;
}
.trust-tile {
  flex: 1; min-width: 180px; text-align: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; padding: 22px 18px;
}
.trust-n { font-family: var(--font-display); font-weight: 800; font-size: 32px; line-height: 1; }
.trust-l { color: rgba(255,255,255,.62); font-size: 13.5px; margin-top: 8px; }

/* ====================== VSL PLAYER ====================== */
.player-shell { position: relative; }
.player {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  background: #060d1c; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--sh-xl), 0 0 0 1px rgba(0,0,0,.4), 0 0 80px rgba(0,194,214,.16);
}
.player-deco-top {
  position: absolute; top: 14px; left: 16px; right: 16px; z-index: 6;
  display: flex; align-items: center; justify-content: space-between;
  pointer-events: none;
}
.live-tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.82);
  background: rgba(0,0,0,.35); padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(6px);
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ao-coral); box-shadow: 0 0 0 0 rgba(255,90,60,.7); animation: livePulse 2s infinite; }
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(255,90,60,.6);} 70%{box-shadow:0 0 0 7px rgba(255,90,60,0);} 100%{box-shadow:0 0 0 0 rgba(255,90,60,0);} }
.player-wm { height: 16px; opacity: .9; }
.player-wm img { height: 100%; }

/* stage where scenes render */
.stage { position: absolute; inset: 0; background:
    radial-gradient(900px 500px at 70% -10%, rgba(0,194,214,.16), transparent 60%),
    radial-gradient(700px 460px at 8% 10%, rgba(73,222,50,.12), transparent 60%),
    linear-gradient(180deg, #0A1F3C 0%, #060F22 100%);
  container-type: size;
}

/* youtube embed */
.yt-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-facade { position: absolute; inset: 0; cursor: pointer; overflow: hidden; background: #060d1c; }
.yt-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out), filter .4s; }
.yt-facade::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, rgba(6,13,28,.28), rgba(6,13,28,.6)); transition: background .4s; }
.yt-facade:hover .yt-poster { transform: scale(1.04); filter: saturate(1.08); }
.yt-facade .player-deco-top, .yt-facade .play-overlay { z-index: 6; }
.yt-fallback { margin-top: 12px; text-align: center; font-size: 13.5px; color: rgba(255,255,255,.55); }
.yt-fallback a { display: inline-flex; align-items: center; gap: 5px; color: var(--ao-green-400); font-weight: 700; }
.yt-fallback a:hover { color: var(--ao-green-300); text-decoration: underline; }
.yt-fallback svg { transition: transform .2s var(--ease-out); }
.yt-fallback a:hover svg { transform: translateX(3px); }
.scene { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 7% 8% 14%; }

/* big center play overlay */
.play-overlay {
  position: absolute; inset: 0; z-index: 8; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 45%, rgba(6,13,28,.25), rgba(6,13,28,.62));
  cursor: pointer; transition: opacity .3s var(--ease-out);
}
.play-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn-big {
  width: 92px; height: 92px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--ao-coral); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(255,90,60,.45), 0 0 0 0 rgba(255,90,60,.5);
  transition: transform .2s var(--ease-out); animation: playPulse 2.6s infinite;
}
.play-overlay:hover .play-btn-big { transform: scale(1.06); }
.play-btn-big svg { width: 38px; height: 38px; margin-left: 5px; }
@keyframes playPulse { 0%{box-shadow:0 12px 40px rgba(255,90,60,.45),0 0 0 0 rgba(255,90,60,.45);} 70%{box-shadow:0 12px 40px rgba(255,90,60,.45),0 0 0 22px rgba(255,90,60,0);} 100%{box-shadow:0 12px 40px rgba(255,90,60,.45),0 0 0 0 rgba(255,90,60,0);} }
.play-overlay-label { position: absolute; bottom: 16%; color: #fff; font-weight: 700; font-family: var(--font-display); font-size: clamp(13px,1.6cqw,18px); letter-spacing: .02em; text-shadow: 0 2px 14px rgba(0,0,0,.6); }

/* caption / subtitle bar */
.caption {
  position: absolute; left: 50%; bottom: 64px; transform: translateX(-50%); z-index: 7;
  max-width: 80%; text-align: center; color: #fff;
  font-size: clamp(12px, 1.7cqw, 18px); font-weight: 600; line-height: 1.35;
  background: rgba(4,9,20,.62); padding: 8px 16px; border-radius: 10px; backdrop-filter: blur(4px);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.caption.off { display: none; }

/* controls bar */
.controls {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 9;
  padding: 10px 16px 12px; background: linear-gradient(180deg, transparent, rgba(4,9,20,.92) 55%);
  display: flex; flex-direction: column; gap: 8px;
}
.scrub { position: relative; height: 14px; display: flex; align-items: center; cursor: pointer; }
.scrub-track { position: absolute; left: 0; right: 0; height: 4px; border-radius: 4px; background: rgba(255,255,255,.22); overflow: hidden; }
.scrub-fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--ao-gradient); border-radius: 4px; }
.scrub-buf { position: absolute; left: 0; top: 0; bottom: 0; background: rgba(255,255,255,.16); }
.scrub-ticks { position: absolute; left: 0; right: 0; height: 4px; }
.scrub-tick { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(6,13,28,.7); transform: translateX(-1px); }
.scrub-knob { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,.5); transform: translateX(-50%); transition: opacity .15s; }
.controls-row { display: flex; align-items: center; gap: 14px; }
.ctrl-btn { background: none; border: 0; color: #fff; cursor: pointer; display: inline-flex; align-items: center; padding: 4px; border-radius: 6px; opacity: .92; transition: opacity .15s, transform .15s; }
.ctrl-btn:hover { opacity: 1; transform: scale(1.08); }
.ctrl-btn svg { width: 20px; height: 20px; }
.ctrl-btn.play svg { width: 24px; height: 24px; }
.time { color: rgba(255,255,255,.86); font-size: 12.5px; font-variant-numeric: tabular-nums; font-weight: 600; }
.time .sep { opacity: .5; margin: 0 3px; }
.ctrl-spacer { flex: 1; }
.rate-btn { font-size: 12px; font-weight: 700; color: #fff; background: rgba(255,255,255,.12); border: 0; border-radius: 6px; padding: 4px 8px; cursor: pointer; }
.cc-btn.active { background: rgba(73,222,50,.22); color: var(--ao-green-300); }

/* under-player apply strip */
.player-cta-strip {
  margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px 16px 14px 22px;
  flex-wrap: wrap;
}
.player-cta-strip .pcs-txt { color: #fff; font-weight: 600; font-size: 15px; }
.player-cta-strip .pcs-txt b { color: var(--ao-green-400); }

/* ---------- scene element styling (inside 16:9, use cqw units) ---------- */
.sc { width: 100%; color: #fff; text-align: center; }
.sc-eyebrow { font-size: clamp(10px,1.5cqw,15px); font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--ao-green-400); margin-bottom: 3cqh; }
.sc-title { font-family: var(--font-display); font-weight: 800; line-height: 1.06; letter-spacing: -.02em; font-size: clamp(20px, 5.4cqw, 60px); margin: 0; }
.sc-title.md { font-size: clamp(18px, 4.4cqw, 50px); }
.sc-sub { font-size: clamp(12px,2.1cqw,22px); color: rgba(255,255,255,.78); margin-top: 2.5cqh; line-height: 1.45; }
.sc-mega { font-family: var(--font-display); font-weight: 800; font-size: clamp(46px, 16cqw, 200px); line-height: .9; letter-spacing: -.03em; }

.sc-badge {
  display: inline-flex; align-items: center; gap: 1.4cqw; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(10px,1.7cqw,17px); letter-spacing: .12em; color: #08182E;
  background: var(--ao-gradient); padding: 1.2cqh 2.6cqw; border-radius: 999px; margin-bottom: 3cqh;
}
.sc-badge.coral { background: var(--ao-coral); color: #fff; }

.sc-bullets { list-style: none; margin: 4cqh 0 0; padding: 0; display: inline-flex; flex-direction: column; gap: 2cqh; text-align: left; }
.sc-bullets li { display: flex; align-items: center; gap: 1.8cqw; font-size: clamp(12px,2.3cqw,24px); font-weight: 600; color: rgba(255,255,255,.92); }
.sc-check { flex: none; width: clamp(18px,3cqw,32px); height: clamp(18px,3cqw,32px); border-radius: 50%; background: rgba(73,222,50,.16); border: 1.5px solid var(--ao-green-500); display: flex; align-items: center; justify-content: center; }
.sc-check svg { width: 56%; height: 56%; color: var(--ao-green-400); }

.sc-step-layout { display: grid; grid-template-columns: auto 1fr; gap: 0 5cqw; align-items: center; width: 100%; text-align: left; }
.sc-step-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(56px,20cqw,230px); line-height: .8; letter-spacing: -.04em; -webkit-text-stroke: 2px rgba(73,222,50,.5); color: transparent; }

/* logo chips grid */
.sc-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2cqw; margin-top: 5cqh; }
.sc-logo-chip { background: #fff; border-radius: 10px; height: 13cqh; display: flex; align-items: center; justify-content: center; padding: 0 2cqw; box-shadow: 0 2px 10px rgba(0,0,0,.25); }
.sc-logo-chip img { max-height: 58%; max-width: 84%; width: auto; object-fit: contain; }

/* metric tiles */
.sc-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.4cqw; margin-top: 4cqh; }
.sc-metric { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 3cqh 1cqw; }
.sc-metric .m-n { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,5cqw,52px); line-height: 1; }
.sc-metric .m-l { color: rgba(255,255,255,.66); font-size: clamp(9px,1.5cqw,15px); margin-top: 1.4cqh; font-weight: 600; }

/* founder scene */
.sc-founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 5cqw; align-items: center; width: 100%; text-align: left; }
.sc-portrait { aspect-ratio: 4/5; border-radius: 18px; background:
   linear-gradient(160deg, #143257, #0c2038); border: 1px solid rgba(255,255,255,.12);
   display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1cqh; position: relative; overflow: hidden; }
.sc-portrait .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }
.sc-portrait .pp-poly { position: absolute; width: 70%; height: 70%; background: var(--ao-gradient); opacity: .14; filter: blur(8px); border-radius: 30%; bottom: -20%; right: -20%; }
.sc-portrait .pp-l { color: rgba(255,255,255,.5); font-size: clamp(9px,1.4cqw,14px); font-weight: 600; z-index: 1; }
.sc-portrait .pp-ic { width: 18%; height: 18%; color: rgba(255,255,255,.3); z-index: 1; }
.sc-founder .f-name { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px,4.6cqw,48px); }
.sc-founder ul { list-style: none; margin: 3cqh 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.6cqh; }
.sc-founder li { font-size: clamp(11px,2cqw,21px); color: rgba(255,255,255,.85); display: flex; gap: 1.4cqw; align-items: center; font-weight: 600; }
.sc-founder li b { color: #fff; }

/* comparison scene */
.sc-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 3cqw; width: 100%; text-align: left; }
.cmp-col { border-radius: 16px; padding: 3cqh 2.4cqw; }
.cmp-col.them { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.cmp-col.us { background: rgba(73,222,50,.08); border: 1.5px solid rgba(73,222,50,.4); }
.cmp-h { font-family: var(--font-display); font-weight: 800; font-size: clamp(13px,2.4cqw,26px); margin-bottom: 2.4cqh; }
.cmp-col.them .cmp-h { color: rgba(255,255,255,.6); }
.cmp-col.us .cmp-h { color: var(--ao-green-400); }
.cmp-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.6cqh; }
.cmp-list li { display: flex; gap: 1.4cqw; align-items: flex-start; font-size: clamp(10px,1.8cqw,19px); font-weight: 500; color: rgba(255,255,255,.82); }
.cmp-ic { flex: none; width: clamp(15px,2.6cqw,26px); height: clamp(15px,2.6cqw,26px); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: .1em; }
.cmp-ic svg { width: 60%; height: 60%; }
.cmp-ic.x { background: rgba(255,90,60,.16); color: var(--ao-coral); }
.cmp-ic.c { background: rgba(73,222,50,.18); color: var(--ao-green-400); }

/* recap checklist */
.sc-recap { list-style: none; margin: 4cqh auto 0; padding: 0; display: flex; flex-direction: column; gap: 2cqh; max-width: 82%; }
.sc-recap li { display: flex; align-items: center; justify-content: space-between; gap: 2cqw; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 1.8cqh 2.4cqw; }
.sc-recap .r-l { display: flex; align-items: center; gap: 1.8cqw; font-weight: 700; font-size: clamp(11px,2cqw,21px); }
.sc-recap .r-step { font-size: clamp(8px,1.3cqw,13px); font-weight: 800; letter-spacing: .12em; color: var(--ao-green-400); background: rgba(73,222,50,.12); padding: .6cqh 1.4cqw; border-radius: 999px; }

/* rocket scene */
.sc-rocket-wrap { position: relative; }
.sc-rocket { font-size: clamp(40px,12cqw,140px); line-height: 1; }

/* scene entrance animation */
@keyframes scIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scPop { 0% { opacity: 0; transform: scale(.82); } 60% { transform: scale(1.04); } 100% { opacity: 1; transform: scale(1); } }
@keyframes scWipe { from { opacity:0; transform: translateX(-18px);} to { opacity:1; transform: translateX(0);} }
.anim { opacity: 0; animation: scIn .6s var(--ease-out) forwards; }
.anim-pop { opacity: 0; animation: scPop .7s var(--ease-out) forwards; }
.anim-wipe { opacity: 0; animation: scWipe .55s var(--ease-out) forwards; }

/* upload placeholder (swap real video) */
.upload-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: rgba(255,255,255,.7); text-align: center; padding: 8%; }
.upload-ph svg { width: 56px; height: 56px; color: rgba(255,255,255,.4); }
.upload-ph b { color: #fff; font-family: var(--font-display); font-size: clamp(15px,2.2cqw,22px); }
.upload-ph small { font-size: 13px; max-width: 360px; line-height: 1.5; }
.upload-ph code { background: rgba(255,255,255,.1); padding: 2px 7px; border-radius: 6px; color: var(--ao-green-300); font-size: 12px; }

/* ====================== MARQUEE ====================== */
.marquee-sec { padding: 56px 0 64px; }
.marquee-label { text-align: center; color: rgba(255,255,255,.6); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 30px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; gap: 22px; width: max-content; animation: marq 50s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }
.logo-chip { flex: none; height: 92px; min-width: 178px; background: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; padding: 0 30px; box-shadow: var(--sh-md); border: 1px solid rgba(255,255,255,.08); }
.logo-chip img { max-height: 48px; max-width: 144px; width: auto; object-fit: contain; }

/* ====================== OFFER (light) ====================== */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 14px; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 46px); font-weight: 800; letter-spacing: -.02em; color: var(--ao-ink); line-height: 1.1; }
.sec-head p { margin-top: 16px; }

.value-strip { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 28px auto 60px; }
.value-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--ao-ink); background: #fff; border: 1px solid var(--border-strong); border-radius: 999px; padding: 9px 16px; box-shadow: var(--sh-sm); }
.value-chip svg { width: 15px; height: 15px; color: var(--ao-green-600); }

/* timeline layout */
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 38px; top: 22px; bottom: 60px; width: 2px; background: linear-gradient(180deg, var(--ao-green-500), var(--ao-teal-500)); opacity: .35; }
.tl-item { position: relative; display: grid; grid-template-columns: 78px 1fr; gap: 24px; padding: 14px 0 36px; }
.tl-dot { width: 78px; height: 78px; border-radius: 18px; background: var(--ao-gradient); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #08182E; box-shadow: var(--sh-md); position: relative; z-index: 1; }
.tl-dot .tl-step { font-size: 10px; font-weight: 800; letter-spacing: .1em; opacity: .8; }
.tl-dot .tl-n { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; }
.tl-dot.bonus { background: var(--ao-coral); color: #fff; }
.tl-card { background: #fff; border: 1px solid var(--border-light); border-radius: 18px; padding: 24px 26px; box-shadow: var(--sh-sm); transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s; }
.tl-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(73,222,50,.4); }
.tl-card h3 { font-size: clamp(18px,1.7vw,23px); color: var(--ao-ink); font-weight: 800; }
.tl-card .tl-tag { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ao-green-600); }
.tl-card.bonus .tl-tag { color: var(--ao-coral); }
.tl-card ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.tl-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--fg-2); line-height: 1.45; }
.tl-card li svg { flex: none; width: 19px; height: 19px; color: var(--ao-green-600); margin-top: 1px; }

/* cards layout (alt) */
.offer-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.offer-card { background: #fff; border: 1px solid var(--border-light); border-radius: 20px; padding: 28px; box-shadow: var(--sh-sm); position: relative; overflow: hidden; transition: transform .25s var(--ease-out), box-shadow .25s; }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.offer-card .oc-num { width: 54px; height: 54px; border-radius: 14px; background: var(--ao-gradient); color: #08182E; font-family: var(--font-display); font-weight: 800; font-size: 24px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.offer-card.bonus .oc-num { background: var(--ao-coral); color: #fff; }
.offer-card h3 { font-size: 19px; color: var(--ao-ink); font-weight: 800; }
.offer-card .oc-tag { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ao-green-600); }
.offer-card.bonus .oc-tag { color: var(--ao-coral); }
.offer-card ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 9px; }
.offer-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--fg-2); line-height: 1.4; }
.offer-card li svg { flex: none; width: 17px; height: 17px; color: var(--ao-green-600); margin-top: 1px; }

/* ====================== COMPARISON (dark) ====================== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 980px; margin: 0 auto; align-items: stretch; }
.compare-card { border-radius: 22px; padding: 34px 32px; }
.compare-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 0 0 6px; display: flex; align-items: center; gap: 12px; }
.compare-card .cc-sub { font-size: 13.5px; margin: 0 0 22px; }
.compare-card.them { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); }
.compare-card.them h3 { color: rgba(255,255,255,.72); }
.compare-card.them .cc-sub { color: rgba(255,255,255,.45); }
.compare-card.us { background: linear-gradient(165deg, rgba(73,222,50,.1), rgba(0,167,178,.06)); border: 1.5px solid rgba(73,222,50,.45); box-shadow: 0 0 50px rgba(73,222,50,.1); position: relative; }
.compare-card.us h3 { color: #fff; }
.compare-card.us .cc-sub { color: var(--ao-green-300); }
.compare-badge { position: absolute; top: -13px; right: 26px; background: var(--ao-gradient); color: #08182E; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.compare-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.compare-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.4; color: rgba(255,255,255,.86); }
.compare-list li .ci { flex: none; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.compare-list li .ci svg { width: 14px; height: 14px; }
.ci.x { background: rgba(255,90,60,.16); color: var(--ao-coral); }
.ci.c { background: rgba(73,222,50,.18); color: var(--ao-green-400); }
.compare-foot { text-align: center; margin-top: 30px; color: var(--ao-green-300); font-weight: 700; font-size: 17px; font-family: var(--font-display); }
@media (max-width: 760px){ .compare-grid { grid-template-columns: 1fr; } }

/* ====================== FOUNDER (light) ====================== */
.founder-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; max-width: 1080px; margin: 0 auto; }
.founder-photo { aspect-ratio: 4/5; border-radius: 22px; background: linear-gradient(160deg, #143257, #0a1f3c); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--sh-lg); }
.founder-photo .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; z-index: 0; }
.founder-photo .fp-poly { position: absolute; width: 80%; height: 80%; background: var(--ao-gradient); opacity: .16; filter: blur(10px); bottom: -25%; right: -25%; border-radius: 32%; }
.founder-photo .fp-l { color: rgba(255,255,255,.5); z-index: 1; font-weight: 600; font-size: 14px; }
.founder-photo .fp-ic { width: 64px; height: 64px; color: rgba(255,255,255,.3); z-index: 1; }
.founder-badges { position: absolute; bottom: 18px; left: 18px; right: 18px; display: flex; gap: 10px; z-index: 2; }
.founder-badge { flex: 1; background: rgba(8,21,42,.7); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 10px; text-align: center; }
.founder-badge .fb-n { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; }
.founder-badge .fb-l { font-size: 10.5px; color: rgba(255,255,255,.66); margin-top: 2px; }
.founder-copy h2 { font-size: clamp(26px,3vw,40px); color: var(--ao-ink); font-weight: 800; letter-spacing: -.02em; }
.founder-copy .f-role { color: var(--ao-green-600); font-weight: 700; font-size: 15px; margin-top: 4px; }
.founder-copy ul { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 14px; }
.founder-copy li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; color: var(--fg-2); line-height: 1.5; }
.founder-copy li svg { flex: none; width: 20px; height: 20px; color: var(--ao-green-600); margin-top: 2px; }
.founder-copy li b { color: var(--ao-ink); }
@media (max-width: 820px){ .founder-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ====================== TESTIMONIALS (light) ====================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 20px; max-width: 1120px; margin: 0 auto; }
.testi-card { background: #fff; border: 1px solid var(--border-light); border-radius: 20px; padding: 28px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.testi-kpi { align-self: flex-start; font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--ao-green-700); background: rgba(73,222,50,.12); border-radius: 999px; padding: 5px 14px; margin-bottom: 16px; }
.testi-stars { color: var(--ao-sun); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-q { font-size: 15.5px; line-height: 1.55; color: var(--fg-1); flex: 1; }
.testi-attr { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-av { width: 46px; height: 46px; border-radius: 50%; background: var(--ao-gradient); display: flex; align-items: center; justify-content: center; color: #08182E; font-weight: 800; font-size: 15px; border: 2px solid var(--ao-green-400); position: relative; overflow: hidden; flex: none; }
.testi-av .av-initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.testi-av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.testi-name { font-weight: 700; color: var(--ao-ink); font-size: 15px; }
.testi-role { font-size: 13px; color: var(--fg-3); }

/* ====================== APPLY (dark) ====================== */
.apply { position: relative; overflow: hidden; }
.apply .hero-glow { background:
  radial-gradient(900px 480px at 80% 0%, rgba(0,194,214,.2), transparent 60%),
  radial-gradient(720px 460px at 10% 100%, rgba(73,222,50,.16), transparent 60%),
  linear-gradient(180deg, #08182E, #0A1F3C); }
.apply-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; max-width: 1080px; margin: 0 auto; }
.apply-copy h2 { font-size: clamp(30px,3.6vw,50px); color: #fff; font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
.apply-copy p { color: rgba(255,255,255,.74); margin-top: 18px; max-width: 460px; }
.qual-box { margin-top: 28px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 22px 24px; }
.qual-box .qb-h { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ao-green-400); margin-bottom: 14px; }
.qual-box ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.qual-box li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.86); font-size: 15px; line-height: 1.4; }
.qual-box li svg { flex: none; width: 19px; height: 19px; color: var(--ao-green-400); margin-top: 1px; }
.month-note { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 14px; font-weight: 600; background: rgba(73,222,50,.1); border: 1px solid rgba(73,222,50,.3); border-radius: 999px; padding: 9px 16px; }
.month-note svg { width: 16px; height: 16px; color: var(--ao-green-400); }

/* form card */
.form-card { background: #fff; border-radius: 22px; padding: 32px; box-shadow: var(--sh-xl); }
.form-card .fc-step { font-size: 12px; font-weight: 700; color: var(--ao-green-700); letter-spacing: .06em; text-transform: uppercase; }
.form-card h3 { font-size: 23px; color: var(--ao-ink); font-weight: 800; margin: 4px 0 0; }
.form-progress { height: 5px; background: var(--ao-fog); border-radius: 999px; margin: 18px 0 24px; overflow: hidden; }
.form-progress > div { height: 100%; background: var(--ao-gradient); border-radius: 999px; transition: width .4s var(--ease-out); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ao-ink); margin-bottom: 7px; }
.field input, .field select { width: 100%; font-family: var(--font-body); font-size: 15px; padding: 13px 14px; border-radius: 10px; border: 1.5px solid var(--border-strong); background: #fff; color: var(--ao-ink); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--ao-green-500); box-shadow: 0 0 0 3px rgba(73,222,50,.18); }
.field input.err, .field select.err { border-color: var(--ao-coral); }
.field .field-err { color: var(--ao-coral); font-size: 12.5px; margin-top: 5px; font-weight: 600; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice { border: 1.5px solid var(--border-strong); border-radius: 12px; padding: 13px 14px; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--fg-1); transition: all .18s var(--ease-out); display: flex; align-items: center; gap: 10px; }
.choice:hover { border-color: var(--ao-green-400); }
.choice.sel { border-color: var(--ao-green-500); background: rgba(73,222,50,.08); }
.choice .ch-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border-strong); flex: none; display: flex; align-items: center; justify-content: center; }
.choice.sel .ch-dot { border-color: var(--ao-green-500); background: var(--ao-green-500); }
.choice.sel .ch-dot svg { width: 11px; height: 11px; color: #fff; }
.form-foot { display: flex; gap: 12px; margin-top: 8px; }
.form-back { background: var(--ao-fog); color: var(--fg-1); border: 0; border-radius: 999px; padding: 16px 24px; font-weight: 700; cursor: pointer; font-family: var(--font-display); transition: background .2s; }
.form-back:hover { background: var(--ao-mist); }
.form-disclaim { font-size: 12px; color: var(--fg-3); text-align: center; margin-top: 14px; }

/* success */
.form-success { text-align: center; padding: 18px 6px; }
.form-success .fs-ic { width: 78px; height: 78px; border-radius: 50%; background: rgba(73,222,50,.14); border: 2px solid var(--ao-green-500); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; animation: scPop .6s var(--ease-out); }
.form-success .fs-ic svg { width: 38px; height: 38px; color: var(--ao-green-600); }
.form-success h3 { font-size: 26px; color: var(--ao-ink); }
.form-success p { margin-top: 12px; color: var(--fg-2); }
.qual-warn { background: rgba(255,201,60,.12); border: 1px solid rgba(255,201,60,.4); border-radius: 12px; padding: 14px 16px; font-size: 13.5px; color: var(--ao-graphite); margin-top: 4px; display: flex; gap: 10px; }
.qual-warn svg { flex: none; width: 18px; height: 18px; color: #c98a00; margin-top: 1px; }
@media (max-width: 880px){ .apply-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ====================== APPLY CTA CARD ====================== */
.cta-card { background: #fff; border-radius: 22px; padding: 36px 34px; box-shadow: var(--sh-xl); position: relative; overflow: hidden;
  --fg-1: var(--ao-ink); --fg-2: #334061; --fg-3: #6B7693; }
.cta-card-glow { position: absolute; top: -45%; right: -30%; width: 75%; height: 85%; background: var(--ao-gradient); opacity: .13; filter: blur(34px); border-radius: 50%; pointer-events: none; }
.cta-eyebrow { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ao-green-700); background: rgba(73,222,50,.12); padding: 7px 14px; border-radius: 999px; position: relative; }
.cta-eyebrow svg { width: 15px; height: 15px; }
.cta-card h3 { font-size: 26px; color: var(--ao-ink); font-weight: 800; margin: 18px 0 0; letter-spacing: -.01em; position: relative; }
.cta-card > p { color: var(--fg-2); margin: 12px 0 24px; position: relative; }
.cta-reassure { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; position: relative; }
.cta-reassure li { display: flex; gap: 11px; align-items: center; font-size: 14.5px; color: var(--fg-1); font-weight: 600; }
.cta-reassure li svg { flex: none; width: 18px; height: 18px; color: var(--ao-green-600); }
.cta-trust { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border-light); font-size: 13.5px; color: var(--fg-3); text-align: center; position: relative; }
.cta-trust b { color: var(--ao-ink); }

/* "see all" link */
.see-all { display: flex; justify-content: center; margin-top: 36px; }
.see-all a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ao-ink); border: 1.5px solid var(--border-strong); border-radius: 999px; padding: 13px 24px; transition: all .2s var(--ease-out); }
.see-all a:hover { border-color: var(--ao-green-500); color: var(--ao-green-700); text-decoration: none; transform: translateY(-1px); }
.see-all svg { width: 17px; height: 17px; }

/* ====================== URGENCY BAR ====================== */
.urgency-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 45; background: var(--ao-coral); color: #fff; display: flex; align-items: center; justify-content: center; gap: 20px; padding: 12px 20px; box-shadow: 0 -8px 30px rgba(0,0,0,.25); transform: translateY(0); transition: transform .4s var(--ease-out); }
.urgency-bar.hide { transform: translateY(110%); }
.urgency-bar .ub-txt { font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.urgency-bar .ub-txt svg { width: 18px; height: 18px; }
.urgency-bar .btn { background: #fff; color: var(--ao-coral); padding: 11px 20px; font-size: 14px; min-height: 44px; flex-shrink: 0; }
.urgency-bar .btn:hover { background: #08182E; color: #fff; }
.urgency-bar .ub-close { position: absolute; right: 10px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: none; border: 0; color: rgba(255,255,255,.7); cursor: pointer; font-size: 22px; line-height: 1; border-radius: 50%; }
.urgency-bar .ub-close:hover { color: #fff; background: rgba(255,255,255,.14); }
@media (max-width: 620px){
  .urgency-bar { gap: 12px; padding: 10px 14px; padding-right: 50px; justify-content: space-between; }
  .urgency-bar .ub-spots { display: none; }
  .urgency-bar .ub-txt { font-size: 13px; line-height: 1.25; }
  .urgency-bar .btn { padding: 11px 16px; }
  .urgency-bar .ub-close { right: 6px; }
}

/* ====================== FOOTER ====================== */
.footer { background: #060F22; padding: 56px 0 32px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { height: 30px; }
.footer-tag { color: rgba(255,255,255,.55); font-size: 14px; max-width: 380px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; color: rgba(255,255,255,.45); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.55); }

/* ===== scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(34px) scale(.985); filter: blur(6px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), filter .8s var(--ease-out);
  transition-delay: var(--rd, 0s); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-scale { transform: scale(.9); filter: blur(8px); }

/* ===== hover micro-interactions ===== */
.btn svg:last-child { transition: transform .28s var(--ease-out); }
.btn:hover svg:last-child { transform: translateX(4px); }
.btn-coral:hover { box-shadow: 0 10px 30px rgba(255,90,60,.42), 0 0 30px rgba(255,90,60,.3); }

.testi-card { transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out), border-color .32s; }
.testi-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: rgba(73,222,50,.4); }
.testi-av { transition: transform .35s var(--ease-out); }
.testi-card:hover .testi-av { transform: scale(1.1) rotate(-4deg); }

.compare-card { transition: transform .32s var(--ease-out), box-shadow .32s; }
.compare-card:hover { transform: translateY(-5px); }
.compare-card.us:hover { box-shadow: 0 24px 70px rgba(73,222,50,.18); }

.logo-chip { transition: transform .32s var(--ease-out), box-shadow .32s; }
.logo-chip:hover { transform: translateY(-6px) scale(1.04); box-shadow: var(--sh-lg); }

.trust-tile { transition: transform .32s var(--ease-out), border-color .32s, background .32s; }
.trust-tile:hover { transform: translateY(-5px); border-color: rgba(73,222,50,.45); background: rgba(255,255,255,.07); }

.value-chip { transition: transform .22s var(--ease-out), border-color .22s, box-shadow .22s; }
.value-chip:hover { transform: translateY(-3px); border-color: var(--ao-green-400); box-shadow: var(--sh-md); }

.tl-card:hover, .offer-card:hover { box-shadow: var(--sh-lg); }
.tl-dot, .offer-card .oc-num { transition: transform .35s var(--ease-out); }
.tl-item:hover .tl-dot, .offer-card:hover .oc-num { transform: scale(1.08) rotate(-3deg); }

.founder-photo .photo { transition: transform .7s var(--ease-out); }
.founder-photo:hover .photo { transform: scale(1.05); }

.nav-logo img, .footer-logo, .player-cta-strip { transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s; }
.nav-logo:hover img { transform: scale(1.05); }
.player-cta-strip:hover { border-color: rgba(73,222,50,.35); box-shadow: 0 0 36px rgba(73,222,50,.1); }

.see-all a svg { transition: transform .28s var(--ease-out); }
.see-all a:hover svg { transform: translateX(4px); }

.cta-card { transition: transform .4s var(--ease-out), box-shadow .4s; }
.cta-card:hover { transform: translateY(-4px); box-shadow: 0 36px 90px rgba(10,31,60,.34); }

@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .12s !important; }
}

/* print / PDF export: force all entrance + reveal states visible */
@media print {
  .hero-head .kicker-pill, .hero-head h1, .hero-head > p, .hero-stage,
  .reveal, .anim, .anim-pop, .anim-wipe {
    opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important;
  }
}

/* ====================== TESTIMONIAL SUPERCUT ====================== */
.supercut-shell { margin-top: 8px; }
.supercut-player { position: relative; aspect-ratio: 16 / 9; width: 100%; background: #060d1c; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: var(--sh-xl), 0 0 80px rgba(0,194,214,.16); }

/* ====================== WHO IT'S FOR / NOT FOR ====================== */
#who-for { padding-top: clamp(28px, 3vw, 48px); }
.whofor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 980px; margin: 0 auto; }
.whofor-card { border-radius: 20px; padding: 30px 30px; border: 1px solid var(--border-light); background: #fff; box-shadow: var(--sh-sm); }
.whofor-card.is-for { background: linear-gradient(165deg, rgba(73,222,50,.09), rgba(0,167,178,.05)); border: 1.5px solid rgba(73,222,50,.4); }
.whofor-card.is-not { background: #fff; }
.wf-head { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--ao-ink); margin-bottom: 20px; }
.wf-ic { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; }
.wf-ic svg { width: 17px; height: 17px; }
.wf-ic.c { background: var(--ao-green-500); color: #08321b; }
.wf-ic.x { background: rgba(255,90,60,.14); color: var(--ao-coral); }
.whofor-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.whofor-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; color: var(--fg-1); }
.wf-tick, .wf-cross { flex: none; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.wf-tick { background: rgba(73,222,50,.16); color: var(--ao-green-600); }
.wf-cross { background: rgba(255,90,60,.12); color: var(--ao-coral); }
.wf-tick svg, .wf-cross svg { width: 12px; height: 12px; }
.whofor-card.is-not li { color: var(--fg-2); }

/* ====================== FAQ ====================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.faq-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; overflow: hidden; transition: border-color .25s, background .25s; }
.faq-item.open { border-color: rgba(73,222,50,.4); background: rgba(73,222,50,.05); }
.faq-item:hover { border-color: rgba(255,255,255,.2); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; text-align: left; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.35; }
.faq-chevron { flex: none; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--ao-green-400); transition: transform .3s var(--ease-out), background .25s; }
.faq-chevron svg { width: 17px; height: 17px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(73,222,50,.2); }
.faq-a-wrap { overflow: hidden; transition: max-height .35s var(--ease-out); }
.faq-a { padding: 0 24px 22px; color: rgba(255,255,255,.74); font-size: 15.5px; line-height: 1.6; max-width: 660px; }
.faq-foot { text-align: center; margin-top: 28px; color: rgba(255,255,255,.6); font-size: 15px; }
.faq-foot a { color: var(--ao-green-400); font-weight: 700; }
.faq-foot a:hover { color: var(--ao-green-300); text-decoration: underline; }

/* ====================== WHAT HAPPENS AFTER ====================== */
.steps-after { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1120px; margin: 0 auto; }
.after-card { position: relative; background: #fff; border: 1px solid var(--border-light); border-radius: 18px; padding: 28px 24px; box-shadow: var(--sh-sm); transition: transform .28s var(--ease-out), box-shadow .28s; }
.after-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.after-num { width: 50px; height: 50px; border-radius: 14px; background: var(--ao-gradient); color: #08182E; font-family: var(--font-display); font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.after-card h3 { font-size: 18px; color: var(--ao-ink); font-weight: 800; line-height: 1.25; }
.after-card p { font-size: 14.5px; color: var(--fg-2); line-height: 1.5; margin-top: 10px; }
.after-arrow { position: absolute; top: 44px; right: -13px; z-index: 2; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; color: var(--ao-green-600); box-shadow: var(--sh-sm); }
.after-arrow svg { width: 14px; height: 14px; }

/* ====================== CONSULTING FALLBACK ====================== */
.consult-card { position: relative; max-width: 1080px; margin: 0 auto; border-radius: 24px; overflow: hidden; background: linear-gradient(150deg, #0E2747 0%, #08182E 100%); box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.08); }
.consult-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(620px 300px at 88% -20%, rgba(0,194,214,.28), transparent 62%), radial-gradient(520px 280px at 6% 120%, rgba(73,222,50,.18), transparent 60%); }
.consult-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr .9fr; gap: 36px; align-items: center; padding: 40px 44px; }
.consult-copy h3 { color: #fff; font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -.01em; margin: 6px 0 0; }
.consult-copy .eyebrow2 { font-size: clamp(15px, 1.5vw, 18px); letter-spacing: .1em; }
.consult-copy p { color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.55; margin-top: 14px; }
.consult-copy p b { color: var(--ao-green-400); }
.consult-action { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.consult-action .btn { width: 100%; }
.consult-note { text-align: center; color: rgba(255,255,255,.5); font-size: 13px; }
@media (max-width: 800px){ .consult-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 26px; } }

@media (max-width: 720px){
  .whofor-grid { grid-template-columns: 1fr; }
  .steps-after { grid-template-columns: 1fr 1fr; }
  .after-arrow { display: none; }
  .faq-q { padding: 18px 18px; }
  .faq-a { padding: 0 18px 18px; }
}

@media (max-width: 480px){
  .steps-after { grid-template-columns: 1fr; }
  .whofor-card { padding: 24px 22px; }
}

/* ============================ RESPONSIVE / MOBILE ============================ */
@media (max-width: 900px){
  .nav { height: 64px; }
  .nav .btn { padding: 12px 20px; min-height: 44px; }
  .hero { padding-top: 90px; padding-bottom: 50px; }
  .hero-head { margin-bottom: 26px; }
  .player-cta-strip { flex-direction: column; align-items: stretch; text-align: center; gap: 13px; padding: 16px; }
  .player-cta-strip .btn { width: 100%; }
}

@media (max-width: 720px){
  .section { padding-top: 54px; padding-bottom: 54px; }
  .section-sm { padding-top: 38px; padding-bottom: 38px; }

  /* hero cta stacks, full-width primary action */
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 26px; }
  .hero-cta-row .btn { width: 100%; }
  .hero-qual { margin-top: 0 !important; justify-content: center; font-size: 13px; }
  .trust-row { margin-top: 34px; }

  /* sections that were 2-up already stack via their own queries; tighten spacing */
  .sec-head { margin-bottom: 8px; }
  .value-strip { margin: 22px auto 40px; }

  /* timeline: smaller dots, tighter rail */
  .timeline::before { left: 28px; bottom: 40px; }
  .tl-item { grid-template-columns: 58px 1fr; gap: 16px; padding-bottom: 26px; }
  .tl-dot { width: 58px; height: 58px; border-radius: 15px; }
  .tl-dot .tl-n { font-size: 23px; }
  .tl-dot .tl-step { font-size: 10px; }
  .tl-card { padding: 20px 18px; }
  .tl-card h3 { font-size: 19px; }

  /* cards & boxes: trim inner padding */
  .compare-card { padding: 26px 22px; }
  .compare-card h3 { font-size: 20px; }
  .cta-card { padding: 28px 22px; }
  .cta-card h3 { font-size: 23px; }
  .qual-box { padding: 18px 18px; }
  .offer-card { padding: 24px 22px; }

  /* founder copy spacing */
  .founder-copy ul { margin: 18px 0 22px; }
  .founder-copy li { font-size: 15.5px; }

  /* footer stacks */
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-top > div { gap: 16px; }
  .footer-top .btn { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px){
  .wrap, .wrap-narrow { padding: 0 18px; }
  .hero-head h1 { font-size: 31px; }
  .sec-head h2 { font-size: 25px; }
  .nav-logo { height: 26px; }
  .nav .btn { padding: 11px 16px; font-size: 13.5px; }
  .kicker-pill { font-size: 12px; padding: 6px 12px; }
  .testi-card { padding: 24px 22px; }
  .trust-n { font-size: 28px; }
  .trust-l { font-size: 12.5px; }
  .player { border-radius: 14px; }
  .marquee-track { gap: 16px; }
  .logo-chip { height: 78px; min-width: 150px; padding: 0 22px; }
  .logo-chip img { max-height: 40px; max-width: 116px; }
}

@media (max-width: 560px){
  .field-row, .choice-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 10px; }
  .trust-tile { min-width: calc(50% - 6px); }
}

/* ====================== BOOK / VIDEO AUTHORITY ====================== */
.book-sec { overflow: hidden; }
.book-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(40px, 6vw, 84px); align-items: center; }

/* --- the 3D book model --- */
.book-stage { display: flex; justify-content: center; align-items: center; perspective: 2200px; padding: 18px 0; }
.book3d {
  position: relative;
  --bw: clamp(214px, 21vw, 278px);
  --bh: calc(var(--bw) * 1.556);
  --bd: clamp(28px, 2.7vw, 38px);
  width: var(--bw); height: var(--bh);
  transform-style: preserve-3d;
  animation: bookFloat 7s ease-in-out infinite;
}
.book3d-box {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-31deg);
  transition: transform .8s var(--ease-out, cubic-bezier(.22,1,.36,1));
}
.book-stage:hover .book3d-box { transform: rotateX(3deg) rotateY(-17deg); }
@keyframes bookFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce){ .book3d { animation: none; } }

.bk-face { position: absolute; top: 50%; left: 50%; }
/* front cover (the real artwork) */
.bk-front, .bk-back { width: var(--bw); height: var(--bh); margin: calc(var(--bh) / -2) 0 0 calc(var(--bw) / -2); border-radius: 2px 4px 4px 2px; overflow: hidden; }
.bk-front { transform: translateZ(calc(var(--bd) / 2)); box-shadow: inset 0 0 0 1px rgba(0,0,0,.4); background: #111; }
.bk-front img { display: block; width: 100%; height: 100%; object-fit: cover; }
.bk-front .bk-gloss { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(108deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.05) 16%, rgba(255,255,255,0) 34%, rgba(0,0,0,.10) 100%); }
.bk-back { transform: translateZ(calc(var(--bd) / -2)) rotateY(180deg); background: linear-gradient(135deg, #1a1a1a, #050505); }

/* spine (left side) */
.bk-spine { width: var(--bd); height: var(--bh); margin: calc(var(--bh) / -2) 0 0 calc(var(--bd) / -2);
  transform: translateX(calc(var(--bw) / -2)) rotateY(-90deg);
  background: linear-gradient(90deg, #050505 0%, #1c1c1c 42%, #161616 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 16px 0; box-shadow: inset 2px 0 6px rgba(0,0,0,.6), inset -2px 0 6px rgba(255,255,255,.04);
  border-top: 2px solid #e23b2e; border-bottom: 2px solid #e23b2e;
}
.bk-spine-title { writing-mode: vertical-rl; text-orientation: mixed; font-family: var(--font-display); font-weight: 800; font-size: clamp(11px, 1.15vw, 14px); letter-spacing: .12em; color: #fff; text-transform: uppercase; }
.bk-spine-author { writing-mode: vertical-rl; text-orientation: mixed; font-family: var(--font-body); font-weight: 700; font-size: 9px; letter-spacing: .2em; color: rgba(255,255,255,.7); text-transform: uppercase; }

/* page block (right side) */
.bk-pages { width: var(--bd); height: var(--bh); margin: calc(var(--bh) / -2) 0 0 calc(var(--bd) / -2);
  transform: translateX(calc(var(--bw) / 2)) rotateY(90deg);
  background: repeating-linear-gradient(90deg, #d7dbe2 0, #f4f6fa 1.5px, #e4e7ee 3px);
  box-shadow: inset 0 0 8px rgba(10,31,60,.22);
}
/* top & bottom edges */
.bk-top, .bk-bottom { width: var(--bw); height: var(--bd); margin: calc(var(--bd) / -2) 0 0 calc(var(--bw) / -2);
  background: repeating-linear-gradient(0deg, #d7dbe2 0, #f6f8fb 1.5px, #e4e7ee 3px); }
.bk-top { transform: translateY(calc(var(--bh) / -2)) rotateX(90deg); box-shadow: inset 0 2px 6px rgba(10,31,60,.18); }
.bk-bottom { transform: translateY(calc(var(--bh) / 2)) rotateX(-90deg); background: repeating-linear-gradient(0deg, #c2c7d1 0, #e8ebf1 1.5px, #d3d7e0 3px); }

/* ground shadow */
.book-shadow {
  position: absolute; left: 50%; bottom: -34px; width: 78%; height: 30px;
  transform: translateX(-54%) rotateX(72deg); transform-style: flat;
  background: radial-gradient(closest-side, rgba(10,31,60,.42), rgba(10,31,60,0) 78%);
  filter: blur(7px); z-index: -1; border-radius: 50%;
}

/* floating best-seller seal */
.book-seal {
  position: absolute; z-index: 5; top: -18px; right: -16px;
  width: 92px; height: 92px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #FFE08A 0%, var(--ao-sun) 46%, #F4A400 100%);
  color: var(--ao-ink); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 14px 30px rgba(244,164,0,.46), inset 0 0 0 3px rgba(255,255,255,.5);
  transform: rotate(11deg) translateZ(150px); font-family: var(--font-display);
}
.book-seal .s-1 { font-size: 22px; font-weight: 800; line-height: 1; }
.book-seal .s-2 { font-size: 8.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; line-height: 1.1; }

/* --- copy side --- */
.book-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,201,60,.16); border: 1px solid rgba(244,164,0,.34); color: #8a5a00; font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .02em; padding: 7px 15px; border-radius: 999px; }
.book-badge .bb-stars { color: var(--ao-sun); letter-spacing: 1px; font-size: 13px; -webkit-text-stroke: .4px #e09a00; }
.book-copy h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; line-height: 1.06; font-size: clamp(28px, 3.4vw, 42px); color: var(--fg-1); margin: 18px 0 0; }
.book-sub2 { font-family: var(--font-script); font-size: clamp(20px, 2.2vw, 27px); color: var(--ao-teal-600); margin-top: 6px; line-height: 1.15; }
.book-copy > p { font-size: 16.5px; line-height: 1.62; color: var(--fg-2); margin-top: 18px; max-width: 560px; }
.book-copy > p b { color: var(--fg-1); }
.book-points { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.book-points li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; font-size: 15.5px; line-height: 1.45; color: var(--fg-1); }
.book-points li svg { width: 20px; height: 20px; margin-top: 1px; color: var(--ao-green-600); }
.book-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 28px; }
.book-meta { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--fg-3); }
.book-meta b { color: var(--fg-1); }
.book-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong, rgba(10,31,60,.25)); }

@media (max-width: 880px){
  .book-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .book-copy { max-width: 600px; margin: 0 auto; }
  .book-copy > p { margin-left: auto; margin-right: auto; }
  .book-badge { margin: 0 auto; }
  .book-points { text-align: left; max-width: 460px; margin: 22px auto 0; }
  .book-cta-row { justify-content: center; }
}
@media (max-width: 480px){
  .book3d { --bd: 24px; }
  .book3d-box { transform: rotateX(5deg) rotateY(-22deg); }
  .book-seal { width: 78px; height: 78px; top: -12px; right: 2px; }
  .book-seal .s-1 { font-size: 18px; }
}
