/* =========================================================
   {platform_name} — Command Console / AI Trading Control Room
   Graphite-green base, emerald primary, steel-slate secondary,
   amber risk accent. Space Grotesk display + IBM Plex Sans body.
   Dot-grid + bracket-frame console motif. Mobile-first.
   ========================================================= */

/* ---------- Fonts (local) ---------- */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/spacegrotesk-500.woff2") format("woff2"),
       url("../fonts/spacegrotesk-500.woff") format("woff");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/spacegrotesk-700.woff2") format("woff2"),
       url("../fonts/spacegrotesk-700.woff") format("woff");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/plexsans-400.woff2") format("woff2"),
       url("../fonts/plexsans-400.woff") format("woff");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/plexsans-500.woff2") format("woff2"),
       url("../fonts/plexsans-500.woff") format("woff");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/plexsans-600.woff2") format("woff2"),
       url("../fonts/plexsans-600.woff") format("woff");
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0d1311;
  --bg-2: #101715;
  --surface: #15201c;
  --surface-2: #1a2723;
  --ink: #eef3f0;
  --ink-soft: #a9b8af;
  --ink-mute: #71837a;
  --line: rgba(160, 196, 178, 0.14);
  --line-2: rgba(160, 196, 178, 0.28);
  --emerald: #46c690;
  --emerald-bright: #5fdaa6;
  --emerald-deep: #2b8a62;
  --steel: #8aa6bd;
  --amber: #e0a85f;

  --maxw: 1140px;
  --pad: 18px;
  --r: 6px;
  --r-lg: 16px;

  --disp: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: break-word;
  word-break: normal;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--emerald); outline-offset: 3px; }

