/* Design language: Dieter Rams / Braun. Paper, ink, one orange. Same tokens as the app. */

@font-face { font-family: "Archivo"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/archivo-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/archivo-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 800; font-display: swap; src: url("fonts/archivo-latin-800-normal.woff2") format("woff2"); }

/* ── Tokens ──────────────────────────────────────────────
   --muted is the brand grey: borders and marks only (3.6:1 on paper).
   --text-2 is the grey for small text: AA on paper and on tiles. */
:root {
  color-scheme: light;
  --paper: #eeede6;
  --ink: #18160f;
  --tile: #e3e2da;
  --tile-2: #d8d7ce;
  --orange: #e9531a;
  --on-orange: #18160f;
  --muted: #7c7a70;
  --text-2: #5f5d54;
  --grid: #d3d2c9;
  --field: #f7f6f0;
  --ph-bg: #f6d6c6;
  --board: var(--ink);
  --on-board: var(--paper);
  --r: 5px;
  --gutter: 16px;
  --max: 1120px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --paper: #151410;
    --ink: #eeede6;
    --tile: #211f19;
    --tile-2: #2b2922;
    --orange: #f2611f;
    --on-orange: #151410;
    --muted: #89877c;
    --text-2: #9a988d;
    --grid: #2e2c25;
    --field: #1b1a15;
    --ph-bg: #4a2413;
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #151410; --ink: #eeede6; --tile: #211f19; --tile-2: #2b2922; --orange: #f2611f; --on-orange: #151410;
  --muted: #89877c; --text-2: #9a988d; --grid: #2e2c25; --field: #1b1a15; --ph-bg: #4a2413;
}

@media (min-width: 600px) { :root { --gutter: 28px; } }
@media (min-width: 1024px) { :root { --gutter: 40px; } }

/* ── Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 20px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 500 16px/1.5 "Archivo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
h1, h2, h3, .wordmark, .cta-text { word-spacing: .05em; }
b, strong { font-weight: 800; }
a { color: inherit; text-decoration-color: var(--muted); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--orange); text-decoration-thickness: 2.5px; }
svg { display: block; }
/* A plain hyphen that never breaks (Archivo has no glyph for U+2011) */
.nw { white-space: nowrap; }
/* One sentence per line */
.lines > span { display: block; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 2px; }
.board :focus-visible { outline-color: var(--on-board); }

.container {
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left)) max(var(--gutter), env(safe-area-inset-right));
}

.skip {
  position: absolute; left: 12px; top: -80px; z-index: 20;
  background: var(--ink); color: var(--paper); padding: 12px 16px; border-radius: var(--r);
  font-weight: 700; text-decoration: none;
}
.skip:focus { top: 12px; }

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

/* Small uppercase label */
.k {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-2); line-height: 1.35;
}
.idx { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--text-2); font-variant-numeric: tabular-nums; }
.fine { font-size: 13px; line-height: 1.45; color: var(--text-2); }

/* Placeholders the founder must fill in. Delete these two rules (and the --ph-bg tokens) once they are all replaced. */
.ph {
  background: var(--ph-bg); color: var(--ink); font-weight: 700; padding: 0 .3em; border-radius: 3px;
  outline: 1px dashed var(--orange); outline-offset: -1px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
a[href*="["] { background: var(--ph-bg); outline: 1px dashed var(--orange); outline-offset: 1px; }

/* ── Header ──────────────────────────────────────────── */
.site-head { border-bottom: 1px solid var(--grid); padding-top: env(safe-area-inset-top); }
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 56px; }
.wordmark {
  font-size: 17px; font-weight: 800; letter-spacing: -.02em; line-height: 1.15;
  text-decoration: none; padding-block: 10px;
}
.head-nav { display: none; }
.head-nav a {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; padding-block: 12px;
}
.head-nav a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.head-nav .nav-section { display: none; padding-inline: 4px; margin-inline: -4px; }
.head-nav .head-cta {
  border: 2px solid var(--ink); border-radius: var(--r); padding: 10px 14px;
}
.head-nav .head-cta:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
@media (min-width: 600px) {
  .wordmark { font-size: 19px; }
  .head-row { min-height: 68px; }
  .head-nav { display: flex; align-items: center; gap: 28px; }
}
@media (min-width: 1000px) {
  .head-nav .nav-section { display: inline-block; }
}

