/* ============================================================
   BaseGuard — "Product-First Dark Bands" variant
   Light #FAFAF8 / Dark #101319, green #4ADE80 on dark mono,
   blue #2563EB only for CTAs on light bands.
   ============================================================ */

:root {
  --paper: #FAFAF8;
  --ink: #1A1A1A;
  --ink-soft: #50504B;
  --line-light: #E5E3DC;

  --night: #101319;
  --night-2: #151A22;
  --shell: #0C0F14;
  --line-dark: rgba(255, 255, 255, 0.08);
  --text-dark: #E6E9EF;
  --body-dark: #B9C1CE;
  --muted-dark: #8B93A7;

  --green: #4ADE80;
  --red: #F87171;
  --blue: #2563EB;
  --blue-hover: #1D4ED8;

  --font-head: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --r: 10px;
  --shadow-deep:
    0 24px 48px -16px rgba(10, 12, 16, 0.35),
    0 48px 96px -32px rgba(10, 12, 16, 0.35);
  --t: 180ms ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 76px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
}

/* keep mono authentic: no ligatures merging +++ / -> glyphs */
code,
.terminal-body,
.diff-body,
.final-term,
.eyebrow {
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "calt" 0;
}

::selection { background: rgba(74, 222, 128, 0.35); color: var(--ink); }

.icon { width: 18px; height: 18px; flex: none; }
.icon--green { color: var(--green); }

/* ---------- focus ---------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.band--dark a:focus-visible,
.band--dark button:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--green);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- layout ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }

.band { position: relative; }
.band--light {
  background: var(--paper);
  color: var(--ink);
  padding: 112px 0;
}
.band--dark {
  background: var(--night);
  color: var(--body-dark);
  padding: 112px 0;
}
/* scanlines on dark bands, 2% */
.band--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 3px
  );
}
.band--dark > .container { position: relative; z-index: 1; }

/* dotted grid on the "ship" band */
.band--grid {
  background-image: radial-gradient(rgba(26, 26, 26, 0.09) 1px, transparent 1.4px);
  background-size: 22px 22px;
}

/* ---------- type ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: inherit;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin: 20px auto 0;
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.band--dark h2 { color: var(--text-dark); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.band--dark .eyebrow { color: var(--green); }

.lede {
  font-size: 17px;
  max-width: 60ch;
  color: var(--ink-soft);
  margin: 18px 0 0;
}
.band--dark .lede { color: var(--body-dark); }

.section-head { margin-bottom: 56px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--t), border-color var(--t), color var(--t), transform var(--t);
}
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }

.btn--blue { background: var(--blue); color: #FFFFFF; }
.btn--blue:hover { background: var(--blue-hover); transform: translateY(-1px); }

.btn--green { background: var(--green); color: #08110B; }
.btn--green:hover { background: #36D072; transform: translateY(-1px); }

.btn--ghost-light {
  border-color: rgba(26, 26, 26, 0.25);
  color: var(--ink);
  background: transparent;
}
.btn--ghost-light:hover { background: rgba(26, 26, 26, 0.05); }

.btn--ghost-dark {
  border-color: var(--line-dark);
  color: var(--text-dark);
  background: transparent;
}
.btn--ghost-dark:hover { border-color: rgba(74, 222, 128, 0.5); background: rgba(255, 255, 255, 0.03); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.brand svg { width: 24px; height: 24px; }
.brand--dark { color: var(--text-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--t);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.btn { color: #FFFFFF; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 8px;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle .icon { width: 20px; height: 20px; display: block; }

/* ============================================================
   BAND 00 — HERO
   ============================================================ */
.band--hero { padding: 88px 0 0; }

.hero-head { text-align: center; }
.hero-head .eyebrow { margin-bottom: 0; }

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 28px auto 0;
  max-width: 720px;
}
.hero-chips li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px solid var(--line-light);
  background: #FFFFFF;
  border-radius: 6px;
  padding: 6px 12px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.hero-note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 18px 0 0;
  text-align: center;
}
.hero-note--dark { color: var(--muted-dark); }

/* product stage: huge terminal + angled dashboard, overlapping the dark band */
.hero-stage {
  position: relative;
  max-width: 1080px;
  margin: 72px auto -176px;
  padding: 0 24px;
  z-index: 2;
}

.stage-dashboard {
  position: absolute;
  top: -34px;
  right: -8px;
  width: 54%;
  margin: 0;
  transform: rotate(2.4deg);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-deep);
  z-index: 0;
}

