/* ============================================================
   LiquidEdge — Marketing site. Built on the Liquid Edge tokens.
   Dark fintech. Hairlines, charcoal surfaces, one neon-blue accent.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg-page); color: var(--text-secondary);
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(46,134,255,0.28); color: #fff; }
*:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; border-radius: 4px; }

/* page base: faint dot-grid workspace texture */
.site {
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.022) 1px, transparent 0) 0 0 / 26px 26px,
    var(--bg-page);
  min-height: 100vh;
}

/* ---- layout ---- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 920px; }
section { position: relative; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
@media (max-width: 760px) { .section { padding: 64px 0; } .wrap { padding: 0 20px; } }

/* ---- type ---- */
.display, h1, h2, h3 { font-family: var(--font-display); color: var(--text-primary); letter-spacing: -0.02em; line-height: 1.05; margin: 0; font-weight: 600; }
.h-xxl { font-size: clamp(40px, 6.4vw, 76px); }
.h-xl  { font-size: clamp(32px, 4.4vw, 52px); }
.h-lg  { font-size: clamp(26px, 3vw, 38px); }
.h-md  { font-size: clamp(20px, 2.2vw, 26px); }
.lede { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.6; color: var(--text-tertiary); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--accent); opacity: 0.7; }
.eyebrow--center { justify-content: center; }
.muted { color: var(--text-muted); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.accent { color: var(--accent); }
.pos { color: var(--pos); } .neg { color: var(--neg); }
.center { text-align: center; }
.section-head { max-width: 680px; margin: 0 0 52px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lede { margin-top: 16px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ink-850) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 66px; }
.nav__brand { display: flex; align-items: center; flex: none; }
.nav__brand img { height: 26px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 6px; margin-left: 10px; }
.nav__link { padding: 8px 13px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; color: var(--text-tertiary); white-space: nowrap; transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out); }
.nav__link:hover { color: var(--text-primary); background: var(--surface-hover); }
.nav__link--active { color: var(--text-primary); }
.nav__spacer { flex: 1; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; width: 40px; height: 40px; border-radius: var(--radius-md); border: 1px solid var(--border-default); background: var(--surface-inset); color: var(--text-secondary); cursor: pointer; place-items: center; }
.nav__burger svg { width: 20px; height: 20px; }

