/* ============================================================
   GM CREATOR ACADEMY — cinematic site
   Fonts: Bricolage Grotesque (display) · Instrument Serif (accents)
          · Schibsted Grotesk (body) · Anton (poster option)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Instrument+Serif:ital@0;1&family=Schibsted+Grotesk:wght@400..800&family=Anton&display=swap');

/* ---------- tokens / themes ---------- */
:root {
  --bg: #0b0a08;
  --bg-soft: #14110d;
  --bg-card: #16130f;
  --fg: #f4efe6;
  --muted: #a59c8d;
  --faint: #6f675b;
  --line: rgba(244, 239, 230, 0.12);
  --line-strong: rgba(244, 239, 230, 0.24);
  --accent: #e9863f;
  --accent-ink: #140b04;
  --accent-soft: color-mix(in oklab, var(--accent) 16%, transparent);
  --grain-opacity: 0.05;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-body: 'Schibsted Grotesk', sans-serif;
  --font-poster: 'Anton', sans-serif;
  --headline: var(--font-display);

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 90px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

:root[data-theme="noir"] {
  --bg: #08080a;
  --bg-soft: #121215;
  --bg-card: #131316;
  --fg: #f5f5f4;
  --muted: #9d9d9f;
  --faint: #65656a;
  --line: rgba(245, 245, 244, 0.12);
  --line-strong: rgba(245, 245, 244, 0.26);
  --accent: #ececed;
  --accent-ink: #0a0a0b;
}

:root[data-theme="midnight"] {
  --bg: #070a10;
  --bg-soft: #0d121b;
  --bg-card: #0e141f;
  --fg: #e7eef7;
  --muted: #8f9bad;
  --faint: #5d6878;
  --line: rgba(231, 238, 247, 0.12);
  --line-strong: rgba(231, 238, 247, 0.26);
  --accent: #6aa3ff;
  --accent-ink: #04101f;
}

:root[data-grain="off"] { --grain-opacity: 0; }

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--accent-ink); }
h1, h2, h3, h4 { font-family: var(--headline); font-weight: 600; line-height: 0.96; letter-spacing: -0.03em; }
.serif { font-family: var(--font-serif); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }

/* scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 9000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: var(--grain-opacity); mix-blend-mode: overlay;
  animation: grain 0.5s steps(3) infinite; transition: opacity 0.4s;
}
@keyframes grain {
  0% { transform: translate(0,0); } 33% { transform: translate(-6%,3%); }
  66% { transform: translate(4%,-5%); } 100% { transform: translate(0,0); }
}
.vignette {
  position: fixed; inset: 0; z-index: 8000; pointer-events: none;
  box-shadow: inset 0 0 200px 40px rgba(0,0,0,0.55);
}

/* ---------- custom cursor ---------- */
@media (pointer: fine) {
  :root:not([data-cursor="off"]) body { cursor: none; }
  :root:not([data-cursor="off"]) a,
  :root:not([data-cursor="off"]) button { cursor: none; }
  .cur-dot, .cur-ring { position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none;
    border-radius: 50%; transform: translate(-50%, -50%); will-change: transform; }
  .cur-dot { width: 6px; height: 6px; background: var(--accent); }
  .cur-ring { width: 38px; height: 38px; border: 1px solid var(--line-strong);
    transition: width .25s var(--ease), height .25s var(--ease), background .25s, border-color .25s; }
  body.cur-hover .cur-ring { width: 64px; height: 64px; border-color: var(--accent); background: var(--accent-soft); }
  body.cur-down .cur-ring { width: 28px; height: 28px; }
}
:root[data-cursor="off"] .cur-dot, :root[data-cursor="off"] .cur-ring { display: none; }

