/* ==========================================================================
   Chronoix — hoja de estilo única
   Mobile-first de verdad: la base es el teléfono y sólo se AÑADE con min-width.
   Cero terceros: sin CDN, sin analítica, sin fuentes remotas, sin scripts.
   ========================================================================== */

/* --- Tipografía auto-hospedada (Inter, SIL OFL — ver fonts/Inter-LICENSE.txt) --- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-600.woff2") format("woff2");
}

/* ==========================================================================
   Tokens
   Los grises son los del modo oscuro de iOS, que es lo que usa la app en la
   captura de referencia. El acento es el verde de marca, #d1ec52.
   ========================================================================== */
:root {
  --bg: #000000;
  --surface: #1c1c1e;      /* tarjeta */
  --surface-2: #2c2c2e;    /* tarjeta dentro de tarjeta */
  --border: #38383a;
  --border-soft: #2a2a2c;

  --text: #ffffff;
  --text-2: #a1a1a6;
  --text-3: #8e8e93;

  --accent: #d1ec52;
  --accent-hover: #dff275;
  --accent-dim: rgba(209, 236, 82, .14);
  --on-accent: #0d1200;    /* sobre el verde va texto oscuro, nunca blanco */

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --radius-xl: 28px;       /* tarjetas grandes */
  --radius: 16px;
  --radius-sm: 10px;

  --container: 1194px;
  --reading: 680px;
  --gutter: 16px;          /* medido: 16px en los dos breakpoints, no crece */

  --header-h: 56px;        /* medido: 56 en móvil, 60 en escritorio */
  --rhythm: 2rem;

  /* Escalas medidas sobre la referencia renderizada a 393px y a 1440px, e
     interpoladas para que no salten en las tallas intermedias. */
  --fs-h1:      clamp(40px, 28.00px + 3.06vw, 72px);   /* 40 → 72 */
  --fs-title:   clamp(36px, 25.50px + 2.67vw, 64px);   /* 36 → 64 */
  --fs-title-sm:clamp(36px, 28.50px + 1.91vw, 56px);   /* 36 → 56, banner */
  --fs-kicker:  clamp(14px, 13.25px + 0.19vw, 16px);   /* 14 → 16 */
  --fs-lead:    clamp(16px, 15.25px + 0.19vw, 18px);   /* 16 → 18 */
  --fs-faq:     clamp(20px, 18.50px + 0.38vw, 24px);   /* 20 → 24 */
  --pad-section:clamp(64px, 58.00px + 1.53vw, 80px);   /* 64 → 80 */

  --shadow-card: 0 8px 24px rgba(0, 0, 0, .5), 0 2px 6px rgba(0, 0, 0, .4);
}

/* --- Reset acotado --- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;         /* medido en la referencia: 16px / 1.6 */
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

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

/* --- Contenedores --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.reading { max-width: var(--reading); margin-inline: auto; }

/* --- Enlaces --- */
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.prose a, .faq__a a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(209, 236, 82, .45);
}
.prose a:hover, .faq__a a:hover { text-decoration-color: var(--accent-hover); }

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

/* Se esconde hacia ARRIBA, no hacia la izquierda: un elemento a left:-9999px
   puede provocar scroll horizontal en algunos navegadores. */
.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transform: translateY(-200%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(10px); }

/* ==========================================================================
   Cabecera — una píldora flotante, no una barra pegada al ancho
   ========================================================================== */
/* Medido en la referencia: el envoltorio va sticky con 8px arriba en móvil y
   12px en escritorio; la píldora interior mide 56/60px de alto. Y el radio NO es
   999px en móvil: allí es un rectángulo de 18px. Sólo se vuelve píldora arriba. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 8px 0;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: var(--header-h);
  padding: 6px 6px 6px 14px;
  background: rgba(28, 28, 30, .88);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  min-height: 44px;
}
.brand:hover { color: var(--text); }
.brand__mark { width: 24px; height: 24px; flex: 0 0 24px; }
.brand__word {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--text); background: var(--surface-2); }
.site-nav a[aria-current="page"] { color: var(--text); background: var(--surface-2); }

/* ==========================================================================
   Cabecera de página (documentos: privacidad, soporte)
   ========================================================================== */
.page-head { padding: 24px 0 20px; }
.breadcrumb {
  font-size: 14px;
  color: var(--text-3);
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--text-3); }

