/* ==========================================================================
   Drift landing — clean monochrome, ElevenLabs-style
   white · black · hairlines · Geist — orange reserved for the brand mark,
   color lives only inside video content (player, thumbnails)
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-2: #f7f7f4;
  --panel: #ffffff;
  --ink: #0d0d0c;
  --ink-2: #5d5d57;
  --ink-3: #9b9b93;
  --line: #e9e8e3;
  --line-2: #d9d8d1;
  --black: #0d0d0c;
  --brand: #e4572e;
  --gold: #ffc83d;            /* karaoke highlight inside video frames only */
  --ui: "Geist", "Segoe UI", sans-serif;
  --mono: "Geist Mono", Consolas, monospace;
  --rad: 16px;
  --shadow-soft: 0 1px 2px rgba(13,13,12,.04), 0 16px 40px -24px rgba(13,13,12,.18);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: #fff; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- reveals ---------- */
[data-rv] { opacity: 0; transform: translateY(14px); transition: opacity .7s cubic-bezier(.2,.6,.2,1) var(--d, 0s), transform .7s cubic-bezier(.2,.6,.2,1) var(--d, 0s); }
[data-rv].in { opacity: 1; transform: none; }

/* ---------- shared ---------- */
.mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; flex-shrink: 0;
}
.mark svg { width: 100%; height: 100%; display: block; }
.wordmark {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 19px; font-weight: 600; letter-spacing: -0.02em; text-transform: lowercase;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ui); font-size: 14px; font-weight: 550; letter-spacing: -0.005em;
  border-radius: 999px; padding: 9px 19px; cursor: pointer;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink);
  transition: border-color .15s, background .15s, color .15s;
}
.btn:hover { border-color: var(--ink-3); }
.btn.primary { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn.primary:hover { background: #2b2b28; border-color: #2b2b28; }
.btn.ghost { background: transparent; border-color: transparent; color: var(--ink-2); }
.btn.ghost:hover { color: var(--ink); }
.btn.xl { padding: 14px 30px; font-size: 16px; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
}
.kicker .rec { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: blip 1.6s ease-in-out infinite; }
@keyframes blip { 50% { opacity: .3; } }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 34px;
  padding: 14px 36px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.site-head.scrolled { border-bottom-color: var(--line); }
.site-nav { display: flex; gap: 24px; margin-left: 10px; }
.site-nav a { font-weight: 500; font-size: 14px; color: var(--ink-2); transition: color .15s; }
.site-nav a:hover { color: var(--ink); }
.head-actions { margin-left: auto; display: flex; gap: 8px; }

/* ---------- hero ---------- */
.hero {
  position: relative; max-width: 840px; margin: 0 auto;
  padding: 88px 32px 56px; text-align: center;
}
.hero-bg {
  position: absolute; inset: -80px -30vw 0; pointer-events: none; z-index: -1;
  background: radial-gradient(640px 380px at 50% -6%, rgba(228,87,46,.06), transparent 65%);
}
.hero h1 {
  font-weight: 650;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.0; letter-spacing: -0.045em;
  margin-top: 24px;
}
.hero h1 em { font-style: normal; color: var(--ink-3); }
.hero .sub {
  font-size: 17px; color: var(--ink-2); margin: 20px auto 0; max-width: 560px;
  text-wrap: balance;
}

.promptbox {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 999px;
  padding: 7px 7px 7px 24px; margin-top: 36px;
  box-shadow: var(--shadow-soft);
  transition: border-color .2s, box-shadow .2s;
}
.promptbox:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(13,13,12,.06), var(--shadow-soft); }
.promptbox input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--ui); font-size: 16.5px; color: var(--ink); padding: 11px 0;
  position: relative; z-index: 1;
}
.prompt-ghost {
  position: absolute; left: 25px; right: 150px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; text-align: left;
  font-size: 16.5px; color: var(--ink-3); pointer-events: none;
  white-space: nowrap; overflow: hidden; transition: opacity .2s;
}
.prompt-ghost .caret {
  width: 1.5px; height: 1.2em; background: var(--ink); margin-left: 2px;
  flex-shrink: 0; animation: caret-blink 1.05s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
.prompt-go {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 22px; border-radius: 999px;
  background: var(--ink); color: #fff; border: none; cursor: pointer; flex-shrink: 0;
  font-family: var(--ui); font-size: 14.5px; font-weight: 550;
  transition: background .15s;
}
.prompt-go:hover { background: #2b2b28; }

.prompt-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; }
.prompt-chips button {
  font-family: var(--ui); font-size: 13px; font-weight: 500; color: var(--ink-2);
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px; cursor: pointer; transition: all .15s;
}
.prompt-chips button:hover { border-color: var(--ink-3); color: var(--ink); }
.hero-note { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); margin-top: 20px; letter-spacing: .03em; }

