/* ============================================================
   Cotizomatic — sistema monocromo con materiales fijos
   Lienzo: blanco (light) / negro profundo (dark), sin acento.
   Materiales que NO cambian con el tema:
     · máquina  = grafito oscuro con luz superior (el producto)
     · papel    = blanco tinta (lo que la máquina imprime)
   Ver DESIGN.md.
   ============================================================ */

:root {
  /* Lienzo — light (default) */
  --bg: #ffffff;
  --bg-dim: #f5f5f5;
  --fg: #0d0d0d;
  --muted: #676767;
  --hairline: rgba(0, 0, 0, 0.11);
  --hairline-soft: rgba(0, 0, 0, 0.06);
  --header-bg: rgba(255, 255, 255, 0.82);
  --btn-bg: #0d0d0d;
  --btn-fg: #ffffff;
  --btn-hover: #2a2a2a;

  /* Verde señal: el único acento. Interacción y semáforo, jamás fondos. */
  --accent: #0e8a4c;
  --accent-strong: #0a6f3d;
  --accent-machine: #3ecf83; /* variante fija para material máquina */
  --focus: #0e8a4c;

  /* Material: máquina (fijo) */
  --machine-bg: linear-gradient(165deg, #1a1b1d 0%, #111214 46%, #0a0b0c 100%);
  --machine-fg: #f5f5f4;
  --machine-muted: #9c9c9c;
  --machine-line: rgba(255, 255, 255, 0.13);
  --machine-line-soft: rgba(255, 255, 255, 0.07);

  /* Material: papel (fijo) */
  --paper: #ffffff;
  --paper-ink: #141414;
  --paper-muted: #575757;
  --paper-line: #e4e4e4;

  /* Semáforo — SOLO dentro de mockups del producto */
  --ok: #2e9e5b;

  /* Tipos */
  --font-sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "B612 Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);

  /* Capas */
  --z-ticket: 10;
  --z-header: 100;

  color-scheme: light;
}

/* Lienzo — dark: negro profundo, blanco casi puro */
:root[data-theme="dark"] {
  --bg: #000000;
  --bg-dim: #0c0c0d;
  --fg: #f5f5f4;
  --muted: #909090;
  --hairline: rgba(255, 255, 255, 0.14);
  --hairline-soft: rgba(255, 255, 255, 0.07);
  --header-bg: rgba(0, 0, 0, 0.72);
  --btn-bg: #ffffff;
  --btn-fg: #000000;
  --btn-hover: #e4e4e4;
  --accent: #3ecf83;
  --accent-strong: #6fdda2;
  --focus: #3ecf83;
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #000000;
    --bg-dim: #0c0c0d;
    --fg: #f5f5f4;
    --muted: #909090;
    --hairline: rgba(255, 255, 255, 0.14);
    --hairline-soft: rgba(255, 255, 255, 0.07);
    --header-bg: rgba(0, 0, 0, 0.72);
    --btn-bg: #ffffff;
    --btn-fg: #000000;
    --btn-hover: #e4e4e4;
    --accent: #3ecf83;
    --accent-strong: #6fdda2;
    --focus: #3ecf83;
    color-scheme: dark;
  }
}

::selection { background: var(--accent); color: #ffffff; }

/* ---------- reset mínimo ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; margin: 0; }
p { margin: 0; text-wrap: pretty; }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 6px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: 0.6rem 1rem; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- tipografía ---------- */
.display {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  font-stretch: 115%;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  font-stretch: 112%;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-stretch: 106%;
  line-height: 1.3;
}
.mono {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.muted { color: var(--muted); }

section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.band-dim { background: var(--bg-dim); }

.section-head { max-width: 38rem; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head p { margin-top: 1rem; font-size: 1.125rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease-out);
}
.site-header.is-scrolled { border-bottom-color: var(--hairline-soft); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 64px;
}
.logo { display: flex; align-items: center; color: var(--fg); text-decoration: none; }
.logo svg { height: 26px; width: auto; }
/* Emblema cromado (logo-nav.png, 3x): en oscuro, un halo tenue separa el cromo del fondo. */
.logo img { height: 34px; width: auto; display: block; }
[data-theme="dark"] .logo img { filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.18)); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .logo img {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.18));
  }
}
.site-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2.5vw, 1.6rem); }
.site-nav a {
  text-decoration: none; font-size: 0.9375rem; font-weight: 500; color: var(--muted);
  transition: color 150ms var(--ease-out);
}
.site-nav a:hover { color: var(--fg); }
.nav-links { display: contents; }
@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* toggle de tema */
.theme-toggle {
  display: grid; place-items: center;
  width: 36px; height: 36px; padding: 0;
  background: transparent; color: var(--fg);
  border: 1px solid var(--hairline); border-radius: 50%;
  cursor: pointer;
  transition: border-color 150ms var(--ease-out), transform 150ms var(--ease-out);
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle:active { transform: scale(0.94); }
.theme-toggle svg { width: 15px; height: 15px; }
.icon-sun { display: none; }
:root[data-theme="dark"] .icon-sun { display: block; }
:root[data-theme="dark"] .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .icon-sun { display: block; }
  :root:not([data-theme="light"]) .icon-moon { display: none; }
}

