/* ============================================================
   SourClient site — SOUR // ZEST
   Graphite ground + electric citrus accent. Dark-committed brand.
   Two type voices: Bebas Neue (display), Sansation (body),
   system mono (instrument readouts).
   ============================================================ */

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.woff2") format("woff2"),
       url("../fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Sansation";
  src: url("../fonts/Sansation-Regular.woff2") format("woff2"),
       url("../fonts/Sansation-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Sansation";
  src: url("../fonts/Sansation-Bold.woff2") format("woff2"),
       url("../fonts/Sansation-Bold.ttf") format("truetype");
  font-weight: 700; font-display: swap;
}

:root {
  /* Graphite ground — never pure black */
  --bg:      #080B0F;
  --surface: #0E1319;
  --card:    #141B22;
  --hover:   #1B242E;
  --line:    #232D38;
  --line-soft: #171F27;

  /* Ink — never pure white */
  --fg:    #EAF0F2;
  --muted: #8A97A2;
  --faint: #5A6672;

  /* Accent — the user's EXACT custom launcher accent, dark forest green #087815.
     Source of truth: ~/.sourclient/state.json → accentName "Custom", accentHex "#087815".
     #087815 is dark, so solid fills carry LIGHT ink; small on-dark text/lines use a
     legibility-lifted tint of the same green so marks stay readable on the graphite ground. */
  --accent:    #087815;          /* EXACT custom launcher accent — solid fills, primary CTAs, bars */
  --accent-hi: #0AA01D;          /* hover for solid fills */
  --accent-lo: #05590F;          /* pressed / active, deepened green */
  --zest:      #2FC24A;          /* accent green for text/lines/marks on dark (legible) */
  --zest-hi:   #5BD870;          /* lighter accent text (code, hover) */
  --zest-lo:   #23A83C;          /* deeper accent text (eyebrows, keys) */
  --zest-ink:  #F1F8F2;          /* LIGHT text on solid dark-green fills */
  --zest-glow: rgba(47, 194, 74, 0.14);

  /* Premium tier — "Sour Gold". Accent-agnostic gold, mirrors launcher Theme.GOLD (#E7C46B).
     Reserved for the paid plan and its marks so it never competes with the lime brand accent. */
  --gold:      #E7C46B;
  --gold-hi:   #F2D889;
  --gold-lo:   #C9A64E;
  --gold-ink:  #14100A;          /* dark text on gold fills */
  --gold-glow: rgba(231, 196, 107, 0.14);
  --gold-line: rgba(231, 196, 107, 0.30);

  /* Type */
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Sansation", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Mono", Menlo, Consolas, monospace;

  /* 4px rhythm */
  --u: 4px;
  --pad: clamp(20px, 5vw, 48px);
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 8px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--zest); color: var(--zest-ink); }

/* subtle machined grid wash on the page ground */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1200px 600px at 78% -10%, var(--zest-glow), transparent 60%),
    linear-gradient(180deg, #0A0E13 0%, var(--bg) 40%);
}

/* ---------- shell ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }
.pad-y { padding-block: clamp(64px, 10vw, 128px); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--zest-lo); margin: 0 0 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--zest); display: inline-block;
}
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: 0.01em; line-height: 0.92; margin: 0; }
h1 { font-size: clamp(56px, 11vw, 132px); text-transform: uppercase; }
h2 { font-size: clamp(38px, 6vw, 72px); text-transform: uppercase; }
h3 { font-size: clamp(24px, 3vw, 34px); text-transform: uppercase; }
.lede { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); max-width: 56ch; }
.mono { font-family: var(--mono); }
.zest { color: var(--zest); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: 68px; display: flex; align-items: center;
  background: rgba(8, 11, 15, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(8, 11, 15, 0.9); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 30px; height: 30px; object-fit: contain; }
.brand b {
  font-family: var(--display); font-size: 26px; letter-spacing: 0.04em;
  text-transform: uppercase; font-weight: 400;
}
.brand b i { color: var(--zest); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px; color: var(--muted); position: relative; padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--fg); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--zest); transition: width 0.24s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--fg); cursor: pointer; padding: 8px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  padding: 14px 22px; border-radius: var(--radius-sm);
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent); color: var(--zest-ink);
  box-shadow: 0 0 0 0 var(--zest-glow);
}
.btn-primary:hover { background: var(--accent-hi); box-shadow: 0 8px 34px -12px rgba(10, 160, 29, 0.6); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--zest-lo); color: var(--zest); }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-lg { padding: 17px 28px; font-size: 16px; }

/* ---------- viewfinder frame (the signature) ---------- */
.frame { position: relative; }
.frame::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  --t: 16px; --w: 2px; --c: var(--zest);
  background:
    linear-gradient(var(--c), var(--c)) 0 0 / var(--t) var(--w),
    linear-gradient(var(--c), var(--c)) 0 0 / var(--w) var(--t),
    linear-gradient(var(--c), var(--c)) 100% 0 / var(--t) var(--w),
    linear-gradient(var(--c), var(--c)) 100% 0 / var(--w) var(--t),
    linear-gradient(var(--c), var(--c)) 0 100% / var(--t) var(--w),
    linear-gradient(var(--c), var(--c)) 0 100% / var(--w) var(--t),
    linear-gradient(var(--c), var(--c)) 100% 100% / var(--t) var(--w),
    linear-gradient(var(--c), var(--c)) 100% 100% / var(--w) var(--t);
  background-repeat: no-repeat;
}

/* ---------- hero ---------- */
.hero { padding-block: clamp(48px, 8vw, 96px) clamp(64px, 10vw, 120px); }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .l2 { color: var(--zest); display: block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta {
  margin-top: 28px; display: flex; gap: 26px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; color: var(--faint);
  letter-spacing: 0.06em;
}
.hero-meta b { color: var(--fg); font-weight: 400; }

/* instrument scope panel */
.scope {
  background: linear-gradient(160deg, var(--card), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.scope-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 20px;
}
.scope-live { display: inline-flex; align-items: center; gap: 8px; color: var(--zest); }
.scope-live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--zest);
  box-shadow: 0 0 0 0 var(--zest); animation: ping 2.2s var(--ease) infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(47,194,74,0.5); }
  70%,100% { box-shadow: 0 0 0 9px rgba(47,194,74,0); }
}
.scope-logo { display: grid; place-items: center; padding: 18px 0 26px; }
.scope-logo img { width: min(56%, 220px); filter: drop-shadow(0 12px 40px rgba(47,194,74,0.22)); }
.readouts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.readout { padding: 16px 6px 4px; border-right: 1px solid var(--line); text-align: left; }
.readout:last-child { border-right: 0; }
.readout .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.readout .v { font-family: var(--display); font-size: 34px; line-height: 1; color: var(--fg); margin-top: 4px; }
.readout .v small { font-size: 14px; color: var(--zest-lo); }

/* ---------- section headers ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head .lede { margin-top: 18px; }

/* ---------- feature bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.tile {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: relative; overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.tile:hover { border-color: #33414F; transform: translateY(-3px); }
.tile .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zest-lo); }
.tile h3 { margin: 14px 0 10px; }
.tile p { color: var(--muted); margin: 0; font-size: 15px; }
.tile-wide { grid-column: span 4; }
.tile-half { grid-column: span 3; }
.tile-third { grid-column: span 2; }
.tile-metric .big {
  font-family: var(--display); font-size: clamp(52px, 7vw, 92px); line-height: 0.9;
  color: var(--zest); margin: 6px 0 0;
}
.tile-metric .big small { font-size: 0.32em; color: var(--muted); letter-spacing: 0.1em; }

/* ---------- stat band ---------- */
.band { border-block: 1px solid var(--line); background: var(--surface); }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.band-cell { padding: 40px 24px; border-right: 1px solid var(--line); }
.band-cell:last-child { border-right: 0; }
.band-cell .v { font-family: var(--display); font-size: clamp(40px, 5vw, 60px); line-height: 1; }
.band-cell .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-top: 8px; }

/* ---------- steps (download) ---------- */
.steps { display: grid; gap: 2px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step { display: grid; grid-template-columns: 84px 1fr; background: var(--card); }
.step + .step { border-top: 1px solid var(--line); }
.step .idx {
  font-family: var(--mono); font-size: 15px; color: var(--zest);
  display: grid; place-items: center; border-right: 1px solid var(--line); background: var(--surface);
}
.step .body { padding: 24px 28px; }
.step .body h3 { font-size: 22px; margin-bottom: 8px; }
.step .body p { color: var(--muted); margin: 0; font-size: 15px; }
.step .body code {
  font-family: var(--mono); font-size: 13px; background: var(--bg); color: var(--zest-hi);
  padding: 3px 8px; border-radius: 6px; border: 1px solid var(--line);
}

/* ---------- callout / store teaser ---------- */
.callout {
  background: linear-gradient(150deg, var(--card), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(32px, 5vw, 64px); position: relative; overflow: hidden;
}
.callout .lede { margin-top: 16px; }

/* version / roadmap chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); background: var(--surface); display: inline-flex; align-items: center; gap: 9px;
}
.chip.live { color: var(--zest); border-color: var(--zest-lo); }
.chip.live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--zest); }

/* pillar row */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pillar { padding: 30px 24px; border-right: 1px solid var(--line); }
.pillar:last-child { border-right: 0; }
.pillar .n { font-family: var(--mono); font-size: 12px; color: var(--zest-lo); }
.pillar h3 { font-size: 21px; margin: 12px 0 8px; }
.pillar p { color: var(--muted); font-size: 14px; margin: 0; }

/* placeholder screenshot slots — honest, labeled */
.shot {
  aspect-ratio: 16 / 10; border: 1px dashed var(--line); border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.015) 12px, rgba(255,255,255,0.015) 24px),
    var(--surface);
  display: grid; place-items: center; color: var(--faint);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
}