/* mobile drawer */
.nav__drawer { display: none; }
@media (max-width: 900px) {
  .nav__links, .nav__actions .btn--ghost { display: none; }
  .nav__burger { display: grid; }
  .nav__drawer { display: block; position: fixed; inset: 66px 0 auto 0; z-index: 49; background: var(--ink-850); border-bottom: 1px solid var(--border-default); transform: translateY(-120%); transition: transform var(--dur-base) var(--ease-out); }
  .nav__drawer.open { transform: translateY(0); box-shadow: var(--shadow-lg); }
  .nav__drawer a { display: block; padding: 15px 28px; border-top: 1px solid var(--border-subtle); font-size: 15px; color: var(--text-secondary); }
  .nav__drawer a:first-child { border-top: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
  height: 44px; padding: 0 20px; border-radius: var(--radius-md); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: all var(--dur-fast) var(--ease-out); position: relative;
}
.btn svg { width: 17px; height: 17px; }
.btn--sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn--lg { height: 52px; padding: 0 28px; font-size: 15px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 0 0 1px rgba(46,134,255,0.5), 0 8px 24px -10px rgba(46,134,255,0.7); }
.btn--primary:hover { background: var(--accent-hover); color: #04121f; transform: translateY(-1px); box-shadow: var(--glow-accent), 0 12px 30px -10px rgba(46,134,255,0.8); }
.btn--primary:active { transform: translateY(0) scale(0.99); background: var(--accent-press); }
.btn--secondary { background: var(--surface-raised); color: var(--text-primary); border-color: var(--border-strong); }
.btn--secondary:hover { background: var(--surface-hover); border-color: var(--accent); }
.btn--ghost { background: transparent; color: var(--text-secondary); border-color: var(--border-default); }
.btn--ghost:hover { color: var(--text-primary); border-color: var(--border-strong); background: var(--surface-hover); }
.btn--block { width: 100%; }

/* ============================================================
   PILLS / BADGES
   ============================================================ */
.pill {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 999px; border: 1px solid var(--border-default); color: var(--text-tertiary);
  background: var(--surface-card);
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.pill__dot--live { background: var(--pos); box-shadow: 0 0 8px var(--pos); animation: pulse 1.6s var(--ease-in-out) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
.tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-xs); }
.tag--accent { color: var(--accent); background: var(--accent-quiet); }
.tag--pos { color: var(--pos); background: var(--pos-bg); }
.tag--neg { color: var(--neg); background: var(--neg-bg); }
.tag--warn { color: var(--warn); background: var(--warn-bg-2); }
.tag--info { color: var(--info); background: var(--info-bg-2); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 76px 0 64px; overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.5; pointer-events: none; -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%); mask-image: linear-gradient(to bottom, #000 50%, transparent 100%); }
.hero__glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse at center, rgba(46,134,255,0.18), transparent 62%); z-index: 0; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { background: linear-gradient(120deg, var(--accent), var(--blue-300)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__lede { max-width: 540px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--text-muted); font-size: 13px; }
.hero__trust-item { display: flex; align-items: center; gap: 7px; }
.hero__trust-item svg { width: 15px; height: 15px; color: var(--accent); }

/* ============================================================
   PRODUCT MOCK FRAME (the "examples")
   ============================================================ */
.frame { border-radius: var(--radius-xl); border: 1px solid var(--border-strong); background: var(--surface-card); box-shadow: var(--shadow-lg); overflow: hidden; }
.frame__bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-bottom: 1px solid var(--border-default); background: var(--ink-800); }
.frame__dots { display: flex; gap: 6px; }
.frame__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-active); display: block; }
.frame__title { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin-left: 6px; }
.frame__body { padding: 16px; }
.frame--glow { box-shadow: var(--shadow-lg), var(--glow-accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }

/* generic dark card */
.card { background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 22px; }
.card--inset { background: var(--surface-inset); }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.card-title { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.card-sub { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }

/* mini stat tiles (used in mocks) */
.minitiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.minitile { background: var(--surface-inset); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 11px 12px; }
.minitile__k { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.minitile__v { font-family: var(--font-mono); font-size: 19px; font-weight: 600; color: var(--text-primary); font-variant-numeric: tabular-nums; margin-top: 3px; }

/* ============================================================
   STAT BAR
   ============================================================ */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 760px) { .statbar { grid-template-columns: repeat(2, 1fr); } }
.statbar__cell { background: var(--surface-card); padding: 26px 22px; text-align: center; }
.statbar__v { font-family: var(--font-mono); font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; color: var(--text-primary); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.statbar__v .accent { color: var(--accent); }
.statbar__k { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ============================================================
   LOGO / MARQUEE strip
   ============================================================ */
.markets { display: flex; align-items: center; justify-content: center; gap: 14px 30px; flex-wrap: wrap; }
.markets__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.market-chip { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--text-tertiary); padding: 8px 14px; border: 1px solid var(--border-default); border-radius: var(--radius-pill); }
.market-chip span { font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* ============================================================
   BENTO / FEATURE GRID
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bento > * { grid-column: span 2; }
.bento .span-3 { grid-column: span 3; }
.bento .span-4 { grid-column: span 4; }
.bento .span-6 { grid-column: span 6; }
@media (max-width: 980px) { .bento { grid-template-columns: 1fr 1fr; } .bento > *, .bento .span-3, .bento .span-4, .bento .span-6 { grid-column: span 2; } }
@media (max-width: 620px) { .bento { grid-template-columns: 1fr; } .bento > *, .bento .span-3, .bento .span-4, .bento .span-6 { grid-column: span 1; } }

.feature {
  display: flex; flex-direction: column; gap: 12px; padding: 24px;
  background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-lg);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  position: relative; overflow: hidden;
}
.feature:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.feature__icon { width: 42px; height: 42px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--accent-quiet); color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); flex: none; }
.feature__icon svg { width: 21px; height: 21px; }
.feature__title { font-size: 17px; font-weight: 600; color: var(--text-primary); font-family: var(--font-display); letter-spacing: -0.01em; }
.feature__desc { font-size: 14px; color: var(--text-tertiary); line-height: 1.6; }
.feature__more { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.feature__more svg { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease-out); }
.feature:hover .feature__more svg { transform: translateX(3px); }

/* ============================================================
   SPLIT FEATURE ROWS (alternating)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split + .split { margin-top: 84px; }
.split--rev .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } .split--rev .split__media { order: 0; } .split + .split { margin-top: 56px; } }
.split__copy h3 { margin-bottom: 14px; }
.checklist { display: flex; flex-direction: column; gap: 11px; margin: 22px 0 0; padding: 0; list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-secondary); }
.checklist svg { width: 19px; height: 19px; flex: none; color: var(--accent); margin-top: 1px; }

/* ============================================================
   METHODOLOGY / STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step-card { position: relative; padding: 28px 24px; background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-lg); }
.step-card__num { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--accent); width: 34px; height: 34px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--accent-quiet); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); margin-bottom: 16px; }
.step-card h3 { font-size: 18px; margin-bottom: 9px; }
.step-card p { font-size: 14px; color: var(--text-tertiary); }
.step-arrow { position: absolute; top: 44px; right: -22px; color: var(--border-strong); z-index: 2; }
@media (max-width: 820px) { .step-arrow { display: none; } }

/* strategy type cards */
.types { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .types { grid-template-columns: 1fr; } }
.type { padding: 28px; border-radius: var(--radius-xl); border: 1px solid var(--border-default); background: var(--surface-card); display: flex; flex-direction: column; gap: 16px; }
.type--accent { border-color: color-mix(in srgb, var(--accent) 36%, transparent); box-shadow: var(--glow-accent); }
.type__head { display: flex; align-items: center; gap: 14px; }
.type__icon { width: 46px; height: 46px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--accent-quiet); color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); }
.type__icon svg { width: 23px; height: 23px; }
.type h3 { font-size: 20px; }

