/* ==========================================================================
   ScrollSci — marketing site
   Single stylesheet, no framework, no external requests (fonts included).
   Dark-only by design: the product itself is a full-bleed dark feed, and a
   committed single look beats a half-maintained second theme.
   ========================================================================== */

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* Surfaces — carried over from the app's own style.css so the landing page
     and the feed read as one product. */
  --bg:            #0a0b0f;
  --bg-raised:     #0f1116;
  --surface:       #14161d;
  --surface-hi:    #191c24;

  --line:          rgba(255, 255, 255, 0.075);
  --line-hi:       rgba(255, 255, 255, 0.14);

  /* Text — all four pass WCAG AA on --bg (17:1 / 9.9:1 / 6:1 / 10.9:1) */
  --text:          #f0f0f5;
  --text-2:        #b6bac7;
  --text-3:        #8b90a0;
  --accent:        #6ccff6;
  --accent-dim:    #3ba9d6;
  --accent-ink:    #06131a;
  /* Deeper sibling of --accent (same hue, dropped lightness) for the compact
     header CTA. 6.07:1 against white. */
  --accent-deep:   #196a8f;
  --accent-deep-hi:#1f82ae;

  /* Type */
  --font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
               "Liberation Mono", monospace;

  --step--1: 0.8125rem;
  --step-0:  1.0625rem;
  --step-1:  clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
  --step-2:  clamp(1.3rem, 1.15rem + 0.6vw, 1.6rem);
  --step-3:  clamp(1.75rem, 1.4rem + 1.5vw, 2.6rem);
  --step-4:  clamp(2.4rem, 1.5rem + 4vw, 4.6rem);

  /* Space — 4px rhythm */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  --wrap: 1120px;
  --measure: 68ch;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 220ms;

  --z-header: 100;
}

/* ── Reset & base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchored sections clear the sticky header instead of hiding under it. */
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background-color: var(--bg);
  /* One static radial wash behind the hero. No animation, no image request. */
  background-image:
    radial-gradient(120ch 60ch at 50% -18ch, rgba(108, 207, 246, 0.10), transparent 70%);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.7;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 600;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); letter-spacing: -0.035em; font-weight: 620; }
h2 { font-size: var(--step-3); letter-spacing: -0.03em; }
h3 { font-size: var(--step-1); letter-spacing: -0.015em; }

p { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration-color: rgba(108, 207, 246, 0.35); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

strong { font-weight: 600; color: var(--text); }

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

::selection { background: rgba(108, 207, 246, 0.28); color: #fff; }

/* ── Layout primitives ──────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.section { padding-block: var(--sp-9); }
.section + .section { padding-top: 0; }
.section--tight { padding-block: var(--sp-8); }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

.prose { max-width: var(--measure); }
.prose p { color: var(--text-2); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex: none;
}

.lede { font-size: var(--step-1); color: var(--text-2); line-height: 1.6; }

.section-head { margin-bottom: var(--sp-6); max-width: var(--measure); }
.section-head h2 { margin-bottom: var(--sp-4); }
.section-head p { color: var(--text-2); margin-bottom: 0; }

/* ── Skip link ──────────────────────────────────────────────────────────── */
.skip {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: 999;
  background: var(--accent);
  color: var(--accent-ink);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip:focus { top: var(--sp-4); }

/* ── Header ─────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(10, 11, 15, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.header[data-stuck="true"] {
  border-bottom-color: var(--line);
  background: rgba(10, 11, 15, 0.9);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 620;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  flex: none;
}
.brand svg { width: 26px; height: 26px; flex: none; }
.brand:hover { color: var(--text); }

.nav { display: flex; align-items: center; gap: var(--sp-2); }
/* :not(.btn) matters — a bare `.nav a` outranks `.btn--primary` on specificity
   and would repaint the CTA in muted link colour on its own accent background. */
.nav a:not(.btn) {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav a:not(.btn):hover { color: var(--text); background: var(--line); }
.nav a:not(.btn)[aria-current="page"] { color: var(--text); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  /* min-height keeps every CTA above the 44px touch-target floor */
  min-height: 2.875rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: #8bdcff; color: var(--accent-ink); }
.btn--primary:active { transform: translateY(1px); }

/* The header CTA is the one button set at 14px. At that size a bright cyan
   fill glares around the small glyphs — technically 11:1, but it reads sloppy.
   A deeper blue with white text carries better small, and leaves the bright
   accent to the hero so there is one loud CTA per screen instead of two. */
.header .btn--primary { background: var(--accent-deep); color: #fff; }
.header .btn--primary:hover { background: var(--accent-deep-hi); color: #fff; }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-hi); }
.btn--ghost:hover { background: var(--surface); border-color: rgba(255, 255, 255, 0.22); color: var(--text); }
.btn--ghost:active { transform: translateY(1px); }

/* 2.75rem = 44px, the touch-target floor. The header CTA is the smallest
   button on the site and still has to clear it. */
.btn--sm { min-height: 2.75rem; padding: 0.45rem 1.1rem; font-size: 0.875rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.btn-note {
  font-size: var(--step--1);
  color: var(--text-3);
  margin: var(--sp-4) 0 0;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding-block: var(--sp-8) var(--sp-9); }

.hero__grid {
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}

.hero h1 { margin-bottom: var(--sp-5); }
.hero .lede { margin-bottom: var(--sp-6); max-width: 46ch; }

.hero__marks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.hero__marks li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--step--1);
  color: var(--text-3);
}
.hero__marks svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

@media (min-width: 62rem) {
  .hero__grid { grid-template-columns: 1fr auto; gap: var(--sp-9); }
}

/* ── Demo phone ─────────────────────────────────────────────────────────── */
.demo { display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); }

.demo__phone {
  position: relative;
  width: min(320px, 100%);
  height: clamp(440px, 58vh, 600px);
  background: var(--bg-raised);
  border: 1px solid var(--line-hi);
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9),
              0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.demo__feed {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  border-radius: 23px;
  /* Native CSS snap — the demo scrolls correctly with JS disabled. */
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
  background: var(--bg);
}
.demo__feed::-webkit-scrollbar { display: none; }

.demo__card {
  position: relative;
  height: 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  overflow: hidden;
  isolation: isolate;
}

/* Field art: pure CSS, zero network cost. The real app renders a generated
   illustration here. */
.demo__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--art);
}
/* Scrim guarantees text contrast over any art, exactly like the app's
   .card-image-fade. */
.demo__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom,
              rgba(10, 11, 15, 0.25) 0%,
              rgba(10, 11, 15, 0.62) 42%,
              rgba(10, 11, 15, 0.94) 74%,
              var(--bg) 100%);
}

.demo__card[data-field="physics"] {
  --art: radial-gradient(80% 55% at 22% 18%, #4c3f9e 0%, transparent 62%),
         radial-gradient(70% 50% at 82% 30%, #7b4bc4 0%, transparent 60%),
         linear-gradient(165deg, #1a1740 0%, #0a0b0f 72%);
}
.demo__card[data-field="aerospace"] {
  --art: radial-gradient(75% 50% at 78% 16%, #f0a94a 0%, transparent 58%),
         radial-gradient(85% 60% at 18% 34%, #1f5f96 0%, transparent 62%),
         linear-gradient(170deg, #10233d 0%, #0a0b0f 74%);
}
.demo__card[data-field="biotech"] {
  --art: radial-gradient(72% 50% at 26% 20%, #1f8f7a 0%, transparent 60%),
         radial-gradient(76% 54% at 84% 36%, #2f7fb8 0%, transparent 58%),
         linear-gradient(168deg, #0d2b2c 0%, #0a0b0f 74%);
}
.demo__card[data-field="mathematics"] {
  --art: radial-gradient(70% 48% at 24% 18%, #b06a2a 0%, transparent 58%),
         radial-gradient(78% 55% at 80% 34%, #8c4a6b 0%, transparent 60%),
         linear-gradient(168deg, #2c1d20 0%, #0a0b0f 74%);
}

.demo__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  margin-bottom: var(--sp-3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.demo__card h3 {
  font-size: 1.2rem;
  line-height: 1.24;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
  color: #fff;
}

.demo__body {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(240, 240, 245, 0.86);
  margin-bottom: var(--sp-3);
}

.demo__why {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(240, 240, 245, 0.92);
  background: rgba(108, 207, 246, 0.09);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.5rem 0.7rem;
  margin-bottom: var(--sp-3);
}
.demo__why b {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.15rem;
  font-weight: 500;
}

.demo__src {
  font-size: 0.6875rem;
  color: rgba(240, 240, 245, 0.58);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.demo__src svg { width: 12px; height: 12px; flex: none; }

.demo__dots { display: flex; gap: 0.4rem; }
.demo__dots span {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--line-hi);
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
}
.demo__dots span[data-on="true"] { background: var(--accent); width: 18px; }

.demo__caption {
  font-size: var(--step--1);
  color: var(--text-3);
  text-align: center;
  margin: 0;
  max-width: 30ch;
}

/* ── Cards / grids ──────────────────────────────────────────────────────── */
.grid { display: grid; gap: var(--sp-4); }
@media (min-width: 45rem)   { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 45rem)   { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 45rem)   { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem)   { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-5);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.card:hover { border-color: var(--line-hi); background: var(--surface-hi); }
.card h3 { margin-bottom: var(--sp-3); }
.card p { color: var(--text-2); font-size: 0.9375rem; margin-bottom: 0; }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: rgba(108, 207, 246, 0.1);
  border: 1px solid rgba(108, 207, 246, 0.18);
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.card__icon svg { width: 18px; height: 18px; }

.card__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: var(--sp-3);
}

/* ── Tables ─────────────────────────────────────────────────────────────── */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 34rem;
}
caption {
  caption-side: bottom;
  text-align: left;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--step--1);
  color: var(--text-3);
  border-top: 1px solid var(--line);
}
th, td {
  text-align: left;
  padding: 0.85rem var(--sp-5);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
thead th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
}
tbody th { font-weight: 560; color: var(--text); white-space: nowrap; }
td { color: var(--text-2); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td, tbody tr:hover th { background: rgba(255, 255, 255, 0.018); }

/* ── Steps ──────────────────────────────────────────────────────────────── */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-5); }
.steps > li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: var(--sp-4);
  align-items: start;
}
.steps__n {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  border: 1px solid rgba(108, 207, 246, 0.28);
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.steps h3 { margin-bottom: var(--sp-2); }
.steps p { color: var(--text-2); font-size: 0.9375rem; margin-bottom: 0; }

/* ── Q&A ────────────────────────────────────────────────────────────────── */
.qa { display: grid; gap: 0; border-top: 1px solid var(--line); }
.qa > div { border-bottom: 1px solid var(--line); padding: var(--sp-5) 0; }
.qa h3 { margin-bottom: var(--sp-3); }
.qa p { color: var(--text-2); margin-bottom: var(--sp-3); }
.qa p:last-child { margin-bottom: 0; }

/* ── Callout ────────────────────────────────────────────────────────────── */
.callout {
  border: 1px solid var(--line-hi);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface);
  padding: var(--sp-5);
}
.callout p { color: var(--text-2); margin-bottom: var(--sp-3); font-size: 0.9375rem; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--text); }

/* ── Final CTA ──────────────────────────────────────────────────────────── */
.cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(70ch 30ch at 50% 0%, rgba(108, 207, 246, 0.09), transparent 70%),
    var(--surface);
  padding: var(--sp-8) var(--sp-5);
  text-align: center;
}
.cta h2 { margin-bottom: var(--sp-4); }
.cta p { color: var(--text-2); max-width: 46ch; margin-inline: auto; margin-bottom: var(--sp-6); }
.cta .btn-row { justify-content: center; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  margin-top: var(--sp-9);
  padding-block: var(--sp-7) var(--sp-6);
  font-size: 0.9375rem;
}
.footer__grid {
  display: grid;
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}
@media (min-width: 45rem) {
  .footer__grid { grid-template-columns: 1.6fr repeat(2, 1fr); gap: var(--sp-7); }
}
.footer h2 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.footer a { color: var(--text-2); text-decoration: none; }
.footer a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.footer__blurb { color: var(--text-3); max-width: 44ch; font-size: 0.9375rem; }
.footer__brand { margin-bottom: var(--sp-4); }

.footer__base {
  border-top: 1px solid var(--line);
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  justify-content: space-between;
  align-items: center;
  color: var(--text-3);
  font-size: var(--step--1);
}
.footer__base p { margin: 0; }

/* ── Reveal-on-scroll ───────────────────────────────────────────────────── */
/* The hidden start state is gated behind .js, which a one-line inline script
   in <head> sets before first paint. With JS blocked or broken the class is
   never added, so every section renders plainly visible — nothing this page
   says is ever hidden from a reader or a crawler by a failed animation. */
.js .js-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  will-change: opacity, transform;
}
.js .js-reveal[data-shown="true"] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal { opacity: 1 !important; transform: none !important; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Utilities ──────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.mono { font-family: var(--font-mono); }
.muted { color: var(--text-3); }
.center { text-align: center; }

/* ── Small screens ──────────────────────────────────────────────────────── */
@media (max-width: 30rem) {
  .wrap { padding-inline: var(--sp-4); }
  .section { padding-block: var(--sp-8); }
  .nav a:not(.btn) { display: none; }
  th, td { padding: 0.75rem var(--sp-4); }
}