/* ---------- HUD / letterbox ---------- */
.hud { position: fixed; left: 0; right: 0; z-index: 60; pointer-events: none;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hud .row { display: flex; justify-content: space-between; padding: 14px var(--pad); }
.hud-top { top: 0; } .hud-bot { bottom: 0; }
.hud .rec { display: inline-flex; align-items: center; gap: 7px; color: var(--fg); }
.hud .rec::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #e5484d; animation: blink 1.4s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0.15; } }
:root[data-hud="off"] .hud { display: none; }

/* progress scrubber */
.scrub { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--accent); z-index: 70; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { position: relative; }
.eyebrow { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.eyebrow.dim { color: var(--muted); }
.divider { height: 1px; background: var(--line); }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .grain { animation: none; }
}

/* ---------- buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  padding: 16px 28px; border-radius: 100px; border: 1px solid transparent; white-space: nowrap;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s; will-change: transform; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--fg); color: var(--bg); }
.btn-ghost { border-color: var(--line-strong); color: var(--fg); background: transparent; }
.btn-ghost:hover { border-color: var(--fg); background: var(--fg); color: var(--bg); }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 80; transition: background .4s, backdrop-filter .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav.solid { background: color-mix(in oklab, var(--bg) 78%, transparent); backdrop-filter: blur(14px); border-color: var(--line); }
.nav .inner { display: flex; align-items: center; justify-content: space-between; padding: 18px var(--pad); }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--headline); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.brand .mark { width: 30px; height: 30px; border-radius: 7px; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-weight: 800; font-size: 15px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14px; color: var(--muted); transition: color .25s; }
.nav-links a:hover { color: var(--fg); }
.nav .nav-cta { color: var(--accent-ink); font-weight: 700; }
.nav .nav-cta:hover { color: var(--bg); }
.nav-cta { display: inline-flex; }
@media (max-width: 860px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ---------- hero ---------- */
.hero { min-height: 100svh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media .ph { width: 100%; height: 100%; }
.hero-media .hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, color-mix(in oklab,var(--bg) 60%,transparent) 0%, transparent 22%, transparent 38%, color-mix(in oklab,var(--bg) 72%,transparent) 70%, color-mix(in oklab,var(--bg) 94%,transparent) 90%, var(--bg) 100%),
    linear-gradient(75deg, color-mix(in oklab,var(--bg) 72%,transparent) 0%, color-mix(in oklab,var(--bg) 30%,transparent) 34%, transparent 60%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: clamp(110px, 16vh, 180px); padding-bottom: clamp(48px, 9vh, 120px); }
.hero h1 { font-size: clamp(58px, 13vw, 200px); font-weight: 600; }
.hero h1 .serif { font-size: 0.95em; }
.hero .lead { max-width: 540px; margin-top: 26px; font-size: clamp(16px, 1.5vw, 20px); color: var(--fg); opacity: .9; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 11px; padding: 9px 16px; border: 1px solid var(--line-strong);
  border-radius: 100px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg); margin-bottom: 30px;
  background: color-mix(in oklab, var(--bg) 40%, transparent); backdrop-filter: blur(6px); }
.hero-eyebrow .live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in oklab,var(--accent) 60%,transparent); } 70% { box-shadow: 0 0 0 12px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-stats { display: flex; gap: clamp(24px,4vw,60px); margin-top: 56px; flex-wrap: wrap; }
.stat .n { font-family: var(--headline); font-size: clamp(28px,3vw,42px); font-weight: 600; letter-spacing: -0.03em; }
.stat .l { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.scroll-cue { position: absolute; bottom: 26px; right: var(--pad); left: auto; transform: none; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 1024px) { .scroll-cue { display: none; } }

/* ---------- logo strip ---------- */
.logos { padding: clamp(44px,6vw,76px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos-label { text-align: center; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-bottom: clamp(28px,3.4vw,40px); }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logo-marquee .track { display: flex; align-items: center; gap: clamp(70px, calc(30vw - 70px), 600px); width: max-content; animation: scrollx 44s linear infinite; }
.logo-marquee:hover .track { animation-play-state: paused; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(34px,6vw,84px); }
.logo-mark { color: var(--fg); opacity: 0.62; white-space: nowrap; transition: opacity .35s var(--ease); font-family: var(--headline); font-weight: 700; font-size: clamp(22px,2.4vw,32px); letter-spacing: -0.01em; }
.logo-mark:hover { opacity: 1; }
.logo-img { height: clamp(27px,3vw,38px); width: auto; max-width: 200px; object-fit: contain; opacity: 0.6; filter: grayscale(1) brightness(1.6); transition: opacity .35s var(--ease); }
.logo-img:hover { opacity: 1; }
.logo-img.logo-tall { height: clamp(38px,4.2vw,50px); }

/* ---------- VSL ---------- */
.vsl-player { position: relative; max-width: 1000px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-strong); background: #000; cursor: pointer;
  box-shadow: 0 50px 120px -50px rgba(0,0,0,0.9), 0 0 0 1px var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.vsl-player:hover { transform: translateY(-4px); box-shadow: 0 60px 140px -50px var(--accent), 0 0 0 1px var(--accent-soft); }
.vsl-poster { position: absolute; inset: 0; z-index: 5; transition: opacity .5s var(--ease); }
.vsl-thumb { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62) saturate(0.92); transition: filter .5s var(--ease), transform .9s var(--ease); }
.vsl-player:hover .vsl-thumb { filter: brightness(0.7); transform: scale(1.04); }
.vsl-poster::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, transparent, rgba(0,0,0,0.4)); pointer-events: none; }
.vsl-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: clamp(74px,9vw,104px); height: clamp(74px,9vw,104px); border-radius: 50%; border: 0; cursor: pointer;
  background: var(--accent); display: grid; place-items: center; transition: transform .35s var(--ease), background .35s;
  box-shadow: 0 0 0 0 var(--accent-soft); animation: vslpulse 2.6s infinite; }