/* ---------- legal / prose ---------- */
.prose { max-width: 780px; }
.prose h1 { font-size: clamp(40px, 6vw, 64px); margin-bottom: 8px; }
.prose h2 { font-size: 26px; margin: 44px 0 14px; }
.prose h3 { font-size: 19px; font-family: var(--body); font-weight: 700; letter-spacing: 0; text-transform: none; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--muted); font-size: 15px; line-height: 1.75; }
.prose a { color: var(--zest); border-bottom: 1px solid var(--line); }
.prose a:hover { border-color: var(--zest); }
.prose code { font-family: var(--mono); font-size: 13px; color: var(--zest-hi); word-break: break-word; }
.prose .meta { font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: 0.1em; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.prose blockquote {
  margin: 24px 0; padding: 18px 22px; border-left: 3px solid var(--zest);
  background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--fg); font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
}
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose .table-scroll { overflow-x: auto; margin: 24px 0; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.prose table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 520px; }
.prose th, .prose td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--zest-lo); background: var(--surface); }
.prose tbody tr:last-child td { border-bottom: 0; }
.prose td:first-child { color: var(--fg); }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); background: var(--surface); padding-block: 56px 40px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot .brand { margin-bottom: 16px; }
.foot p { color: var(--faint); font-size: 14px; max-width: 34ch; }
.foot h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin: 0 0 16px; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot ul a { color: var(--muted); font-size: 14px; transition: color 0.2s var(--ease); }
.foot ul a:hover { color: var(--zest); }
.foot-base {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: 0.06em;
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .scope { order: -1; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile-wide, .tile-half, .tile-third { grid-column: span 2; }
  .band-grid { grid-template-columns: repeat(2, 1fr); }
  .band-cell:nth-child(2) { border-right: 0; }
  .band-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .pillar:nth-child(2n) { border-right: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    gap: 0; background: var(--surface); border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  .nav.open .nav-links a { padding: 14px var(--pad); }
}
@media (max-width: 560px) {
  .bento, .band-grid { grid-template-columns: 1fr; }
  .tile-wide, .tile-half, .tile-third, .band-cell { grid-column: span 1; }
  .band-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .readouts { grid-template-columns: repeat(3, 1fr); }
  .step { grid-template-columns: 60px 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPONENTS — pages beyond the landing (specs, faq, pricing,
   players, account, docs, changelog, community). Same instrument
   language: mono labels, machined hairlines, viewfinder frames.
   ============================================================ */

/* ---------- generic layout helpers ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stack-sm > * + * { margin-top: 10px; }
.center-col { max-width: 760px; margin-inline: auto; text-align: center; }
.center-col .eyebrow { justify-content: center; }
.muted { color: var(--muted); }
.tight-top { padding-top: 0 !important; }
.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- interior page header ---------- */
.page-head { padding-block: clamp(40px, 7vw, 88px) clamp(28px, 4vw, 48px); }
.page-head .lede { margin-top: 18px; }
.page-head .hero-actions { margin-top: 28px; }

/* ---------- badges / pills ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--muted); background: var(--surface); white-space: nowrap;
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.dotless::before { display: none; }
.badge-live { color: var(--zest); border-color: var(--zest-lo); }
.badge-free { color: var(--zest); border-color: var(--zest-lo); }
.badge-gold { color: var(--gold); border-color: var(--gold-line); background: rgba(231,196,107,0.06); }
.badge-sub  { color: var(--gold); border-color: var(--gold-line); }
.badge-muted { color: var(--faint); }

/* ---------- FAQ (native details, zero-JS) ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq details { border-top: 1px solid var(--line); background: var(--card); }
.faq details:first-child { border-top: 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; font-weight: 700; font-size: 16.5px; color: var(--fg);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--hover); }
.faq summary .plus {
  flex: none; width: 22px; height: 22px; position: relative; color: var(--zest);
  transition: transform 0.28s var(--ease);
}
.faq summary .plus::before, .faq summary .plus::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq summary .plus::before { width: 14px; height: 2px; }
.faq summary .plus::after  { width: 2px; height: 14px; transition: transform 0.28s var(--ease); }
.faq details[open] summary .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq details[open] summary { color: var(--zest); }
.faq .ans { padding: 0 26px 24px; color: var(--muted); font-size: 15px; line-height: 1.75; max-width: 68ch; }
.faq .ans a { color: var(--zest); border-bottom: 1px solid var(--line); }
.faq .ans a:hover { border-color: var(--zest); }

/* ---------- specifications ---------- */
.specs { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-group + .spec-group { border-top: 1px solid var(--line); }
.spec-group > .k {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--zest-lo); padding: 18px 24px 6px; display: block; background: var(--surface);
}
.spec-row {
  display: grid; grid-template-columns: 230px 1fr; gap: 24px; padding: 16px 24px;
  border-top: 1px solid var(--line-soft); background: var(--card);
}
.spec-row .name { color: var(--fg); font-weight: 700; font-size: 15px; }
.spec-row .val { color: var(--muted); font-size: 15px; }
.spec-row .val code { font-family: var(--mono); font-size: 13px; color: var(--zest-hi); }

/* system requirements: min / recommended */
.req { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.req-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.req-card.reco { border-color: var(--zest-lo); }
.req-card .rh {
  padding: 18px 24px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint);
}
.req-card.reco .rh { color: var(--zest); }
.req-card dl { margin: 0; padding: 8px 24px 20px; }
.req-card dl div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--line-soft); }
.req-card dl div:first-child { border-top: 0; }
.req-card dt { color: var(--faint); font-size: 13px; font-family: var(--mono); letter-spacing: 0.04em; }
.req-card dd { margin: 0; color: var(--fg); font-size: 14px; text-align: right; font-weight: 700; }

/* ---------- pricing plans ---------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; position: relative; overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.plan:hover { transform: translateY(-3px); }
.plan .tier { font-family: var(--display); font-size: 30px; text-transform: uppercase; letter-spacing: 0.02em; }
.plan .blurb { color: var(--muted); font-size: 14px; margin: 8px 0 22px; min-height: 42px; }
.plan .price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.plan .price .amt { font-family: var(--display); font-size: 58px; line-height: 0.9; }
.plan .price .per { font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: 0.08em; }
.plan .price-sub { font-family: var(--mono); font-size: 12px; color: var(--faint); margin-bottom: 24px; }
.plan ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.plan ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.plan ul li svg { flex: none; margin-top: 2px; }
.plan ul li.off { color: var(--faint); }
.plan ul li.off svg { opacity: 0.4; }
.plan .btn { width: 100%; justify-content: center; }
/* free plan reads in lime */
.plan.free { border-color: var(--zest-lo); }
.plan.free ul li svg { color: var(--zest); }
/* gold plan reads premium */
.plan.gold {
  border-color: var(--gold-line);
  background: linear-gradient(165deg, rgba(231,196,107,0.07), var(--card) 60%);
}
.plan.gold .tier { color: var(--gold); }
.plan.gold ul li svg { color: var(--gold); }
.plan.gold .btn-primary { background: var(--gold); color: var(--gold-ink); }
.plan.gold .btn-primary:hover { background: var(--gold-hi); box-shadow: 0 8px 34px -12px var(--gold-glow); }
.plan .ribbon {
  position: absolute; top: 18px; right: -34px; transform: rotate(45deg);
  background: var(--gold); color: var(--gold-ink); font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 44px; font-weight: 700;
}

/* ---------- search field ---------- */
.field {
  display: flex; align-items: center; gap: 12px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 4px 4px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field:focus-within { border-color: var(--zest-lo); box-shadow: 0 0 0 3px var(--zest-glow); }
.field svg { color: var(--faint); flex: none; }
.field input {
  flex: 1; background: none; border: 0; outline: 0; color: var(--fg);
  font-family: var(--body); font-size: 15.5px; padding: 12px 0;
}
.field input::placeholder { color: var(--faint); }
.field .btn { padding: 11px 20px; }

/* ---------- player search / cards ---------- */
.player-toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.seg { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: var(--surface); }
.seg button {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); background: none; border: 0; cursor: pointer; padding: 8px 15px; border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.seg button.active { color: var(--zest-ink); background: var(--zest); }
.player-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.player-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.player-card:hover { border-color: #33414F; transform: translateY(-2px); }
.player-card .pc-skin {
  width: 72px; height: 108px; object-fit: contain; image-rendering: pixelated;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  align-self: stretch;
}
.player-card .pc-name { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.player-card .pc-name b { font-size: 17px; }
.player-card .pc-meta { font-family: var(--mono); font-size: 11px; color: var(--faint); letter-spacing: 0.04em; margin-top: 4px; }
.player-card .pc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-top: 14px; }
.player-card .pc-stats .s .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.player-card .pc-stats .s .v { font-family: var(--display); font-size: 22px; line-height: 1; margin-top: 2px; }
.player-card .pc-stats .s .v.sm { font-family: var(--body); font-size: 14px; font-weight: 700; }
.player-empty {
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 44px 24px; text-align: center;
  color: var(--faint); font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em;
}
.player-empty b { color: var(--fg); font-family: var(--body); display: block; font-size: 17px; margin-bottom: 6px; letter-spacing: 0; }

/* ---------- account dashboard ---------- */
.dash { display: grid; grid-template-columns: 250px 1fr; gap: 28px; align-items: start; }
.dash-side { position: sticky; top: 88px; display: grid; gap: 20px; }
.profile-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center;
}
.profile-card .pc-skin { width: 96px; height: 144px; margin: 0 auto 14px; image-rendering: pixelated; object-fit: contain;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.profile-card .uname { font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.profile-card .uuid { font-family: var(--mono); font-size: 10px; color: var(--faint); word-break: break-all; margin-top: 4px; }
.dash-nav { display: grid; gap: 2px; }
.dash-nav a {
  display: flex; align-items: center; gap: 11px; padding: 12px 14px; border-radius: var(--radius-sm);
  color: var(--muted); font-size: 14px; font-weight: 700; transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.dash-nav a:hover { background: var(--hover); color: var(--fg); }
.dash-nav a.active { background: var(--surface); color: var(--zest); box-shadow: inset 3px 0 0 var(--zest); }
.dash-main { display: grid; gap: 20px; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.panel > h3 { font-size: 22px; margin-bottom: 16px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat-tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; }
.stat-tile .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.stat-tile .v { font-family: var(--display); font-size: 34px; line-height: 1; margin-top: 6px; }
.stat-tile .v.zest { color: var(--zest); }
.stat-tile .v.gold { color: var(--gold); }
.cos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cos {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px; text-align: center; position: relative;
}
.cos.equipped { border-color: var(--zest-lo); }
.cos .swatch { height: 64px; border-radius: 6px; margin-bottom: 10px; border: 1px solid var(--line); background: var(--card); }
.cos .cn { font-size: 13px; font-weight: 700; }
.cos .ct { font-family: var(--mono); font-size: 10px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.cos .eq { position: absolute; top: 8px; right: 8px; font-family: var(--mono); font-size: 9px; color: var(--zest); letter-spacing: 0.1em; }

/* auth gate */
.auth-card { max-width: 460px; margin-inline: auto; text-align: center; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(32px, 5vw, 52px); }
.auth-card .ms {
  display: inline-flex; align-items: center; gap: 12px; justify-content: center; width: 100%;
}

/* ---------- changelog timeline ---------- */
.changelog { display: grid; gap: 0; border-left: 2px solid var(--line); margin-left: 8px; }
.release { position: relative; padding: 0 0 40px 34px; }
.release::before {
  content: ""; position: absolute; left: -9px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--zest-lo);
}
.release.latest::before { background: var(--zest); border-color: var(--zest); box-shadow: 0 0 0 5px var(--zest-glow); }
.release .rhead { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.release .ver { font-family: var(--display); font-size: 30px; text-transform: uppercase; }
.release .date { font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: 0.06em; }
.release ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.release li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--muted); }
.release li .t {
  flex: none; font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; margin-top: 2px; min-width: 46px; text-align: center; font-weight: 700;
}
.t-feat { color: var(--zest); background: rgba(196,242,78,0.1); }
.t-perf { color: #7FD4FF; background: rgba(127,212,255,0.1); }
.t-fix  { color: var(--gold); background: rgba(231,196,107,0.1); }

/* ---------- docs hub ---------- */
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.doc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease); display: block;
}
.doc-card:hover { border-color: var(--zest-lo); transform: translateY(-3px); }
.doc-card .di { color: var(--zest); margin-bottom: 14px; }
.doc-card h3 { font-size: 20px; margin-bottom: 8px; }
.doc-card p { color: var(--muted); font-size: 14px; margin: 0; }
.doc-card .arrow { color: var(--zest); font-family: var(--mono); font-size: 12px; margin-top: 14px; display: inline-block; }
/* social channel not open yet: rendered as a non-link "opening soon" card (no dead href) */
.doc-card.soon { opacity: 0.7; cursor: default; }
.doc-card.soon:hover { border-color: var(--line); transform: none; }
.doc-card.soon .di, .doc-card.soon .arrow { color: var(--muted); }

/* ---------- community gallery ---------- */
.gallery { columns: 3; column-gap: 16px; }
.gallery > * { break-inside: avoid; margin-bottom: 16px; }
.gal {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: relative;
  background: var(--surface);
}
.gal .gph {
  aspect-ratio: var(--ar, 16 / 10);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.015) 12px, rgba(255,255,255,0.015) 24px),
    var(--surface);
  display: grid; place-items: center; color: var(--faint); font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 12px;
}
.gal .cap { display: flex; justify-content: space-between; gap: 10px; padding: 12px 14px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; color: var(--faint); letter-spacing: 0.04em; }
.gal .cap b { color: var(--fg); font-family: var(--body); font-size: 13px; letter-spacing: 0; }

/* ---------- richer footer ---------- */
.foot-grid.wide { grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: var(--radius-sm);
  border: 1px solid var(--line); color: var(--muted); background: var(--surface);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.foot-social a:hover { color: var(--zest); border-color: var(--zest-lo); transform: translateY(-2px); }

/* ---------- comparison table (extensible: add <tr> rows / <th> columns) ---------- */
.compare-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: center; font-size: 14px; vertical-align: middle; }
.compare thead th { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); background: var(--surface); }
.compare th:first-child, .compare td:first-child { text-align: left; color: var(--fg); font-weight: 700; }
.compare tbody tr:last-child td { border-bottom: 0; }
/* highlight the SourClient column (2nd) */
.compare th:nth-child(2), .compare td:nth-child(2) {
  background: var(--zest-glow); border-inline: 1px solid var(--zest-lo);
}
.compare thead th:nth-child(2) { color: var(--zest); }
.compare td.y { color: var(--zest); font-weight: 700; }
.compare td.y::before { content: "\2713 "; }
.compare td.n { color: var(--faint); }
.compare td.n::before { content: "\2014"; }
.compare td.partial { color: var(--muted); font-size: 12.5px; }

/* ---------- native mod-stack replacement ---------- */
.repl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.repl-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px;
}
.repl-row .was { color: var(--muted); font-size: 14.5px; }
.repl-row .was s { color: var(--faint); text-decoration-color: var(--faint); }
.repl-row .now {
  flex: none; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--zest); border: 1px solid var(--zest-lo); border-radius: 999px; padding: 5px 11px; white-space: nowrap;
}