.page-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(36px, 9vw, 52px);
  line-height: 1.1;
  letter-spacing: -.025em;
}
.page-meta {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--text-2);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.page-meta strong { color: var(--text); font-weight: 600; }

.rule { height: 1px; background: var(--border); border: 0; margin: 24px 0 0; }

/* ==========================================================================
   Prosa
   ========================================================================== */
/* Los documentos largos suben a 17px: el cuerpo de la referencia son 16px, pero
   una política de privacidad se lee de arriba abajo y agradece el punto extra. */
.prose { padding: 8px 0; font-size: 17px; line-height: 1.65; }
.prose > * { margin-block: 0 var(--rhythm); }
.prose > *:last-child { margin-bottom: 0; }

.prose h2 {
  margin-top: calc(var(--rhythm) + 1rem);
  margin-bottom: .75rem;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -.01em;
  scroll-margin-top: calc(var(--header-h) + 26px);
}
.prose h2:first-child { margin-top: 0; }
.toc + h2 { margin-top: var(--rhythm); }

.prose h3 { margin-top: var(--rhythm); margin-bottom: .5rem; font-weight: 600; font-size: 18px; line-height: 1.4; }
.prose p { margin: 0 0 var(--rhythm); color: #e6e6ea; }
.prose strong { color: var(--text); font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 var(--rhythm); padding-left: 1.25em; }
.prose li { margin-bottom: .5rem; color: #e6e6ea; }
.prose li::marker { color: var(--text-3); }
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .1em .4em;
}
.prose hr { border: 0; height: 1px; background: var(--border); margin: calc(var(--rhythm) + .5rem) 0; }

.callout {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
  margin: 0 0 var(--rhythm);
}
.callout > *:last-child { margin-bottom: 0; }
.callout--accent { border-color: rgba(209, 236, 82, .3); background: var(--accent-dim); }

.address { font-style: normal; line-height: 1.7; color: #e6e6ea; }

.u-mt { margin-top: 14px; }
.u-mb0 { margin-bottom: 0; }

/* Índice */
.toc {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 8px;
  margin: 0 0 var(--rhythm);
}
.toc summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-sm);
}
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid var(--text-2);
  border-bottom: 2px solid var(--text-2);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
  flex: 0 0 auto;
}
.toc[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.toc ol { margin: 4px 0 8px; padding: 0 12px 0 32px; }
.toc li { margin: 0; }
.toc li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
}
.toc li a:hover { color: var(--accent); }

/* ==========================================================================
   Botones
   ========================================================================== */
.actions { display: flex; flex-direction: column; gap: 12px; margin: 0 0 var(--rhythm); }
/* Medido: 48px de alto y 16px de letra en móvil, 54px y 18px en escritorio;
   radio 100px y padding lateral generoso (40 → 54px). */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: clamp(48px, 45.75px + .57vw, 54px);
  padding: 0 clamp(40px, 34.75px + 1.34vw, 54px);
  border-radius: 100px;
  font-weight: 600;
  font-size: clamp(16px, 15.25px + .19vw, 18px);
  text-align: center;
  border: 1px solid transparent;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-hover); color: var(--on-accent); }
.btn--ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--text-3); color: var(--text); background: var(--surface); }

/* ==========================================================================
   Secciones anchas
   ========================================================================== */
/* Medido: 64px de padding vertical en móvil, 80px en escritorio. */
.section { padding: var(--pad-section) 0; }
.section--tint { background: var(--surface); position: relative; overflow: hidden; }
/* El hero lleva más aire arriba que abajo: 64/40 en móvil, 80/32 en escritorio. */
.section--hero { padding-bottom: clamp(32px, 43px - .76vw, 40px); }

.section-header { margin-bottom: 2rem; }
.section-header--center { text-align: center; }

/* El antetítulo NO va en color de acento: en la referencia es gris secundario a
   14/16px en mayúsculas. Un acento que se gasta aquí ya no destaca abajo. */
.kicker {
  margin: 0 0 clamp(12px, 10.5px + .38vw, 16px);
  font-size: var(--fs-kicker);
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-2);
}
.section-title {
  margin: 0;
  font-weight: 700;              /* medido: 700, no 600 */
  font-size: var(--fs-title);
  line-height: 1.3;              /* medido: 46.8/36 y 83.2/64 = 1.3 */
  letter-spacing: .2px;
}
/* La segunda línea del titular, en acento y cursiva, con peso 600. */
.section-title em { font-style: italic; font-weight: 600; color: var(--accent); }