.vsl-player:hover .vsl-play { transform: translate(-50%,-50%) scale(1.08); background: var(--fg); }
.vsl-play-ic { width: 0; height: 0; border-left: clamp(20px,2.4vw,28px) solid var(--accent-ink); border-top: clamp(13px,1.5vw,18px) solid transparent; border-bottom: clamp(13px,1.5vw,18px) solid transparent; margin-left: 6px; }
@keyframes vslpulse { 0% { box-shadow: 0 0 0 0 color-mix(in oklab,var(--accent) 55%,transparent); } 70% { box-shadow: 0 0 0 26px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.vsl-badge { position: absolute; top: 16px; left: 16px; z-index: 2; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--fg); background: color-mix(in oklab,var(--bg) 55%,transparent); backdrop-filter: blur(8px); border: 1px solid var(--line); padding: 7px 13px; border-radius: 100px; }
.vsl-caption { position: absolute; bottom: 18px; left: 18px; z-index: 2; font-family: var(--headline); font-weight: 600; font-size: clamp(16px,1.8vw,22px); letter-spacing: -0.02em; color: var(--fg); text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.vsl-player.playing { cursor: pointer; }
.vsl-player.playing .vsl-poster { opacity: 0; pointer-events: none; }
.vsl-player iframe, .vsl-player video.vsl-video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; background: #000; }

/* transparent shield: keeps custom cursor alive over the iframe + handles click-to-pause */
.vsl-shield { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.vsl-player.playing .vsl-shield { pointer-events: auto; }
.vsl-player.is-ended .vsl-shield { pointer-events: none; }

/* buffering spinner */
.vsl-spinner { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 6;
  width: 54px; height: 54px; border-radius: 50%; border: 3px solid var(--line-strong); border-top-color: var(--accent);
  opacity: 0; pointer-events: none; transition: opacity .25s; animation: vslspin 0.8s linear infinite; }
.vsl-player.is-loading .vsl-spinner { opacity: 1; }
@keyframes vslspin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* big center play/pause (shows only when paused mid-video) */
.vsl-bigpause { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.9); z-index: 3;
  width: clamp(70px,8vw,92px); height: clamp(70px,8vw,92px); border-radius: 50%; border: 0; cursor: pointer;
  background: color-mix(in oklab,var(--bg) 40%,transparent); backdrop-filter: blur(8px); border: 1px solid var(--line-strong);
  display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.vsl-player.is-paused .vsl-bigpause { opacity: 1; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }
.vsl-pause-ic { width: 0; height: 0; border-left: clamp(18px,2vw,24px) solid var(--fg); border-top: clamp(11px,1.3vw,15px) solid transparent; border-bottom: clamp(11px,1.3vw,15px) solid transparent; margin-left: 5px; }

/* end screen */
.vsl-end { position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 12px; padding: 30px; opacity: 0; pointer-events: none; transition: opacity .5s var(--ease);
  background: radial-gradient(90% 90% at 50% 50%, color-mix(in oklab,var(--bg) 82%,transparent), var(--bg) 92%); }
.vsl-player.is-ended .vsl-end { opacity: 1; pointer-events: auto; }
.vsl-end .eyebrow { margin-bottom: 4px; }
.vsl-end h3 { font-size: clamp(30px,4vw,52px); }
.vsl-end p { color: var(--muted); font-size: clamp(14px,1.3vw,17px); max-width: 42ch; }
.vsl-end-cta { display: flex; align-items: center; gap: 18px; margin-top: 14px; flex-wrap: wrap; justify-content: center; }
.vsl-replay { background: none; border: 0; color: var(--muted); font-family: var(--font-body); font-size: 14px; cursor: pointer; transition: color .25s; }
.vsl-replay:hover { color: var(--fg); }

.vsl-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: clamp(32px,4vw,46px); }
.vsl-note { font-size: 13.5px; color: var(--faint); letter-spacing: 0.02em; }
.logo-mark.serif-mark { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(24px,2.7vw,36px); letter-spacing: 0; }
.logo-mark.wide-mark { letter-spacing: 0.16em; font-weight: 600; font-size: clamp(18px,2vw,26px); }
.scroll-cue .bar { width: 1px; height: 42px; background: linear-gradient(var(--muted), transparent); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--accent); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0% { top: -50%; } 100% { top: 100%; } }

/* ---------- placeholder (footage drop) ---------- */
.ph { position: relative; background:
    repeating-linear-gradient(135deg, var(--bg-soft) 0 14px, var(--bg-card) 14px 28px);
  display: grid; place-items: center; overflow: hidden; }
.ph::before { content: attr(data-label); position: absolute; bottom: 14px; left: 14px;
  font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint);
  border: 1px solid var(--line); padding: 5px 9px; border-radius: 5px; background: color-mix(in oklab,var(--bg) 50%,transparent); }
