/* Roam commercial landing page — minimal, fast (<200KB total).
   Mirrors docs/site/ visual language but tuned for a buyer surface.
   Self-hosted fonts (no Google CDN) for GDPR + perf. */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: local('Space Grotesk'), url('/fonts/space-grotesk-variable.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('IBM Plex Mono'), url('/fonts/plex-mono-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('IBM Plex Mono SemiBold'), url('/fonts/plex-mono-semibold.woff2') format('woff2');
}

:root {
  --text: #1a1a1a;
  --muted: #595959;
  --bg: #fdfdfd;
  --bg-alt: #f4f4f0;
  --accent: #0049b7;
  --accent-soft: #eef2fb;
  --warn: #c25400;
  --pop: #007a3d;
  --border: #d6d6d0;
  --radius: 8px;
  --max-w: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

code, .mono { font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  z-index: 100;
}
.skip-link:focus { top: 8px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Nav ─── */
.site-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-logo {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
}
.logo-dot { color: var(--accent); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
.nav-links a { color: var(--muted); }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
  padding: 80px 0 60px;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin: 0 0 16px;
}
.hero-headline {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}
.hero-headline strong { font-weight: 700; }
.hero-subhead {
  font-size: 19px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* CTA buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,73,183,.3); text-decoration: none; }
.btn-secondary {
  background: var(--bg);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover { background: var(--accent-soft); text-decoration: none; }

.hero-trust-strip {
  font-size: 13px;
  color: var(--muted);
  margin: 28px 0 0;
}

/* ─── What's in the free CLI ─── */
.whats-in {
  padding: 56px 0;
  background: var(--bg);
}
.whats-in-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.whats-in h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 14px;
}
.whats-in .lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 36px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 0 0 36px;
}
@media (max-width: 900px) { .numbers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.num-cell {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
}
.num-cell strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: -0.5px;
}
.num-cell span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.3;
}
.install-cmd {
  background: var(--text);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14.5px;
  display: inline-block;
  margin: 0 auto 16px;
  text-align: left;
}
.install-cmd code { color: #fff; }
.install-cmd code::before {
  content: "$ ";
  color: #888;
}
.install-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 720px;
  margin: 16px auto 24px;
}
.install-note code {
  background: var(--bg-alt);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 13px;
}

/* ─── Five-verbs grid ─── */
.verbs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 900px) { .verbs-grid { grid-template-columns: repeat(2, 1fr); } }
.verb-cell {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px;
}
.verb-cell code {
  display: block;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}