/* ---------- custom cape hero / safety ---------- */
.cape-safety {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch;
}
.safety-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.safety-card.warn { border-color: var(--gold-line); background: linear-gradient(160deg, rgba(231,196,107,0.05), var(--card) 60%); }
.safety-card .si { margin-bottom: 14px; }
.safety-card.warn .si { color: var(--gold); }
.safety-card:not(.warn) .si { color: var(--zest); }
.safety-card h3 { font-size: 20px; margin-bottom: 8px; }
.safety-card p { color: var(--muted); font-size: 14.5px; margin: 0; }
/* the demo cape swatch pair (raw vs blurred) */
.cape-demo { display: flex; gap: 14px; margin-top: 16px; }
.cape-swatch { flex: 1; text-align: center; }
.cape-swatch .img {
  height: 96px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: linear-gradient(135deg, #6a3ad8, #b06bff 40%, #ff7a59 80%);
}
.cape-swatch.blurred .img { filter: blur(9px); }
.cape-swatch .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-top: 8px; }
.cape-swatch.blurred .lbl { color: var(--zest); }

/* ---------- component responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .plans, .req, .repl, .cape-safety { grid-template-columns: 1fr; }
  .player-grid, .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .cos-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { columns: 2; }
  .dash { grid-template-columns: 1fr; }
  .dash-side { position: static; }
  .dash-nav { grid-auto-flow: column; overflow-x: auto; }
  .foot-grid.wide { grid-template-columns: 1fr 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 560px) {
  .grid-2, .player-grid, .docs-grid, .stat-row { grid-template-columns: 1fr; }
  .cos-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 1; }
  .foot-grid.wide { grid-template-columns: 1fr; }
  .player-card { grid-template-columns: 60px 1fr; }
  .player-card .pc-skin { height: 90px; }
}

/* ============================================================
   MOTION + NEW COMPONENTS — kinetic hero mark, feature carousel,
   gold CTA, download counter, hover POP. Added on the 07-20 pass.
   ============================================================ */