/* El titular del hero es el mayor de la página: 40 → 72px. */
.section-title--hero {
  font-weight: 600;
  font-size: var(--fs-h1);
  line-height: 1.1;
  letter-spacing: .01em;
}

.section-lead {
  margin: clamp(16px, 13px + .76vw, 24px) 0 0;
  max-width: 445px;
  color: var(--text-2);
  font-size: var(--fs-lead);
  line-height: 1.6;
}
.section-header--center .section-lead { margin-inline: auto; }

.split { display: grid; gap: 32px; align-items: center; }

/* La curva que corta el bloque teñido y lo cose con el fondo. */
.section__curve {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: 130%;
  min-width: 640px;
  height: auto;
  fill: var(--bg);
  pointer-events: none;
}

/* ==========================================================================
   Escena de producto — el disco de color con las esferas encima
   ========================================================================== */
.stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
/* El disco tiene que verse: es el golpe de color de toda la página. Las esferas
   se apoyan en él, no lo tapan. */
.stage__disc {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background: var(--accent);
}
.stage__face {
  position: absolute;
  width: 38%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .6));
}
.stage__face--back  { left: 10%;  top: 34%; transform: rotate(-10deg); }
.stage__face--front { right: 8%; top: 12%;  transform: rotate(8deg); width: 43%; }

/* Variante para una captura vertical: el disco queda de fondo y la imagen lo
   desborda por arriba y por abajo, como los relojes desbordan el círculo en la
   referencia. `max-width: none` es necesario porque el reset global pone 100%. */
/* El disco ocupa el contenedor entero: la captura es estrecha y vertical, así que
   un disco menor quedaba tapado por el teléfono y asomaba sólo por un lado, que
   se lee como un error de recorte y no como fondo. */
.stage--shot .stage__disc { inset: 0; }
.stage__shot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 108%;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, .62));
}

/* Fila de esferas para el banner */
.lineup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px 0;
}
/* Un halo de color detrás de la fila, para que la tarjeta no sea gris sobre negro. */
.lineup::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 236, 82, .55) 0%, rgba(209, 236, 82, .18) 45%, transparent 68%);
  pointer-events: none;
}
.lineup__face {
  width: 30%;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .5));
}
.lineup__face--side { opacity: .92; }
.lineup__face:nth-child(1) { transform: rotate(-8deg) translateX(14%); z-index: 1; }
.lineup__face:nth-child(2) { width: 36%; z-index: 3; }
.lineup__face:nth-child(3) { transform: rotate(8deg) translateX(-14%); z-index: 2; }

/* La tarjeta del banner: un objeto con su propio fondo, no una franja a sangre. */
/* Medido: radio 32px, y padding 48px 24px en móvil / 80px 40px 68px 56px arriba. */
.promo {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(120% 130% at 88% 22%, rgba(209, 236, 82, .30) 0%, rgba(209, 236, 82, .06) 42%, transparent 70%),
    var(--surface);
  border: 1px solid var(--border-soft);
  padding: 48px 24px;
}
.promo .section-header { margin-bottom: 1.5rem; }
.promo .section-title { font-size: var(--fs-title-sm); }

/* ==========================================================================
   Preguntas frecuentes — <details> nativo, cero JavaScript
   ========================================================================== */
.faq { border-top: 1px solid var(--border-soft); }
.faq__item { border-bottom: 1px solid var(--border-soft); }

/* Medido: 20 → 24px, y padding 24px arriba y abajo con 40px libres a la derecha. */
.faq__q {
  position: relative;
  cursor: pointer;
  list-style: none;
  display: block;
  padding: 24px 40px 24px 0;
  font-size: var(--fs-faq);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}
.faq__q::-webkit-details-marker { display: none; }

/* El signo «+» son dos barras del color de acento; al abrir, la vertical gira
   hasta tumbarse y queda un «−». Sin iconos, sin fuentes, sin script. */
.faq__q::before,
.faq__q::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 3px;
  margin-top: -1.5px;
  background: var(--accent);
  border-radius: 100px;
  transition: transform .3s ease;
}
.faq__q::before { transform: rotate(90deg); }
.faq__item[open] .faq__q::before { transform: rotate(0); }
.faq__q:hover { color: var(--accent); }