/* ---------- botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font: inherit; font-weight: 700; font-size: 1rem;
  padding: 0.85rem 1.75rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out),
              border-color 160ms var(--ease-out), transform 160ms var(--ease-out),
              box-shadow 160ms var(--ease-out);
}
.btn:active { transform: translateY(1px) scale(0.97); }
.btn-solid {
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.btn-solid:hover {
  background: var(--btn-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(0, 0, 0, 0.45);
}
.btn-solid:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { font-size: 0.875rem; padding: 0.55rem 1.15rem; }

/* dentro de material máquina: el sólido siempre es blanco sobre grafito */
.machine-window .btn-solid, .calc-panel .btn-solid, .precio-panel .btn-solid {
  background: #ffffff; color: #000000;
}
.machine-window .btn-solid:hover, .calc-panel .btn-solid:hover, .precio-panel .btn-solid:hover {
  background: #e4e4e4;
}
/* dentro de material papel: el sólido siempre es tinta sobre blanco */
.ticket .btn-solid { background: #141414; color: #ffffff; }
.ticket .btn-solid:hover { background: #333333; }
/* ghost sobre material máquina: hairline y texto claros siempre */
.machine-window .btn-ghost, .calc-panel .btn-ghost {
  color: var(--machine-fg); border-color: var(--machine-line);
}
.machine-window .btn-ghost:hover, .calc-panel .btn-ghost:hover {
  border-color: var(--accent-machine); color: var(--accent-machine);
}

/* ---------- hero ---------- */
.hero { padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(5rem, 11vw, 9rem); }
.hero-grid {
  display: grid; gap: clamp(2.5rem, 6vw, 4.5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
}
.hero-h1 { display: block; }
.hero-h1 .h1-q {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.9rem;
  letter-spacing: 0;
}
.hero-h1 .display { display: block; }
.hero-copy .sub {
  margin-top: 1.5rem; max-width: 34rem;
  font-size: clamp(1.125rem, 1.8vw, 1.3125rem); line-height: 1.6; color: var(--muted);
}
.hero-cta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; }
.hero-micro { margin-top: 1rem; color: var(--muted); }

/* ---------- material: máquina ---------- */
.machine-window {
  background: var(--machine-bg);
  color: var(--machine-fg);
  border: 1px solid var(--machine-line);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.machine-titlebar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1.1rem; border-bottom: 1px solid var(--machine-line-soft);
  color: var(--machine-muted);
}
.machine-body { padding: 1.1rem 1.1rem 1.25rem; }
.hero-visual .machine-body { padding-bottom: 2.4rem; }

.sheet-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.55rem 0; border-bottom: 1px solid var(--machine-line-soft);
  font-size: 0.9375rem;
}
.sheet-row:last-child { border-bottom: 0; }
.sheet-row .label { color: var(--machine-muted); }
.sheet-row .value { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.sheet-row.is-result { font-size: 1.0625rem; }
.sheet-row.is-result .value { color: var(--machine-fg); font-weight: 700; }
.sheet-divider { border: 0; border-top: 1px solid var(--machine-line); margin: 0.6rem 0; }

.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 0.45rem; }
.dot-ok { background: var(--accent-machine); }

/* ---------- material: papel ---------- */
.paper-sheet {
  background: var(--paper); color: var(--paper-ink);
  border: 1px solid var(--paper-line); border-radius: 12px;
  padding: 1.35rem 1.5rem 1.5rem;
}
.paper-sheet .sheet-row { border-bottom-color: #eeeeee; }
.paper-sheet .sheet-row .label { color: var(--paper-muted); }
.paper-sheet .sheet-row.is-result .value { color: var(--paper-ink); }

.hero-visual { position: relative; }
.hero-visual .paper-sheet {
  position: relative; z-index: var(--z-ticket);
  width: min(88%, 400px);
  margin: -2.4rem 0 0 auto;
  transform: rotate(1.2deg);
  box-shadow: 0 24px 48px -32px rgba(0, 0, 0, 0.55);
}

/* tickets: papel dispensado (citas, resultado de la calculadora) */
.ticket {
  background: var(--paper); color: var(--paper-ink);
  border: 1px solid var(--paper-line); border-top: 2px dashed #c9c9c9;
  border-radius: 4px 4px 10px 10px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 14px 28px -22px rgba(0, 0, 0, 0.35);
}
.ticket blockquote { margin: 0; font-size: 1.0625rem; line-height: 1.55; font-weight: 500; }
.ticket .consecuencia { margin-top: 0.85rem; color: var(--paper-muted); font-size: 0.9375rem; }

.problema-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.problema-cierre {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  font-size: clamp(1.25rem, 2.4vw, 1.625rem); font-weight: 700; font-stretch: 106%;
  max-width: 34rem;
}

/* ---------- método (3 pasos: secuencia real) ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem 1.5rem;
  padding: 1.75rem 0; border-top: 1px solid var(--hairline);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--hairline); }
.step-num {
  font-family: var(--font-mono); font-size: 0.9375rem; font-weight: 700;
  color: var(--fg); background: var(--bg);
  border: 1px solid var(--hairline); border-radius: 8px;
  width: 2.6rem; height: 2.6rem; display: grid; place-items: center;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--muted); max-width: 44rem; }

/* ---------- mini-calculadora (panel de máquina) ---------- */
.calc-panel {
  position: relative;
  background: var(--machine-bg);
  color: var(--machine-fg);
  border: 1px solid var(--machine-line);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 640px;
}
/* tornillos: el único ornamento permitido, y solo aquí */
.calc-panel::before, .calc-panel::after {
  content: ""; position: absolute; top: 14px; width: 7px; height: 7px;
  border-radius: 50%; border: 1px solid var(--machine-line);
  background: linear-gradient(145deg, #2a2c2e, #101112);
}
.calc-panel::before { left: 14px; }
.calc-panel::after { right: 14px; }
.calc-panel :focus-visible { outline-color: var(--accent-machine); }
.machine-window :focus-visible { outline-color: var(--accent-machine); }

.calc-fields { display: grid; gap: 1.25rem; margin-top: 0.5rem; }
.field label { display: block; font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.45rem; }
.field .hint { display: block; font-weight: 400; color: var(--machine-muted); font-size: 0.8125rem; margin-top: 0.2rem; }
.field input {
  width: 100%; font: inherit; font-family: var(--font-mono); font-size: 1.0625rem;
  color: #141414; background: #ffffff;
  border: 1px solid transparent; border-radius: 10px;
  padding: 0.7rem 0.9rem;
}
.calc-actions { margin-top: 1.5rem; }

.odometer {
  margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--machine-line);
}
.odometer .reading {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: clamp(2.25rem, 6vw, 3.25rem); font-weight: 700; line-height: 1.1;
  color: var(--machine-fg);
}
.odometer .caption { margin-top: 0.35rem; color: var(--machine-muted); font-size: 0.9375rem; }

.calc-ticket { margin-top: 1.5rem; max-width: 640px; }
.calc-ticket .h3 { margin-bottom: 0.5rem; }
.calc-ticket ul { margin: 0.5rem 0 1rem; padding-left: 1.1rem; color: var(--paper-muted); }
.calc-ticket li { margin: 0.2rem 0; }

/* dispensado del ticket */
@media (prefers-reduced-motion: no-preference) {
  .dispense {
    transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out),
                filter 300ms var(--ease-out);
  }
  .dispense.is-hidden { opacity: 0; transform: translateY(-10px); filter: blur(2px); }
}
.dispense.is-hidden { visibility: hidden; height: 0; overflow: hidden; margin: 0; padding: 0; border: 0; }

/* ---------- qué incluye (lista de partes) ---------- */
.manifest { border-top: 1px solid var(--hairline); }
.manifest-row {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 0.2rem 2rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--hairline);
}
@media (min-width: 720px) {
  .manifest-row { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); }
}
.manifest-row dt { font-weight: 700; font-stretch: 105%; }
.manifest-row dd { margin: 0; color: var(--muted); }
.spec-line { margin-top: 1.75rem; color: var(--muted); }