/* ---------- gold CTA + nav extras ---------- */
.btn-gold { background: var(--gold); color: var(--gold-ink); border-color: transparent; }
.btn-gold:hover { background: var(--gold-hi); box-shadow: 0 8px 30px -12px rgba(231, 196, 107, 0.65); }
.btn-gold:hover .arrow { transform: translateX(3px); }
.btn svg { flex: none; }
.only-mobile { display: none; }
/* nav CTA cluster runs tighter than page buttons so Account + Sour Gold + Download all fit */
.nav-cta .btn { padding: 10px 15px; font-size: 13.5px; gap: 7px; }
.nav-links { gap: 26px; }

/* ---------- kinetic hero mark (replaces the instrument scope) ---------- */
.hero-logo { position: relative; display: grid; place-items: center; }
.hl-stage {
  position: relative; width: min(100%, 440px); aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.5s var(--ease);
}
.hl-glow, .hl-grid, .hl-ring, .hl-particles { position: absolute; inset: 0; border-radius: 50%; }
.hl-glow {
  background: radial-gradient(circle at 50% 50%, var(--zest-glow), transparent 62%);
  filter: blur(8px); animation: hlpulse 4.6s var(--ease) infinite;
}
.hl-grid {
  background-image: radial-gradient(circle, rgba(47, 194, 74, 0.20) 1px, transparent 1.5px);
  background-size: 22px 22px; opacity: 0.5;
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 32%, transparent 68%);
  mask: radial-gradient(circle at 50% 50%, #000 32%, transparent 68%);
}
.hl-ring {
  background: conic-gradient(from 0deg, transparent 0 60%, var(--zest) 82%, transparent 100%);
  -webkit-mask: radial-gradient(circle, transparent 60%, #000 61% 70%, transparent 71%);
  mask: radial-gradient(circle, transparent 60%, #000 61% 70%, transparent 71%);
  animation: hlspin 9s linear infinite; opacity: 0.9;
}
.hl-ring-2 {
  background: conic-gradient(from 180deg, transparent 0 72%, var(--zest-hi) 88%, transparent 100%);
  -webkit-mask: radial-gradient(circle, transparent 72%, #000 73% 79%, transparent 80%);
  mask: radial-gradient(circle, transparent 72%, #000 73% 79%, transparent 80%);
  animation: hlspin 15s linear infinite reverse; opacity: 0.7;
}
.hl-particles { overflow: hidden; z-index: 2; pointer-events: none; }
.hl-particles span {
  position: absolute; bottom: -6px; width: 3px; height: 3px; border-radius: 50%;
  background: var(--zest); box-shadow: 0 0 6px var(--zest);
  opacity: 0; animation: hlrise linear infinite; animation-delay: var(--pd, 0s);
}
.hl-mark {
  position: relative; z-index: 3; width: 52%;
  filter: drop-shadow(0 14px 46px rgba(47, 194, 74, 0.32));
  animation: hlfloat 6s var(--ease) infinite;
}
@keyframes hlspin { to { transform: rotate(360deg); } }
@keyframes hlpulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes hlfloat {
  0%, 100% { transform: translate(var(--tx, 0px), calc(var(--ty, 0px) - 5px)); }
  50%      { transform: translate(var(--tx, 0px), calc(var(--ty, 0px) + 8px)); }
}
@keyframes hlrise {
  0% { transform: translate(0, 0); opacity: 0; }
  12% { opacity: 0.9; }
  100% { transform: translate(var(--px, 0), -340px); opacity: 0; }
}

/* ---------- feature carousel (replaces the stat band) ---------- */
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.6s var(--ease); will-change: transform; }
.cslide {
  min-width: 100%; box-sizing: border-box; padding: clamp(34px, 5vw, 52px) 6px;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 48px); align-items: center;
}
.cslide .c-metric {
  font-family: var(--display); font-size: clamp(50px, 8vw, 100px); line-height: 0.84; color: var(--zest);
}
.cslide .c-metric small {
  display: block; font-size: 0.17em; letter-spacing: 0.16em; color: var(--muted);
  font-family: var(--mono); margin-top: 12px; text-transform: uppercase;
}
.cslide .c-body .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zest-lo); }
.cslide .c-body h3 { font-size: clamp(24px, 3vw, 34px); margin: 8px 0 10px; }
.cslide .c-body p { color: var(--muted); margin: 0; max-width: 52ch; }
.carousel-dots { display: flex; gap: 10px; justify-content: center; padding: 4px 0 2px; }
.carousel-dots .cdot {
  width: 30px; height: 4px; border-radius: 999px; border: 0; background: var(--line);
  cursor: pointer; padding: 0; transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.carousel-dots .cdot:hover { background: var(--faint); }
.carousel-dots .cdot.active { background: var(--zest); width: 46px; }
@media (max-width: 560px) { .cslide { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- download counter ---------- */
.dl-proof { display: flex; align-items: center; gap: 16px; margin: 28px 0 4px; flex-wrap: wrap; }
.count-stat { font-family: var(--display); font-size: clamp(44px, 6vw, 68px); line-height: 0.9; color: var(--zest); }
.dl-proof-k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); line-height: 1.4; }

/* ---------- comparison: pending cells ---------- */
.compare td.tbd { color: var(--faint); font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; }
.bench-note { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: var(--faint); margin-top: 16px; }
.bench-note b { color: var(--zest-lo); font-weight: 400; }

/* ============================================================
   REDESIGN v2 — distinct per-page archetypes, media/video slots,
   alternating story rows, cinematic hero, feature explorer, gold
   sell, and motion. Green stays #087815 / zest #2FC24A.
   Drop a screenshot/video/bg into any .media and it just works.
   ============================================================ */

/* ---------- media slot: the universal image / video / bg surface ----------
   Usage:
     <div class="media"></div>                      sleek empty panel
     <div class="media"><img src=".." alt=""></div>  screenshot
     <figure class="media video"><video ..></figure> video (shows play glyph until wired)
   Ratio override: style="--ar:21/9"                                            */
.media {
  position: relative; aspect-ratio: var(--ar, 16 / 9); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); margin: 0; isolation: isolate;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(47,194,74,0.10), transparent 58%),
    linear-gradient(158deg, var(--card), var(--surface));
}
.media > img, .media > video, .media > iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; z-index: 1;
}
/* faint machined grid so an empty slot still reads as a designed surface */
.media::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(47,194,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,194,74,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask: radial-gradient(circle at 50% 45%, #000, transparent 78%);
  mask: radial-gradient(circle at 50% 45%, #000, transparent 78%);
}
.media.has-media::before { display: none; }
/* centred play glyph for video slots */
.media.video::after {
  content: ""; position: absolute; z-index: 2; top: 50%; left: 50%;
  width: 74px; height: 74px; margin: -37px 0 0 -37px; border-radius: 50%;
  background: rgba(8,11,15,0.55); border: 1px solid var(--zest-lo);
  backdrop-filter: blur(4px);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.media.video::before {
  /* keep grid but also draw the triangle via a second layer using a conic trick is messy;
     use a clip-path element instead */
}
.media.video .play-tri {
  position: absolute; z-index: 3; top: 50%; left: calc(50% + 3px); transform: translate(-50%,-50%);
  width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--zest);
  transition: transform 0.3s var(--ease); pointer-events: none;
}
.media.video:hover::after { transform: scale(1.08); background: rgba(8,11,15,0.4); box-shadow: 0 0 44px -8px var(--zest-glow); }
.media.video:hover .play-tri { transform: translate(-50%,-50%) scale(1.06); }
/* small mono tag pinned in a corner of a media slot */
.media .m-tag {
  position: absolute; z-index: 4; left: 14px; bottom: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg); background: rgba(8,11,15,0.6); border: 1px solid var(--line);
  padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(6px);
}
.media .m-tag.zest { color: var(--zest); border-color: var(--zest-lo); }
.media .m-tag.gold { color: var(--gold); border-color: var(--gold-line); }
/* soft floor gradient so screenshots seat into the page */
.media.sink::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(8,11,15,0.5)); }

/* ---------- cinematic hero (full-bleed media bg) ---------- */
.hero-cine { position: relative; overflow: hidden; min-height: min(88vh, 860px); display: flex; align-items: center;
  padding-block: clamp(80px, 12vh, 150px) clamp(56px, 8vw, 104px); }
.hero-cine .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-cine .hero-bg > img, .hero-cine .hero-bg > video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
}
.hero-cine .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(8,120,21,0.16), transparent 60%),
    linear-gradient(180deg, rgba(8,11,15,0.55) 0%, rgba(8,11,15,0.82) 60%, var(--bg) 100%);
}
/* aurora sheen when no bg media is dropped in, so the hero is never flat */
.hero-cine .hero-aurora {
  position: absolute; inset: -20% -10% auto -10%; height: 70%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 60% at 20% 30%, rgba(47,194,74,0.16), transparent 60%),
    radial-gradient(45% 55% at 80% 20%, rgba(10,160,29,0.14), transparent 62%);
  filter: blur(30px); opacity: 0.9; animation: auroraDrift 18s var(--ease) infinite alternate;
}
@keyframes auroraDrift { from { transform: translate3d(-2%,0,0) scale(1); } to { transform: translate3d(3%,2%,0) scale(1.08); } }
.hero-cine .wrap { position: relative; z-index: 2; }
.hero-cine .hero-copy { max-width: 780px; }
.hero-cine h1 { margin-bottom: 22px; }
.hero-cine h1 .l2 { color: var(--zest); display: block; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }

/* ---------- trust / stat strip under hero ---------- */
.trust {
  display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center;
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--faint);
}
.trust .t-item { display: flex; align-items: baseline; gap: 10px; }
.trust .t-item b { font-family: var(--display); font-size: 26px; color: var(--fg); letter-spacing: 0.02em; line-height: 1; }
.trust .t-item .zest { color: var(--zest); }

/* ---------- logo / mod marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--surface);
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; padding: 20px 28px; animation: marq 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); white-space: nowrap; display: inline-flex; align-items: center; gap: 12px; }
.marquee-item s { color: var(--faint); opacity: 0.55; }
.marquee-item .now { color: var(--zest); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- alternating story rows (the anti-bento) ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.story + .story { margin-top: clamp(48px, 8vw, 120px); }
.story.flip .story-copy { order: 2; }
.story.flip .story-media { order: 1; }
.story-copy { max-width: 40ch; }
.story-copy h2 { margin: 14px 0 16px; }
.story-copy .lede { margin-bottom: 22px; }
.story-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.story-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--muted); }
.story-list li svg { flex: none; color: var(--zest); margin-top: 2px; }

/* ---------- feature explorer (tabbed, sticky media) ---------- */
.explorer { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.exp-tabs { display: grid; gap: 8px; position: sticky; top: 92px; }
.exp-tab {
  text-align: left; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; cursor: pointer; color: var(--muted); transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
  display: grid; gap: 6px;
}
.exp-tab:hover { border-color: #33414F; }
.exp-tab .et-k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.exp-tab .et-h { font-family: var(--display); font-size: 22px; text-transform: uppercase; color: var(--fg); line-height: 1; }
.exp-tab.active { border-color: var(--zest-lo); background: linear-gradient(150deg, var(--zest-glow), var(--card) 60%); box-shadow: inset 3px 0 0 var(--zest); }
.exp-tab.active .et-k { color: var(--zest); }
.exp-panels { position: relative; }
.exp-panel { display: none; }
.exp-panel.active { display: block; animation: fadeUp 0.5s var(--ease); }
.exp-panel .exp-desc { color: var(--muted); margin: 16px 0 0; }
.exp-panel .chips { margin-top: 18px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- performance bars ---------- */
.bars { display: grid; gap: 20px; }
.bar-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: center; }
.bar-row .bl { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
.bar-track { position: relative; height: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.bar-fill { position: absolute; inset: 0 auto 0 0; width: var(--w, 0%); border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--zest)); display: flex; align-items: center; justify-content: flex-end;
  padding-right: 14px; color: var(--zest-ink); font-family: var(--display); font-size: 16px; letter-spacing: 0.04em;
  transition: width 1.1s var(--ease); }
.bar-fill.ghost { background: linear-gradient(90deg, #2a3340, #3a4653); color: var(--muted); }
.bars-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--faint); margin-top: 18px; }

/* ---------- section heading rhythm (kills the awkward gaps) ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(32px, 4.5vw, 56px); }
.sec-head.center { max-width: 760px; margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { margin-top: 4px; }
.sec-head .lede { margin-top: 16px; }
.kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zest-lo); }

/* ---------- gold: premium hero + perk theatre ---------- */
.gold-hero {
  position: relative; overflow: hidden; text-align: center;
  padding-block: clamp(64px, 10vw, 128px) clamp(40px, 6vw, 72px);
  background:
    radial-gradient(70% 80% at 50% -10%, rgba(231,196,107,0.14), transparent 60%),
    linear-gradient(180deg, #100D06 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--gold-line);
}
.gold-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(231,196,107,0.10) 1px, transparent 1.5px); background-size: 26px 26px;
  -webkit-mask: radial-gradient(circle at 50% 0%, #000, transparent 70%); mask: radial-gradient(circle at 50% 0%, #000, transparent 70%); }
.gold-hero .wrap { position: relative; z-index: 2; }
.gold-hero h1 .l2 { color: var(--gold); display: block; }
.gold-hero .lede { margin-inline: auto; }
.perk-theatre { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.perk-x {
  background: linear-gradient(160deg, rgba(231,196,107,0.06), var(--card) 62%);
  border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 26px; position: relative; overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease); grid-column: span 4;
}
.perk-x:hover { transform: translateY(-4px); border-color: var(--gold-lo); }
.perk-x.wide { grid-column: span 8; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.perk-x.tall { grid-row: span 2; }
.perk-x .pi { color: var(--gold); margin-bottom: 16px; }
.perk-x h3 { font-size: 23px; margin-bottom: 8px; }
.perk-x p { color: var(--muted); font-size: 14.5px; margin: 0; }
.perk-x .perk-media { margin: 0; }
.gold-name-demo { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.gold-name-demo .gn { font-family: var(--display); font-size: 22px; letter-spacing: 0.04em; padding: 4px 12px; border-radius: var(--radius-sm); border: 1px solid var(--line); }

/* billing toggle + plan v2 tweaks */
.billing { display: flex; justify-content: center; margin-bottom: 30px; }
.billing .seg { padding: 4px; }
.billing .seg button { padding: 11px 20px; font-size: 12px; position: relative; }
.save-pill { margin-left: 8px; font-size: 9px; color: var(--gold); border: 1px solid var(--gold-line); border-radius: 999px; padding: 2px 7px; letter-spacing: 0.1em; }
.plan .scarcity { margin: -8px 0 18px; }
.plan .scarcity .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--gold); display: inline-flex; gap: 8px; }

/* ---------- store: cosmetic catalog ---------- */
.cat-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.cos-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.cos-card:hover { border-color: #33414F; transform: translateY(-3px); }
.cos-card .cc-media { aspect-ratio: 3 / 4; position: relative; overflow: hidden; background: linear-gradient(160deg, var(--card), var(--surface)); }
.cos-card .cc-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cos-card .cc-body { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cos-card .cc-name { font-weight: 700; font-size: 15px; }
.cos-card .cc-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-top: 2px; }
.cos-card .cc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); white-space: nowrap; }
.cos-card .cc-tag.gold { color: var(--gold); border-color: var(--gold-line); }
.cos-card .cc-tag.free { color: var(--zest); border-color: var(--zest-lo); }
.catalog { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ---------- download: focused funnel ---------- */
.dl-hero { text-align: center; padding-block: clamp(56px, 9vw, 112px) clamp(32px, 5vw, 56px);
  background: radial-gradient(70% 70% at 50% -10%, var(--zest-glow), transparent 60%); }
.dl-hero .lede { margin-inline: auto; }
.dl-main {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--zest-lo); border-radius: var(--radius);
  padding: 22px 30px; margin-top: 8px; box-shadow: 0 24px 80px -40px var(--zest-glow);
}
.dl-os { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.os-pill { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; background: var(--surface); }
.os-pill.soon { color: var(--faint); }

/* ---------- generic CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(36px, 6vw, 72px); text-align: center;
  background: radial-gradient(80% 120% at 50% 0%, rgba(8,120,21,0.14), transparent 60%), linear-gradient(160deg, var(--card), var(--surface)); }
.cta-band.gold { border-color: var(--gold-line); background: radial-gradient(80% 120% at 50% 0%, rgba(231,196,107,0.14), transparent 60%), linear-gradient(160deg, rgba(231,196,107,0.05), var(--surface)); }
.cta-band .hero-actions { justify-content: center; }

/* ---------- overrides: kill the "placeholder" aesthetic ---------- */
.shot {
  aspect-ratio: 16 / 10; border: 1px solid var(--line); border-radius: var(--radius);
  background: radial-gradient(120% 90% at 50% -10%, rgba(47,194,74,0.08), transparent 58%), linear-gradient(158deg, var(--card), var(--surface));
  position: relative; overflow: hidden;
}
.shot::before { content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image: linear-gradient(rgba(47,194,74,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(47,194,74,0.05) 1px, transparent 1px);
  background-size: 40px 40px; -webkit-mask: radial-gradient(circle at 50% 45%, #000, transparent 78%); mask: radial-gradient(circle at 50% 45%, #000, transparent 78%); }
.shot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.gal .gph { background: linear-gradient(158deg, var(--card), var(--surface)); color: transparent; }
.gal .gph > img { width: 100%; height: 100%; object-fit: cover; }
.player-empty { border: 1px solid var(--line); background: var(--surface); }

/* ---------- motion: reveal variants + magnetic ---------- */
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-s { opacity: 0; transform: scale(0.96); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-l.in, .reveal-r.in, .reveal-s.in { opacity: 1; transform: none; }
.par { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r, .reveal-s { transition: none; opacity: 1; transform: none; }
  .hero-aurora, .marquee-track, .hl-glow, .hl-ring, .hl-ring-2, .hl-mark { animation: none !important; }
}

/* ---------- nav dropdown (keeps every page reachable, cleanly) ---------- */
.nav-links .has-menu { position: relative; }
.nav-links .menu-btn { background: none; border: 0; color: var(--muted); font: inherit; font-size: 14px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; }
.nav-links .menu-btn:hover, .has-menu.open .menu-btn { color: var(--fg); }
.nav-links .menu-btn .caret { width: 8px; height: 8px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px); transition: transform 0.2s var(--ease); }
.has-menu.open .menu-btn .caret { transform: rotate(-135deg) translateY(-1px); }
.nav-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 230px; background: rgba(14,19,25,0.96); backdrop-filter: blur(14px); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 8px; display: grid; gap: 2px; opacity: 0; visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s; box-shadow: 0 24px 60px -30px rgba(0,0,0,0.8); z-index: 60; }
.has-menu.open .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu a { display: grid; gap: 3px; padding: 11px 13px; border-radius: 6px; color: var(--fg); font-size: 14px; transition: background 0.18s var(--ease); }
.nav-menu a:hover { background: var(--hover); }
.nav-menu a span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--faint); text-transform: none; }
.nav-menu a::after { display: none; }

/* ---------- misc utility ---------- */
.eyebrow.gold { color: var(--gold-lo); }
.eyebrow.gold::before { background: var(--gold); }
/* two-tone stacked headline: the second span drops to its own accent line site-wide */
h1 .l2 { display: block; color: var(--zest); }
.nav-links a.gold-link { color: var(--gold-lo); }
.nav-links a.gold-link:hover, .nav-links a.gold-link[aria-current="page"] { color: var(--gold); }
.nav-links a.gold-link::after { background: var(--gold); }
@media (max-width: 900px) {
  .nav.open .has-menu { padding: 0; width: 100%; }
  .nav.open .has-menu .menu-btn { display: none; }
  .nav.open .nav-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    display: grid; min-width: 0; background: none; border: 0; box-shadow: none; padding: 0;
  }
  .nav.open .nav-menu a { padding: 14px var(--pad); border-radius: 0; }
  .nav.open .nav-menu a span { display: none; }
}
.split-head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: clamp(28px,4vw,48px); }
.split-head .lede { margin-top: 14px; }
@media (max-width: 900px) {
  .story, .explorer, .perk-theatre, .catalog { grid-template-columns: 1fr; }
  .story.flip .story-copy, .story.flip .story-media { order: 0; }
  .exp-tabs { position: static; grid-auto-flow: row; }
  .perk-x, .perk-x.wide { grid-column: span 1; }
  .perk-x.wide { grid-template-columns: 1fr; }
  .catalog { grid-template-columns: repeat(2, 1fr); }
  .split-head { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .catalog { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 1fr; gap: 8px; }
  .nav-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; background: none; border: 0; padding: 0 0 0 12px; }
}

/* ---------- hover POP on tiles / cards ---------- */
.tile::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; z-index: 0;
  background: radial-gradient(560px 200px at 50% 0%, var(--zest-glow), transparent 70%);
  transition: opacity 0.3s var(--ease);
}
.tile:hover::after { opacity: 1; }
.tile > * { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .nav-cta .btn-ghost, .nav-cta .btn-gold { display: none; }
  .nav.open .nav-links .only-mobile { display: block; color: var(--zest); }
}