.ph .play { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--fg); opacity: .55; }
.ph .play::after { content: ""; border-left: 14px solid currentColor; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.marquee .track { display: flex; gap: 60px; width: max-content; animation: scrollx 38s linear infinite; }
.marquee.rev .track { animation-direction: reverse; }
.marquee:hover .track { animation-play-state: paused; }
.marquee .item { font-family: var(--headline); font-weight: 700; font-size: clamp(40px, 7vw, 110px); letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px var(--line-strong); display: inline-flex; align-items: center; gap: 60px; }
.marquee .item .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); -webkit-text-stroke: 0; }
.marquee.fill .item { color: var(--fg); -webkit-text-stroke: 0; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* pill marquee (small) */
.pills { overflow: hidden; padding: 18px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.pills .track { display: flex; gap: 14px; width: max-content; animation: scrollx 30s linear infinite; }
.pills.rev .track { animation-direction: reverse; }
.pill { border: 1px solid var(--line); border-radius: 100px; padding: 11px 20px; font-size: 14px; color: var(--muted); white-space: nowrap; display: inline-flex; align-items: center; gap: 9px; }
.pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ---------- section header ---------- */
.shead { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: clamp(48px,7vw,90px); }
.shead h2 { font-size: clamp(40px, 6.5vw, 96px); }
.shead .sub { color: var(--muted); max-width: 520px; font-size: clamp(16px,1.4vw,19px); }
.section-pad { padding: clamp(90px, 13vw, 180px) 0; }

/* ---------- process ---------- */
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: clamp(20px,4vw,60px);
  padding: clamp(30px,4vw,52px) 0; border-top: 1px solid var(--line); transition: padding-left .5s var(--ease); position: relative; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--accent-soft); z-index: -1; transition: width .5s var(--ease); }
.step:hover { padding-left: 28px; }
.step:hover::before { width: 100%; }
.step .num { font-family: var(--headline); font-size: clamp(40px,5vw,76px); font-weight: 600; color: transparent; -webkit-text-stroke: 1px var(--line-strong); transition: color .4s, -webkit-text-stroke .4s; }
.step:hover .num { color: var(--accent); -webkit-text-stroke: 0; }
.step h3 { font-size: clamp(26px, 3.4vw, 50px); }
.step .desc { color: var(--muted); max-width: 420px; font-size: 16px; }
.step .tag { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
@media (max-width: 760px) {
  .step { grid-template-columns: 1fr; gap: 14px; }
  .step .tag { display: none; }
}

/* ---------- modules grid ---------- */
.mods { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.mod { position: relative; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--bg-card);
  min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; transition: border-color .4s, transform .5s var(--ease); }
.mod:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.mod .mod-media { position: absolute; inset: 0; z-index: 0; }
.mod .mod-media .ph { width: 100%; height: 100%; }
.mod .mod-media .mimg { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.mod:not(.shot) .mod-media .mimg { filter: brightness(0.78) saturate(0.78) contrast(1.06); }
.mod:not(.shot) .mod-media::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: color-mix(in oklab, var(--bg) 26%, transparent); }
.mod:hover .mod-media .mimg { transform: scale(1.05); }
.mod .mod-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, transparent 20%, color-mix(in oklab,var(--bg-card) 55%,transparent) 52%, color-mix(in oklab,var(--bg-card) 88%,transparent) 80%, var(--bg-card) 100%); }
.mod .mod-body { position: relative; z-index: 1; padding: 26px; }