/* ── Hero ────────────────────────────────────────────── */
.hero { padding-block: 22px 56px; }
.hero-grid { display: grid; gap: 28px; }
.status { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: none; }
.hero h1 {
  font-size: clamp(30px, 8.2vw, 48px); font-weight: 800; letter-spacing: -.035em; line-height: 1.03;
  text-wrap: balance;
}
.hero h1 > span { display: block; }
.lead { margin-top: 14px; font-size: 16px; line-height: 1.5; max-width: 42ch; }
.facts { display: flex; flex-wrap: wrap; gap: 4px 18px; margin-top: 16px; }
.facts div { display: flex; align-items: baseline; gap: 7px; }
.facts dd { font-size: 14px; font-weight: 700; }

@media (min-width: 600px) {
  .hero { padding-block: 44px 72px; }
  .lead { font-size: 18px; }
}
@media (min-width: 960px) {
  .hero { padding-block: 72px 112px; }
  .hero-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: 64px; align-items: start; }
  .hero-text { position: sticky; top: 32px; }
  .hero h1 { font-size: clamp(36px, 3.75vw, 48px); }
  .lead { margin-top: 22px; font-size: 19px; }
  .facts { display: block; margin-top: 44px; border-top: 2px solid var(--ink); }
  .facts div { justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--grid); }
  .facts dd { font-size: 16px; text-align: right; }
}

/* ── Sign-up form ────────────────────────────────────── */
@media (min-width: 600px) and (max-width: 959px) {
  .hero-text, .signup { max-width: 560px; }
}
.signup { border-top: 2px solid var(--ink); padding-top: 16px; }
.signup h2 { margin-top: 6px; font-size: 22px; font-weight: 800; letter-spacing: -.02em; line-height: 1.12; }
.signup-intro { margin-top: 6px; font-size: 15px; line-height: 1.45; color: var(--text-2); max-width: 52ch; }
@media (min-width: 960px) {
  .signup { padding-top: 20px; }
  .signup h2 { font-size: 28px; }
  .signup-intro { font-size: 16px; }
}

.form { display: grid; gap: 24px; margin-top: 18px; }
.field { min-width: 0; }
fieldset.field { border: 0; margin: 0; padding: 0; }
.field-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.field-label, .field legend {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); line-height: 1.35;
}
.field legend { padding: 0 0 9px; }
.req { font-size: 13px; font-weight: 500; color: var(--text-2); }
.help { margin-top: 8px; font-size: 14px; line-height: 1.45; color: var(--text-2); }

input[type="email"] {
  display: block; width: 100%; min-height: 52px; padding: 12px 14px; margin: 0;
  font: 700 17px/1.2 "Archivo", system-ui, -apple-system, sans-serif; color: var(--ink);
  background: var(--field); border: 1.5px solid var(--muted); border-radius: var(--r);
  -webkit-appearance: none; appearance: none;
}
input[type="email"]::placeholder { color: var(--text-2); font-weight: 500; opacity: 1; }
input[type="email"]:hover { border-color: var(--ink); }
input[type="email"]:focus { outline: 3px solid var(--orange); outline-offset: 2px; border-color: var(--ink); }
input[type="email"][aria-invalid="true"] { border: 2px solid var(--orange); }

/* Radio choices, on a 4-column grid shared by both groups */
.chips { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.chip { position: relative; display: block; min-width: 0; }
.chip.span-2 { grid-column: span 2; }
.chip input {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; z-index: 1;
}
.chip > span {
  display: flex; align-items: center; justify-content: center; height: 100%; min-height: 46px; padding: 8px 6px;
  border: 1.5px solid var(--muted); border-radius: var(--r); background: var(--field);
  font-size: 14px; font-weight: 700; line-height: 1.15; text-align: center;
  transition: background-color .12s, border-color .12s, color .12s;
}
.chip input:hover + span { border-color: var(--ink); }
.chip input:checked + span { background: var(--orange); border-color: var(--orange); color: var(--on-orange); font-weight: 800; }
.chip input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }
@media (min-width: 960px) { .chip > span { font-size: 15px; min-height: 48px; } }
@media (forced-colors: active) {
  .chip input:checked + span { outline: 3px solid Highlight; outline-offset: -5px; }
  .check input:checked { background: Highlight; }
}