/* ---------- Sour Gold showcase page ---------- */
.gold-head .eyebrow::before { display: none; }
.gold-head h1 .l2 { color: var(--gold); }
.perk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.perk {
  background: linear-gradient(165deg, rgba(231, 196, 107, 0.06), var(--card) 60%);
  border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 24px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.perk:hover { transform: translateY(-3px); border-color: var(--gold); }
.perk .pi { color: var(--gold); margin-bottom: 14px; }
.perk h3 { font-size: 19px; margin-bottom: 8px; }
.perk p { color: var(--muted); font-size: 14px; margin: 0; }

/* billing toggle */
.billing { display: flex; justify-content: center; margin-bottom: 28px; }
.billing .seg { padding: 4px; }
.billing .seg button { padding: 11px 22px; font-size: 12.5px; display: inline-flex; align-items: center; gap: 8px; }
.billing .seg button.active { color: var(--gold-ink); background: var(--gold); }
.save-pill { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.06em; padding: 2px 6px; border-radius: 999px; background: rgba(20,16,10,0.22); }
.billing .seg button:not(.active) .save-pill { background: rgba(231,196,107,0.14); color: var(--gold); }

/* lifetime scarcity note */
.scarcity { margin: -8px 0 20px; }
.scarcity .lbl {
  display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
  color: var(--gold); background: rgba(231,196,107,0.08); border: 1px solid var(--gold-line);
  border-radius: 999px; padding: 7px 13px;
}

/* free-vs-gold compare: highlight the GOLD column instead of column 2 */
.compare.vs th:nth-child(2), .compare.vs td:nth-child(2) { background: transparent; border-inline: 1px solid var(--line); }
.compare.vs thead th:nth-child(2) { color: var(--faint); }
.compare.vs th:nth-child(3), .compare.vs td:nth-child(3) { background: var(--gold-glow); border-inline: 1px solid var(--gold-line); }
.compare.vs thead th:nth-child(3) { color: var(--gold); }
.compare.vs td.y.g { color: var(--gold); font-weight: 700; }

@media (max-width: 900px) { .perk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .perk-grid { grid-template-columns: 1fr; } }

/* ---------- changelog: summary + see-details expander ---------- */
.rel-sum { color: var(--fg); font-size: 15.5px; margin: 0 0 12px; max-width: 66ch; }
.rel-more > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--zest-lo); padding: 4px 0; transition: color 0.2s var(--ease); width: fit-content;
}
.rel-more > summary::-webkit-details-marker { display: none; }
.rel-more > summary:hover, .rel-more[open] > summary { color: var(--zest); }
.rel-more .chev {
  width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform 0.24s var(--ease); margin-bottom: 2px;
}
.rel-more[open] .chev { transform: rotate(225deg); margin-top: 3px; margin-bottom: 0; }
.rel-more ul { margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hl-stage { transform: none; }
}

/* ---------- progressive enhancement: reveals ----------
   Visible by default so a no-JS visit shows every section. Only once main.js adds
   .has-js to <html> do reveal elements start hidden, then animate in on scroll. */
.reveal, .reveal-l, .reveal-r, .reveal-s { opacity: 1; transform: none; }
.has-js .reveal   { opacity: 0; transform: translateY(22px); }
.has-js .reveal-l { opacity: 0; transform: translateX(-28px); }
.has-js .reveal-r { opacity: 0; transform: translateX(28px); }
.has-js .reveal-s { opacity: 0; transform: scale(0.96); }
.has-js .reveal.in, .has-js .reveal-l.in, .has-js .reveal-r.in, .has-js .reveal-s.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .has-js .reveal, .has-js .reveal-l, .has-js .reveal-r, .has-js .reveal-s { opacity: 1; transform: none; }
}

/* ============================================================
   OVERHAUL 2026-07-21 — hero duo + kinetic logo, nav icons +
   glowing gold CTA, footer socials, animated seg pills, feature
   scrollytelling, tier graph, HUD playground, 4-way compare,
   ticks-only gold table, store catalog v2, players board,
   per-page backdrop life.
   ============================================================ */