/* ---- screenshot cards: framed app window ---- */
.mod.shot .mod-media { display: flex; align-items: flex-start; justify-content: center; padding: 30px 24px 0; overflow: hidden;
  background: radial-gradient(130% 110% at 75% -10%, var(--accent-soft), transparent 52%), linear-gradient(165deg, var(--bg-soft) 0%, #050505 100%); }
.mod.shot .mod-media::after { background: linear-gradient(180deg, transparent 34%, color-mix(in oklab,var(--bg-card) 55%,transparent) 56%, color-mix(in oklab,var(--bg-card) 85%,transparent) 72%, var(--bg-card) 86%); }
.mod.shot .winframe { width: 110%; border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(0,0,0,0.4); background: #0c0c0e;
  transform: perspective(1100px) rotateX(15deg) rotateY(-13deg) scale(0.98); transform-origin: center top; transition: transform .6s var(--ease); }
.mod.shot:hover .winframe { transform: perspective(1100px) rotateX(6deg) rotateY(-5deg) scale(1.04); }
.mod.shot .winbar { height: 30px; display: flex; align-items: center; gap: 7px; padding: 0 13px; background: #141418; border-bottom: 1px solid var(--line); }
.mod.shot .winbar span { width: 10px; height: 10px; border-radius: 50%; background: #3a3a40; }
.mod.shot .winbar span:nth-child(1) { background: #e0695a; }
.mod.shot .winbar span:nth-child(2) { background: #dcb04c; }
.mod.shot .winbar span:nth-child(3) { background: #58b377; }
.mod.shot .winframe .mimg { width: 100%; height: auto; display: block; transform: none; }
.mod.shot:hover .winframe .mimg { transform: none; }
/* readability scrim behind text on screenshot cards */
.mod.shot .mod-body { padding-top: 72px; background: linear-gradient(180deg, transparent 0%, color-mix(in oklab, var(--bg-card) 78%, transparent) 38%, var(--bg-card) 72%); }
.mod .mod-no { font-size: 12px; letter-spacing: 0.16em; color: var(--accent); font-weight: 600; }
.mod h3 { font-size: clamp(24px, 2.4vw, 32px); margin: 10px 0 10px; }
.mod p { color: var(--muted); font-size: 15px; max-width: 38ch; }
.mod.lg { grid-column: span 7; min-height: 460px; }
.mod.sm { grid-column: span 5; }
.mod.third { grid-column: span 4; }
.mod.half { grid-column: span 6; }
@media (max-width: 900px) { .mod, .mod.lg, .mod.sm, .mod.third, .mod.half { grid-column: span 12; } }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px,5vw,80px); align-items: center; }
.about .portrait { position: relative; aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; }
.about .portrait .ph { width: 100%; height: 100%; }
.about .portrait .pimg { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.about .big { font-size: clamp(34px,4.6vw,68px); line-height: 1.0; margin-bottom: 26px; }
.about .body { color: var(--muted); font-size: clamp(16px,1.3vw,19px); }
.about .body strong { color: var(--fg); font-weight: 500; }
.about .body + .body { margin-top: 18px; }
.about .sig { font-family: var(--font-serif); font-style: italic; font-size: 30px; margin-top: 30px; color: var(--fg); }
.namecard { position: absolute; left: 18px; bottom: 18px; z-index: 2; display: flex; flex-direction: column; gap: 2px;
  background: color-mix(in oklab,var(--bg) 60%,transparent); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; }
.namecard .n { font-family: var(--headline); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; }
.namecard .r { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } .about .portrait { order: -1; max-width: 440px; } }

/* ---------- testimonials ---------- */
.tgrid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 16px; }
.tcard { border: 1px solid var(--line); border-radius: 16px; padding: 28px; background: var(--bg-card); display: flex; flex-direction: column; gap: 18px; transition: border-color .4s, transform .5s var(--ease); }
.tcard:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.tcard.feature { grid-row: span 2; justify-content: space-between; }
.tcard .quote { font-size: clamp(16px,1.3vw,18px); color: var(--fg); line-height: 1.5; }
.tcard.feature .quote { font-size: clamp(20px,1.8vw,26px); font-family: var(--font-serif); font-style: italic; letter-spacing: -0.01em; line-height: 1.35; }
.tcard .who { display: flex; align-items: center; gap: 13px; }
.tcard .who .av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; }
.tcard .who .av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tcard .who .av[data-init] { display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-family: var(--headline); font-weight: 600; font-size: 18px; border: 1px solid var(--line); }
.tcard .who .av[data-init]::before { content: attr(data-init); }
.tcard .who .nm { font-weight: 600; font-size: 15px; }
.tcard .who .rl { font-size: 12.5px; color: var(--muted); }
.stars { display: flex; gap: 3px; color: var(--accent); font-size: 13px; letter-spacing: 2px; }
@media (max-width: 900px) { .tgrid { grid-template-columns: 1fr; } .tcard.feature { grid-row: auto; } }

/* ---------- not for everyone ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.col { border: 1px solid var(--line); border-radius: 18px; padding: clamp(26px,3vw,40px); background: var(--bg-card); }
.col.no { background: transparent; }
.col h3 { font-size: clamp(22px,2.2vw,30px); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.col .tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; font-family: var(--font-body); font-weight: 600; }
.col.yes .tag { background: var(--accent-soft); color: var(--accent); }
.col.no .tag { background: rgba(229,72,77,0.12); color: #e5746f; }
.crit { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); color: var(--fg); font-size: clamp(15px,1.2vw,17px); }
.crit:first-of-type { border-top: 0; }
.crit .ic { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; margin-top: 1px; }
.col.yes .ic { background: var(--accent); color: var(--accent-ink); }
.col.no .ic { border: 1px solid var(--line-strong); color: var(--faint); }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

/* ---------- transformation / the shift ---------- */
.shift-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px,2.5vw,28px); align-items: stretch; }
.shift-col { border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px,3vw,36px); background: var(--bg-card); }
.shift-col.before { background: transparent; }
.shift-col.after { position: relative; border-color: color-mix(in oklab, var(--accent) 38%, var(--line)); box-shadow: 0 0 0 1px var(--accent-soft), 0 40px 90px -50px var(--accent); }
.shift-col.after::before { content: ""; position: absolute; inset: 0; border-radius: 18px; background: radial-gradient(120% 80% at 50% 0%, var(--accent-soft), transparent 55%); pointer-events: none; }
.shift-head { margin-bottom: 8px; }
.shift-tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding: 6px 12px; border-radius: 100px; display: inline-block; }
.shift-col.before .shift-tag { background: rgba(229,72,77,0.12); color: #e5746f; }
.shift-col.after .shift-tag { background: var(--accent-soft); color: var(--accent); }
.shift-row { display: flex; gap: 13px; align-items: flex-start; padding: 15px 0; border-top: 1px solid var(--line); font-size: clamp(15px,1.2vw,17px); position: relative; }
.shift-row:first-of-type { border-top: 0; }
.shift-col.before .shift-row { color: var(--muted); }
.shift-col.after .shift-row { color: var(--fg); }
.shift-row .sx, .shift-row .sc { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; margin-top: 1px; }
.shift-row .sx { border: 1px solid var(--line-strong); color: var(--faint); }
.shift-row .sc { background: var(--accent); color: var(--accent-ink); }
.shift-arrow { display: grid; place-items: center; color: var(--accent); font-size: 30px; font-family: var(--font-body); }
@media (max-width: 820px) {
  .shift-grid { grid-template-columns: 1fr; }
  .shift-arrow { transform: rotate(90deg); padding: 6px 0; }
}

/* ---------- pricing extras ---------- */
.price .plan-toggle { position: relative; display: inline-flex; gap: 4px; padding: 5px; margin: 30px auto 0;
  border: 1px solid var(--line); border-radius: 100px; background: color-mix(in oklab, var(--bg) 55%, transparent); }
.price .plan-opt { position: relative; z-index: 1; border: 0; background: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--muted);
  padding: 10px 20px; border-radius: 100px; display: inline-flex; align-items: center; gap: 8px; transition: color .3s var(--ease); white-space: nowrap; }