/* ---------- Primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.band { padding-block: 60px; position: relative; }
.band--alt { background: var(--bg-2); }
.band--surface { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--disp);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 16px;
}
.eyebrow::before {
  content: attr(data-idx);
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.h-sec {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(1.65rem, 5.6vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.lede { color: var(--ink-soft); max-width: 62ch; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--disp);
  font-weight: 500; font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--fill { background: var(--emerald); color: #06140e; border-color: var(--emerald); }
.btn--fill:hover { background: var(--emerald-bright); border-color: var(--emerald-bright); }
.btn--wire { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--wire:hover { border-color: var(--emerald); color: var(--emerald); }
.btn--text { background: none; border: 0; color: var(--ink-soft); padding: 8px 4px; border-radius: 0; }
.btn--text:hover { color: var(--emerald); transform: none; }
.btn--text::after { content: " \2192"; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Masthead ---------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 19, 17, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--line);
}
.masthead__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 70px;
}
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { width: 30px; height: 30px; flex: none; }
.logo__name { font-family: var(--disp); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; }

.mast-nav { display: none; align-items: center; gap: 28px; }
.mast-nav a { font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; }
.mast-nav a:hover { color: var(--ink); }

.mast-actions { display: none; align-items: center; gap: 18px; }
.mast-actions .sign { font-size: 0.9rem; color: var(--ink-soft); }
.mast-actions .sign:hover { color: var(--emerald); }
.mast-actions .btn { padding: 10px 20px; font-size: 0.88rem; }

.burger {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 44px; height: 40px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-2); border-radius: var(--r);
}
.burger span { width: 18px; height: 2px; background: var(--ink); display: block; }

.drawer { display: none; background: var(--surface); border-bottom: 1px solid var(--line); }
.drawer.open { display: block; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.drawer__cta { display: flex; gap: 12px; padding: 14px 0; }
.drawer__cta .btn { flex: 1; }

/* ---------- Hero / console ---------- */
.hero { position: relative; overflow: hidden; padding-block: 56px 64px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(70, 198, 144, 0.16), transparent 72%),
    var(--bg);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(160, 196, 178, 0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 40%, transparent 85%);
  opacity: 0.6;
}
.console {
  position: relative;
  max-width: 820px; margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(21, 32, 28, 0.7), rgba(16, 23, 21, 0.55));
  padding: 44px 24px 28px;
}
/* corner brackets */
.console::before, .console::after {
  content: ""; position: absolute; width: 18px; height: 18px; pointer-events: none;
}
.console::before { top: -1px; left: -1px; border-top: 2px solid var(--emerald); border-left: 2px solid var(--emerald); border-top-left-radius: var(--r-lg); }
.console::after  { bottom: -1px; right: -1px; border-bottom: 2px solid var(--emerald); border-right: 2px solid var(--emerald); border-bottom-right-radius: var(--r-lg); }
.console__eyebrow { justify-content: center; }
.console__eyebrow::before { display: none; }
.console__title {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(2rem, 8vw, 3.3rem);
  line-height: 1.04; letter-spacing: -0.03em;
  margin: 0 auto 18px; max-width: 16ch;
}
.console__desc { color: var(--ink-soft); font-size: 1.04rem; max-width: 56ch; margin: 0 auto 26px; }
.console__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.stat-strip {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; margin: 30px auto 0; max-width: 820px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-strip__cell { background: var(--bg-2); padding: 20px 16px; text-align: center; }
.stat-strip__val { font-family: var(--disp); font-weight: 700; font-size: 1.7rem; color: var(--emerald); letter-spacing: -0.02em; }
.stat-strip__lbl { font-size: 0.78rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.stat-note { text-align: center; font-size: 0.74rem; color: var(--ink-mute); margin: 14px auto 0; max-width: 60ch; }
.iti__country-name {color: #111111;}

/* ---------- Section header (left rail style, distinct) ---------- */
.sec-head { margin-bottom: 30px; }

/* ---------- Guarantees / pillars ---------- */
.pillars { display: grid; gap: 16px; }
.pillar {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 26px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  align-items: start;
}
.pillar__metric {
  grid-row: span 3;
  font-family: var(--disp); font-weight: 700;
  font-size: 2.8rem; line-height: 0.9;
  color: var(--emerald);
  letter-spacing: -0.04em;
}
.pillar__metric span { display: block; font-size: 0.62rem; font-family: var(--body); font-weight: 500; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 8px; }
.pillar__tag { font-family: var(--disp); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel); }
.pillar__title { font-family: var(--disp); font-size: 1.16rem; font-weight: 500; margin: 0; }
.pillar__list { display: grid; gap: 8px; margin-top: 6px; }
.pillar__list li { position: relative; padding-left: 24px; font-size: 0.92rem; color: var(--ink-soft); }
.pillar__list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 7px; border-left: 2px solid var(--emerald); border-bottom: 2px solid var(--emerald);
  transform: rotate(-45deg);
}
.enroll-form .iti .iti__selected-dial-code {
  color: #ffffff !important;
}
/* ---------- Features ---------- */
.feat-grid { display: grid; gap: 16px; }
.feat {
  border-left: 3px solid var(--emerald-deep);
  background: var(--surface);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 22px 22px 22px 20px;
}
.feat__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(70, 198, 144, 0.12);
  color: var(--emerald);
  margin-bottom: 14px;
}
.feat__title { font-family: var(--disp); font-size: 1.18rem; font-weight: 500; margin: 0 0 8px; }
.feat__text { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

/* ---------- Analytics board ---------- */
.board { display: grid; gap: 26px; }
.board__panel {
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  padding: 22px;
}
.board__panel-title { font-family: var(--disp); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 18px; }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px; }
.tile { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 12px; }
.tile__val { font-family: var(--disp); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.tile__lbl { font-size: 0.72rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.alloc-title { font-size: 0.78rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 12px; }
.alloc { display: grid; gap: 12px; }
.alloc__row { display: grid; grid-template-columns: 92px 1fr 42px; align-items: center; gap: 12px; }
.alloc__name { font-size: 0.86rem; color: var(--ink-soft); }
.alloc__track { height: 8px; background: var(--bg); border-radius: 999px; overflow: hidden; }
.alloc__fill { height: 100%; background: linear-gradient(90deg, var(--emerald-deep), var(--emerald)); border-radius: 999px; }
.alloc__pct { font-family: var(--disp); font-size: 0.82rem; color: var(--ink-soft); text-align: right; }
.board__caption { font-size: 0.74rem; color: var(--ink-mute); margin: 14px 0 0; }
.board__list { display: grid; gap: 12px; margin-top: 20px; }
.board__list li { position: relative; padding-left: 30px; color: var(--ink-soft); font-size: 0.95rem; }
.board__list li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  border-radius: 50%; border: 2px solid var(--emerald);
}
.board__list li::after { content: ""; position: absolute; left: 6px; top: 12px; width: 4px; height: 4px; border-radius: 50%; background: var(--emerald); }

/* ---------- Enroll / form band ---------- */
.enroll { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border-block: 1px solid var(--line-2); }
.enroll__head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.enroll__head .lede { margin-inline: auto; }
.enroll-form {
  max-width: 940px; margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 24px;
}
.enroll-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--disp); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.field input {
  width: 100%; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r);
  color: var(--ink); padding: 13px 14px; font-size: 0.95rem; font-family: var(--body);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input::placeholder { color: var(--ink-mute); }
.field input:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(70,198,144,.16); }
.enroll-foot { display: grid; gap: 14px; margin-top: 4px; }
.consent { font-size: 0.76rem; color: var(--ink-mute); margin: 0; line-height: 1.55; }
.secure-line { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: var(--ink-mute); margin: 0; }
.secure-line svg { color: var(--emerald); flex: none; }
.iti { width: 100%; }