.terminal {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  background: var(--shell);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(74, 222, 128, 0.14),
    var(--shadow-deep);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.02);
}
.dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.dot--red { background: #F36A5A; }
.dot--yellow { background: #F0B429; }
.dot--green { background: #3DC56C; }
.terminal-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-dark);
}
.terminal-body {
  padding: 22px 24px 26px;
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 2.6vw, 1rem);
  line-height: 1.9;
  color: #D7DDE6;
}
.t-prompt { color: var(--green); }
.t-cmd { color: #FFFFFF; font-weight: 500; }
.t-dim { color: var(--muted-dark); }
.t-ok { color: var(--green); font-weight: 700; }
.t-pass {
  color: #08110B;
  background: var(--green);
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 4px;
}
.t-cursor {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 3px;
  background: var(--green);
  vertical-align: text-bottom;
  animation: blink 1.05s steps(1, end) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* JS-armed animation states (lines visible by default, no-JS safe) */
.terminal.is-armed .t-reveal {
  opacity: 0;
  transform: translateY(4px);
}
.terminal.is-armed .t-reveal.is-on {
  opacity: 1;
  transform: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .t-cursor { animation: none; }
  .btn:hover { transform: none; }
}

/* ============================================================
   BAND 01 — AUDIT (dark): stats + diff
   ============================================================ */
.band--audit { padding-top: 256px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  background: var(--night-2);
  margin-bottom: 96px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 28px;
}
.stat + .stat { border-left: 1px solid var(--line-dark); }
.stat-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted-dark);
}

.diff {
  background: var(--shell);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  overflow: hidden;
}
.diff-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.diff-name { color: var(--text-dark); font-weight: 500; }
.diff-meta { color: var(--muted-dark); }

.diff-body {
  padding: 18px 0 22px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.75;
}
.d-line {
  margin: 0;
  padding: 1px 18px;
  display: flex;
  gap: 12px;
  transition: background-color 150ms ease;
}
.d-line:hover { background: rgba(255, 255, 255, 0.025); }
.d-sign { flex: none; width: 1ch; }
.d-text { flex: 1; min-width: 0; }
.d-meta { color: var(--muted-dark); }
.d-hunk { color: var(--green); margin-top: 14px; opacity: 0.85; }
.d-del { color: var(--red); background: rgba(248, 113, 113, 0.06); }
.d-del:hover { background: rgba(248, 113, 113, 0.1); }
.d-add { color: var(--green); background: rgba(74, 222, 128, 0.06); }
.d-add:hover { background: rgba(74, 222, 128, 0.1); }

.diff-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-dark);
  margin: 18px 2px 0;
}

/* ============================================================
   BAND 02 — SHIP (light): dashboard + spec sheet
   ============================================================ */
.browser-shot {
  margin: 0 0 64px;
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 18px 40px -20px rgba(10, 12, 16, 0.25);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.browser-shot:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 52px -22px rgba(10, 12, 16, 0.3);
}
.frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line-light);
  background: #F4F3EE;
}
.frame-bar--dark {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--line-dark);
}
.f-dot { width: 10px; height: 10px; border-radius: 50%; background: #D9D6CC; }
.frame-bar--dark .f-dot { background: rgba(255, 255, 255, 0.14); }
.frame-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
}
.frame-bar--dark .frame-title { color: var(--muted-dark); }

.spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  overflow: hidden;
}
.spec-group {
  background: var(--paper);
  padding: 30px 32px 26px;
}
.spec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.spec-head h3 {
  font-size: 19px;
  letter-spacing: -0.01em;
}
.spec-path {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
}
.spec-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spec-group li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 15px;
  color: var(--ink);
}
.spec-group li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 4px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--ink-soft);
}
.spec-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px dashed var(--line-light);
}
.spec-files code {
  font-size: 11.5px;
  color: var(--ink-soft);
  background: #FFFFFF;
  border: 1px solid var(--line-light);
  border-radius: 5px;
  padding: 3px 8px;
}

/* ============================================================
   BAND 03 — VERIFY (dark): intro + checklist doc
   ============================================================ */
.verify-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: start;
}
.verify-intro .section-head { margin-bottom: 0; }
.verify-intro code {
  color: var(--green);
  background: rgba(74, 222, 128, 0.08);
  border-radius: 4px;
  padding: 1px 6px;
}