/* ============================================================
   DIFFERENTIATORS (why unique)
   ============================================================ */
.diffs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 760px) { .diffs { grid-template-columns: 1fr; } }
.diff { background: var(--surface-card); padding: 30px; display: flex; gap: 18px; }
.diff__icon { width: 40px; height: 40px; flex: none; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--surface-inset); border: 1px solid var(--border-default); color: var(--accent); }
.diff__icon svg { width: 20px; height: 20px; }
.diff h3 { font-size: 17px; margin-bottom: 8px; }
.diff p { font-size: 14px; color: var(--text-tertiary); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote { padding: 26px; background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 18px; }
.quote__stars { display: flex; gap: 3px; color: var(--warn); }
.quote__stars svg { width: 15px; height: 15px; fill: currentColor; }
.quote__text { font-size: 15px; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--accent); background: var(--accent-quiet); border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); }
.quote__name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.quote__role { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   PRICING
   ============================================================ */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: 0 auto; }
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } }
.plan { padding: 30px; background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-xl); display: flex; flex-direction: column; gap: 20px; position: relative; }
.plan--feat { border-color: var(--accent); box-shadow: var(--glow-accent); }
.plan__flag { position: absolute; top: -12px; right: 24px; }
.plan__name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-primary); display: flex; align-items: center; gap: 10px; }
.plan__price { display: flex; align-items: baseline; gap: 5px; }
.plan__amt { font-family: var(--font-mono); font-size: 46px; font-weight: 600; color: var(--text-primary); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.plan__per { font-size: 14px; color: var(--text-muted); }
.plan__desc { font-size: 14px; color: var(--text-tertiary); }
.plan__feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.plan__feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--text-secondary); }
.plan__feats svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.feat-yes { color: var(--pos); } .feat-no { color: var(--text-disabled); }

