/* ============================================================
   RUSHSIFT — marketing site
   Brand pulled from the product's own promo art:
     OXBLOOD  = the stage (deep crimson canvas)
     BLUSH    = the voice (oversized rose display + primary CTA)
     GOLD     = the prize (the shot you were hunting — used rarely)
   The app itself keeps its true colours: charcoal panels with a
   GREEN "enriched/live" and BLUE "find/focus" — so every device
   console reads like the thing you actually download. Warm stage,
   cool screen. Ink (never white) rides every blush/gold fill.
   ============================================================ */
:root {
  --ox-deep: #340a10;
  --ox: #4e0f17;
  --ox-2: #611420;
  --ox-line: rgba(255,221,225,.14);
  --ox-line-2: rgba(255,221,225,.26);
  --blush: #f7dade;
  --blush-hi: #fdeef0;
  --rose: #e7b3ba;
  --cream: #f3e4e5;
  --muted: #cda9ae;
  --faint: #a37f85;
  --gold: #f4c150;
  --ink: #38090e;
  --dk: #0c1119;
  --dk-2: #111826;
  --dk-line: rgba(228,238,250,.10);
  --dk-line-2: rgba(228,238,250,.18);
  --dk-ink: #eef2f7;
  --dk-muted: #93a1b3;
  --go: #4caf72;
  --find: #4c8dff;
  --rec: #ff5a4d;
  --display: 'Archivo Black', Arial Black, sans-serif;
  --sans: 'Manrope', Arial, sans-serif;
  --mono: 'DM Mono', Consolas, monospace;
  --wrap: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(.22, .8, .28, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body { margin: 0; overflow-x: hidden; background: var(--ox); color: var(--cream);
  font: 400 15px/1.65 var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
img, video, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--blush); color: var(--ink); }
:focus-visible { outline: 2px solid var(--blush); outline-offset: 3px; border-radius: 2px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.mono { font-family: var(--mono); letter-spacing: .04em; }
/* ---- type + section furniture ------------------------------ */
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: -.02em; line-height: .92; color: var(--blush); text-transform: uppercase; }
h1 { font-size: clamp(2.2rem, 7vw, 7rem); }
h2 { font-size: clamp(1.85rem, 4.8vw, 4.9rem); }
h1 em, h2 em { font-style: normal; color: var(--gold); }
.eyebrow { display: flex; align-items: center; gap: 11px; color: var(--rose);
  font: 400 10px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-line { display: inline-block; width: 26px; height: 1px; background: currentColor; }
.section { padding: clamp(52px, 6vw, 96px) 0; }
.section-marker { color: var(--faint); font: 400 9px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.section-lede { max-width: 52ch; color: var(--muted); font-size: 1.07rem; line-height: 1.7; }
.section-head { display: grid; grid-template-columns: 130px 1fr; gap: clamp(28px, 5vw, 90px); margin-bottom: clamp(30px, 4vw, 52px); }
.section-head .eyebrow { margin-bottom: 18px; }

/* ---- buttons ----------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  min-height: 52px; padding: 0 26px; border: 1px solid transparent; border-radius: 4px;
  font: 700 .8rem/1 var(--sans); letter-spacing: .06em; text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: .72rem; }
.btn-primary { background: var(--blush); color: var(--ink); }
.btn-primary:hover { background: var(--blush-hi); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { border-color: var(--ox-line-2); color: var(--blush); }
.btn-ghost:hover { border-color: var(--blush); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }
.play-mark { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid currentColor; }

/* ---- status dots ------------------------------------------- */
.dot-go, .dot-find, .dot-rec { display: inline-block; width: 6px; height: 6px; border-radius: 50%; flex: none; vertical-align: middle; }
.dot-go { background: var(--go); }
.dot-find { background: var(--find); }
.dot-rec { background: var(--rec); animation: pulse 1.8s var(--ease) infinite; }

/* ---- reading progress -------------------------------------- */
.page-progress { position: fixed; inset: 0 0 auto; z-index: 120; height: 1px; pointer-events: none; }
.page-progress i { display: block; width: 0; height: 100%; background: rgba(247, 218, 222, .4); }

/* ---- utility bar ------------------------------------------- */
.utility-bar { border-bottom: 1px solid var(--ox-line); background: var(--ox-deep); color: var(--faint);
  font: 400 9px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.utility-inner { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; }
.utility-right { display: inline-flex; align-items: center; gap: 9px; }
.utility-right b { color: var(--rose); opacity: .5; }

/* ---- header ------------------------------------------------ */
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent;
  background: rgba(78,15,23,.66); backdrop-filter: blur(16px); transition: background .25s var(--ease), border-color .25s var(--ease); }
.site-header.is-stuck { background: rgba(52,10,16,.9); border-bottom-color: var(--ox-line); }
.header-inner { display: flex; align-items: center; gap: 30px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--blush);
  font: 400 1.02rem/1 var(--display); letter-spacing: .16em; text-transform: uppercase; }
.brand img { width: 30px; height: 30px; border-radius: 7px; }
.primary-nav { display: flex; gap: 28px; margin-right: auto; }
.primary-nav a, .footer-nav a { color: var(--muted); font-size: .8rem; font-weight: 600; transition: color .2s var(--ease); }
.primary-nav a:hover, .footer-nav a:hover { color: var(--blush); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-status { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font: 400 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.nav-toggle { display: none; width: 44px; height: 42px; border: 1px solid var(--ox-line-2); border-radius: 4px; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; margin: 4px auto; background: var(--blush); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav-toggle[aria-expanded=true] span:first-child { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded=true] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded=true] span:last-child { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-nav { display: none; }
/* ---- hero -------------------------------------------------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--ox-line); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 18% 0%, rgba(247,218,222,.10), transparent 55%); }
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.15fr 0.85fr;
  align-items: center; gap: clamp(28px, 4vw, 64px);
  min-height: min(70vh, 580px); padding: clamp(40px, 6vw, 72px) 0 clamp(44px, 6vw, 80px); }
.hero-copy { max-width: 620px; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.05rem, 5vw, 4.5rem); max-width: 15ch; }
.hero-lede { max-width: 46ch; margin-top: 26px; color: var(--muted); font-size: 1.1rem; line-height: 1.66; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 32px; color: var(--faint);
  font: 400 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.proof-row li { display: inline-flex; align-items: center; gap: 8px; }
.proof-row i { width: 6px; height: 6px; border: 1px solid var(--rose); border-radius: 50%; }
.hero-shot { position: relative; z-index: 1; }
.hero-shot .shot-frame { max-width: 480px; margin-inline: auto; }
.hero-shot .shot-frame img { aspect-ratio: auto; }
.shot-frame { position: relative; overflow: hidden; border: 1px solid var(--ox-line-2); border-radius: 10px;
  background: var(--dk); box-shadow: 0 48px 100px -34px rgba(0,0,0,.9); }
.shot-frame img { width: 100%; height: auto; }
.shot-tag { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border: 1px solid var(--dk-line-2); border-radius: 3px; background: rgba(7,10,14,.82);
  color: var(--dk-muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

/* ---- editors strip ----------------------------------------- */
.editors { border-bottom: 1px solid var(--ox-line); background: var(--ox-deep); }
.editors-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 40px; padding: 22px 0; }
.editors-label { color: var(--faint); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.editors-list { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-left: auto; color: var(--muted);
  font-size: .82rem; letter-spacing: .02em; }
.editors-list li { position: relative; }
.editors-list li + li::before { content: ''; position: absolute; left: -16px; top: 50%; width: 3px; height: 3px; margin-top: -1px; border-radius: 50%; background: var(--faint); }

/* ---- showcase (the promo art) ------------------------------ */
.showcase { border-bottom: 1px solid var(--ox-line); }
.showcase-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 60px); }
.showcase-head .eyebrow { margin-bottom: 18px; }
.showcase-head h2 { max-width: 16ch; }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promo-card { overflow: hidden; border: 1px solid var(--ox-line-2); border-radius: 10px; background: var(--ox-2);
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.8); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.promo-card:hover { transform: translateY(-5px); border-color: var(--rose); }
.promo-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.promo-card figcaption { display: flex; gap: 11px; padding: 16px 18px 18px; color: var(--muted); font-size: .86rem; line-height: 1.5; border-top: 1px solid var(--ox-line); }
.promo-card .promo-key { flex: none; color: var(--gold); font: 400 10px/1.4 var(--mono); }
/* ---- the idea ---------------------------------------------- */
.idea-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.idea-head .section-marker { margin-bottom: 22px; }
.idea-head .eyebrow { margin-bottom: 20px; }
.idea-head h2 { max-width: 9ch; }
.idea-head .section-lede { margin-top: 26px; }
.idea-rail { align-self: stretch; border-top: 1px solid var(--ox-line); }
.idea-rail li { display: grid; grid-template-columns: 34px 1fr; gap: 6px 14px; padding: 22px 0; border-bottom: 1px solid var(--ox-line); }
.idea-rail li > span { grid-row: span 2; color: var(--gold); font: 400 11px/1 var(--mono); }
.idea-rail strong { color: var(--blush); font: 400 1.18rem/1.15 var(--display); letter-spacing: -.01em; text-transform: uppercase; }
.idea-rail p { color: var(--muted); font-size: .9rem; line-height: 1.55; }

/* ---- see it work ------------------------------------------- */
.work { background: var(--ox-deep); border-top: 1px solid var(--ox-line); border-bottom: 1px solid var(--ox-line); }
.work-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(36px, 5vw, 84px); align-items: center; }
.query-console { border: 1px solid var(--dk-line-2); border-radius: 6px; background: var(--dk); overflow: hidden; }
.console-top, .console-results { display: flex; justify-content: space-between; gap: 14px; padding: 12px 16px; color: var(--dk-muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.console-top { border-bottom: 1px solid var(--dk-line); }
.console-top span:first-child { display: inline-flex; align-items: center; gap: 7px; }
.console-query { min-height: 108px; padding: 26px 18px; color: var(--dk-ink); font: 400 1.5rem/1.25 var(--sans); font-weight: 500; }
.query-caret { display: inline-block; width: 2px; height: 1.05em; margin-right: 8px; vertical-align: -.14em; background: var(--find); animation: blink 1.06s steps(1) infinite; }
.console-results { border-top: 1px solid var(--dk-line); }
.console-results strong { color: var(--go); font-weight: 500; }
.work-notes { margin-top: 34px; border-top: 1px solid var(--ox-line); }
.work-notes li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--ox-line); color: var(--muted); font-size: .86rem; }
.note-key { color: var(--gold); font: 400 10px/1.6 var(--mono); }

/* ---- product window (device — keeps the app's own charcoal) - */
.product-window { overflow: hidden; border: 1px solid var(--dk-line-2); border-radius: 8px; background: var(--dk);
  box-shadow: 0 44px 90px -36px rgba(0,0,0,.92); }
.window-bar { display: flex; align-items: center; gap: 11px; min-height: 46px; padding: 0 15px; border-bottom: 1px solid var(--dk-line);
  color: var(--dk-muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.window-brand { display: inline-flex; align-items: center; gap: 8px; color: var(--dk-ink); font-weight: 600; letter-spacing: .18em; }
.window-brand img { border-radius: 3px; }
.window-rec { display: inline-flex; align-items: center; gap: 6px; color: var(--rec); font-size: 8px; }
.window-state { margin-left: auto; padding: 5px 9px; border: 1px solid var(--dk-line-2); border-radius: 3px; color: var(--go); font-size: 8px; }
.window-state[data-state="playing"] { border-color: var(--go); }
.window-dots { display: flex; gap: 8px; }
.window-dots i { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--dk-line-2); }
.window-stage { position: relative; aspect-ratio: 16 / 9; background: #05070b; }
.window-stage video { width: 100%; height: 100%; object-fit: cover; }
.demo-bigplay { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; color: var(--dk-ink);
  background: rgba(7,10,14,.32); transition: background .2s var(--ease); }
.demo-bigplay:hover { background: rgba(7,10,14,.16); }
.demo-bigplay .play-mark { border-top-width: 13px; border-bottom-width: 13px; border-left: 20px solid currentColor; }
.window-controls { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-top: 1px solid var(--dk-line); }
.transport-btn { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--dk-line-2); border-radius: 3px; color: var(--dk-ink); transition: border-color .2s var(--ease); }
.transport-btn:hover { border-color: var(--dk-ink); }
.control-play { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid currentColor; }
.transport-btn:not(.is-paused) .control-play { width: 8px; height: 11px; border: 0; border-left: 3px solid currentColor; border-right: 3px solid currentColor; }
.transport-track { position: relative; flex: 1; height: 3px; border-radius: 2px; background: #222c3a; cursor: pointer; touch-action: none; }
.transport-track::before { content: ''; position: absolute; left: 0; right: 0; top: -10px; bottom: -10px; }
.transport-track i { position: relative; display: block; width: 0; height: 100%; border-radius: 2px; background: var(--go); }
.transport-track i::after { content: ''; position: absolute; right: -6px; top: 50%; margin-top: -6px; width: 12px; height: 12px; border-radius: 50%; background: var(--dk-ink); box-shadow: 0 0 0 1px rgba(0, 0, 0, .28); transition: transform .15s var(--ease), box-shadow .15s var(--ease); }
.transport-track:hover i::after, .transport-track:focus-visible i::after, .transport-track.is-scrubbing i::after { transform: scale(1.18); box-shadow: 0 0 0 4px rgba(76, 175, 114, .22); }
.transport-track:focus { outline: none; }
.transport-track:focus-visible { outline: 2px solid var(--find); outline-offset: 5px; }
.transport-time { color: var(--dk-muted); font-size: 9px; }
.control-sound { width: 11px; height: 8px; border-left: 3px solid currentColor; border-right: 2px solid currentColor; }
.window-caption { padding: 11px 15px; border-top: 1px solid var(--dk-line); color: var(--dk-muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.window-caption span { color: var(--find); }

/* ---- three moves ------------------------------------------- */
.moves-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.move-card { position: relative; min-height: 252px; padding: 26px 26px 28px; border: 1px solid var(--ox-line);
  border-radius: 8px; background: var(--ox-2); display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease); }
.move-card:hover { border-color: var(--rose); transform: translateY(-4px); }
.move-num { color: var(--gold); font: 400 11px/1 var(--mono); }
.move-card h3 { margin-top: auto; padding-top: 60px; color: var(--blush); font: 400 1.45rem/1.05 var(--display); letter-spacing: -.01em; text-transform: uppercase; }
.move-card p { margin-top: 14px; color: var(--muted); font-size: .88rem; line-height: 1.6; }
/* ---- indexes while you work -------------------------------- */
.background { border-top: 1px solid var(--ox-line); }
.background-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.background-shot { border-radius: 10px; }
.background-copy .section-marker { margin-bottom: 20px; }
.background-copy h2 { max-width: 12ch; }
.background-copy .section-lede { margin-top: 24px; }
.index-readout { margin-top: 34px; padding: 16px 18px; border: 1px solid var(--dk-line-2); border-radius: 6px; background: var(--dk); }
.readout-top, .readout-foot { display: flex; justify-content: space-between; gap: 12px; color: var(--dk-muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.readout-bar { height: 4px; margin: 12px 0; overflow: hidden; border-radius: 2px; background: #222c3a; }
.readout-bar i { display: block; height: 100%; background: var(--go); }
.readout-foot .go { color: var(--go); }

/* ---- privacy / trust --------------------------------------- */
.privacy { background: var(--ox-deep); border-top: 1px solid var(--ox-line); }
.privacy-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 8vw, 130px); align-items: center; }
.privacy-copy .section-marker { margin-bottom: 20px; }
.privacy-copy .eyebrow { margin-bottom: 20px; }
.privacy-copy h2 { max-width: 8ch; }
.privacy-copy .section-lede { margin-top: 24px; max-width: 44ch; }
.privacy-copy .btn { margin-top: 34px; }
.trust-console { border: 1px solid var(--dk-line-2); border-radius: 8px; background: var(--dk); overflow: hidden;
  box-shadow: 0 44px 90px -42px rgba(0,0,0,.9); }
.trust-top, .trust-foot { display: flex; justify-content: space-between; gap: 14px; padding: 15px 18px; color: var(--dk-muted); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.trust-top { border-bottom: 1px solid var(--dk-line); }
.trust-top .go { display: inline-flex; align-items: center; gap: 7px; color: var(--go); }
.trust-row { display: grid; grid-template-columns: 66px 1fr 26px; gap: 16px; align-items: center; min-height: 66px; padding: 14px 18px; border-bottom: 1px solid var(--dk-line); }
.trust-key { color: var(--dk-muted); font-size: 9px; }
.trust-row strong { display: inline-flex; align-items: center; gap: 12px; color: var(--dk-ink); font: 500 .95rem/1.3 var(--mono); }
.trust-check { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid var(--dk-line-2); border-radius: 4px; color: var(--go); font-size: .82rem; }
.no-upload { position: relative; display: inline-block; width: 18px; height: 12px; border: 1.5px solid var(--rec); border-radius: 8px; opacity: .95; }
.no-upload::after { content: ''; position: absolute; left: -3px; top: 50%; width: 24px; height: 1.5px; background: var(--rec); transform: rotate(-24deg); }
.trust-foot { border-top: 1px solid var(--dk-line); }

/* ---- pricing teaser ---------------------------------------- */
.pricing { border-top: 1px solid var(--ox-line); }
.price-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 76px); align-items: center;
  padding: clamp(32px, 5vw, 60px); border: 1px solid var(--ox-line-2); border-radius: 14px; background: var(--ox-2);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.85); }
.price-card .eyebrow { margin-bottom: 18px; }
.price-card h2 { max-width: 13ch; }
.price-card .section-lede { margin-top: 20px; }
.price-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.price-meta { margin-top: 18px; color: var(--faint); font: 400 9px/1.6 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.price-figure { text-align: left; }
.price-figure .price-amount { display: flex; align-items: baseline; gap: 6px; color: var(--blush); font: 400 clamp(2.9rem, 6vw, 5.2rem)/1 var(--display); }
.price-figure .price-amount span { font-size: 1.4rem; color: var(--rose); }
.price-figure .price-once { margin-top: 10px; color: var(--gold); font: 400 10px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.price-list { margin-top: 24px; display: grid; gap: 11px; }
.price-list li { display: flex; gap: 11px; color: var(--cream); font-size: .9rem; }
.price-list li::before { content: '✓'; color: var(--go); font-size: .82rem; }

/* ---- closing ----------------------------------------------- */
.closing { border-top: 1px solid var(--ox-line); text-align: center; }
.closing-inner { display: flex; flex-direction: column; align-items: center; }
.closing .section-marker { margin-bottom: 22px; }
.closing h2 { max-width: 15ch; }
.closing .section-lede { margin-top: 22px; max-width: 42ch; }
.closing-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.closing-meta { margin-top: 30px; color: var(--faint); font: 400 9px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }

/* ---- footer ------------------------------------------------ */
.site-footer { border-top: 1px solid var(--ox-line); padding: 34px 0 30px; background: var(--ox-deep); }
.footer-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-inner .brand { font-size: .92rem; }
.footer-inner .brand img { width: 24px; height: 24px; }
.footer-note { margin-right: auto; color: var(--faint); font: 400 9px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.footer-nav { display: flex; gap: 20px; font-size: .74rem; }
.footer-nav a { color: var(--muted); }
.footer-legal { width: 100%; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--ox-line); color: var(--faint); font: 400 8px/1.6 var(--mono); letter-spacing: .08em; }
/* ---- checkout page ----------------------------------------- */
.buy { padding: clamp(32px, 4.5vw, 60px) 0 clamp(52px, 7vw, 92px); }
.buy-head { max-width: 40ch; margin-bottom: clamp(24px, 3.5vw, 40px); }
.buy-head .eyebrow { margin-bottom: 18px; }
.buy-head h1 { font-size: clamp(2.05rem, 5.4vw, 5rem); }
.buy-head .section-lede { margin-top: 22px; }
.buy-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(20px, 3vw, 34px); align-items: start; }
.buy-offer { padding: clamp(28px, 3.5vw, 44px); border: 1px solid var(--ox-line-2); border-radius: 14px; background: var(--ox-2); box-shadow: 0 40px 90px -52px rgba(0,0,0,.85); }
.buy-offer .price-once { margin-top: 12px; }
.buy-offer .btn { width: 100%; margin-top: 28px; }
.buy-micro { margin-top: 16px; display: grid; gap: 7px; color: var(--faint); font: 400 9.5px/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.buy-micro span { display: inline-flex; align-items: center; gap: 8px; }
.buy-summary { overflow: hidden; border: 1px solid var(--dk-line-2); border-radius: 14px; background: var(--dk); box-shadow: 0 40px 90px -52px rgba(0,0,0,.9); }
.summary-top { display: flex; justify-content: space-between; gap: 12px; padding: 15px 20px; border-bottom: 1px solid var(--dk-line); color: var(--dk-muted); font: 400 9px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.summary-top .go { display: inline-flex; align-items: center; gap: 7px; color: var(--go); }
.summary-item { display: flex; gap: 15px; padding: 20px; border-bottom: 1px solid var(--dk-line); }
.summary-item img { width: 88px; height: 56px; object-fit: cover; border-radius: 6px; border: 1px solid var(--dk-line-2); flex: none; }
.summary-item h3 { color: var(--dk-ink); font: 600 1.02rem/1.2 var(--sans); }
.summary-item p { margin-top: 5px; color: var(--dk-muted); font-size: .8rem; }
.summary-lines { padding: 8px 20px 14px; }
.summary-lines div { display: flex; justify-content: space-between; padding: 9px 0; color: var(--dk-muted); font: 400 .85rem/1 var(--mono); }
.summary-lines .summary-total { margin-top: 4px; padding-top: 14px; border-top: 1px solid var(--dk-line); color: var(--dk-ink); font-size: 1.05rem; }
.summary-lines .summary-total b { color: var(--go); font-weight: 500; }
.buy-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(40px, 5vw, 60px); }
.buy-badges li { display: inline-flex; align-items: center; gap: 9px; padding: 12px 16px; border: 1px solid var(--ox-line); border-radius: 6px; color: var(--muted); font: 400 10px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.faq { border-top: 1px solid var(--ox-line); }
.faq-inner { display: grid; grid-template-columns: 130px 1fr; gap: clamp(28px, 5vw, 90px); }
.faq-list { display: grid; gap: 0; }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--ox-line); }
.faq-item:first-child { padding-top: 0; }
.faq-item h3 { color: var(--blush); font: 600 1.12rem/1.3 var(--sans); }
.faq-item p { margin-top: 10px; max-width: 64ch; color: var(--muted); font-size: .94rem; line-height: 1.65; }
.final-cta { border-top: 1px solid var(--ox-line); text-align: center; }
.final-cta .section-marker { margin-bottom: 20px; }
.final-cta h2 { max-width: 15ch; margin: 0 auto; }
.final-cta .btn { margin-top: 30px; }
.final-cta .price-meta { justify-content: center; }
/* ---- motion ------------------------------------------------ */
@keyframes blink { 50% { opacity: 0; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---- responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding-bottom: 40px; }
  .hero-copy { max-width: 640px; }
  .hero-shot { margin-top: 12px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .idea-inner { grid-template-columns: 1fr; gap: 40px; }
  .idea-head h2 { max-width: none; }
  .work-layout { grid-template-columns: 1fr; gap: 34px; }
  .work-copy { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: start; }
  .work-notes { margin-top: 0; }
  .background-inner, .privacy-inner { grid-template-columns: 1fr; gap: 40px; }
  .background-copy { order: -1; }
  .price-card, .buy-grid, .faq-inner { grid-template-columns: 1fr; }
  .price-card { gap: 34px; }
}
@media (max-width: 760px) {
  :root { --gutter: 18px; }
  .primary-nav, .header-status { display: none; }
  .header-inner { min-height: 62px; gap: 14px; }
  .header-actions { margin-left: auto; }
  .nav-toggle { display: block; }
  .mobile-nav { padding: 8px var(--gutter) 16px; border-top: 1px solid var(--ox-line); background: var(--ox-deep); }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--ox-line); color: var(--muted); font: 700 .8rem/1 var(--sans); letter-spacing: .04em; text-transform: uppercase; }
  .mobile-nav a:last-child { border: 0; color: var(--blush); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .price-actions, .price-actions .btn { width: 100%; }
  .section-head, .faq-inner { display: block; }
  .section-head .section-marker, .faq-inner .section-marker { margin-bottom: 22px; }
  .work-copy { display: block; }
  .work-notes { margin-top: 30px; }
  .showcase-grid, .moves-grid { grid-template-columns: 1fr; }
  .move-card { min-height: 0; }
  .move-card h3 { padding-top: 34px; }
  .closing-actions, .closing-actions .btn { width: 100%; }
  .editors-list { margin-left: 0; }
  .buy-badges li { flex: 1 1 100%; }
  .footer-note { order: 3; width: 100%; margin-right: 0; }
  .footer-nav { width: 100%; justify-content: space-between; gap: 10px; }
  .hero-shot .shot-frame { max-width: 420px; }
  .trust-row { grid-template-columns: 50px 1fr 22px; gap: 12px; padding: 13px 16px; min-height: 58px; }
  .trust-row strong { font-size: .82rem; overflow-wrap: anywhere; }
  .window-controls #demoHint { display: none; }
}
@media (max-width: 400px) {
  :root { --gutter: 16px; }
  .header-inner { gap: 10px; }
  .brand { font-size: .92rem; }
  .header-actions { gap: 10px; }
  .header-actions .btn-sm { padding: 0 13px; font-size: .68rem; }
  .hero h1 { font-size: clamp(1.9rem, 8.4vw, 2.5rem); }
  .proof-row { gap: 10px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .dot-rec, .query-caret { animation: none; }
  .btn, .move-card, .promo-card, .shot-frame { transition: none; }
}
