:root{
  /* ── Tokens ── */
  --ink:        #14192B;   /* main dark "stage" background */
  --ink-soft:   #1D2440;   /* card / raised surface on ink */
  --ink-softer: #2A3358;   /* hairlines & borders on ink */
  --ink-deep:   #0E1122;   /* footer / deepest band */

  --paper:      #F6F1E6;   /* light band background */
  --paper-card: #FFFFFF;   /* card surface on paper */
  --paper-line: #E4DBC7;   /* hairlines on paper */
  --text-ink:   #21264A;   /* body text on paper */
  --text-mute-ink: #5B5F7E;

  --text-on-dark: #F2EFE6;
  --text-mute-on-dark: #A4A9C8;

  --amber:      #E8A548;
  --amber-deep: #C9832C;
  --rose:       #D66B82;
  --teal:       #4EA69C;

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Newsreader', serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: 84px; }
body{
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text-ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; }
ul{ list-style:none; }
button{ font:inherit; cursor:pointer; }

:focus-visible{ outline:2px solid var(--amber); outline-offset:3px; border-radius:4px; }

h1,h2,h3,.display{
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.eyebrow{
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}

.wrap{ max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section{ padding: 96px 0; }
@media (max-width: 720px){ section{ padding: 64px 0; } }

.band-ink   { background: var(--ink);   color: var(--text-on-dark); }
.band-paper { background: var(--paper); color: var(--text-ink); }
.band-deep  { background: var(--ink-deep); color: var(--text-on-dark); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-display); font-weight:600; font-size:.92rem;
  padding: 13px 24px; border-radius: var(--radius-md);
  border: 1.5px solid transparent; transition: transform .15s ease, background .15s ease, border-color .15s ease;
  text-decoration:none; white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--amber); color: #201404; }
.btn-primary:hover{ background:#f0b25f; }
.btn-ghost-dark{ border-color: var(--ink-softer); color: var(--text-on-dark); }
.btn-ghost-dark:hover{ border-color: var(--amber); color: var(--amber); }
.btn-ghost-light{ border-color: var(--paper-line); color: var(--text-ink); }
.btn-ghost-light:hover{ border-color: var(--amber-deep); color: var(--amber-deep); }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.5; cursor:not-allowed; }
.btn:disabled:hover{ transform:none; }

/* ── Scroll progress bar ── */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%; z-index:80;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--rose));
}

/* ── Nav ── */
header.site{
  position: sticky; top:0; z-index: 50;
  background: rgba(20,25,43,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-softer);
  transition: box-shadow .25s ease, background .25s ease;
}
header.site.scrolled{
  background: rgba(15,19,34,.94);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.6);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding: 16px 24px; max-width:1120px; margin:0 auto; transition: padding .25s ease; }
header.site.scrolled .nav{ padding-top:10px; padding-bottom:10px; }
.logo{ display:flex; align-items:center; gap:9px; font-family: var(--font-display); font-weight:700; font-size:1.05rem; color: var(--text-on-dark); text-decoration:none; }
.logo .dot{ width:8px; height:8px; border-radius:50%; background: var(--amber); box-shadow:0 0 8px var(--amber); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{opacity:1} 50%{opacity:.35} }
.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ font-family: var(--font-mono); font-size:.8rem; color: var(--text-mute-on-dark); text-decoration:none; letter-spacing:.02em; }
.nav-links a:hover{ color: var(--text-on-dark); }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-toggle{ display:none; background:none; border:none; color:var(--text-on-dark); font-size:1.4rem; }

@media (max-width: 780px){
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }
  .nav.open .nav-links{
    display:flex; flex-direction:column; align-items:flex-start; gap:16px;
    position:absolute; top:64px; left:0; right:0; background:var(--ink);
    padding:20px 24px; border-bottom:1px solid var(--ink-softer);
  }
}