/* ---------- home hero: copy + kinetic logo side by side ---------- */
.hero-duo { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero-duo .hero-copy { max-width: 640px; }
@media (max-width: 900px) {
  .hero-duo { grid-template-columns: 1fr; }
  .hero-duo .hero-logo { display: none; }
}

/* ---------- nav: icons on links, glowing gold CTA ---------- */
.nav-links a { display: inline-flex; align-items: center; gap: 7px; }
.nav-links .ni { display: inline-grid; place-items: center; color: var(--faint); transition: color 0.2s var(--ease); }
.nav-links a:hover .ni, .nav-links a[aria-current="page"] .ni { color: var(--zest); }
.nav-links { gap: 18px; }
.nav .wrap { gap: 16px; }
.nav-cta { gap: 9px; }
.nav-cta .btn { padding: 10px 13px; }
.nav-cta .nav-account { padding: 10px 11px; }
@media (max-width: 1180px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
  .nav-links .ni { display: none; }
}
.btn-gold-glow {
  position: relative;
  box-shadow: 0 0 18px -4px rgba(231, 196, 107, 0.55), 0 0 44px -10px rgba(231, 196, 107, 0.4);
  animation: goldGlow 2.6s var(--ease) infinite alternate;
}
.btn-gold-glow:hover { box-shadow: 0 0 24px -2px rgba(231, 196, 107, 0.75), 0 0 60px -8px rgba(231, 196, 107, 0.5); }
@keyframes goldGlow {
  from { box-shadow: 0 0 14px -4px rgba(231,196,107,0.45), 0 0 36px -12px rgba(231,196,107,0.35); }
  to   { box-shadow: 0 0 22px -2px rgba(231,196,107,0.7),  0 0 56px -8px  rgba(231,196,107,0.5); }
}

/* ---------- footer: socials sit bottom-right with the contact address ---------- */
.foot-contact { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-contact .foot-social { margin-top: 0; }
.foot-contact .foot-social a { width: 34px; height: 34px; }

/* ---------- animated segmented pills ---------- */
.seg { position: relative; flex-wrap: wrap; }
.seg .seg-ind {
  position: absolute; left: 0; top: 0; z-index: 0; border-radius: 999px;
  background: var(--zest); opacity: 0;
  transition: transform 0.35s var(--ease), width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.2s var(--ease);
  pointer-events: none;
}
.seg .seg-ind.no-anim { transition: none; }
.seg button { position: relative; z-index: 1; }
.seg button.active { background: transparent; }
.billing .seg .seg-ind { background: var(--gold); }
.billing .seg button.active { background: transparent; }

/* price pop when the billing period or currency changes */
.plan .price .amt.bump { animation: pricePop 0.45s var(--ease); }
@keyframes pricePop { 0% { transform: scale(0.86); opacity: 0.4; } 100% { transform: none; opacity: 1; } }

/* ---------- currency picker ---------- */
.currency-pick { display: inline-flex; align-items: center; gap: 10px; }
.currency-pick label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.currency-pick select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background: var(--surface); color: var(--fg); border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; padding: 9px 30px 9px 15px;
  background-image: linear-gradient(45deg, transparent 50%, var(--faint) 50%), linear-gradient(135deg, var(--faint) 50%, transparent 50%);
  background-position: calc(100% - 17px) 55%, calc(100% - 12px) 55%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
  transition: border-color 0.2s var(--ease);
}
.currency-pick select:hover, .currency-pick select:focus { border-color: var(--zest-lo); outline: 0; }
.billing { gap: 18px; flex-wrap: wrap; align-items: center; }

/* ---------- features header: split with a stat rail ---------- */
.feat-head { background: linear-gradient(180deg, rgba(47,194,74,0.05), transparent 70%); border-bottom: 1px solid var(--line-soft); }
.feat-head-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.feat-rail { display: grid; gap: 2px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.feat-rail .fr-cell {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  background: var(--card); padding: 16px 22px; border-top: 1px solid var(--line-soft);
}
.feat-rail .fr-cell:first-child { border-top: 0; }
.feat-rail .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.feat-rail .v { font-family: var(--display); font-size: 26px; line-height: 1; }
@media (max-width: 900px) { .feat-head-grid { grid-template-columns: 1fr; } }

/* ---------- tier graph ---------- */
.tier-graph {
  background: linear-gradient(160deg, var(--card), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px);
}
.bar-row .bl small { display: block; font-size: 9.5px; color: var(--faint); letter-spacing: 0.08em; margin-top: 3px; text-transform: none; }
.bar-row .bl { line-height: 1.3; }

/* ---------- scrollytelling explorer ---------- */
.exp-scroll.scrolly { position: relative; }
.exp-scroll.scrolly .exp-sticky {
  position: sticky; top: 68px; min-height: calc(100vh - 68px);
  display: flex; align-items: center; padding-block: 24px;
}
.exp-scroll.scrolly .exp-sticky > .wrap { width: 100%; }
.exp-tab { scroll-margin-top: 90px; }

/* ---------- HUD playground ---------- */
.hud-stage {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); touch-action: none; user-select: none;
  background:
    radial-gradient(110% 80% at 50% 108%, rgba(47,194,74,0.16), transparent 55%),
    linear-gradient(180deg, #0d1720 0%, #101c14 58%, #0d1a10 100%);
}
.hud-stage::before {
  content: ""; position: absolute; inset: 0; opacity: 0.35;
  background-image:
    linear-gradient(rgba(47,194,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,194,74,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hud-hint {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 5;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--zest); background: rgba(8,11,15,0.6); border: 1px solid var(--zest-lo);
  border-radius: 999px; padding: 6px 13px; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.hud-stage.dragged-once .hud-hint { opacity: 0; }
.hud-cross { position: absolute; left: 50%; top: 50%; width: 18px; height: 18px; transform: translate(-50%,-50%); opacity: 0.8; }
.hud-cross::before, .hud-cross::after {
  content: ""; position: absolute; background: var(--fg); left: 50%; top: 50%;
}
.hud-cross::before { width: 18px; height: 2px; transform: translate(-50%,-50%); }
.hud-cross::after { width: 2px; height: 18px; transform: translate(-50%,-50%); }
.hud-w {
  position: absolute; z-index: 4; cursor: grab; display: grid; gap: 2px;
  background: rgba(8,11,15,0.66); border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 12px; backdrop-filter: blur(4px);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.hud-w:hover { border-color: var(--zest-lo); }
.hud-w.dragging { cursor: grabbing; border-color: var(--zest); box-shadow: 0 0 0 3px var(--zest-glow), 0 12px 30px -12px rgba(0,0,0,0.7); }
.hud-w .k { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--zest); }
.hud-w .v { font-family: var(--display); font-size: 19px; line-height: 1; color: var(--fg); letter-spacing: 0.03em; }

/* ---------- comparison: 4 clients + lettermark logos ---------- */
.compare.four { min-width: 760px; }
.compare thead th { white-space: nowrap; }
.cl-logo {
  display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 7px;
  font-family: var(--display); font-size: 15px; color: var(--fg);
  border: 1px solid var(--line); background: var(--card);
  vertical-align: middle; margin-right: 9px;
}
.cl-logo img { width: 17px; height: 17px; object-fit: contain; }
.cl-logo.sc { border-color: var(--zest-lo); background: rgba(47,194,74,0.1); }
.cl-logo.bl { color: #E5533C; border-color: rgba(229,83,60,0.4); background: rgba(229,83,60,0.08); }
.cl-logo.lu { color: #7FD4FF; border-color: rgba(127,212,255,0.4); background: rgba(127,212,255,0.08); }
.cl-logo.fe { color: #F2C879; border-color: rgba(242,200,121,0.4); background: rgba(242,200,121,0.08); }

/* ---------- gold table: glow + ticks only ---------- */
.table-glow { position: relative; }
.table-glow::before {
  content: ""; position: absolute; inset: -30px -8px; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 70% at 72% 50%, rgba(231,196,107,0.16), transparent 70%);
  filter: blur(22px);
}
.table-glow .compare-scroll { position: relative; z-index: 1; background: var(--bg); }
.compare.ticks td.y::before { content: "\2713"; font-size: 17px; font-weight: 700; }
.compare.ticks td.y { color: var(--zest); }
.compare.ticks td.y.g { color: var(--gold); }
.compare.ticks td.n::before { content: "\2014"; }

/* ---------- store catalog v2 ---------- */
.store-head { background: linear-gradient(180deg, rgba(231,196,107,0.05), transparent 62%); border-bottom: 1px solid var(--line-soft); }
.store-head-row { display: grid; grid-template-columns: 1fr auto; gap: clamp(20px, 4vw, 56px); align-items: end; margin-bottom: 26px; }
.store-head-row .lede { max-width: 38ch; }
.store-toolbar { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.store-search { flex: 1; min-width: 260px; }
.store-cats { display: inline-flex; }
.cos-card .cc-right { display: flex; align-items: center; gap: 9px; flex: none; }
.cos-card .cc-tag.price { color: var(--fg); border-color: var(--zest-lo); font-weight: 700; }
.cc-buy {
  font-family: var(--body); font-weight: 700; font-size: 12.5px; cursor: pointer;
  background: var(--accent); color: var(--zest-ink); border: 0; border-radius: 999px; padding: 7px 14px;
  transition: background 0.2s var(--ease), transform 0.18s var(--ease);
}
.cc-buy:hover { background: var(--accent-hi); }
.cc-buy:active { transform: translateY(1px); }
.cc-buy.soon { background: var(--surface); color: var(--faint); border: 1px solid var(--line); cursor: default; }
@media (max-width: 900px) { .store-head-row { grid-template-columns: 1fr; align-items: start; } }

/* ---------- players board ---------- */
.players-head { background: linear-gradient(180deg, rgba(127,212,255,0.05), transparent 62%); border-bottom: 1px solid var(--line-soft); }
.board { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.board-row {
  display: grid; grid-template-columns: 52px 1.5fr 0.7fr 1fr 0.9fr; gap: 14px; align-items: center;
  padding: 14px 20px; background: var(--card); border-top: 1px solid var(--line-soft);
}
.board-row.head {
  border-top: 0; background: var(--surface); padding-block: 12px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint);
}
.board-row .rk { font-family: var(--display); font-size: 22px; }
.board-row .pl { display: flex; align-items: center; gap: 12px; min-width: 0; }
.board-row .pl img { width: 28px; height: 28px; border-radius: 6px; image-rendering: pixelated; flex: none; }
.board-row .pl b { font-size: 15px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.board-row .pt { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.board-row .cs { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.board-row.dim { opacity: 0.55; }
.board-row .hidden-slot { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--faint); font-style: italic; }
.cos-dot { width: 13px; height: 13px; border-radius: 4px; display: inline-block; border: 1px solid rgba(255,255,255,0.15); }
.cos-dot.gold { background: linear-gradient(140deg, var(--gold-hi), var(--gold-lo)); }
@media (max-width: 700px) {
  .board-row { grid-template-columns: 34px 1.4fr 0.8fr 0.9fr; }
  .board-row .cs { display: none; }
}

/* ---------- backdrop life: aurora blobs + grain, per page ---------- */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body[data-page="pricing"]::before {
  background:
    radial-gradient(1000px 520px at 80% -8%, rgba(231,196,107,0.10), transparent 60%),
    linear-gradient(180deg, #0C0A07 0%, var(--bg) 40%);
}
body[data-page="store"]::before {
  background:
    radial-gradient(1000px 520px at 20% -8%, rgba(231,196,107,0.07), transparent 55%),
    radial-gradient(900px 500px at 90% 6%, rgba(47,194,74,0.08), transparent 60%),
    linear-gradient(180deg, #0A0E13 0%, var(--bg) 40%);
}
body[data-page="players"]::before {
  background:
    radial-gradient(1000px 520px at 70% -8%, rgba(127,212,255,0.08), transparent 58%),
    radial-gradient(800px 480px at 8% 12%, rgba(47,194,74,0.07), transparent 60%),
    linear-gradient(180deg, #0A0E13 0%, var(--bg) 40%);
}
body[data-page="features"]::before {
  background:
    radial-gradient(1100px 560px at 24% -10%, rgba(47,194,74,0.10), transparent 60%),
    radial-gradient(900px 480px at 92% 20%, rgba(127,212,255,0.05), transparent 62%),
    linear-gradient(180deg, #0A0E13 0%, var(--bg) 40%);
}

@media (prefers-reduced-motion: reduce) {
  .btn-gold-glow { animation: none !important; }
  .seg .seg-ind { transition: none; }
}

/* ============================================================
   POLISH PASS 2 (2026-07-21 pm) — feature marquee w/ drag scrub,
   styled currency picker, tri gold plans, gold-table sell-in,
   mods-bundled counter, nav breathing room, footer icon row.
   ============================================================ */

/* ---------- nav: room between the brand and the links ---------- */
.nav .brand { margin-right: clamp(26px, 4vw, 64px); }

/* ---------- feature marquee ---------- */
.marquee { cursor: grab; user-select: none; -webkit-user-select: none; touch-action: pan-y; }
.marquee.grabbing { cursor: grabbing; }
.marquee.grabbing .marquee-track { animation-play-state: paused; }
.marquee-item.feat { color: var(--muted); letter-spacing: 0.18em; }
.marquee-item.feat::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--zest); display: inline-block; opacity: 0.9;
}

/* ---------- currency picker v2 (rounded, animated chevron) ---------- */
.currency-pick { position: relative; }
.currency-pick select {
  background-image: none;
  border-radius: 12px; padding: 12px 40px 12px 18px;
  font-size: 13px; letter-spacing: 0.04em; min-width: 128px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.currency-pick::after {
  content: ""; position: absolute; right: 17px; top: 50%;
  width: 8px; height: 8px; margin-top: -6px; pointer-events: none;
  border-right: 2px solid var(--faint); border-bottom: 2px solid var(--faint);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), margin-top 0.25s var(--ease);
}
.currency-pick:focus-within::after {
  transform: rotate(225deg); margin-top: -2px; border-color: var(--zest);
}
.currency-pick:hover::after { border-color: var(--zest); }

/* ---------- three gold tiers side by side ---------- */
.plans.tri { grid-template-columns: repeat(3, 1fr); max-width: 1040px; margin-inline: auto; align-items: stretch; }
.plans.tri .plan { display: flex; flex-direction: column; }
.plans.tri .plan .btn { margin-top: auto; }
.plans.tri .plan .price { margin-top: 6px; }
.plans.tri .plan .price-sub { min-height: 34px; margin-bottom: 20px; }
.plan .pill-tag {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; font-weight: 700;
  color: var(--gold-ink); background: var(--gold); border-radius: 999px; padding: 5px 11px;
}
.plan.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-line), 0 18px 60px -30px rgba(231, 196, 107, 0.5);
  background: linear-gradient(165deg, rgba(231, 196, 107, 0.12), var(--card) 55%);
}
@media (min-width: 901px) { .plan.featured { transform: scale(1.03); z-index: 1; } .plan.featured:hover { transform: scale(1.03) translateY(-3px); } }
@media (max-width: 900px) { .plans.tri { grid-template-columns: 1fr; } }

/* ---------- gold table: staged sell-in when scrolled to ---------- */
.has-js .table-glow::before { opacity: 0; transition: opacity 1.1s var(--ease) 0.2s; }
.has-js .table-glow.in::before { opacity: 1; }
.has-js .table-glow .compare.ticks tbody tr { opacity: 0; transform: translateX(-18px); }
.has-js .table-glow.in .compare.ticks tbody tr { animation: rowIn 0.5s var(--ease) forwards; }
.has-js .table-glow.in .compare.ticks tbody tr:nth-child(1) { animation-delay: 0.05s; }
.has-js .table-glow.in .compare.ticks tbody tr:nth-child(2) { animation-delay: 0.13s; }
.has-js .table-glow.in .compare.ticks tbody tr:nth-child(3) { animation-delay: 0.21s; }
.has-js .table-glow.in .compare.ticks tbody tr:nth-child(4) { animation-delay: 0.29s; }
.has-js .table-glow.in .compare.ticks tbody tr:nth-child(5) { animation-delay: 0.37s; }
.has-js .table-glow.in .compare.ticks tbody tr:nth-child(6) { animation-delay: 0.45s; }
.has-js .table-glow.in .compare.ticks tbody tr:nth-child(7) { animation-delay: 0.53s; }
.has-js .table-glow.in .compare.ticks tbody tr:nth-child(8) { animation-delay: 0.61s; }
.has-js .table-glow.in .compare.ticks tbody tr:nth-child(9) { animation-delay: 0.69s; }
.has-js .table-glow.in .compare.ticks tbody tr:nth-child(n+10) { animation-delay: 0.77s; }
@keyframes rowIn { to { opacity: 1; transform: none; } }
.has-js .table-glow.in .compare.ticks td.y.g { animation: tickGlow 1.4s var(--ease) 0.9s; }
@keyframes tickGlow {
  0%, 100% { text-shadow: none; }
  40% { text-shadow: 0 0 18px rgba(231, 196, 107, 0.9); }
}

/* ---------- features: mods-bundled live counter ---------- */
.feat-count { text-align: right; }
.feat-count .fc-num {
  font-family: var(--display); font-size: clamp(96px, 13vw, 168px); line-height: 0.85;
  color: var(--zest); text-shadow: 0 10px 60px rgba(47, 194, 74, 0.35);
}
.feat-count .fc-k {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--faint); margin-top: 12px;
}
@media (max-width: 900px) { .feat-count { text-align: left; } }

/* ---------- footer: unlinked social icons wait quietly ---------- */
.foot-social a.soon { opacity: 0.45; cursor: default; }
.foot-social a.soon:hover { color: var(--muted); border-color: var(--line); transform: none; }

@media (prefers-reduced-motion: reduce) {
  .has-js .table-glow .compare.ticks tbody tr { opacity: 1; transform: none; animation: none !important; }
}

/* ---------- button hover: a clean upward lift, never mouse-follow ---------- */
.btn.magnetic { will-change: transform; }
.btn.magnetic:hover { transform: translateY(-3px); }
.btn.magnetic:active { transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) {
  .btn.magnetic:hover, .btn.magnetic:active { transform: none; }
}

/* ---------- lifetime "N LEFT" seat pill ---------- */
.plan .pill-tag.pill-seats { display: inline-flex; align-items: baseline; gap: 4px; }
.plan .pill-tag.pill-seats b { font-size: 11px; font-weight: 700; }

/* ---------- privacy toggle switches (account page) ---------- */
.toggle-list { display: grid; gap: 2px; }
.toggle-row {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid var(--line-soft); cursor: pointer;
}
.toggle-row:last-child { border-bottom: 0; }
.toggle-row > span:first-child { display: grid; gap: 3px; }
.toggle-row b { font-size: 15px; font-weight: 700; }
.toggle-row small { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--faint); }
.switch { position: relative; flex: none; width: 46px; height: 26px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch i {
  position: absolute; inset: 0; border-radius: 999px; background: var(--hover);
  border: 1px solid var(--line); transition: background 0.22s var(--ease), border-color 0.22s var(--ease);
}
.switch i::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--muted); transition: transform 0.22s var(--ease), background 0.22s var(--ease);
}
.switch input:checked + i { background: var(--accent); border-color: var(--accent-hi); }
.switch input:checked + i::after { transform: translateX(20px); background: var(--zest-ink); }
.switch input:focus-visible + i { box-shadow: 0 0 0 3px var(--zest-glow); }