/* ---------- para quién ---------- */
.quien-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.quien-col { background: var(--bg); border: 1px solid var(--hairline); border-radius: 12px; padding: 1.75rem; }
.quien-col ul { margin: 0.9rem 0 0; padding-left: 1.15rem; }
.quien-col li { margin: 0.45rem 0; color: var(--muted); }
.quien-col li::marker { color: var(--fg); }

/* ---------- comparativa ---------- */
.compare-scroll { overflow-x: auto; }
.compare { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 0.9375rem; }
.compare th, .compare td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--hairline); }
.compare thead th { font-weight: 700; font-stretch: 106%; }
.compare thead th:first-child { width: 34%; }
.compare tbody th { font-weight: 600; color: var(--muted); }
.compare .col-us { background: var(--bg-dim); font-weight: 600; }
.compare .si { color: var(--fg); }
.compare .no { color: var(--muted); }

/* ---------- garantía ---------- */
.garantia-box { max-width: 44rem; }
.garantia-box .h2 { margin-bottom: 1rem; }
.garantia-box .promesa { font-size: clamp(1.25rem, 2.4vw, 1.5rem); font-weight: 600; line-height: 1.45; }
.garantia-box .metodo { margin-top: 1.25rem; color: var(--muted); }

/* ---------- precio (panel de máquina) ---------- */
.precio-panel {
  background: var(--machine-bg);
  color: var(--machine-fg);
  border: 1px solid var(--machine-line);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(2rem, 5vw, 3.25rem);
  max-width: 560px;
}
.precio-panel .mono.muted { color: var(--machine-muted); }
.precio-tag { display: flex; align-items: baseline; gap: 0.9rem; flex-wrap: wrap; margin-top: 0.75rem; }
.precio-antes {
  font-family: var(--font-mono); font-size: 1.25rem; color: var(--machine-muted);
  text-decoration: line-through; text-decoration-thickness: 2px;
}
.precio-ahora {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: clamp(2.75rem, 7vw, 3.75rem); font-weight: 700; line-height: 1;
}
.precio-usd { color: var(--machine-muted); font-size: 1rem; }
.precio-lista { list-style: none; margin: 1.75rem 0; padding: 0; }
.precio-lista li {
  padding: 0.6rem 0; border-top: 1px solid var(--machine-line-soft);
  display: flex; gap: 0.75rem; align-items: baseline; font-size: 0.9375rem;
}
.precio-lista li::before { content: "→"; font-family: var(--font-mono); color: var(--machine-muted); }
.precio-nota { margin-top: 1rem; color: var(--machine-muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; }
.faq details { border-top: 1px solid var(--hairline); }
.faq details:last-child { border-bottom: 1px solid var(--hairline); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 0; font-weight: 600; font-size: 1.0625rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 1.15rem; color: var(--muted);
  transition: transform 200ms var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 0 1.25rem; color: var(--muted); max-width: 40rem; }
/* `:not(.btn)`: sin esto el enlace-boton de /gracias salia con texto verde sobre
   fondo negro (el color del enlace le ganaba al del boton). */
.faq .faq-body a, .support-card a:not(.btn), .legal-page a:not(.btn) {
  color: var(--accent); text-decoration-color: color-mix(in srgb, var(--accent) 45%, transparent);
}
.faq .faq-body a:hover, .support-card a:not(.btn):hover, .legal-page a:not(.btn):hover {
  color: var(--accent-strong);
}

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--hairline-soft); padding-block: 3rem 3.5rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.9375rem; }
.footer-links a:hover { color: var(--fg); }
.footer-legal { margin-top: 2rem; color: var(--muted); font-size: 0.8125rem; max-width: 52rem; line-height: 1.7; }

/* ---------- reveals: visibles por defecto; JS solo agrega .is-pre si puede animar ---------- */
@media (prefers-reduced-motion: no-preference) {
  .will-reveal {
    transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  }
  .will-reveal.is-pre { opacity: 0; transform: translateY(14px); }
}

/* ---------- páginas de soporte ---------- */
.support-page { min-height: 70vh; display: grid; place-items: center; padding-block: 5rem; }
.support-card { max-width: 34rem; }
.support-card .h2 { margin-bottom: 1rem; }
.support-card p { color: var(--muted); margin-bottom: 1rem; }
.support-card p strong { color: var(--fg); }

.legal-page { padding-block: 4rem 6rem; }
.legal-page article { max-width: 44rem; }
.legal-page h2 { margin: 2.5rem 0 0.75rem; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page p strong { color: var(--fg); }