/* ── Hero ── */
.hero{ position:relative; overflow:hidden; padding-top: 88px; padding-bottom: 72px; }
.hero-glow{
  position:absolute; inset:-20% -10% auto -10%; height:70%;
  background: radial-gradient(closest-side, rgba(232,165,72,.16), transparent 70%);
  pointer-events:none; will-change: transform;
}
.hero-inner{
  position:relative; max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero .eyebrow{ color: var(--rose); margin-bottom:18px; }
.hero h1{
  font-size: clamp(2.4rem, 5.4vw, 4.1rem); line-height:1.06; color: var(--text-on-dark);
  margin-bottom: 22px;
}
.hero h1 em{ font-style:normal; color: var(--amber); }
.hero p.lede{
  font-family: var(--font-body); font-size: 1.2rem; line-height:1.55;
  color: var(--text-mute-on-dark); max-width: 620px; margin: 0 auto 34px;
}
.hero-ctas{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:16px; margin-bottom:16px; }
.hero-note{ font-family: var(--font-mono); font-size:.76rem; color: var(--text-mute-on-dark); letter-spacing:.02em; }
.hero-note b{ color: var(--text-on-dark); font-weight:500; }

/* Hero entrance animation — runs once on load, not scroll-triggered
   (this content is above the fold, so an IntersectionObserver would
   just fire immediately anyway; a plain CSS animation is simpler). */
.hero-inner > *{ opacity:0; animation: heroIn .85s cubic-bezier(.16,1,.3,1) forwards; }
.hero-inner > *:nth-child(1){ animation-delay:.05s; }
.hero-inner > *:nth-child(2){ animation-delay:.16s; }
.hero-inner > *:nth-child(3){ animation-delay:.28s; }
.hero-inner > *:nth-child(4){ animation-delay:.42s; }
.hero-inner > *:nth-child(5){ animation-delay:.54s; }
@keyframes heroIn{ from{ opacity:0; transform:translateY(20px);} to{ opacity:1; transform:none; } }

/* ── Signature element: live multilingual caption demo ──
   Stacked, not side by side: the admin panel preview sits on top at a
   fixed "browser window" width, and the audience phone row gets the
   full container width below it — so all 5 phone cards fit without
   needing the horizontal scroll (which only kicks in on genuinely
   narrow phone-sized viewports now, same as before). Both are driven
   off the same CARDS/SENTENCES data in assets/demo.js, so they can't
   drift out of sync with each other regardless of layout. */
.demo-dual{
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.demo-admin{ max-width: 460px; width: 100%; margin: 0 auto; }
.demo-phones{ width: 100%; }

.demo{
  position:relative;
  background: var(--ink-soft); border:1px solid var(--ink-softer);
  border-radius: var(--radius-lg); padding: 28px;
}
.demo-label{
  display:flex; align-items:center; gap:8px; margin-bottom:20px;
  font-family: var(--font-mono); font-size:.72rem; color: var(--text-mute-on-dark); letter-spacing:.08em; text-transform:uppercase;
}
.demo-label .live-dot{ width:7px; height:7px; border-radius:50%; background:#3fb950; box-shadow:0 0 6px #3fb950; animation:pulse 1.6s ease-in-out infinite; }
.phone-row{
  display:flex; gap:14px; overflow-x:auto; padding-bottom:4px; scrollbar-width:none;
  justify-content: center;       /* fallback for older browsers */
  justify-content: safe center;  /* centers when it fits; falls back to scrollable start-align if it ever overflows, so nothing becomes unreachable */
}
.phone-row::-webkit-scrollbar{ display:none; }
.phone{
  flex: 0 0 168px; background:#0d1117; border:1px solid #262c3d; border-radius: 14px;
  padding: 14px 12px; min-height: 148px; display:flex; flex-direction:column; transition: opacity .3s ease;
}
.phone.pending{ opacity:.55; }
.phone-lang{ display:flex; align-items:center; gap:6px; font-family: var(--font-mono); font-size:.7rem; color:#8b949e; margin-bottom:10px; }
.phone-flag{ font-size:.95rem; }
.phone-text{
  font-family: var(--font-mono); font-size:.82rem; line-height:1.5; color:#e6edf3;
  flex:1; word-break: break-word;
}
.phone-text::after{ content:"▍"; color: var(--amber); animation: blink 1s step-end infinite; }
.phone.done .phone-text::after{ display:none; }
@keyframes blink{ 50%{ opacity:0; } }
.pending-dots{ display:inline-flex; gap:4px; }
.pending-dots span{ width:5px; height:5px; border-radius:50%; background:#484f58; display:inline-block; animation: dotpulse 1.1s ease-in-out infinite; }
.pending-dots span:nth-child(2){ animation-delay:.15s; }
.pending-dots span:nth-child(3){ animation-delay:.3s; }
@keyframes dotpulse{ 0%,100%{opacity:.3;transform:scale(.8)} 50%{opacity:1;transform:scale(1)} }

@media (max-width: 640px){
  .phone{ flex:0 0 140px; min-height:132px; padding:12px 10px; }
  .phone-row{ gap:10px; }
}

/* ── Admin panel mock (mini "browser window") ──
   Deliberately styled as its own light-themed browser chrome, distinct
   from the dark marketing shell around it — a visual cue that this is
   a screenshot of a *different* screen (the operator's PC), running in
   sync with the phone row alongside it. Markup/classes here echo the
   real admin.html (.entry, .entry-head, .lang-tag, .tx-chip) at a
   smaller scale, so the two never look like unrelated mockups. */
.admin-mock{
  background: #0d1117; border:1px solid var(--ink-softer);
  border-radius: var(--radius-md); overflow:hidden;
}
.admin-mock-chrome{
  display:flex; align-items:center; gap:7px;
  padding:10px 12px; border-bottom:1px solid #262c3d;
}
.chrome-dot{ width:9px; height:9px; border-radius:50%; display:inline-block; flex-shrink:0; }
.admin-mock-url{
  margin-left:6px; font-family:var(--font-mono); font-size:.68rem; color:#8b949e;
  background:#161b22; border:1px solid #262c3d; border-radius:5px; padding:3px 8px;
  flex:1; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.admin-mock-status{
  display:flex; align-items:center; gap:5px; flex-shrink:0;
  font-family:var(--font-mono); font-size:.66rem; font-weight:600; color:#3fb950;
}
.admin-mock-status-dot{
  width:6px; height:6px; border-radius:50%; background:#3fb950;
  box-shadow:0 0 5px #3fb950; animation:pulse 1.6s ease-in-out infinite;
}

.admin-mock-body{ background:#f6f8fa; padding:16px; min-height:172px; }
.admin-mock-entry-head{
  display:flex; align-items:center; gap:8px; margin-bottom:8px;
  font-family: var(--font-mono); font-size:.7rem; color:#656d76;
}
.admin-mock-lang-tag{
  background:#ddf4ff; color:#0550ae; padding:2px 7px; border-radius:4px; font-weight:600;
}
.admin-mock-original{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size:.92rem; color:#1f2328; line-height:1.5; min-height:1.4em;
}
.admin-mock-original::after{ content:"▍"; color:#0969da; animation: blink 1s step-end infinite; }
.admin-mock-original.done::after{ display:none; }

.admin-mock-translations{ margin-top:10px; display:flex; flex-wrap:wrap; gap:6px; }
.admin-mock-chip{
  background:#fff; border:1px solid #d0d7de; border-radius:6px; padding:5px 9px;
  font-size:.76rem; line-height:1.3; color:#1f2328;
  opacity:0; transform:translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
}
.admin-mock-chip.in{ opacity:1; transform:none; }
.admin-mock-chip .chip-lang{ color:#656d76; font-size:.66rem; margin-bottom:2px; font-family:var(--font-mono); }

/* ── Value strip ── */
.value-strip{ padding: 44px 0; background: var(--ink-soft); border-top:1px solid var(--ink-softer); border-bottom:1px solid var(--ink-softer); }
.value-strip .wrap{ display:grid; grid-template-columns: repeat(3,1fr); gap:32px; }
@media (max-width:780px){ .value-strip .wrap{ grid-template-columns:1fr; gap:24px; } }
.value-item .eyebrow{ color: var(--teal); margin-bottom:8px; }
.value-item p{ font-family: var(--font-body); color: var(--text-mute-on-dark); font-size:.95rem; }

/* ── Section headers ── */
.section-head{ max-width: 620px; margin-bottom: 56px; }
.section-head .eyebrow{ margin-bottom:14px; }
.band-ink .section-head .eyebrow{ color: var(--amber); }
.band-paper .section-head .eyebrow{ color: var(--amber-deep); }
.section-head h2{ font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height:1.15; margin-bottom:16px; }
.section-head p{ font-family: var(--font-body); font-size:1.06rem; }
.band-paper .section-head p{ color: var(--text-mute-ink); }
.band-ink .section-head p{ color: var(--text-mute-on-dark); }

/* ── How it works ── */
.steps{ display:grid; grid-template-columns: repeat(3,1fr); gap:36px; }
@media (max-width: 860px){ .steps{ grid-template-columns:1fr; gap:28px; } }
.step-num{ font-family: var(--font-mono); font-size:.85rem; color: var(--amber-deep); margin-bottom:14px; }
.step h3{ font-size:1.2rem; margin-bottom:10px; color: var(--text-ink); }
.step p{ color: var(--text-mute-ink); font-size:.98rem; }

/* ── Features grid ── */
.features-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .features-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .features-grid{ grid-template-columns: 1fr; } }
.feature-card{
  background: var(--ink-soft); border:1px solid var(--ink-softer); border-radius: var(--radius-lg);
  padding: 26px 24px; transition: border-color .2s ease, transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
}
.feature-card:hover{ border-color: var(--amber-deep); transform: translateY(-5px); box-shadow: 0 18px 40px -22px rgba(0,0,0,.55); }
.feature-mark{ width:34px; height:34px; border-radius:9px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:1.05rem; }
.feature-card h3{ font-size:1.05rem; margin-bottom:9px; color: var(--text-on-dark); }
.feature-card p{ font-family: var(--font-body); font-size:.94rem; color: var(--text-mute-on-dark); }

/* ── Proof: real screenshots / recording ──
   Styled deliberately as an *unfilled* placeholder — dashed border, muted
   icon, monospace file-path hint — rather than a fake screenshot, so
   nobody mistakes it for a finished asset if it ships by accident. Once
   real media exists, each .proof-tile's inner markup gets replaced with
   an <img> or <video> (see the TODO comments in index.html); the
   .proof-tile / .proof-caption wrapper and grid stay the same. */
.proof-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .proof-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .proof-grid{ grid-template-columns: 1fr; } }
.proof-grid .reveal:nth-child(1){ transition-delay:0ms; }
.proof-grid .reveal:nth-child(2){ transition-delay:100ms; }
.proof-grid .reveal:nth-child(3){ transition-delay:200ms; }
.proof-grid .reveal:nth-child(4){ transition-delay:300ms; }

.proof-tile{
  background: var(--paper-card); border: 1.5px dashed var(--paper-line); border-radius: var(--radius-lg);
  padding: 36px 20px; min-height: 220px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:6px;
  transition: border-color .2s ease;
}
.proof-tile:hover{ border-color: var(--amber-deep); }
.proof-tile-icon{
  width:44px; height:44px; border-radius:50%; margin-bottom:8px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(201,131,44,.1); color: var(--amber-deep); font-size:1.2rem;
}
.proof-tile.is-video{
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
}
.proof-tile.is-video .proof-tile-icon{ background: rgba(214,107,130,.12); color: var(--rose); padding-left:2px; }
.proof-tile-copy{ font-family: var(--font-display); font-weight:600; font-size:.94rem; color: var(--text-ink); }
.proof-tile-hint{ font-family: var(--font-mono); font-size:.7rem; color: var(--text-mute-ink); word-break: break-all; }
.proof-caption{ font-family: var(--font-body); font-size:.86rem; color: var(--text-mute-ink); margin-top:8px; }

/* Once real media is dropped in, .proof-tile can hold a normal image or
   video instead of the placeholder icon/hint above — this keeps it framed
   the same way the rest of the grid is. */
.proof-tile img, .proof-video{
  width:100%; border-radius: var(--radius-md); border:1px solid var(--paper-line);
}

/* ── Reviews: social proof ── */
.testimonial-empty{
  max-width: 620px; margin: 0 auto; text-align:center;
  background: var(--ink-soft); border: 1.5px dashed var(--ink-softer); border-radius: var(--radius-lg);
  padding: 40px 32px; display:flex; flex-direction:column; align-items:center; gap:20px;
}
.testimonial-empty p{ font-family: var(--font-body); font-size:1.02rem; color: var(--text-mute-on-dark); }

/* Ready for when real quotes exist — see the commented template in
   index.html. Not currently rendered anywhere on the page. */
.testimonial-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .testimonial-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .testimonial-grid{ grid-template-columns: 1fr; } }
.testimonial-card{
  background: var(--ink-soft); border:1px solid var(--ink-softer); border-radius: var(--radius-lg);
  padding: 28px 24px; display:flex; flex-direction:column; gap:16px;
}
.testimonial-quote{ font-family: var(--font-body); font-style:italic; font-size:1.02rem; line-height:1.55; color: var(--text-on-dark); }
.testimonial-attribution{ font-family: var(--font-mono); font-size:.76rem; color: var(--text-mute-on-dark); }

/* ── Pricing ── */

/* Cost comparison calculator — sits directly above the pricing card.
   Deliberately doesn't assert a specific competitor's price (those vary
   and go stale); the monthly figure is an editable input so the visitor
   compares against whatever they're actually being quoted. Numbers are
   computed live in assets/main.js. */
.cost-compare{
  max-width: 620px; margin: 0 0 28px;
  background: var(--paper-card); border:1px solid var(--paper-line); border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.cost-compare-head{ margin-bottom:22px; }
.cost-compare-head .eyebrow{ color: var(--amber-deep); margin-bottom:10px; }
.cost-compare-head p{ font-family: var(--font-body); color: var(--text-mute-ink); font-size:.98rem; }

.cost-row{ display:flex; gap:20px; margin-bottom:26px; }
@media (max-width: 480px){ .cost-row{ flex-direction:column; gap:14px; } }
.cost-col{ flex:1; background: var(--paper); border:1px solid var(--paper-line); border-radius: var(--radius-md); padding:18px 16px; }
.cost-figure{ display:flex; flex-direction:column; gap:6px; }
.cost-figure-value{ font-family: var(--font-display); font-weight:700; font-size:1.9rem; color: var(--text-ink); }
.cost-figure-label{ font-family: var(--font-mono); font-size:.72rem; color: var(--text-mute-ink); letter-spacing:.02em; }

.cost-controls{ display:flex; flex-direction:column; gap:16px; margin-bottom:22px; }
.cost-field{ display:flex; align-items:center; flex-wrap:wrap; gap:10px; font-family: var(--font-body); font-size:.94rem; color: var(--text-ink); }
.cost-field-input{ display:inline-flex; align-items:center; background: var(--paper); border:1px solid var(--paper-line); border-radius: var(--radius-sm); padding:6px 4px 6px 12px; }
.cost-field-prefix{ font-family: var(--font-mono); color: var(--text-mute-ink); margin-right:2px; }
.cost-field-input input[type="number"]{
  width: 68px; border:none; background:none; font-family: var(--font-display); font-weight:600;
  font-size:1rem; color: var(--text-ink); padding:4px 8px;
}
.cost-field-input input[type="number"]:focus{ outline:none; }
.cost-field-slider{ gap:14px; }
.cost-field-slider input[type="range"]{
  flex:1; min-width:120px; accent-color: var(--amber-deep); height:4px;
}
.cost-field-months{ font-family: var(--font-mono); font-size:.84rem; color: var(--text-mute-ink); white-space:nowrap; }

.cost-result{
  font-family: var(--font-body); font-size:1rem; color: var(--text-ink);
  border-top:1px dashed var(--paper-line); padding-top:18px;
}
.cost-result strong{ color: var(--amber-deep); }

.pricing-card{
  background: var(--paper-card); border:1px solid var(--paper-line); border-radius: var(--radius-lg);
  padding: 44px; max-width: 620px; box-shadow: 0 24px 60px -30px rgba(33,38,74,.25);
}
.pricing-top{ display:flex; align-items:baseline; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-bottom:8px; }
.pricing-name{ font-family: var(--font-display); font-weight:700; font-size:1.3rem; }
.price{ font-family: var(--font-display); font-weight:700; font-size:2.6rem; color: var(--amber-deep); }
.price sup{ font-family: var(--font-mono); font-size:.85rem; font-weight:500; color: var(--text-mute-ink); margin-left:6px; }
.pricing-sub{ font-family: var(--font-body); color: var(--text-mute-ink); font-size:1rem; margin-bottom:28px; }
.pricing-list{ display:flex; flex-direction:column; gap:13px; margin-bottom:32px; }
.pricing-list li{ display:flex; gap:11px; align-items:flex-start; font-size:.95rem; color: var(--text-ink); }
.pricing-list .tick{ color: var(--teal); font-weight:700; flex-shrink:0; }
.pricing-actions{ display:flex; flex-wrap:wrap; gap:12px; }
.pricing-actions .btn{ flex:1; min-width:200px; }
.pricing-fine{ margin-top:18px; font-family: var(--font-mono); font-size:.74rem; color: var(--text-mute-ink); }

/* ── FAQ ── */
.faq-list{ max-width: 760px; display:flex; flex-direction:column; }
.faq-item{ border-bottom: 1px solid var(--ink-softer); }
.faq-item:first-child{ border-top: 1px solid var(--ink-softer); }
.faq-q{
  width:100%; background:none; border:none; text-align:left; color: var(--text-on-dark);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 22px 4px; font-family: var(--font-display); font-weight:600; font-size:1.02rem;
}
.faq-q .plus{ font-family: var(--font-mono); font-size:1.1rem; color: var(--amber); transition: transform .2s ease; flex-shrink:0; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .28s ease; }
.faq-item.open .faq-a{ max-height: 240px; }
.faq-a p{ font-family: var(--font-body); color: var(--text-mute-on-dark); font-size: .98rem; padding: 0 4px 22px; max-width: 640px; }

/* ── Footer ── */
footer.site{ padding: 56px 0 32px; }
.footer-top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:32px; margin-bottom:40px; }
.footer-brand{ max-width:280px; }
.footer-brand .logo{ margin-bottom:12px; }
.footer-brand p{ font-family: var(--font-body); color: var(--text-mute-on-dark); font-size:.92rem; }
.footer-links{ display:flex; gap:56px; flex-wrap:wrap; }
.footer-links h4{ font-family: var(--font-mono); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color: var(--text-mute-on-dark); margin-bottom:14px; }
.footer-links ul{ display:flex; flex-direction:column; gap:10px; }
.footer-links a{ font-family: var(--font-body); font-size:.92rem; color: var(--text-on-dark); text-decoration:none; }
.footer-links a:hover{ color: var(--amber); }
.footer-links .muted-note{ font-family: var(--font-body); font-size:.88rem; color: var(--text-mute-on-dark); }
.footer-bottom{ border-top:1px solid var(--ink-softer); padding-top:24px; display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; font-family: var(--font-mono); font-size:.74rem; color: var(--text-mute-on-dark); }
.footer-bottom a{ text-decoration:none; }
.footer-bottom a:hover{ color: var(--amber); }

/* ── Scroll reveal system ──
   Elements start slightly lower + a touch smaller, then settle into
   place with an "ease-out-expo"-style curve, which reads as snappier
   and more deliberate than a plain linear fade. Grid-type groups
   (steps / features / value strip / faq) get a per-item stagger via
   nth-child delays, since their items typically cross the viewport
   threshold together. */
.reveal{
  opacity:0;
  transform: translateY(26px) scale(.98);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.in{ opacity:1; transform:none; }

.steps .reveal:nth-child(1){ transition-delay:0ms; }
.steps .reveal:nth-child(2){ transition-delay:120ms; }
.steps .reveal:nth-child(3){ transition-delay:240ms; }

.features-grid .reveal:nth-child(1){ transition-delay:0ms; }
.features-grid .reveal:nth-child(2){ transition-delay:80ms; }
.features-grid .reveal:nth-child(3){ transition-delay:160ms; }
.features-grid .reveal:nth-child(4){ transition-delay:240ms; }
.features-grid .reveal:nth-child(5){ transition-delay:320ms; }
.features-grid .reveal:nth-child(6){ transition-delay:400ms; }

.value-strip .wrap .reveal:nth-child(1){ transition-delay:0ms; }
.value-strip .wrap .reveal:nth-child(2){ transition-delay:110ms; }
.value-strip .wrap .reveal:nth-child(3){ transition-delay:220ms; }

.faq-list .reveal:nth-child(1){ transition-delay:0ms; }
.faq-list .reveal:nth-child(2){ transition-delay:70ms; }
.faq-list .reveal:nth-child(3){ transition-delay:140ms; }
.faq-list .reveal:nth-child(4){ transition-delay:210ms; }
.faq-list .reveal:nth-child(5){ transition-delay:280ms; }
.faq-list .reveal:nth-child(6){ transition-delay:350ms; }
.faq-list .reveal:nth-child(7){ transition-delay:420ms; }

/* ── Legal document pages (privacy / EULA / refunds / terms) ── */
.legal-hero{ padding: 52px 0 8px; }
.legal-hero .eyebrow{ color: var(--rose); margin-bottom:14px; }
.legal-hero h1{ font-size: clamp(2rem, 4.4vw, 2.9rem); color: var(--text-on-dark); }
.legal-back{ font-family: var(--font-mono); font-size:.78rem; color: var(--text-mute-on-dark); text-decoration:none; display:inline-flex; align-items:center; gap:6px; margin-bottom:22px; }
.legal-back:hover{ color: var(--amber); }

.legal-doc{ max-width: 720px; padding: 48px 0 100px; }
.legal-doc .updated{ font-family: var(--font-mono); font-size:.78rem; color: var(--text-mute-ink); display:block; margin-bottom:36px; }
.legal-doc h2{ font-size:1.28rem; margin: 38px 0 14px; color: var(--text-ink); }
.legal-doc h2:first-of-type{ margin-top: 0; }
.legal-doc p{ font-family: var(--font-body); font-size:1.02rem; color: var(--text-mute-ink); margin-bottom:16px; }
.legal-doc ul{ margin: 0 0 16px 0; padding-left: 22px; list-style: disc; }
.legal-doc li{ font-family: var(--font-body); font-size:1.02rem; color: var(--text-mute-ink); margin-bottom:8px; }
.legal-doc strong{ color: var(--text-ink); }
.legal-doc a{ color: var(--amber-deep); }
.legal-note{
  background:#FFF8E9; border:1px solid #F0DDAE; border-radius: var(--radius-md);
  padding:16px 18px; margin-bottom:34px; font-family: var(--font-mono);
  font-size:.78rem; color:#7A5A16; line-height:1.65;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero-inner > *{ animation:none !important; opacity:1; transform:none; }
  .hero-glow{ transform:none !important; }
  .logo .dot, .live-dot, .phone-text::after, .pending-dots span,
  .admin-mock-status-dot, .admin-mock-original::after{ animation:none !important; }
  .admin-mock-chip{ transition:none !important; }
}