.verb-cell span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ─── How it works (MCP flow) ─── */
.how-it-works {
  padding: 56px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-it-works-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.how-it-works h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px;
}
.how-it-works .lede {
  font-size: 17px;
  color: var(--muted);
  margin: 0 auto 32px;
  max-width: 720px;
}
.flow {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  text-align: left;
}
@media (max-width: 800px) { .flow { grid-template-columns: 1fr; } }
.flow li {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  position: relative;
}
.flow-num {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.flow li strong { display: block; font-size: 15px; margin-bottom: 6px; }
.flow li em { color: var(--muted); font-style: italic; font-size: 14px; line-height: 1.5; }
.how-it-works-foot {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ─── Demo block (terminal screenshot) ─── */
.demo-block {
  padding: 64px 0;
  background: var(--bg);
}
.demo-block-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.demo-block h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px;
}
.demo-block .lede {
  font-size: 16px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 28px;
}
.demo-block .lede code {
  background: var(--bg-alt);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 14px;
}
.terminal {
  background: #1a1a1a;
  color: #e8e8e8;
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13.5px;
  line-height: 1.55;
  padding: 24px 28px;
  border-radius: 8px;
  text-align: left;
  overflow-x: auto;
  white-space: pre;
  margin: 0 auto 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.terminal .t-prompt { color: #888; }
.terminal .t-cmd { color: #fff; font-weight: 500; }
.terminal .t-line { color: #e8e8e8; }
.terminal .t-em { color: #79c0ff; }
.demo-foot {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ─── Numbers date caption ─── */
.numbers-date {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  margin: -24px 0 28px;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ─── First 5 minutes block ─── */
.first-5-min {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  max-width: 720px;
  margin: 28px auto 0;
  text-align: left;
}
.first-5-min h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--accent);
}
.first-5-min ol {
  margin: 0;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.7;
}
.first-5-min ol li { margin-bottom: 4px; color: var(--text); }
.first-5-min code {
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 13px;
  border: 1px solid var(--border);
}

/* ─── How-it-works subheading ─── */
.how-it-works-sub {
  font-size: 17px;
  font-weight: 600;
  margin: 32px 0 14px;
  color: var(--text);
  text-align: center;
}

/* ─── Pain band individual cell ─── */
.pain-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tie-back {
  margin: 0;
  font-size: 13px;
  color: var(--pop);
  font-weight: 500;
  padding-left: 14px;
}
.tie-back code {
  background: rgba(0, 122, 61, 0.08);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 12.5px;
  color: var(--pop);
}

/* ─── Demo grid (terminal + GitHub PR mockup) ─── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 900px) { .demo-grid { grid-template-columns: 1fr; } }
.demo-col { display: flex; flex-direction: column; }
.demo-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin: 0 0 10px;
}

/* ─── Fake GitHub PR comment ─── */
.gh-pr {
  background: #fff;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  text-align: left;
  font-size: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.gh-pr-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #d1d9e0;
  background: #f6f8fa;
}
.gh-avatar {
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 16px;
}
.gh-pr-meta strong { color: #1f2328; font-size: 14px; }
.gh-time { color: #59636e; font-size: 12px; margin-left: 4px; }
.gh-pr-body { padding: 16px; }
.gh-verdict {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.gh-verdict-block {
  background: #ffebe9;
  color: #cf222e;
  border: 1px solid #ffcecb;
}
.gh-finding {
  border-left: 3px solid #d1d9e0;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #1f2328;
  background: #f6f8fa;
  border-radius: 0 4px 4px 0;
}
.gh-sev {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
}
.gh-sev-high { background: #ffebe9; color: #cf222e; }
.gh-sev-med  { background: #fff8c5; color: #7a5100; }
.gh-conf {
  font-size: 11px;
  color: #4d555c;
  font-family: 'IBM Plex Mono', monospace;
}
.gh-meta { color: #4d555c; font-size: 12.5px; font-family: 'IBM Plex Mono', monospace; }
.gh-finding code {
  background: #eaeef2;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 12.5px;
  color: #1f2328;
}
.gh-fix {
  display: block;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #d1d9e0;
  font-size: 12.5px;
  color: var(--pop);
}
.gh-actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #d1d9e0;
  font-size: 12.5px;
  color: #59636e;
}
.gh-actions code {
  background: #eaeef2;
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--accent);
}

/* ─── Comparison table ─── */
.compare {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.compare-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.compare h2 { font-size: 28px; margin: 0 0 12px; }
.compare .lede {
  font-size: 16px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 32px;
}
.compare-table-wrap { overflow-x: auto; margin: 0 -24px; padding: 0 24px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 760px;
}
.compare-table thead th {
  background: var(--bg-alt);
  padding: 14px 12px;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
  text-align: center;
}
.compare-table thead th:first-child { text-align: left; padding-left: 18px; min-width: 240px; }
.compare-table thead th strong { color: var(--accent); }
.compare-table tbody tr:not(:last-child) td { border-bottom: 1px solid var(--bg-alt); }
.compare-table tbody td { padding: 12px 12px; text-align: center; vertical-align: middle; }
.compare-table tbody td:first-child { text-align: left; padding-left: 18px; color: var(--text); font-weight: 500; }
.compare-table .yes { color: var(--pop); font-weight: 600; font-size: 13px; }
.compare-table .no  { color: #6b6b6b; font-size: 13px; }
.compare-table .ltd { color: var(--warn); font-weight: 500; font-size: 13px; }
.compare-foot {
  margin: 18px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* ─── Footer meta line ─── */
.footer-meta {
  color: #888 !important;
  font-size: 12px !important;
  font-style: italic;
}

/* ─── Legal pages (privacy / terms / refund) ─── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  font-size: 16px;
  line-height: 1.7;
}
.legal-header { margin-bottom: 36px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.legal-header h1 { font-size: 36px; margin: 0 0 8px; font-weight: 600; }
.legal-meta { font-size: 13px; color: var(--muted); margin: 0; }
.legal-page article h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--accent);
}
.legal-page article p { margin: 0 0 14px; }
.legal-page article ul, .legal-page article ol { margin: 0 0 14px; padding-left: 26px; }
.legal-page article li { margin-bottom: 6px; }
.legal-page article code {
  background: var(--bg-alt);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 14px;
}
.legal-foot {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

/* ─── Buyer-pain band ─── */
.pain-band {
  background: #fff8ed;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.pain-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .pain-band-inner { grid-template-columns: 1fr; } }
.pain-quote {
  margin: 0;
  font-size: 14.5px;
  color: var(--text);
  border-left: 3px solid var(--warn);
  padding-left: 14px;
  line-height: 1.5;
}
.pain-quote strong { color: var(--warn); }
.pain-source {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.pain-source a { color: var(--muted); text-decoration: underline; }

/* ─── Products intro ─── */
.products-intro {
  padding: 64px 0 0;
  background: var(--bg);
}
.products-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.products-intro h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px;
}
.products-intro .lede {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

/* ─── Product cards ─── */
.products {
  max-width: var(--max-w);
  margin: 32px auto 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .products { grid-template-columns: 1fr; } }

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
}
.product-card .tagline {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.product-card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 14px;
  flex-grow: 1;
}
.product-card .features li {
  padding: 5px 0;
  border-bottom: 1px solid var(--bg-alt);
  display: flex;
  align-items: flex-start;
}
.product-card .features li::before {
  content: "→";
  color: var(--pop);
  margin-right: 8px;
  flex-shrink: 0;
}
.product-card .features code {
  background: var(--bg-alt);
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 12.5px;
}
.product-card .price {
  margin: 0 0 18px;
  text-align: center;
}
.price-amount {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.price-unit {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
}
.price-note {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ─── Audit upsell ─── */
.audit-upsell {
  background: var(--bg-alt);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.audit-upsell-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.audit-upsell h2 { font-size: 24px; margin: 0 0 12px; }
.audit-upsell p { font-size: 16px; color: var(--text); }

/* ─── Trust strip ─── */
.trust-strip {
  padding: 56px 0;
  background: var(--bg);
}
.trust-strip-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
@media (max-width: 700px) { .trust-strip-inner { grid-template-columns: 1fr; } }
.trust-cell {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.trust-cell strong { display: block; font-size: 16px; color: var(--accent); margin-bottom: 6px; }
.trust-cell span { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.trust-cell a { color: var(--accent); }

/* ─── FAQ ─── */
.faq {
  background: var(--bg-alt);
  padding: 64px 0;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq h2 { font-size: 28px; margin: 0 0 28px; text-align: center; }
.faq details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq summary {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  list-style: none;
  cursor: pointer;
}
.faq summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq summary::after {
  content: "▾";
  float: right;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.faq code { background: var(--bg-alt); padding: 1px 5px; border-radius: 3px; font-size: 13px; }

/* ─── Footer ─── */
footer {
  background: var(--text);
  color: #ccc;
  padding: 36px 0;
  font-size: 14px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-col { display: flex; flex-direction: column; gap: 4px; }
.footer-col span { color: #999; font-size: 13px; }
footer a { color: #fff; }

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .faq summary::after,
  .faq details[open] summary::after {
    transform: none;
    transition: none;
  }
}