/* ---------- Process / flow ---------- */
.flow { display: grid; gap: 0; counter-reset: f; }
.flow__step {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 18px;
  padding: 24px 0; border-top: 1px dashed var(--line-2); position: relative;
}
.flow__step:first-child { border-top: 0; }
.flow__chip {
  grid-row: span 2; align-self: start;
  font-family: var(--disp); font-weight: 700; font-size: 0.9rem;
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--emerald); background: rgba(70,198,144,.1); border: 1px solid var(--emerald-deep);
}
.flow__title { font-family: var(--disp); font-size: 1.16rem; font-weight: 500; margin: 0; }
.flow__text { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

/* ---------- Testimonials ---------- */
.voices { display: grid; gap: 22px; }
.voices__summary {
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  background: var(--surface); padding: 26px 22px; text-align: center;
}
.voices__rating { font-family: var(--disp); font-weight: 700; font-size: 3.4rem; line-height: 1; color: var(--emerald); }
.voices__stars { color: var(--amber); letter-spacing: 3px; font-size: 1.1rem; margin: 8px 0; }
.voices__note { font-size: 0.86rem; color: var(--ink-mute); }
.voices__list { display: grid; gap: 14px; }
.voice {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-2); padding: 22px;
}
.voice__text { color: var(--ink); font-size: 0.97rem; margin: 0 0 16px; }
.voice__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.voice__who { display: flex; align-items: center; gap: 10px; }
.voice__avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald-deep), var(--surface-2)); display: grid; place-items: center; font-family: var(--disp); font-weight: 700; color: var(--ink); font-size: 0.9rem; }
.voice__name { font-family: var(--disp); font-weight: 500; font-size: 0.92rem; }
.voice__role { font-size: 0.78rem; color: var(--ink-mute); }
.voice__badge { font-size: 0.7rem; font-weight: 600; color: var(--emerald); border: 1px solid var(--emerald-deep); border-radius: 999px; padding: 4px 10px; }

/* ---------- Platform matrix table ---------- */
.matrix { width: 100%; border-collapse: collapse; border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; }
.matrix caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.matrix thead th {
  font-family: var(--disp); text-align: left; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); padding: 14px 18px; background: var(--surface-2); font-weight: 500;
}
.matrix tbody th {
  text-align: left; font-weight: 600; color: var(--steel); padding: 15px 18px; width: 42%;
  border-top: 1px solid var(--line); font-size: 0.93rem;
}
.matrix tbody td { padding: 15px 18px; border-top: 1px solid var(--line); color: var(--ink); font-size: 0.93rem; }
.matrix tbody tr:hover { background: rgba(70,198,144,0.04); }

/* ---------- Risk disclosures ---------- */
.disc-strip {
  display: flex; gap: 12px; align-items: flex-start;
  border: 1px solid rgba(224,168,95,0.34); background: rgba(224,168,95,0.07);
  border-radius: var(--r); padding: 16px 18px; margin-bottom: 22px;
}
.disc-strip svg { color: var(--amber); flex: none; margin-top: 2px; }
.disc-strip p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.disclosures { display: grid; gap: 14px; counter-reset: d; }
.disclosure {
  border-left: 3px solid var(--amber);
  background: var(--surface);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 20px;
}
.disclosure__title { font-family: var(--disp); font-size: 1.02rem; font-weight: 500; margin: 0 0 6px; }
.disclosure__text { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* ---------- FAQ ---------- */
.qa { display: grid; gap: 12px; }
.qa-item { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg-2); overflow: hidden; }
.qa-item > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px;
  font-family: var(--disp); font-weight: 500; font-size: 1.02rem; color: var(--ink);
}
.qa-item > summary::-webkit-details-marker { display: none; }
.qa-item__icon { flex: none; width: 20px; height: 20px; position: relative; }
.qa-item__icon::before, .qa-item__icon::after { content: ""; position: absolute; background: var(--emerald); transition: opacity .2s ease; }
.qa-item__icon::before { top: 9px; left: 0; width: 100%; height: 2px; }
.qa-item__icon::after { left: 9px; top: 0; width: 2px; height: 100%; }
.qa-item[open] .qa-item__icon::after { opacity: 0; }
.qa-item__a { padding: 0 20px 20px; color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Closer / final CTA ---------- */
.closer { position: relative; overflow: hidden; text-align: center; }
.closer::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 120% at 50% 0%, rgba(70,198,144,0.18), transparent 70%), var(--bg-2);
}
.closer__panel { max-width: 720px; margin: 0 auto; }
.closer__title { font-family: var(--disp); font-weight: 700; font-size: clamp(1.8rem, 6vw, 2.6rem); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 16px; }
.closer__desc { color: var(--ink-soft); margin: 0 auto 28px; max-width: 56ch; }
.closer__note { font-size: 0.8rem; color: var(--ink-mute); margin: 18px 0 0; }