.price .plan-opt.is-active { color: var(--accent-ink); }
.price .plan-opt .save { font-size: 10.5px; letter-spacing: 0.04em; padding: 2px 8px; border-radius: 100px;
  background: var(--accent-soft); color: var(--accent); transition: background .3s, color .3s; }
.price .plan-opt.is-active .save { background: rgba(0,0,0,0.2); color: var(--accent-ink); }
.price .plan-pill { position: absolute; top: 5px; bottom: 5px; left: 5px; width: 0; z-index: 0;
  border-radius: 100px; background: var(--accent); transition: left .38s var(--ease), width .38s var(--ease); }
.price .bill-note { color: var(--muted); font-size: 13.5px; margin-top: 12px; }
.price .lockline { display: flex; align-items: flex-start; gap: 8px; justify-content: center; text-align: left;
  max-width: 40ch; margin: 18px auto 0; padding: 12px 16px; border-radius: 12px;
  background: color-mix(in oklab, var(--accent) 8%, transparent); border: 1px solid var(--accent-soft);
  color: var(--fg); font-size: 13px; line-height: 1.45; }
.price .lockline .lock-ic { flex: 0 0 auto; filter: saturate(0.6); }
.price .anchor { color: var(--muted); font-size: 14.5px; max-width: 38ch; margin: 16px auto 0; line-height: 1.45; }
.price .anchor em { color: var(--fg); font-style: italic; font-family: var(--font-serif); }
.price .spots { margin-top: 22px; text-align: left; }
.price .spots-bar { height: 7px; border-radius: 100px; background: color-mix(in oklab, var(--fg) 12%, transparent); overflow: hidden; }
.price .spots-bar span { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, color-mix(in oklab,var(--accent) 70%,#fff), var(--accent)); box-shadow: 0 0 12px var(--accent); }
.price .spots-label { display: flex; justify-content: space-between; align-items: center; margin-top: 9px; font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; }
.price .spots-label strong { color: var(--fg); font-weight: 600; }
.price .spots-left { color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }
.price .guarantee { display: flex; gap: 14px; align-items: flex-start; margin: 0 clamp(26px,3vw,38px) 4px; padding: 18px 20px; border: 1px dashed var(--line-strong); border-radius: 14px; background: color-mix(in oklab,var(--accent) 6%, transparent); }
.price .guarantee .g-ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-size: 14px; }
.price .guarantee div { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.price .guarantee strong { color: var(--fg); font-weight: 600; }

/* ---------- final cta video ---------- */
.final .final-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }

/* ---------- sticky join bar ---------- */
.joinbar { position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 160%); z-index: 75; width: min(680px, calc(100vw - 32px));
  transition: transform .6s var(--ease); }