.proof-shot {
  margin: 36px 0 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--shell);
  box-shadow: var(--shadow-deep);
}
.proof-shot figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-dark);
  padding: 10px 16px;
  border-top: 1px solid var(--line-dark);
}

.doc {
  background: var(--shell);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  overflow: hidden;
}
.doc-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}
.doc ol {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}
.doc li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14.5px;
  color: var(--body-dark);
}
.doc li:last-child { border-bottom: 0; }
.check-idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-dark);
  padding-top: 3px;
}
.check-box {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  border-radius: 4px;
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check-box svg { width: 11px; height: 11px; }
.check-text code { color: var(--green); }
.doc-foot {
  padding: 16px 20px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted-dark);
}

/* ============================================================
   BAND 04 — PRICING (dark, joined to verify band)
   ============================================================ */
.band--joined { padding-top: 0; }
.band--joined > .container {
  border-top: 1px solid var(--line-dark);
  padding-top: 112px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
}
.price-card {
  position: relative;
  background: var(--night-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  padding: 34px 32px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.price-card:hover { transform: translateY(-3px); }
.price-card--pro { border-color: rgba(74, 222, 128, 0.45); }

.price-tag {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  background: rgba(74, 222, 128, 0.1);
  border-left: 1px solid rgba(74, 222, 128, 0.35);
  border-bottom: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 0 var(--r) 0 var(--r);
  padding: 6px 12px;
}

.price-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-dark);
}
.price-amount {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 46px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 10px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-per {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted-dark);
}
.price-desc {
  font-size: 14.5px;
  color: var(--body-dark);
  margin: 0 0 18px;
}
.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-dark);
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-size: 14.5px;
  color: var(--body-dark);
}
.price-features .icon { width: 16px; height: 16px; margin-top: 3px; color: var(--green); }
.price-features code { color: var(--green); }

.pricing-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-dark);
}
.pricing-foot span { display: inline-flex; align-items: center; gap: 9px; }

/* ============================================================
   BAND 05 — FAQ (light)
   ============================================================ */
.faq { border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 4px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--t);
}
.faq-q:hover { background: rgba(26, 26, 26, 0.035); }
.faq-idx {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink-soft);
  flex: none;
  width: 38px;
}
.faq-q .icon { margin-left: auto; transition: transform 200ms ease; color: var(--ink-soft); }
.faq-item.open .faq-q .icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}
.faq-a p {
  margin: 0 4px 22px 58px;
  max-width: 62ch;
  font-size: 15px;
  color: var(--ink-soft);
}
.faq-a code {
  background: #FFFFFF;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: 1px 5px;
}

/* ============================================================
   BAND 06 — FINAL CTA + FOOTER (dark)
   ============================================================ */
.band--final { padding: 120px 0; }
.final-cta { text-align: center; }
.final-cta h2 { margin: 18px auto 0; }
.final-term {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted-dark);
  margin: 0;
}
.final-pass { color: var(--green); }
.final-cta .hero-ctas { margin-top: 36px; }

.site-footer {
  background: var(--night);
  border-top: 1px solid var(--line-dark);
  padding: 36px 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-dark);
  text-decoration: none;
  transition: color var(--t);
}
.footer-links a:hover { color: var(--green); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-dark);
  margin: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .verify-grid { grid-template-columns: 1fr; gap: 48px; }
  .stage-dashboard { width: 60%; top: -24px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--line-light);
    padding: 18px 24px 22px;
  }
  .site-header.nav-open .nav-links { display: flex; }

  .band--light, .band--dark { padding: 80px 0; }
  .band--joined { padding-top: 0; }
  .band--joined > .container { padding-top: 80px; }
  .band--audit { padding-top: 200px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; }
  .spec { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .stage-dashboard { display: none; }
  .hero-stage { margin-bottom: -120px; }
  .band--audit { padding-top: 168px; }
  .stat-row { grid-template-columns: 1fr; margin-bottom: 64px; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line-dark); }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-stage { padding: 0 18px; }
  .band--hero { padding-top: 64px; }
  .terminal-body { padding: 16px 14px 20px; }
  .diff-body { font-size: 12.5px; }
  .d-line { padding: 1px 12px; gap: 8px; }
  .doc li { padding: 12px 14px; gap: 10px; }
  .faq-a p { margin-left: 0; }
  .faq-idx { width: 34px; }
  .spec-group { padding: 24px 20px 22px; }
  .hero-note { font-size: 11px; }
  .final-term { font-size: 12.5px; }
}