.note {
  margin-top: 10px; padding: 10px 12px; border-radius: var(--r); background: var(--tile);
  border-left: 3px solid var(--ink); font-size: 14px; line-height: 1.45;
}
.nucleus-note { display: none; }
.chips:has(input[value="nucleus-rock"]:checked) ~ .nucleus-note { display: block; }

/* Checkboxes */
.check { display: grid; grid-template-columns: 24px minmax(0, 1fr); column-gap: 12px; align-items: start; }
.check input {
  -webkit-appearance: none; appearance: none; width: 24px; height: 24px; margin: 0;
  border: 2px solid var(--ink); border-radius: 4px; background: var(--field);
  display: grid; place-content: center; cursor: pointer;
}
.check input::after {
  content: ""; width: 11px; height: 6px; border: solid var(--on-orange); border-width: 0 0 2.5px 2.5px;
  transform: translateY(-1px) rotate(-45deg); opacity: 0;
}
.check input:checked { background: var(--orange); border-color: var(--orange); }
.check input:checked::after { opacity: 1; }
.check input[aria-invalid="true"] { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.check label { font-size: 16px; font-weight: 700; line-height: 1.4; cursor: pointer; padding-top: 1px; }
.check.consent label { font-size: 15px; font-weight: 500; line-height: 1.45; }
.check + .help, .indent { padding-left: 36px; }
.check-meta { margin-top: 8px; padding-left: 36px; font-size: 14px; color: var(--text-2); }
.check-meta a { color: var(--ink); font-weight: 700; }

.error {
  display: flex; gap: 10px; margin-top: 10px; font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--ink);
}
.error::before { content: ""; flex: none; width: 4px; border-radius: 2px; background: var(--orange); }
.error[hidden] { display: none; }
.check ~ .error { margin-left: 36px; }

.submit { display: grid; gap: 10px; }
.submit .fine + .fine { margin-top: -6px; }

.btn:disabled { opacity: .6; cursor: default; }