.joinbar.show { transform: translate(-50%, 0); }
.joinbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 12px 12px 22px;
  background: color-mix(in oklab, var(--bg) 80%, transparent); backdrop-filter: blur(16px); border: 1px solid var(--line-strong);
  border-radius: 100px; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8); }
.joinbar-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.joinbar-dot { flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent); animation: pulse 2.4s infinite; }
.joinbar-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.joinbar-txt strong { font-size: 15px; font-weight: 600; }
.joinbar-txt span { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.joinbar .btn { padding: 13px 22px; font-size: 14px; flex: 0 0 auto; }
@media (max-width: 540px) {
  .joinbar-txt span { display: none; }
  .joinbar-inner { padding-left: 18px; }
}

/* ---------- pricing ---------- */
.price-wrap { display: grid; place-items: center; }
.price { width: 100%; max-width: 560px; border: 1px solid var(--line-strong); border-radius: 24px; overflow: hidden; background: var(--bg-card); position: relative; }
.price::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 0%, var(--accent-soft), transparent 60%); pointer-events: none; }
.price .top { padding: clamp(30px,4vw,44px); text-align: center; border-bottom: 1px solid var(--line); position: relative; }
.price .badge { display: inline-block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent-soft); border-radius: 100px; padding: 6px 14px; margin-bottom: 20px; }
.price h3 { font-size: clamp(30px,4vw,46px); }
.price .amt { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-top: 16px; }
.price .amt .v { font-family: var(--headline); font-size: clamp(56px,8vw,88px); font-weight: 600; letter-spacing: -0.04em; }
.price .amt .p { color: var(--muted); font-size: 17px; }
.price .feats { padding: clamp(26px,3vw,38px); display: grid; gap: 15px; }
.price .feat { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; }
.price .feat .ic { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-size: 12px; margin-top: 2px; }
.price .pay { padding: 0 clamp(26px,3vw,38px) clamp(30px,4vw,40px); }
.price .pay .btn { width: 100%; justify-content: center; padding: 19px; font-size: 16px; }
.price .note { text-align: center; font-size: 13px; color: var(--faint); margin-top: 14px; }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(30px,5vw,70px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa button { width: 100%; background: none; border: 0; color: var(--fg); font-family: var(--headline); font-weight: 500;
  font-size: clamp(18px,1.7vw,24px); letter-spacing: -0.02em; text-align: left; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.qa .sign { flex: 0 0 auto; width: 28px; height: 28px; position: relative; }
.qa .sign::before, .qa .sign::after { content: ""; position: absolute; background: var(--accent); transition: transform .35s var(--ease); }
.qa .sign::before { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
.qa .sign::after { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
.qa.open .sign::before { transform: translateX(-50%) scaleY(0); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.qa .ans p { color: var(--muted); font-size: 16px; padding-bottom: 26px; max-width: 60ch; }
@media (max-width: 820px) { .faq { grid-template-columns: 1fr; } }

/* ---------- final cta ---------- */
.final { text-align: center; padding: clamp(110px,16vw,220px) 0; position: relative; overflow: hidden; }
.final .ph { position: absolute; inset: 0; z-index: 0; opacity: .35; }
.final::after { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(80% 80% at 50% 50%, transparent, var(--bg) 78%); }
.final .inner { position: relative; z-index: 2; }
.final h2 { font-size: clamp(48px,11vw,150px); }
.final .lead { color: var(--muted); max-width: 540px; margin: 28px auto 40px; font-size: clamp(16px,1.5vw,20px); }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding: 60px 0 40px; }
.foot .top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 50px; }
.foot .cols { display: flex; gap: clamp(40px,7vw,90px); flex-wrap: wrap; }
.foot .col-f h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; font-family: var(--font-body); font-weight: 600; }
.foot .col-f a { display: block; color: var(--muted); font-size: 15px; padding: 5px 0; transition: color .25s; }
.foot .col-f a:hover { color: var(--fg); }
.foot .bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); font-size: 13px; color: var(--faint); }
.foot .big-mark { font-family: var(--headline); font-weight: 700; font-size: clamp(48px,12vw,160px); letter-spacing: -0.04em; line-height: 0.8; color: transparent; -webkit-text-stroke: 1px var(--line); margin-top: 30px; white-space: nowrap; }