/* ---------- ticker ---------- */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); overflow: hidden; padding: 11px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker-track {
  display: flex; align-items: center; gap: 26px; width: max-content;
  animation: tick 32s linear infinite;
}
.ticker-track span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap;
}
.ticker-track i { color: var(--line-2); font-style: normal; font-size: 9px; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- trusted-by logos ---------- */
.logos { padding: 56px 32px 8px; text-align: center; }
.logos-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 28px;
}
.logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 20px 46px; max-width: 980px; margin: 0 auto;
}
.logo {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--c, #6b6b64);
  transition: transform .25s, filter .25s;
}
.logo:hover { transform: translateY(-2px); filter: saturate(1.14) brightness(1.05); }
.logo svg { width: 21px; height: 21px; flex-shrink: 0; }
.logo b { font-weight: 650; font-size: 16px; letter-spacing: -0.015em; white-space: nowrap; color: inherit; }
.logo--coinwise b { font-weight: 550; letter-spacing: .01em; }
.logo--northpeak b { font-size: 12.5px; letter-spacing: .22em; font-weight: 700; }
.logo--hexalab b { font-family: var(--mono); font-weight: 550; font-size: 14px; letter-spacing: .03em; }
.logo--atlas b { font-weight: 450; font-size: 16.5px; letter-spacing: .02em; }
.logo--reelform b { font-weight: 750; font-size: 16px; letter-spacing: -0.03em; }
/* real brand colours, always on */
.logo--brightcast { --c: #e8950f; }
.logo--coinwise   { --c: #12a45f; }
.logo--northpeak  { --c: #356fd6; }
.logo--hexalab    { --c: #7a55e8; }
.logo--atlas      { --c: #0f9d8a; }
.logo--reelform   { --c: #e0445f; }

/* ---------- reel wall (auto-scrolling Shorts) ---------- */
.reelwall {
  padding: 60px 0 14px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reelwall-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3); text-align: center; margin-bottom: 30px;
}
.reel-track {
  display: flex; width: max-content; gap: 18px; padding: 6px 9px;
  animation: reelscroll 64s linear infinite;
}
.reelwall:hover .reel-track { animation-play-state: paused; }
@keyframes reelscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reel {
  position: relative; flex-shrink: 0; width: 170px;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.reel:hover { transform: translateY(-7px); }
.reel-img {
  width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block;
  border-radius: 16px; background: #14131a;
  box-shadow: 0 14px 30px -16px rgba(13,13,12,.5);
  transition: box-shadow .3s;
}
.reel:hover .reel-img { box-shadow: 0 26px 48px -16px rgba(13,13,12,.55); }
.reel-shorts {
  position: absolute; right: 10px; top: 11px; z-index: 4;
  font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.32);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border-radius: 5px; padding: 3px 6px;
}
.reel-play {
  position: absolute; left: 50%; top: 46%; z-index: 3;
  transform: translate(-50%,-50%) scale(.86);
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(18,16,24,.4); border: 1px solid rgba(255,255,255,.5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .3s, transform .3s;
}
.reel-play svg { margin-left: 2px; }
.reel:hover .reel-play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.reel-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  margin-top: 9px; padding: 0 2px;
}
.reel-ch { font-size: 12px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.reel-views {
  font-family: var(--mono); font-size: 10px; color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
}
.reel-views svg { width: 11px; height: 11px; opacity: .8; }

@media (prefers-reduced-motion: reduce) {
  .reel-track { animation: none; }
}

/* ---------- sections ---------- */
/* ---------- concept: input → output (you bring a topic, Drift posts a video) ---------- */
.concept { max-width: 1140px; margin: 0 auto; padding: 10px 32px 14px; }
.flow { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.flow-in, .flow-out { display: flex; flex-direction: column; align-items: center; }
.flow-tag { font-size: 12px; font-weight: 600; color: var(--ink-3); margin-bottom: 10px; }
.flow-topic {
  display: inline-flex; align-items: center;
  background: #fff; border: 1px solid var(--line-2); border-radius: 999px;
  padding: 12px 18px; font-size: 14.5px; font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.flow-caret { width: 1.5px; height: 15px; background: var(--ink); margin-left: 4px; animation: flowblink 1.1s step-end infinite; }
@keyframes flowblink { 50% { opacity: 0; } }
.flow-arrow { width: 24px; height: 24px; color: var(--ink-3); flex-shrink: 0; }
.flow-mark { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.flow-mark .mark { width: 44px; height: 44px; }
.flow-mark .mark img { width: 100%; height: 100%; object-fit: contain; }
.flow-mark b { font-size: 15px; font-weight: 650; letter-spacing: -0.02em; text-transform: lowercase; }
.flow-mark em { font-size: 11px; font-style: normal; color: var(--ink-3); }
.flow-video {
  position: relative; width: 290px; aspect-ratio: 16/9; border-radius: var(--rad); overflow: hidden;
  border: 1px solid var(--line); background: #000;
  box-shadow: 0 30px 60px -34px rgba(13,13,12,.5);
}
.flow-video img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flow-play {
  position: absolute; inset: 0; margin: auto; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(13,13,12,.5); backdrop-filter: blur(2px);
}
.flow-badges { position: absolute; left: 8px; bottom: 8px; display: flex; gap: 6px; }
.flow-badges i {
  font-style: normal; font-size: 11px; font-weight: 600; color: #fff;
  background: rgba(13,13,12,.62); border-radius: 6px; padding: 3px 8px; backdrop-filter: blur(2px);
}
.flow-badges i.ok { background: rgba(46,125,91,.92); }
.flow-cap { text-align: center; font-size: 14px; color: var(--ink-2); margin: 24px auto 0; max-width: 600px; text-wrap: balance; }
@media (max-width: 760px) {
  .flow { gap: 16px; }
  .flow-arrow { transform: rotate(90deg); }
}

.section { max-width: 1140px; margin: 0 auto; padding: 110px 32px; }
.sec-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.sec-head h2 {
  font-weight: 650;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.05; letter-spacing: -0.035em;
  margin-top: 14px;
}
.sec-head h2 em { font-style: normal; color: var(--ink-3); }
.sec-sub { font-size: 16px; color: var(--ink-2); margin: 14px auto 0; max-width: 540px; }
.sec-cta {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 26px;
}
.sec-cta svg { transition: transform .2s; }
.sec-cta:hover svg { transform: translateX(3px); }

/* ==========================================================================
   THE WORK — player + rail
   ========================================================================== */
.show-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 26px; align-items: start; }

.player {
  border-radius: var(--rad); overflow: hidden;
  border: 1px solid var(--line); background: #000;
  box-shadow: 0 24px 60px -28px rgba(13,13,12,.35);
}
.pl-screen { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #07080c; }

.scene { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.scene.on { opacity: 1; }
.scene .kb { position: absolute; inset: -6%; }
.scene.on .kb { animation: kenburns 5.4s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }

/* scene: city night */
.scene--city .kb {
  background:
    radial-gradient(420px 260px at 30% 18%, rgba(82,120,210,.5), transparent 70%),
    radial-gradient(500px 300px at 78% 30%, rgba(255,130,60,.35), transparent 70%),
    linear-gradient(180deg, #0b1226 0%, #14203e 52%, #060a16 100%);
}
.scene--city .kb::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46%;
  background:
    linear-gradient(90deg,
      #04060c 0 7%,  transparent 7% 9%,
      #070b16 9% 18%, transparent 18% 19.5%,
      #04060c 19.5% 31%, transparent 31% 33%,
      #080d1a 33% 44%, transparent 44% 45.5%,
      #05070e 45.5% 58%, transparent 58% 60%,
      #070b16 60% 73%, transparent 73% 74.5%,
      #04060c 74.5% 88%, transparent 88% 90%,
      #080d1a 90% 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18%);
          mask-image: linear-gradient(180deg, transparent 0, #000 18%);
}
.chapter-card {
  position: absolute; left: 26px; top: 24px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 7px;
  padding: 6px 12px; background: rgba(8,8,10,.5); backdrop-filter: blur(4px);
  opacity: 0; transform: translateY(8px);
}
.scene.on .chapter-card { animation: chapcard .8s .25s ease forwards; }
@keyframes chapcard { to { opacity: 1; transform: none; } }

/* scene: stat */
.scene--stat { background: radial-gradient(640px 400px at 50% 30%, #1a2030, #0a0d15 75%); display: grid; place-items: center; }
.stat-wrap { text-align: center; }
.stat-wrap b {
  display: block; font-weight: 750;
  font-size: clamp(38px, 5.6vw, 70px); letter-spacing: -0.035em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat-wrap span { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.stat-bars { display: flex; gap: 7px; justify-content: center; margin-top: 18px; height: 28px; align-items: flex-end; }
.stat-bars i { width: 20px; background: rgba(255,255,255,.85); border-radius: 3px 3px 0 0; height: 0; }
.scene.on .stat-bars i { animation: bargrow .9s cubic-bezier(.2,.8,.2,1) forwards; }
.stat-bars i:nth-child(1) { --bh: 36%; animation-delay: .5s !important; }
.stat-bars i:nth-child(2) { --bh: 58%; animation-delay: .65s !important; }
.stat-bars i:nth-child(3) { --bh: 44%; animation-delay: .8s !important; }
.stat-bars i:nth-child(4) { --bh: 90%; animation-delay: .95s !important; }
.stat-bars i:nth-child(5) { --bh: 68%; animation-delay: 1.1s !important; }
@keyframes bargrow { to { height: var(--bh, 60%); } }

/* scene: compare */
.scene--compare { background: radial-gradient(620px 380px at 50% 40%, #16191f, #0a0b0e 78%); display: grid; place-items: center; }
.cmp { display: flex; align-items: center; gap: 20px; }
.cmp-card {
  text-align: center; border-radius: 14px; padding: 20px 28px;
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05);
  opacity: 0; transform: translateY(16px);
}
.scene.on .cmp-card.a { animation: cmpin .7s .25s cubic-bezier(.2,.8,.2,1) forwards; }
.scene.on .cmp-card.b { animation: cmpin .7s .55s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes cmpin { to { opacity: 1; transform: none; } }
.cmp-card span { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.cmp-card b { display: block; font-weight: 750; font-size: clamp(24px, 3vw, 40px); letter-spacing: -0.03em; margin: 4px 0 2px; color: #fff; }
.cmp-card.b { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); }
.cmp-card i { font-style: normal; font-size: 12px; color: rgba(255,255,255,.55); }
.cmp-vs { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: rgba(255,255,255,.4); }

/* scene: horizon */
.scene--horizon .kb {
  background:
    radial-gradient(360px 200px at 50% 62%, rgba(255,170,60,.55), transparent 72%),
    linear-gradient(180deg, #1a1024 0%, #3d1c2a 38%, #aa4a20 62%, #160d12 63%, #0a0709 100%);
}
.scene--horizon .kb::before {
  content: ""; position: absolute; left: 50%; top: 47%; width: 90px; height: 90px;
  transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, #ffd9a0, #ff9040 70%);
  box-shadow: 0 0 70px 18px rgba(255,150,60,.5);
}

.vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 100% at 50% 40%, transparent 58%, rgba(0,0,0,.45));
}

/* captions — karaoke yellow lives here, like the real renders */
.cap {
  position: absolute; left: 8%; right: 8%; bottom: 50px;
  text-align: center; pointer-events: none;
  font-weight: 800;
  font-size: clamp(13px, 1.7vw, 21px); line-height: 1.35; letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,.9), 0 0 22px rgba(0,0,0,.6);
}
.cap b { font-weight: 800; color: #fff; transition: color .12s, transform .12s; display: inline-block; }
.cap b.hot { color: var(--gold); transform: scale(1.07); }

/* player top overlay */
.pl-top {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 20px 30px;
  background: linear-gradient(180deg, rgba(0,0,0,.5), transparent);
}
.pl-title { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.8); }
.pl-badge {
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  padding: 4px 11px; background: rgba(10,8,6,.5); white-space: nowrap;
}

/* player chrome */
.pl-chrome {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 16px; background: #0d0d0c;
}
.pl-play {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: #fff; color: #0d0d0c; border: none; cursor: pointer; flex-shrink: 0;
}
.pl-progress {
  position: relative; flex: 1; height: 4px; border-radius: 3px; background: rgba(255,255,255,.18); overflow: visible;
}
.pl-fill {
  display: block; height: 100%; width: 0%;
  background: #fff; border-radius: 3px;
}
.pl-progress i { position: absolute; top: -2px; width: 2px; height: 8px; background: rgba(255,255,255,.35); border-radius: 1px; }
.pl-time { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.65); font-variant-numeric: tabular-nums; white-space: nowrap; }
.pl-cc, .pl-hd {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,.25); border-radius: 5px; padding: 2px 7px; color: rgba(255,255,255,.65);
}

/* ---------- example rail ---------- */
.rail { display: flex; flex-direction: column; gap: 12px; }
.rail-label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3);
}
.rail-hint { letter-spacing: .06em; color: var(--ink-3); }

.vid-card {
  display: grid; grid-template-columns: 152px 1fr; gap: 14px; align-items: center;
  padding: 9px; border-radius: 14px; border: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.vid-card:hover { border-color: var(--line); background: var(--bg-2); }

.thumb {
  position: relative; aspect-ratio: 16/9; border-radius: 9px; overflow: hidden;
  flex-shrink: 0; background: #14131a;
  box-shadow: 0 8px 22px -10px rgba(13,13,12,.35);
}
.thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.th-txt {
  position: absolute; left: 10px; top: 8px; z-index: 2;
  font-weight: 800;
  font-size: 17px; line-height: 1.02; letter-spacing: -0.02em; color: #fff;
  text-shadow: 0 2px 0 rgba(0,0,0,.55), 0 6px 16px rgba(0,0,0,.5);
}
.th-dur {
  position: absolute; right: 7px; bottom: 7px; z-index: 3;
  font-family: var(--mono); font-size: 10px; padding: 2px 6px; border-radius: 4px;
  background: rgba(0,0,0,.8); color: #fff;
}

.thumb--rule { background: radial-gradient(120% 130% at 80% 20%, #14443a, #07150f 70%); }
.th-slash {
  position: absolute; left: -12%; bottom: 26%; width: 130%; height: 12px;
  background: #e4572e; transform: rotate(-9deg);
}
.th-coin {
  position: absolute; right: 10px; bottom: 9px; width: 36px; height: 36px;
  display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffe9a8, #f0a922 65%, #9c6708);
  color: #5d3c02; font-style: normal; font-weight: 800; font-size: 18px;
  box-shadow: 0 5px 14px rgba(0,0,0,.5);
}

.thumb--sleep { background: radial-gradient(130% 140% at 22% 85%, #1d2c66, #090d22 70%); }
.th-moon {
  position: absolute; right: 16px; top: 12px; width: 32px; height: 32px; border-radius: 50%;
  background: transparent; box-shadow: 9px 4px 0 0 #ffe9b8;
  transform: rotate(-18deg);
}
.th-zz { position: absolute; right: 18px; bottom: 24px; font-style: normal; color: #9fb4ff; font-size: 17px; font-weight: 700; }
.th-zz sup { font-size: .7em; }

.thumb--box { background: linear-gradient(160deg, #0e3940, #071417 70%); }
.th-container {
  position: absolute; right: 12px; bottom: 12px; width: 60px; height: 28px; border-radius: 3px;
  background: repeating-linear-gradient(90deg, #e4572e 0 7px, #c33e1a 7px 9px);
}
.th-container::after { content: ""; position: absolute; inset: 6px 8px; border: 1.5px solid rgba(0,0,0,.3); border-radius: 2px; }

.vid-card--short .thumb { aspect-ratio: 2/3; width: 92px; margin-left: 33px; }
.thumb--short { background: radial-gradient(120% 110% at 50% 0%, #5e1212, #170505 75%); }
.thumb--short .th-txt { font-size: 12px; top: 10px; }
.th-shorts {
  position: absolute; left: 7px; bottom: 7px; z-index: 3;
  font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: #e4572e; border-radius: 4px; padding: 2px 6px;
}

/* retention overlay */
.retention {
  position: absolute; inset: auto 0 0 0; height: 56%; width: 100%; z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(5,5,6,.88) 55%);
  opacity: 0; transition: opacity .3s;
}
.retention path {
  fill: none; stroke: #fff; stroke-width: 2; vector-effect: non-scaling-stroke;
  stroke-dasharray: 220; stroke-dashoffset: 220;
}
.vid-card:hover .retention { opacity: 1; }
.vid-card:hover .retention path { animation: drawline 1s .1s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes drawline { to { stroke-dashoffset: 0; } }

.vmeta b { display: block; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.35; }
.vmeta span { display: block; font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); margin-top: 5px; }

/* ==========================================================================
   PIPELINE
   ========================================================================== */
.you-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ystep {
  display: flex; gap: 15px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--rad);
  padding: 22px 24px;
}
.yn {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: #fff; font-weight: 650; font-size: 14px;
  flex-shrink: 0;
}
.ystep h3 { font-size: 15.5px; font-weight: 650; letter-spacing: -0.015em; margin-bottom: 4px; }
.ystep p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

.handoff { display: flex; align-items: center; gap: 16px; margin: 32px 0; }
.handoff span { flex: 1; height: 1px; background: var(--line); }
.handoff b {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap;
}

.pipe-rail { height: 2px; border-radius: 2px; background: var(--line); margin-bottom: 24px; overflow: hidden; }
.pipe-rail span {
  display: block; height: 100%; width: 0;
  background: var(--ink);
  transition: width .8s cubic-bezier(.4,0,.2,1);
}

.stages { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.stage {
  position: relative; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; padding: 15px 15px 17px;
  transition: border-color .35s, transform .35s, box-shadow .35s;
}
.stage.on {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.st-n { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--ink-3); transition: color .3s; }
.stage.on .st-n { color: var(--ink); }
.stage h3 { font-size: 14px; font-weight: 650; letter-spacing: -0.01em; margin: 11px 0 4px; }
.stage p { font-size: 12px; color: var(--ink-2); line-height: 1.5; }

.st-demo {
  height: 62px; margin-top: 11px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid var(--line);
  overflow: hidden; position: relative; padding: 10px;
}

/* 01 script */
.demo-script { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.demo-script .ln { height: 5px; border-radius: 3px; background: var(--line-2); width: 0; }
.demo-script .ln.hot { background: var(--ink-3); }
.stage.on .demo-script .ln { animation: typeln .7s cubic-bezier(.2,.8,.2,1) forwards; }
.stage.on .demo-script .ln:nth-child(1) { animation-delay: .1s; }
.stage.on .demo-script .ln:nth-child(2) { animation-delay: .45s; }
.stage.on .demo-script .ln:nth-child(3) { animation-delay: .8s; }
.stage.on .demo-script .ln:nth-child(4) { animation-delay: 1.15s; }
@keyframes typeln { to { width: var(--w, 80%); } }
.st-caret { position: absolute; right: 12px; bottom: 10px; width: 1.5px; height: 11px; background: var(--ink); animation: caret-blink 1s steps(1) infinite; }

/* 02 voice */
.demo-voice { display: flex; align-items: center; justify-content: center; gap: 3px; }
.demo-voice i { width: 3px; border-radius: 2px; background: var(--line-2); height: 18%; }
.stage.on .demo-voice i { background: var(--ink); animation: wave 1s ease-in-out infinite; }
.demo-voice i:nth-child(odd) { animation-duration: .85s !important; }
.demo-voice i:nth-child(1) { animation-delay: 0s; } .demo-voice i:nth-child(2) { animation-delay: .07s; }
.demo-voice i:nth-child(3) { animation-delay: .14s; } .demo-voice i:nth-child(4) { animation-delay: .21s; }
.demo-voice i:nth-child(5) { animation-delay: .28s; } .demo-voice i:nth-child(6) { animation-delay: .35s; }
.demo-voice i:nth-child(7) { animation-delay: .42s; } .demo-voice i:nth-child(8) { animation-delay: .49s; }
.demo-voice i:nth-child(9) { animation-delay: .56s; } .demo-voice i:nth-child(10) { animation-delay: .63s; }
.demo-voice i:nth-child(11) { animation-delay: .7s; } .demo-voice i:nth-child(12) { animation-delay: .77s; }
.demo-voice i:nth-child(13) { animation-delay: .84s; } .demo-voice i:nth-child(14) { animation-delay: .91s; }
.demo-voice i:nth-child(15) { animation-delay: .98s; } .demo-voice i:nth-child(16) { animation-delay: 1.05s; }
@keyframes wave { 0%, 100% { height: 18%; } 50% { height: 86%; } }

/* 03 clips */
.demo-clips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.demo-clips i { border-radius: 5px; background: var(--line); position: relative; overflow: hidden; }
.demo-clips i::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: translateX(-100%);
}
.stage.on .demo-clips i::after { animation: shimmer 1.6s ease infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }
.stage.on .demo-clips .pick { animation: pickclip .6s 1.2s forwards; }
@keyframes pickclip { to { box-shadow: 0 0 0 2px var(--ink) inset; background: #fff; } }

/* 04 stat mini — pure CSS counter */
@property --n { syntax: "<integer>"; inherits: false; initial-value: 0; }
.demo-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.demo-stat .dnum { font-weight: 750; font-size: 18px; color: var(--ink); --n: 0; font-variant-numeric: tabular-nums; }
.demo-stat .dnum::after { content: counter(n) "%"; counter-reset: n var(--n); }
.stage.on .demo-stat .dnum { animation: countn 1.4s .2s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes countn { to { --n: 87; } }
.demo-stat .dbars { display: flex; gap: 5px; align-items: flex-end; height: 15px; }
.demo-stat .dbars i { width: 11px; border-radius: 2px 2px 0 0; background: var(--ink-3); height: 0; }
.stage.on .demo-stat .dbars i { animation: bargrow .8s forwards; }
.demo-stat .dbars i:nth-child(1) { --bh: 40%; animation-delay: .3s; } .demo-stat .dbars i:nth-child(2) { --bh: 70%; animation-delay: .45s; }
.demo-stat .dbars i:nth-child(3) { --bh: 55%; animation-delay: .6s; } .demo-stat .dbars i:nth-child(4) { --bh: 100%; animation-delay: .75s; }

/* 05 render */
.demo-render { display: flex; flex-direction: column; justify-content: center; gap: 9px; }
.demo-render .rbar { height: 6px; border-radius: 4px; background: var(--line); overflow: hidden; }
.demo-render .rbar span { display: block; height: 100%; width: 0; border-radius: 4px; background: var(--ink); }
.stage.on .demo-render .rbar span { animation: renderbar 2.4s .15s cubic-bezier(.3,.6,.4,1) forwards; }
@keyframes renderbar { to { width: 100%; } }
.demo-render .rlog { font-family: var(--mono); font-style: normal; font-size: 9px; letter-spacing: .06em; color: var(--ink-3); }
.stage.on .demo-render .rlog { color: var(--ink); }

/* 06 publish */
.demo-publish { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.demo-publish .flip { position: relative; height: 17px; overflow: hidden; border-radius: 4px; }
.demo-publish .flip span {
  position: absolute; inset: 0; display: flex; align-items: center;
  font-family: var(--mono); font-size: 8.5px; letter-spacing: .02em; color: var(--ink-2);
  padding: 0 7px; background: var(--line); border-radius: 4px;
  transform: translateY(100%);
}
.stage.on .flip .fa { animation: flipa 3s infinite; }
.stage.on .flip .fb { animation: flipb 3s infinite; }
@keyframes flipa { 0%, 45% { transform: translateY(0); } 50%, 95% { transform: translateY(-100%); } 100% { transform: translateY(0); } }
@keyframes flipb { 0%, 45% { transform: translateY(100%); } 50%, 95% { transform: translateY(0); } 100% { transform: translateY(100%); } }
.mini-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.mini-cal i { aspect-ratio: 1; border-radius: 3px; background: var(--line); }
.stage.on .mini-cal .slot { animation: slotpop .5s 1s forwards; }
.stage.on .mini-cal .slot.s2 { animation-delay: 1.4s; }
@keyframes slotpop { 60% { transform: scale(1.3); } 100% { background: var(--ink); } }

/* ==========================================================================
   THE MATH
   ========================================================================== */
.money {
  max-width: none;
  background: var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.money > * { max-width: 1140px; margin-left: auto; margin-right: auto; }
.money .sec-head { margin-bottom: 40px; }

.calc {
  max-width: 560px !important;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 36px 28px; text-align: center;
  box-shadow: var(--shadow-soft);
}
.calc-row { display: flex; gap: 6px; justify-content: center; margin-bottom: 8px; }
.calc-row button {
  flex: 1; font-family: var(--ui); font-size: 13px; font-weight: 550; color: var(--ink-2);
  background: transparent; border: 1px solid var(--line-2); border-radius: 999px;
  padding: 8px 6px; cursor: pointer; transition: all .15s; white-space: nowrap;
}
.calc-row button:hover { color: var(--ink); border-color: var(--ink-3); }
.calc-row button.on { color: #fff; background: var(--ink); border-color: var(--ink); }

.calc-rev { margin: 30px 0 4px; }
.calc-rev span {
  display: block; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3);
}
.calc-rev b {
  display: block; font-weight: 650; font-size: clamp(34px, 5vw, 46px);
  letter-spacing: -0.035em; line-height: 1.15; margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.calc-rev em { display: block; font-style: normal; font-size: 13.5px; color: var(--ink-2); margin-top: 8px; }

.calc-meta {
  display: flex; justify-content: center; gap: 10px 26px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line);
}

.tick { animation: numtick .45s cubic-bezier(.2,.8,.2,1); }
@keyframes numtick { 0% { opacity: .2; transform: translateY(5px); } 100% { opacity: 1; transform: none; } }

.m-note {
  font-size: 12.5px; color: var(--ink-3); margin: 22px auto 0; max-width: 480px;
  text-align: center;
}

/* ==========================================================================
   PRODUCED — feature grid with live micro-demos
   ========================================================================== */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feat {
  border: 1px solid var(--line); border-radius: 14px; background: #fff;
  padding: 15px 17px 19px; transition: border-color .2s;
}
.feat:hover { border-color: var(--line-2); }
.feat h3 { font-size: 14.5px; font-weight: 650; letter-spacing: -0.01em; margin: 13px 0 4px; }
.feat p { font-size: 13px; color: var(--ink-2); line-height: 1.55; }

.f-demo {
  height: 78px; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--line);
  position: relative; overflow: hidden; display: grid; place-items: center; padding: 12px;
}
/* shared dark glass pill, used over imagery */
.f-tag {
  position: absolute; left: 8px; bottom: 7px; z-index: 2;
  font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(13,13,12,.66); padding: 2px 6px; border-radius: 5px;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}

/* 1 · script — a page being written, hook line live */
.f-script { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 7px; padding: 13px 15px; }
.f-script .sl-tag {
  font-family: var(--mono); font-size: 7.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); border: 1px solid currentColor; border-radius: 4px; padding: 1px 5px;
}
.typer { font-family: var(--mono); font-size: 10px; line-height: 1.4; color: var(--ink); min-height: 14px; max-width: 100%; white-space: nowrap; overflow: hidden; }
.typer::after { content: "▌"; color: var(--ink-3); animation: caret-blink 1s steps(1) infinite; }
.f-script .ln { height: 4.5px; border-radius: 3px; background: var(--line-2); width: var(--w); }

/* 2 · voice — mirrored waveform with a sweeping playhead */
.f-voice { display: flex; align-items: center; justify-content: center; gap: 2.5px; }
.f-voice i { width: 3px; border-radius: 3px; background: linear-gradient(var(--ink), var(--ink-3)); height: 20%; animation: wave 1.1s ease-in-out infinite; }
.f-voice i:nth-child(2n) { animation-duration: .9s; background: linear-gradient(var(--ink-2), var(--line-2)); }
.f-voice i:nth-child(3n) { animation-duration: 1.3s; }
.f-voice i:nth-child(2n) { animation-delay: .1s; } .f-voice i:nth-child(3n) { animation-delay: .2s; }
.f-voice i:nth-child(5n) { animation-delay: .3s; } .f-voice i:nth-child(7n) { animation-delay: .42s; }
.f-voice .vh { position: absolute; top: 22%; bottom: 22%; width: 1.5px; border-radius: 2px; background: var(--brand); box-shadow: 0 0 7px var(--brand); animation: vsweep 3.4s ease-in-out infinite; }
@keyframes vsweep { 0% { left: 12%; } 50% { left: 88%; } 100% { left: 12%; } }

/* 3 · footage — real thumbnails, beat-matched */
.f-film { padding: 0; }
.f-film .strip { position: absolute; inset: 0; display: flex; gap: 6px; padding: 13px 0 13px 8px; width: max-content; animation: filmroll 18s linear infinite; }
.f-film .strip i {
  width: 80px; height: 100%; border-radius: 5px; flex-shrink: 0;
  background: var(--line) var(--img) center/cover no-repeat; border: 1px solid rgba(13,13,12,.06);
}
@keyframes filmroll { to { transform: translateX(-50%); } }

/* 4 · infographics — counting stat over rising bars */
.f-info { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; }
.f-info .ival { font-size: 17px; font-weight: 760; letter-spacing: -.02em; color: var(--ink); font-feature-settings: "tnum"; }
.f-info .igrow { display: flex; gap: 6px; align-items: flex-end; height: 24px; }
.f-info .igrow i { width: 11px; border-radius: 3px 3px 0 0; background: linear-gradient(var(--ink), var(--ink-2)); height: var(--h); transform-origin: bottom; animation: infogrow 2.8s ease-in-out infinite; }
.f-info .igrow i:nth-child(2) { animation-delay: .12s; } .f-info .igrow i:nth-child(3) { animation-delay: .24s; }
.f-info .igrow i:nth-child(4) { animation-delay: .36s; } .f-info .igrow i:nth-child(5) { animation-delay: .48s; }
@keyframes infogrow { 0%, 100% { transform: scaleY(.35); } 45%, 68% { transform: scaleY(1); } }

/* 5 · captions — karaoke over a real, darkened frame */
.f-cap { background: #0d0d0c; border-color: #0d0d0c; }
.f-cap::before { content: ""; position: absolute; inset: 0; background: var(--img) center/cover no-repeat; opacity: .4; }
.f-cap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(13,13,12,.65)); }
.kara { position: relative; z-index: 1; font-weight: 800; text-transform: uppercase; font-size: 13px; line-height: 1.2; letter-spacing: 0; text-align: center; }
.kara b { color: rgba(255,255,255,.62); animation: karahot 3.2s infinite; }
.kara b:nth-child(1) { animation-delay: 0s; } .kara b:nth-child(2) { animation-delay: .8s; }
.kara b:nth-child(3) { animation-delay: 1.6s; } .kara b:nth-child(4) { animation-delay: 2.4s; }
@keyframes karahot { 0%, 22% { color: var(--gold); } 26%, 100% { color: rgba(255,255,255,.62); } }

/* 6 · packaging — real thumbnail, A/B titles, A wins */
.f-pack { display: flex; align-items: center; gap: 10px; padding: 10px 12px; }
.f-pack .pk-thumb { width: 58px; height: 38px; border-radius: 6px; flex-shrink: 0; background: var(--line) var(--img) center/cover no-repeat; border: 1px solid rgba(13,13,12,.08); }
.f-pack .pk-titles { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.f-pack .pk-titles i { display: flex; align-items: center; gap: 6px; font-size: 9px; font-style: normal; line-height: 1.2; color: var(--ink-2); white-space: nowrap; overflow: hidden; }
.f-pack .pk-titles i em { margin-left: auto; font-style: normal; font-family: var(--mono); font-size: 8.5px; flex-shrink: 0; }
.f-pack .pk-a { color: var(--ink); font-weight: 600; }
.f-pack .pk-a::before { content: "✓"; font-size: 8px; color: #fff; background: var(--ink); width: 12px; height: 12px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; animation: winpulse 3s ease-in-out infinite; }
.f-pack .pk-b { opacity: .5; text-decoration: line-through; text-decoration-color: var(--ink-3); }
.f-pack .pk-b::before { content: ""; width: 12px; flex-shrink: 0; }
@keyframes winpulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(13,13,12,.18); } 50% { box-shadow: 0 0 0 3px rgba(13,13,12,0); } }

/* 7 · shorts — two real vertical thumbnails */
.f-shorts { display: flex; gap: 13px; align-items: center; justify-content: center; }
.f-shorts .ph {
  width: 27px; height: 48px; border-radius: 6px; flex-shrink: 0; position: relative;
  background: var(--ink) var(--img) center/cover no-repeat; border: 1px solid rgba(13,13,12,.12);
  box-shadow: var(--shadow-soft);
}
.f-shorts .ph span {
  position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 5px; letter-spacing: .05em; color: #fff;
  background: rgba(13,13,12,.55); padding: 1px 3px; border-radius: 3px;
}
.f-shorts .ph1 { animation: shortbob 2.6s ease-in-out infinite; }
.f-shorts .ph2 { animation: shortbob 2.6s 1.3s ease-in-out infinite; }
@keyframes shortbob { 0%, 100% { transform: translateY(2.5px); } 50% { transform: translateY(-2.5px); } }

/* 8 · schedule — calendar with booked slots */
.f-sched { display: flex; flex-direction: column; gap: 9px; justify-content: center; width: 100%; padding: 12px 15px; }
.f-sched .scal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.f-sched .scal i { aspect-ratio: 1; border-radius: 4px; background: #fff; border: 1px solid var(--line); }
.f-sched .scal .dot { background: var(--ink); border-color: var(--ink); animation: dotpulse 2.8s infinite; }
.f-sched .scal .dot.d2 { animation-delay: .9s; } .f-sched .scal .dot.d3 { animation-delay: 1.8s; }
@keyframes dotpulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.84); } }
.f-sched em { align-self: center; font-family: var(--mono); font-style: normal; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-sec .sec-head { margin-bottom: 34px; }

.credit-key { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; justify-content: center; }
.ck {
  display: inline-flex; align-items: baseline; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
  padding: 8px 17px;
}
.ck-pips { font-size: 8px; letter-spacing: 3px; color: var(--ink); }
.ck:last-child .ck-pips { color: var(--ink-3); }
.ck b { font-family: var(--mono); font-size: 12px; font-weight: 600; }
.ck i { font-style: normal; font-size: 12.5px; color: var(--ink-3); }

.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; }
.price-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--rad);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; text-align: left;
  transition: border-color .2s, box-shadow .2s;
}
.price-card:hover { border-color: var(--line-2); }
.price-card.featured { border-color: var(--ink); box-shadow: var(--shadow-soft); }
.price-card .flag {
  position: absolute; top: -12px; left: 22px;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 600;
  border-radius: 999px; padding: 3px 12px;
}
.price-card h3 { font-size: 15.5px; font-weight: 650; }
.price-card .amount {
  font-weight: 650; font-size: 38px; line-height: 1; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.price-card .amount small { font-size: 13px; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.price-card .credit-line { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); }
.price-card .credit-line b { color: var(--ink); font-weight: 600; }
.price-card .blurb { font-size: 13px; color: var(--ink-2); min-height: 3.2em; line-height: 1.5; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.price-card li { font-size: 13px; color: var(--ink-2); padding-left: 19px; position: relative; line-height: 1.45; }
.price-card li::before {
  content: ""; position: absolute; left: 1px; top: 7px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--ink);
}
.price-card .btn { margin-top: auto; }
.pricing-note { font-size: 13.5px; color: var(--ink-3); margin-top: 26px; text-align: center; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-sec { max-width: 820px; }
.faq { display: flex; flex-direction: column; gap: 9px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 0 22px; transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  padding: 17px 0; cursor: pointer; list-style: none; display: flex; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; margin-left: auto; font-size: 20px; font-weight: 400; color: var(--ink-3); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--ink-2); font-size: 14.5px; max-width: 620px; }

/* ==========================================================================
   CTA + FOOTER
   ========================================================================== */
.cta-band {
  position: relative; text-align: center; padding: 130px 32px 140px;
  border-top: 1px solid var(--line); overflow: hidden; background: var(--bg-2);
}
.cta-glow {
  position: absolute; inset: auto 0 -40%; height: 130%; pointer-events: none;
  background: radial-gradient(560px 360px at 50% 100%, rgba(228,87,46,.07), transparent 65%);
}
.cta-band h2 {
  font-weight: 650; font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.0; letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.cta-band h2 em { font-style: normal; color: var(--ink-3); }
.cta-note { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: var(--ink-3); margin-top: 18px; }

.site-foot {
  border-top: 1px solid var(--line); background: var(--bg-2);
  font-size: 13.5px; color: var(--ink-3);
}
.foot-inner {
  max-width: 1140px; margin: 0 auto; padding: 64px 32px 44px;
  display: grid; grid-template-columns: 1.5fr 2fr; gap: 56px;
}
.foot-lead { max-width: 360px; }
.foot-brand {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 18px; color: var(--ink); letter-spacing: -0.02em; text-transform: lowercase;
}
.foot-brand .mark { width: 26px; height: 26px; display: inline-grid; place-items: center; }
.foot-brand .mark svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 5px rgba(40,44,90,.22)); }
.foot-tag { margin-top: 16px; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.foot-cta { margin-top: 22px; }

.foot-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col h4 {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500; margin-bottom: 2px;
}
.foot-col a { font-size: 14px; color: var(--ink-2); transition: color .15s; width: fit-content; }
.foot-col a:hover { color: var(--ink); }

.foot-bar {
  max-width: 1140px; margin: 0 auto; padding: 22px 32px 30px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px 24px; flex-wrap: wrap;
}
.foot-copy { font-size: 12.5px; color: var(--ink-2); white-space: nowrap; }
.foot-disclaimer { flex: 1; min-width: 240px; font-size: 11.5px; line-height: 1.5; color: var(--ink-3); }
.foot-social { display: flex; align-items: center; gap: 6px; }
.foot-social a {
  width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px;
  color: var(--ink-3); transition: color .15s, background .15s;
}
.foot-social a:hover { color: var(--ink); background: var(--line); }

/* ---------- legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 72px 32px 96px; }
.legal-head { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.legal-head h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 650; letter-spacing: -0.035em; line-height: 1.04; }
.legal-head p { margin-top: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--ink-3); }
.legal-toc { margin: 0 0 40px; padding: 18px 20px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; }
.legal-toc b { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 10px; }
.legal-toc a { display: inline-block; margin: 0 18px 7px 0; font-size: 13.5px; color: var(--ink-2); text-decoration: none; }
.legal-toc a:hover { color: var(--ink); }
.legal h2 { font-size: 20px; font-weight: 650; letter-spacing: -0.02em; margin: 42px 0 12px; scroll-margin-top: 88px; }
.legal h2 span { color: var(--ink-3); font-weight: 500; margin-right: 8px; }
.legal h3 { font-size: 15.5px; font-weight: 600; margin: 24px 0 8px; }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--ink-2); }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 7px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal-note { margin-top: 40px; padding: 16px 18px; border-left: 3px solid var(--line-2); background: var(--bg-2); border-radius: 0 10px 10px 0; font-size: 13px; line-height: 1.6; color: var(--ink-3); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .show-grid { grid-template-columns: 1fr; }
  .rail { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .rail-label { grid-column: 1 / -1; }
  .stages { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .money-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-head { padding: 12px 18px; }
  .site-nav { display: none; }
  .section { padding: 76px 20px; }
  .hero { padding: 56px 20px 44px; }
  .prompt-go span { display: none; }
  .prompt-go { width: 46px; padding: 0; justify-content: center; }
  .prompt-ghost { right: 68px; }
  .you-steps { grid-template-columns: 1fr; }
  .stages { grid-template-columns: repeat(2, 1fr); }
  .rail { grid-template-columns: 1fr; }
  .vid-card--short .thumb { margin-left: 0; }
  .feat-grid, .pricing { grid-template-columns: 1fr; }
  .cap { bottom: 38px; }
  .foot-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 20px 36px; }
  .foot-lead { max-width: none; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .foot-bar { padding: 20px 20px 28px; }
}

/* ==========================================================================
   3D STUDIO SHOT — a tilted, layered shot of the real app
   monochrome dashboard on a 3D plate; color only inside the video preview
   ========================================================================== */
.studio3d {
  position: relative;
  width: 100%;
  margin: 8px auto 12px;
  max-width: 1320px;
  height: 760px;                 /* JS overrides to match the projected scale */
  overflow: hidden;
  perspective: 2200px;
  perspective-origin: 50% 46%;
}

.s3d-plate {
  position: absolute; left: 50%; top: 50%;
  width: 1460px; height: 980px;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .18s cubic-bezier(.2,.6,.2,1);
  /* fallback until JS runs */
  transform: translate(-50%,-50%) translateY(46px) scale(.78) rotateX(36deg) rotateY(24deg);
}
.s3d-tilt {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .25s cubic-bezier(.2,.6,.2,1);
}

/* no filled plate — the white app panels float on the page background.
   a soft contact shadow under the cluster grounds it without a grey box. */
.s3d-bg {
  position: absolute; inset: 8% 6% 4%; border-radius: 40px;
  background: transparent;
  box-shadow: 0 80px 130px -70px rgba(13,13,12,.35);
}

/* shared chrome inside the shot */
.s3d-ptitle {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
}
.s3d-ptitle span { font-family: var(--ui); letter-spacing: -0.01em; text-transform: none; font-size: 11px; margin-left: 4px; color: var(--ink-3); }
.s3d-ptitle .rec { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

.s3d-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-top: 1px solid var(--line);
  font-size: 12.5px; font-weight: 550; letter-spacing: -0.01em; color: var(--ink);
}
.s3d-row.dim { color: var(--ink-3); font-weight: 500; }
.s3d-row .tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 3px 9px; white-space: nowrap; flex-shrink: 0;
}
.s3d-row .tag.run { color: var(--ink); border-color: var(--ink); }
.s3d-row .tag.ok { color: #fff; background: var(--ink); border-color: var(--ink); }

/* ---- sidebar ---- */
.s3d-side {
  position: absolute; left: 16px; top: 16px; width: 226px; bottom: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 20px 16px; display: flex; flex-direction: column;
}
.s3d-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; letter-spacing: -0.02em; text-transform: lowercase; margin-bottom: 22px; }
.s3d-brand .mark { width: 22px; height: 22px; border-radius: 7px; }
.s3d-nav { display: flex; flex-direction: column; gap: 2px; }
.s3d-nav span {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 550; color: var(--ink-2);
  padding: 9px 11px; border-radius: 10px;
}
.s3d-nav span svg { width: 15px; height: 15px; flex-shrink: 0; }
.s3d-nav span.on { background: var(--bg-2); color: var(--ink); }
.s3d-credit {
  margin-top: auto; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px;
  background: var(--bg-2);
}
.s3d-credit .cr-row { display: flex; align-items: baseline; justify-content: space-between; }
.s3d-credit .cr-row span { font-size: 11px; color: var(--ink-3); }
.s3d-credit .cr-row b { font-weight: 650; font-size: 16px; letter-spacing: -0.02em; }
.s3d-meter { height: 5px; border-radius: 3px; background: var(--line-2); margin: 9px 0 8px; overflow: hidden; }
.s3d-meter i { display: block; height: 100%; width: 34%; background: var(--ink); border-radius: 3px; }
.s3d-credit em { font-family: var(--mono); font-style: normal; font-size: 9.5px; letter-spacing: .04em; color: var(--ink-3); }

/* ---- main / overview ---- */
.s3d-main { position: absolute; left: 258px; top: 16px; width: 560px; display: flex; flex-direction: column; gap: 13px; }
.s3d-head { display: flex; align-items: flex-start; justify-content: space-between; }
.s3d-head h3 { font-size: 22px; font-weight: 650; letter-spacing: -0.03em; }
.s3d-head p { font-size: 12.5px; color: var(--ink-2); margin-top: 2px; }
.s3d-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 12px; background: #fff;
}
.s3d-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

.s3d-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.s3d-stat { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; }
.s3d-stat span { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.s3d-stat b { display: block; font-weight: 650; font-size: 21px; letter-spacing: -0.03em; margin-top: 6px; font-variant-numeric: tabular-nums; }
.s3d-stat em { font-style: normal; font-size: 10.5px; color: var(--ink-3); }

.s3d-panel { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 15px 17px 6px; }
.s3d-panel .s3d-ptitle { margin-bottom: 4px; }
.s3d-panel .s3d-row:first-of-type { border-top: none; }

/* ---- autopilot feed ---- */
.s3d-feed {
  position: absolute; left: 834px; top: 16px; width: 610px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 17px 18px;
  display: flex; flex-direction: column; gap: 9px;
}
.s3d-msg {
  font-size: 12.5px; line-height: 1.5; color: var(--ink-2);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 11px; padding: 9px 12px;
}
.s3d-msg b { color: var(--ink); font-weight: 600; }
.s3d-msg.dim { background: transparent; border-color: transparent; padding: 2px 2px; color: var(--ink-3); font-size: 11.5px; }
.s3d-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 3px 0; }
.s3d-thumbs i {
  position: relative; aspect-ratio: 16/9; border-radius: 9px; overflow: hidden; display: block;
  box-shadow: 0 8px 20px -10px rgba(13,13,12,.45);
}
.s3d-thumbs i span {
  position: absolute; left: 8px; top: 6px; z-index: 2;
  font-weight: 800; font-size: 12px; line-height: 1.0; letter-spacing: -0.02em; color: #fff;
  text-shadow: 0 2px 0 rgba(0,0,0,.5), 0 5px 12px rgba(0,0,0,.5);
}
.s3d-thumbs .t1 { background: radial-gradient(120% 130% at 80% 20%, #14443a, #07150f 70%); }
.s3d-thumbs .t2 { background: radial-gradient(130% 140% at 22% 85%, #1d2c66, #090d22 70%); }
.s3d-thumbs .t3 { background: linear-gradient(160deg, #5e1212, #170505 75%); }

/* ---- production line ---- */
.s3d-line {
  position: absolute; left: 258px; top: 656px; width: 1186px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px 20px 20px;
}
.s3d-rail { height: 3px; border-radius: 3px; background: var(--line); margin: 13px 0 16px; overflow: hidden; }
.s3d-rail i { display: block; height: 100%; width: 58%; background: var(--ink); border-radius: 3px; }
.s3d-stages { display: grid; grid-template-columns: repeat(6, 1fr); gap: 11px; }
.s3d-stage {
  border: 1px solid var(--line); border-radius: 13px; padding: 12px 13px 14px;
  background: var(--bg-2);
}
.s3d-stage .n { font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; color: var(--ink-3); }
.s3d-stage b { display: block; font-size: 13px; font-weight: 650; letter-spacing: -0.01em; margin: 8px 0 3px; }
.s3d-stage em { display: flex; align-items: center; gap: 6px; font-style: normal; font-family: var(--mono); font-size: 9.5px; letter-spacing: .03em; color: var(--ink-3); }
.s3d-stage.done { background: #fff; }
.s3d-stage.done .n { color: var(--ink); }
.s3d-stage.run { background: #fff; border-color: var(--ink); box-shadow: var(--shadow-soft); }
.s3d-stage.run .n, .s3d-stage.run em { color: var(--ink); }
.srun { width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--line-2); border-top-color: var(--ink); flex-shrink: 0; animation: s3dspin .8s linear infinite; }
.srun span { display: none; }
@keyframes s3dspin { to { transform: rotate(360deg); } }

/* ---- floating, popped-forward layers ---- */
.s3d-float {
  position: absolute; left: 0; top: 0;
  transform-style: preserve-3d; will-change: transform, opacity;
  opacity: 0;
  transform: translate3d(var(--x), var(--y), calc(var(--z, 100px) - 48px));
  transition: opacity .8s cubic-bezier(.2,.6,.2,1) var(--fd, 0s), transform .8s cubic-bezier(.2,.6,.2,1) var(--fd, 0s);
}
.studio3d.live .s3d-float {
  opacity: 1;
  transform: translate3d(var(--x), var(--y), var(--z, 100px));
}

/* video preview — the only place color lives */
.s3d-player {
  width: 442px;
  border-radius: 16px; overflow: hidden; background: #000;
  border: 1px solid rgba(13,13,12,.5);
  box-shadow: 0 50px 90px -34px rgba(13,13,12,.6);
}
.s3d-player .scr {
  position: relative; aspect-ratio: 16/9;
  background:
    radial-gradient(440px 260px at 30% 18%, rgba(82,120,210,.5), transparent 70%),
    radial-gradient(500px 300px at 78% 30%, rgba(255,130,60,.35), transparent 70%),
    linear-gradient(180deg, #0b1226 0%, #14203e 52%, #060a16 100%);
}
.s3d-player .s3d-cap {
  position: absolute; left: 8%; right: 8%; bottom: 30px; text-align: center;
  font-weight: 800; font-size: 17px; line-height: 1.3; text-transform: uppercase; letter-spacing: -0.01em;
  text-shadow: 0 2px 5px rgba(0,0,0,.9);
}
.s3d-player .s3d-cap b { color: #fff; }
.s3d-player .s3d-cap b:nth-child(3) { color: var(--gold); }
.s3d-player .s3d-badge {
  position: absolute; left: 16px; top: 14px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  padding: 4px 11px; background: rgba(8,8,10,.5);
}
.s3d-player .bar {
  display: flex; align-items: center; gap: 7px; padding: 10px 14px; background: #0d0d0c;
}
.s3d-player .bar .play { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #fff; color: #0d0d0c; flex-shrink: 0; }
.s3d-player .bar .prog { position: relative; flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,.2); }
.s3d-player .bar .prog i { display: block; height: 100%; width: 40%; background: #fff; border-radius: 3px; }
.s3d-player .bar em { font-family: var(--mono); font-style: normal; font-size: 10px; color: rgba(255,255,255,.6); white-space: nowrap; }
.s3d-player .pack { background: #fff; padding: 13px 16px 6px; }

/* composer prompt — popped forward, top-right */
.s3d-compose {
  width: 366px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 16px 11px;
  box-shadow: 0 40px 80px -34px rgba(13,13,12,.5);
}
.s3d-compose .type {
  display: block; font-size: 14px; font-weight: 550; letter-spacing: -0.01em; color: var(--ink); padding-bottom: 14px;
}
.s3d-compose .type::after { content: ""; display: inline-block; width: 2px; height: 1.05em; background: var(--ink); margin-left: 2px; vertical-align: middle; animation: caret-blink 1.05s steps(1) infinite; }
.s3d-compose .c-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); padding-top: 11px; }
.s3d-compose .c-chip { font-family: var(--mono); font-size: 10px; letter-spacing: .04em; color: var(--ink-2); border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 12px; }
.s3d-compose .c-go { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: #fff; }

/* toast */
.s3d-toast {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 13px 17px;
  font-size: 12.5px; font-weight: 550; letter-spacing: -0.01em; color: var(--ink); white-space: nowrap;
  box-shadow: 0 36px 70px -30px rgba(13,13,12,.5);
}
.s3d-toast b { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 11px; }

@media (max-width: 640px) { .studio3d { display: none; } }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-rv] { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .s3d-float { opacity: 1; transform: translate3d(var(--x), var(--y), var(--z, 100px)); }
}


/* ---- morphing liquid-metal engine orb (#how handoff) ---- */
.engine-orb { display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 4px 0 30px; }
.orb-svg { width: 128px; height: 128px; overflow: visible; filter: drop-shadow(0 10px 34px rgba(91,108,255,.38)); }
.orb-halo { opacity: .5; }
.orb-breathe { transform-origin: 100px 100px; animation: orbBreathe 7s ease-in-out infinite; }
@keyframes orbBreathe { 0%,100% { transform: scale(.97); } 50% { transform: scale(1.05); } }
.engine-cap { font-size: 13px; color: var(--ink-3); letter-spacing: -0.01em; }
@media (prefers-reduced-motion: reduce) { .orb-breathe { animation: none; } }

/* ==========================================================================
   Beta tag · scroll progress · real-product tour (added)
   ========================================================================== */

/* ---------- beta band under the wordmark ---------- */
.wm-stack { display: inline-flex; flex-direction: column; align-items: stretch; line-height: 1; gap: 3px; }
.beta {
  display: block; width: 100%;
  font-family: var(--mono); font-size: 8px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; text-indent: .26em; text-align: center;
  color: #fff; line-height: 1; padding: 2.5px 0 2px; border-radius: 3px;
  background: linear-gradient(90deg, #5263d2, #0e8a68 52%, #e4572e);
}

/* ---------- scroll progress bar ---------- */
.scroll-prog {
  position: fixed; top: 0; left: 0; right: 0; height: 2.5px; z-index: 60;
  transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
  background: linear-gradient(90deg, #5263d2, #0e8a68 42%, #e4572e 74%, #5263d2);
}

/* ---------- inside the product: real screenshots ---------- */
.inside { padding-top: 96px; }
.tour { display: flex; flex-direction: column; gap: 84px; }
.tour-row {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
}
.tour-row .tour-copy { order: 1; }
.tour-row .shot { order: 2; }
.tour-row.reverse .tour-copy { order: 2; }
.tour-row.reverse .shot { order: 1; }

.tour-copy { max-width: 420px; }
.tour-n { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.tour-copy h3 { font-size: clamp(22px, 2.5vw, 31px); font-weight: 650; letter-spacing: -0.03em; line-height: 1.08; margin: 12px 0 14px; }
.tour-copy p { color: var(--ink-2); font-size: 16px; }
.tour-pts { list-style: none; margin: 22px 0 0; display: grid; gap: 11px; }
.tour-pts li { position: relative; padding-left: 27px; font-size: 14.5px; color: var(--ink); }
.tour-pts li::before {
  content: ""; position: absolute; left: 4px; top: 3px; width: 7px; height: 12px;
  border: solid var(--brand); border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* browser-chrome framed screenshot — shows the full screen, nothing cropped */
.shot {
  position: relative; border-radius: 14px; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(13,13,12,.04), 0 44px 80px -42px rgba(13,13,12,.34);
  transform: perspective(1600px) translateY(var(--py,0px)) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  transition: box-shadow .35s ease;
  will-change: transform;
}
.shot:hover { box-shadow: 0 1px 2px rgba(13,13,12,.05), 0 56px 96px -40px rgba(13,13,12,.42); }
.shot-chrome {
  display: flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px;
  background: var(--bg-2); border-bottom: 1px solid var(--line);
}
.shot-chrome i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.shot-chrome span {
  margin-left: 10px; font-family: var(--mono); font-size: 11px; color: var(--ink-3);
  background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 3px 14px;
}
.shot-img { line-height: 0; }
.shot-img img { width: 100%; display: block; }

@media (max-width: 900px) {
  .tour { gap: 72px; }
  .tour-row, .tour-row.reverse { grid-template-columns: 1fr; gap: 26px; }
  .tour-row .tour-copy, .tour-row.reverse .tour-copy { order: 1; position: static; max-width: none; }
  .tour-row .shot, .tour-row.reverse .shot { order: 2; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-prog { display: none; }
  .shot { transform: none; }
}