.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 22px; margin: 0;
  font: 800 14px/1.1 "Archivo", system-ui, -apple-system, sans-serif; letter-spacing: .08em; text-transform: uppercase;
  text-align: center; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: var(--r);
  transition: background-color .12s, color .12s;
}
.btn-primary { background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
.btn-primary:hover { background: color-mix(in srgb, var(--orange) 84%, #ffffff); border-color: color-mix(in srgb, var(--orange) 84%, #ffffff); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-block { width: 100%; min-height: 56px; }

/* ── Sections ────────────────────────────────────────── */
.section { border-top: 1px solid var(--grid); padding-block: 56px; }
.split { display: grid; gap: 28px; }
.section-head h2 {
  margin-top: 10px; font-size: clamp(28px, 7.4vw, 42px); font-weight: 800; letter-spacing: -.03em; line-height: 1.04;
  text-wrap: balance;
}
.section-head .intro { margin-top: 14px; font-size: 17px; line-height: 1.5; max-width: 40ch; }
@media (min-width: 600px) {
  .section { padding-block: 80px; }
}
@media (min-width: 960px) {
  .section { padding-block: 104px; }
  .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; align-items: start; }
  .section-head { position: sticky; top: 32px; }
}

.tile { background: var(--tile); border-radius: var(--r); padding: 18px 18px 20px; }
@media (min-width: 600px) { .tile { padding: 22px 22px 24px; } }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
@media (min-width: 600px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.step { position: relative; display: flex; flex-direction: column; gap: 10px; }
.step .ico { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; color: var(--ink); }
.step h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.step h3 .idx { display: block; margin-bottom: 30px; line-height: 1.35; }
.step p { font-size: 15px; line-height: 1.5; }
@media (min-width: 600px) { .step .ico { top: 20px; right: 20px; } }

.sounds { list-style: none; margin: 4px 0 0; padding: 0; }
.sounds li { display: grid; grid-template-columns: 32px minmax(0, 1fr); column-gap: 12px; align-items: center; padding: 9px 0; border-top: 1px solid var(--grid); }
.sounds li:last-child { padding-bottom: 0; }
.sounds svg { width: 32px; height: 32px; color: var(--ink); }
.sounds b { display: block; font-size: 15px; line-height: 1.25; }
.sounds p > span { display: block; font-size: 14px; line-height: 1.35; color: var(--text-2); }

.aside { margin-top: 4px; padding: 12px 14px; border-radius: var(--r); background: var(--paper); border-left: 3px solid var(--ink); }
.step .aside { font-size: 14px; }

/* Check list */
.checklist { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--ink); }
.checklist li { position: relative; padding: 16px 0 16px 28px; border-bottom: 1px solid var(--grid); font-size: 17px; line-height: 1.45; }
.checklist li::before { content: ""; position: absolute; left: 2px; top: 24px; width: 10px; height: 10px; border-radius: 2px; background: var(--ink); }

/* Diagnostic */
.diag { display: grid; gap: 10px; }
.diag-block h3 { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
.diag-block h3 i { flex: none; width: 10px; height: 10px; border-radius: 50%; }
.diag-block.found h3 i { background: var(--ink); }
.diag-block.fixed h3 i { background: var(--orange); }
.diag-block.out h3 i { border: 2px solid var(--muted); }
.dash { list-style: none; margin: 12px 0 0; padding: 0; }
.dash li { position: relative; padding: 9px 0 9px 22px; border-top: 1px solid var(--grid); font-size: 15px; line-height: 1.5; }
.dash li:last-child { padding-bottom: 0; }
.dash li::before { content: ""; position: absolute; left: 0; top: 20px; width: 10px; height: 2px; background: var(--text-2); }
@media (min-width: 720px) {
  .diag-block { display: grid; grid-template-columns: 170px minmax(0, 1fr); column-gap: 24px; align-items: start; }
  .dash { margin-top: 0; }
  .dash li:first-child { border-top: 0; padding-top: 0; }
  .dash li:first-child::before { top: 11px; }
}
.tech { margin-top: 20px; font-size: 14px; line-height: 1.5; color: var(--text-2); max-width: 62ch; }

/* Launch */
.phases { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.phase .k { display: flex; align-items: center; gap: 9px; }
.phase .k i { flex: none; width: 9px; height: 9px; border-radius: 50%; border: 2px solid var(--muted); }
.phase.now .k i { background: var(--orange); border-color: var(--orange); }
.phase h3 { margin-top: 8px; font-size: 21px; font-weight: 800; letter-spacing: -.02em; line-height: 1.12; }
.phase-text { margin-top: 10px; font-size: 15px; line-height: 1.5; }
@media (min-width: 720px) {
  .phase { display: grid; grid-template-columns: 200px minmax(0, 1fr); column-gap: 24px; align-items: start; }
  .phase-text { margin-top: 0; }
}

/* Questions */
.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--grid); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 60px; padding: 16px 0; cursor: pointer; list-style: none;
  font-size: 18px; font-weight: 700; letter-spacing: -.01em; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover > span { text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.pm { position: relative; flex: none; width: 16px; height: 16px; }
.pm::before, .pm::after { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 2px; border-radius: 1px; background: var(--ink); transition: transform .18s ease; }
.pm::after { transform: rotate(90deg); }
.faq details[open] .pm::after { transform: rotate(0deg); }
.answer { padding: 0 0 22px; max-width: 62ch; }
.answer p + p { margin-top: 12px; }
@media (prefers-reduced-motion: reduce) { .pm::before, .pm::after { transition: none; } }

/* Closing call to action */
.cta-wrap { padding-bottom: 56px; }
.board { background: var(--board); color: var(--on-board); border-radius: var(--r); padding: 24px 20px; display: grid; gap: 18px; }
.board .k { color: inherit; opacity: .72; }
.board .btn { padding-inline: 14px; letter-spacing: .05em; }
.cta-text { margin-top: 8px; font-size: 21px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; text-wrap: balance; }
@media (min-width: 720px) {
  .board { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 32px; padding: 34px 36px; }
  .cta-text { font-size: 24px; }
}
@media (min-width: 960px) { .cta-wrap { padding-bottom: 104px; } }

/* ── Footer ──────────────────────────────────────────── */
.site-foot { border-top: 1px solid var(--grid); padding-block: 26px calc(40px + env(safe-area-inset-bottom)); }
.foot-grid { display: grid; gap: 14px; }
.foot-links { display: flex; flex-wrap: wrap; column-gap: 22px; }
.foot-links a { display: inline-block; padding-block: 11px; font-size: 14px; font-weight: 700; }
.foot-text p { font-size: 13px; line-height: 1.5; color: var(--text-2); }
.foot-text p + p { margin-top: 6px; }
@media (min-width: 960px) {
  .site-foot { padding-block: 36px 56px; }
  .foot-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; align-items: start; }
  .foot-links { margin-top: -11px; }
}

/* ── Inner pages (merci, legal) ──────────────────────── */
.page { padding-block: 32px 20px; }
.page h1, .merci h1 { margin-top: 10px; font-size: clamp(34px, 9vw, 60px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; text-wrap: balance; }
.page .lede, .merci .lede { margin-top: 14px; font-size: 17px; line-height: 1.5; max-width: 58ch; }
@media (min-width: 960px) {
  .page { padding-block: 72px 24px; }
  .page .lede, .merci .lede { font-size: 19px; }
}

.merci { padding-block: 32px 64px; }
.merci .next h2 { margin-bottom: 4px; }
.merci .checklist { margin-top: 10px; }
.merci .checklist li { font-size: 16px; }
.merci .btn { margin-top: 28px; }
@media (min-width: 960px) { .merci { padding-block: 72px 112px; } }

.legal { padding-bottom: 24px; }
.legal-section { border-top: 1px solid var(--grid); padding-block: 22px 26px; display: grid; gap: 12px; }
.legal-section h2 {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); line-height: 1.4;
}
.legal-body { max-width: 64ch; }
.legal-body > * + * { margin-top: 12px; }
.legal-body h3 { font-size: 16px; font-weight: 800; line-height: 1.3; }
.legal-body > * + h3 { margin-top: 22px; }
.legal-body ul { padding-left: 1.2em; }
.legal-body li + li { margin-top: 6px; }
.legal-body li::marker { color: var(--text-2); }
.legal-body dl { display: grid; grid-template-columns: minmax(84px, max-content) minmax(0, 1fr); gap: 8px 18px; }
.legal-body dt { color: var(--text-2); font-weight: 500; }
.legal-body dd { font-weight: 700; min-width: 0; overflow-wrap: anywhere; }
.legal-body dl.orgs { grid-template-columns: 1fr; gap: 2px; }
.legal-body dl.orgs dt { color: var(--ink); font-weight: 800; }
.legal-body dl.orgs dd { font-weight: 500; }
.legal-body dl.orgs dd + dt { margin-top: 12px; }
.legal-body .muted { color: var(--text-2); font-size: 15px; }
.summary-tile { margin-top: 28px; }
.summary-tile ul { list-style: none; margin: 10px 0 0; padding: 0; }
.summary-tile li { position: relative; padding: 8px 0 8px 22px; border-top: 1px solid var(--grid); }
.summary-tile li:first-child { border-top: 0; }
.summary-tile li::before { content: ""; position: absolute; left: 0; top: 18px; width: 10px; height: 2px; background: var(--text-2); }
.updated { border-top: 1px solid var(--grid); padding-block: 24px 48px; }
@media (min-width: 960px) {
  .legal-section { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; padding-block: 32px 36px; }
  .legal-section h2 { padding-top: 3px; }
  .updated { padding-block: 32px 80px; }
}


/* ── Text cards ──────────────────────────────────────── */
/* Distinctes des « chips » du formulaire, qui sont des boutons radio sur une grille fixe de quatre
   colonnes : ici c'est du texte, et il lui faut une colonne entière tant que l'écran est étroit. */
.cards { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
.card { background: var(--tile); border-radius: var(--r); padding: 18px 20px; min-width: 0; }
.card .k { display: block; margin-bottom: 7px; }
.card p { margin: 0; font-size: 15px; line-height: 1.5; }
@media (min-width: 620px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card.span-2 { grid-column: span 2; }
}
@media (min-width: 1000px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card.span-2 { grid-column: span 3; }
}