/* ---------- click light burst ---------- */
.click-bloom { position: fixed; pointer-events: none; z-index: 9300; width: 46vmax; height: 46vmax; border-radius: 50%;
  transform: translate(-50%,-50%) scale(0); mix-blend-mode: screen;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 42%, transparent) 0%, color-mix(in oklab, var(--accent) 14%, transparent) 26%, transparent 62%); }
.click-ring { position: fixed; pointer-events: none; z-index: 9301; width: 90px; height: 90px; border-radius: 50%;
  transform: translate(-50%,-50%) scale(0); mix-blend-mode: screen; border: 1.5px solid color-mix(in oklab, var(--accent) 70%, transparent); }

/* tweaks mount */
#tweaks-root { position: fixed; z-index: 9999; }

/* ---------- legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(110px,14vw,160px) var(--pad) clamp(80px,10vw,120px); }
.legal .eyebrow { display: block; margin-bottom: 16px; }
.legal h1 { font-size: clamp(38px,6vw,68px); margin-bottom: 12px; }
.legal .updated { color: var(--faint); font-size: 14px; letter-spacing: 0.04em; margin-bottom: clamp(34px,4vw,50px); padding-bottom: clamp(28px,3vw,40px); border-bottom: 1px solid var(--line); }
.legal .lead-note { font-family: var(--font-serif); font-style: italic; font-size: clamp(20px,2.4vw,30px); color: var(--fg); line-height: 1.4; margin-bottom: 38px; }
.legal h2 { font-size: clamp(20px,2.1vw,27px); margin: clamp(34px,4vw,48px) 0 14px; letter-spacing: -0.02em; }
.legal h2 .n { color: var(--accent); font-family: var(--font-body); font-weight: 700; font-size: 0.7em; margin-right: 12px; }
.legal p { color: var(--muted); font-size: 16.5px; line-height: 1.72; margin-bottom: 16px; max-width: 68ch; }
.legal p strong { color: var(--fg); font-weight: 600; }
.legal a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); transition: border-color .25s; }
.legal a:hover { border-color: var(--accent); }
.legal .legal-foot { margin-top: clamp(50px,7vw,80px); padding-top: 30px; border-top: 1px solid var(--line); display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; }
.legal .legal-foot a { color: var(--muted); border: 0; }
.legal .legal-foot a:hover { color: var(--fg); }