/* ---------- Footer / colophon ---------- */
.colophon { background: var(--bg-2); border-top: 2px solid var(--line); padding-block: 48px 28px; }
.colophon__grid { display: grid; gap: 30px; }
.colophon__brand .logo { margin-bottom: 14px; }
.colophon__tag { color: var(--ink-soft); font-size: 0.9rem; max-width: 38ch; margin: 0; }
.colophon__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.colophon__col h3 { font-family: var(--disp); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 14px; font-weight: 500; }
.colophon__col a { display: block; color: var(--ink-soft); font-size: 0.9rem; padding: 5px 0; }
.colophon__col a:hover { color: var(--emerald); }
.risk-box { margin-top: 34px; border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 22px; background: var(--surface); }
.risk-box h3 { font-family: var(--disp); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin: 0 0 10px; }
.risk-box p { color: var(--ink-mute); font-size: 0.82rem; line-height: 1.6; margin: 0 0 10px; }
.colophon__base { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--ink-mute); }

/* ---------- Service pages ---------- */
.shell { min-height: 100vh; display: flex; flex-direction: column; }
.shell__main { flex: 1 0 auto; display: flex; align-items: center; justify-content: center; padding-block: 60px; position: relative; overflow: hidden; }
.shell__main::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 50% at 50% 10%, rgba(70,198,144,0.14), transparent 70%); }
.shell__main::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: radial-gradient(rgba(160,196,178,0.12) 1px, transparent 1px); background-size: 22px 22px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 40%, transparent 85%);
}
.sys { text-align: center; max-width: 560px; }
.sys__eyebrow { display: inline-block; font-family: var(--disp); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--emerald); border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 16px; margin-bottom: 20px; }
.sys__title { font-family: var(--disp); font-weight: 700; font-size: clamp(2rem, 8vw, 3rem); line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 14px; }
.sys__desc { color: var(--ink-soft); margin: 0 auto 28px; max-width: 46ch; }

/* ---------- Utilities ---------- */
.skip { position: absolute; left: 12px; top: -60px; background: var(--emerald); color: #06140e; padding: 10px 16px; border-radius: var(--r); z-index: 100; transition: top .16s ease; font-weight: 600; }
.skip:focus { top: 12px; }

/* =========================================================
   Tablet
   ========================================================= */
@media (min-width: 700px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .enroll-grid { grid-template-columns: repeat(2, 1fr); }
  .colophon__cols { grid-template-columns: repeat(3, 1fr); }
  .flow__step { grid-template-columns: auto 1fr; }
}

/* =========================================================
   Desktop
   ========================================================= */
@media (min-width: 980px) {
  :root { --pad: 30px; }
  .band { padding-block: 84px; }
  .mast-nav, .mast-actions { display: flex; }
  .burger { display: none; }
  .masthead__bar { height: 78px; }

  .pillars { grid-template-columns: repeat(3, 1fr); }
  .pillar { grid-template-columns: 1fr; }
  .pillar__metric { grid-row: auto; }

  .board { grid-template-columns: 1.25fr 0.75fr; align-items: center; gap: 44px; }

  .enroll-grid { grid-template-columns: repeat(4, 1fr); }
  .enroll-foot { grid-template-columns: 1fr auto; align-items: center; }
  .enroll-foot .consent { grid-row: 2; grid-column: 1 / -1; }
  .enroll-foot .btn { justify-self: start; }

  .flow { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .flow__step { border-top: 0; border-left: 1px dashed var(--line-2); padding: 0 24px; align-content: start; }
  .flow__step:first-child { border-left: 0; padding-left: 0; }

  .voices { grid-template-columns: 0.8fr 1.2fr; align-items: start; gap: 30px; }
  .voices__summary { position: sticky; top: 100px; }

  .matrix-wrap { max-width: 860px; margin: 0 auto; }
  .disclosures { grid-template-columns: repeat(3, 1fr); }
  .qa { grid-template-columns: 1fr 1fr; align-items: start; }

  .colophon__grid { grid-template-columns: 1.4fr 1.6fr; }
  .risk-box { display: grid; grid-template-columns: 200px 1fr; gap: 0 24px; }
  .risk-box h3 { grid-row: span 2; }
}

@media (min-width: 980px) {
  .sec-head--center { text-align: center; }
  .sec-head--center .eyebrow { justify-content: center; }
  .sec-head--center .lede { margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