/* comparison table */
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 15px 18px; border-bottom: 1px solid var(--border-subtle); text-align: left; font-size: 14px; }
.compare thead th { font-family: var(--font-display); font-size: 16px; color: var(--text-primary); border-bottom: 1px solid var(--border-default); }
.compare th.col { text-align: center; }
.compare td.col { text-align: center; }
.compare td:first-child { color: var(--text-secondary); }
.compare .feat-grp td { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); background: var(--surface-inset); border-bottom: 1px solid var(--border-default); }
.compare svg { width: 18px; height: 18px; }
.compare .ck { color: var(--pos); } .compare .xx { color: var(--text-disabled); }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; }
.faq__item { border-top: 1px solid var(--border-subtle); }
.faq__item:first-child { border-top: none; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: var(--surface-card); border: none; cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--text-primary); }
.faq__q:hover { background: var(--surface-hover); }
.faq__q svg { width: 19px; height: 19px; color: var(--text-muted); flex: none; transition: transform var(--dur-base) var(--ease-out); }
.faq__item.open .faq__q svg { transform: rotate(45deg); color: var(--accent); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq__a-inner { padding: 0 22px 22px; font-size: 14.5px; color: var(--text-tertiary); line-height: 1.65; }
.faq__item.open .faq__a { max-height: 320px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  background:
    radial-gradient(ellipse at 50% -40%, rgba(46,134,255,0.22), transparent 60%),
    var(--surface-card);
  padding: 64px 40px; text-align: center;
}
.cta__glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(46,134,255,0.14), transparent 55%); pointer-events: none; }
.cta h2 { margin-bottom: 16px; position: relative; }
.cta .lede { max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border-default); background: var(--ink-900); padding: 56px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer__brand img { height: 26px; margin-bottom: 14px; }
.footer__tag { font-size: 13.5px; color: var(--text-muted); max-width: 280px; }
.footer__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 14px; font-weight: 500; }
.footer__col a { display: block; font-size: 14px; color: var(--text-tertiary); padding: 5px 0; transition: color var(--dur-fast) var(--ease-out); }
.footer__col a:hover { color: var(--text-primary); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.footer__legal { font-size: 12.5px; color: var(--text-muted); max-width: 720px; line-height: 1.6; }
.footer__copy { font-size: 12.5px; color: var(--text-muted); }

/* risk disclaimer band */
.riskband { background: var(--surface-inset); border-top: 1px solid var(--border-subtle); }
.riskband__inner { padding: 16px 0; display: flex; align-items: flex-start; gap: 12px; }
.riskband svg { width: 16px; height: 16px; flex: none; color: var(--warn); margin-top: 2px; }
.riskband p { margin: 0; font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   SCROLL REVEAL — driven by JS rAF tween (no CSS transition)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } html { scroll-behavior: auto; } .pill__dot--live { animation: none; } }

/* lifecycle timeline */
.lifecycle-row { display: flex; align-items: center; gap: 14px; padding: 14px 4px; border-top: 1px solid var(--border-subtle); }
.lifecycle-row:first-child { border-top: none; }
.lifecycle-row div { display: flex; flex-direction: column; gap: 2px; }
.lifecycle-row strong { font-size: 14.5px; color: var(--text-primary); font-weight: 600; }
.lifecycle-row span { font-size: 12.5px; color: var(--text-muted); }
.lc-dot { width: 38px; height: 38px; flex: none; border-radius: var(--radius-md); display: grid; place-items: center; border: 1px solid var(--border-default); }
.lc-dot svg { width: 18px; height: 18px; }
.lc-dot.bg-accent { color: var(--accent); } .lc-dot.bg-info { color: var(--info); } .lc-dot.bg-warn { color: var(--warn); } .lc-dot.bg-up { color: var(--pos); }

/* utility */
.stack-sm { display: flex; flex-direction: column; gap: 8px; }
.row { display: flex; align-items: center; gap: 10px; }
.wrapflex { display: flex; flex-wrap: wrap; gap: 12px; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.divider { height: 1px; background: var(--border-subtle); border: none; margin: 0; }