.faq__a { padding: 0 0 22px; color: #e6e6ea; }
.faq__a > *:first-child { margin-top: 0; }
.faq__a > *:last-child { margin-bottom: 0; }
.faq__a p { margin: 0 0 1rem; }
.faq__a ol, .faq__a ul { margin: 0 0 1rem; padding-left: 1.25em; }
.faq__a li { margin-bottom: .4rem; }

/* ==========================================================================
   Formulario
   ========================================================================== */
.form { max-width: 450px; margin-inline: auto; }
.field { position: relative; margin-bottom: 14px; }

/* Medido: 18px de letra, padding 12.6/16, radio 8px, 56px de alto. */
.field input,
.field textarea {
  display: block;
  width: 100%;
  padding: 12.6px 16px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--accent); }

/* Etiqueta flotante: hace de marcador y desaparece al escribir. La asociación
   for/id se mantiene, así que un lector de pantalla la sigue anunciando. */
.field label {
  position: absolute;
  left: 16px;
  top: 12.6px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-3);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.field input:focus ~ label,
.field textarea:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  opacity: 0;
  transform: translateX(.5rem);
}

.form .btn { width: 100%; margin-top: 6px; }
.form__note { margin: 14px 0 0; font-size: 14px; color: var(--text-3); text-align: center; }
.form__note a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Pie
   ========================================================================== */
.site-footer {
  margin-top: 56px;
  border-top: 1px solid var(--border-soft);
  padding: 32px 0 calc(32px + env(safe-area-inset-bottom, 0px));
  color: var(--text-2);
  font-size: 14px;
}
.site-footer__grid { display: grid; gap: 24px; }
.site-footer__brand .brand { margin-bottom: 12px; }
.site-footer__tag { margin: 0; max-width: 34ch; color: var(--text-2); }
.footer-heading {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 0; }
.footer-links a { display: inline-flex; align-items: center; min-height: 44px; color: var(--text-2); }
.footer-links a:hover { color: var(--accent); }
.site-footer__legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-3);
  font-size: 13px;
}
.site-footer__legal p { margin: 0 0 4px; }

/* ==========================================================================
   Tableta y escritorio — sólo se AÑADE a partir de aquí
   ========================================================================== */
@media (min-width: 640px) {
  .actions { flex-direction: row; flex-wrap: wrap; }
  .brand__mark { width: 26px; height: 26px; flex: 0 0 26px; }
  .brand__word { font-size: 17px; letter-spacing: .13em; }
  .site-nav { gap: 4px; }
  .site-nav a { font-size: 15px; padding: 0 14px; }
  .form .btn { width: auto; min-width: 100%; }
}

@media (min-width: 768px) {
  :root { --rhythm: 2.25rem; }
  .page-head { padding: 40px 0 24px; }
  .prose h2 { font-size: 26px; }
  .prose h3 { font-size: 19px; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  .site-footer { padding-top: 44px; }
  .section-header { margin-bottom: 2.5rem; }
  .stage { max-width: 470px; }   /* medido: la imagen del hero nunca pasa de 470 */
}

@media (min-width: 1024px) {
  :root { --header-h: 60px; }
  .site-header { padding: 12px 0; }
  .site-header__inner { border-radius: 999px; padding: 8px 9px 8px 16px; }
  .page-head { padding: 52px 0 28px; }
  .section-header { margin-bottom: 3rem; }

  /* Las dos columnas se abren aquí, no antes: por debajo de esto la imagen
     quedaría demasiado pequeña para leerse y el texto demasiado estrecho. */
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  /* El bloque de preguntas es más ancho que su titular: 5 y 7 de 12, como la
     referencia. El titular no necesita el mismo ancho que una lista larga. */
  .split--faq { grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
  .split--faq .section-header { margin-bottom: 0; }
  .promo { padding: 80px 40px 68px 56px; }   /* medido */
}

@media (hover: hover) and (pointer: fine) {
  .toc li a:hover { padding-left: 4px; transition: padding-left .18s ease; }
}

/* Impresión: que una política se pueda imprimir en negro sobre blanco. */
@media print {
  :root { --bg: #fff; --text: #000; --text-2: #333; --border: #ccc; --border-soft: #ddd; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .site-header, .site-nav, .toc, .skip-link, .actions, .stage, .lineup, .promo { display: none !important; }
  .prose a { color: #000; text-decoration: underline; }
  .prose a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .callout { border: 1px solid #ccc; background: #fff; }
}
