/* =========================================================================
   SANAR — Landing de ads (tráfico frío Meta / TikTok)
   Psicología Nocturna
   -------------------------------------------------------------------------
   Estilo: minimalismo cálido y editorial. Fondo claro en toda la página,
   banda oscura "nocturna" solo en hero y cierre.
   ========================================================================= */

/* ---------- Reset ligero ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  scroll-padding-bottom: 96px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.band--night :focus-visible,
.site-footer :focus-visible { outline-color: var(--focus-light); }

/* ---------- Tokens ---------- */
:root {
  --bg:            #FBF7F2;
  --surface:       #FFFFFF;
  --muted:         #F3EDE3;
  --ink:           #1F1B17;
  --ink-muted:     #5A5148;
  --primary:       #7C4A3A;
  --accent:        #A94D28;
  --accent-hover:  #8F3F20;
  --night:         #211B2E;
  --night-2:       #2A2340;
  --on-night:      #F4EFE9;
  --on-night-muted:#B9AFC4;
  --border:        #E7DED2;
  --success:       #3F6B4C;
  --gold:          #d4a857;   /* acento dorado de marca: luna, eyebrow, micro-trust */
  --focus-light:   var(--gold);

  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --s-xs: 0.5rem;   --s-sm: 1rem;    --s-md: 1.5rem;
  --s-lg: 2rem;     --s-xl: 3rem;    --s-2xl: 4rem;   --s-3xl: 6rem;

  --maxw: 1080px;
  --prose: 42rem;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(31,27,23,.06), 0 2px 8px rgba(31,27,23,.05);
  --shadow-md: 0 8px 30px -12px rgba(31,27,23,.18);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (min-width: 768px) { body { font-size: 1.125rem; } }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.6vw + 1rem, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.55rem, 2.4vw + 0.7rem, 2.3rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.125rem, 0.6vw + 1rem, 1.35rem); }

p { text-wrap: pretty; }
strong { font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 44px);
}
.prose { max-width: var(--prose); }
.prose p + p { margin-top: var(--s-md); }

.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section--muted { background: var(--muted); }
.section__head { max-width: var(--prose); margin-bottom: var(--s-lg); }
.section__head p { margin-top: var(--s-sm); color: var(--ink-muted); }

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* =========================================================================
   BANDA OSCURA (hero + cierre)
   ========================================================================= */
.band--night {
  background: var(--night);
  background-image: radial-gradient(60% 80% at 80% 0%, rgba(212,168,87,.12), transparent 60%);
  color: var(--on-night);
}
.band--night h1, .band--night h2 { color: var(--on-night); }

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-sm);
  padding-top: clamp(16px, 3vw, 22px);
  padding-bottom: clamp(8px, 2vw, 14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.brand__moon {
  color: var(--gold);
  flex: none;
  width: 1.65em;
  height: 1.65em;
}
.site-header__trust {
  font-size: .8rem;
  color: var(--on-night-muted);
  letter-spacing: .02em;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.15fr 0.85fr; }
}
.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--focus-light);
  margin-bottom: var(--s-sm);
}
.hero__sub {
  margin-top: var(--s-md);
  font-size: 1.075rem;
  line-height: 1.6;
  color: var(--on-night-muted);
  max-width: 34rem;
}
.hero__sub strong { color: var(--on-night); }
.hero .btn { margin-top: var(--s-lg); }

.hero__microtrust {
  list-style: none;
  padding: 0;
  margin-top: var(--s-lg);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  font-size: .9rem;
  color: var(--on-night-muted);
}
.hero__microtrust li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__microtrust svg { color: var(--focus-light); flex: none; }

.hero__media { justify-self: center; }
.mockup {
  width: clamp(240px, 72vw, 420px);
  height: auto;
  filter: drop-shadow(0 26px 46px rgba(0,0,0,.45));
  border-radius: 10px;
}
.brand-emblem {
  width: clamp(116px, 32vw, 164px);
  height: auto;
  border-radius: 50%;
}

/* =========================================================================
   FRANJA DE OFERTA RÁPIDA
   ========================================================================= */
.offerbar {
  background: var(--night-2);
  color: var(--on-night);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.offerbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
  padding-block: clamp(1.1rem, 3vw, 1.6rem);
}
.offerbar__price { display: flex; flex-direction: column; gap: 4px; max-width: 44rem; }
.offerbar__label {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--focus-light);
}
.price { display: flex; align-items: baseline; gap: .6rem; font-family: var(--font-serif); }
.price__old { font-size: 1.1rem; color: var(--on-night-muted); text-decoration: line-through; }
.price__now { font-size: 1.8rem; font-weight: 600; }
.offerbar__note { font-size: .82rem; color: var(--on-night-muted); line-height: 1.5; }

/* =========================================================================
   BOTONES
   ========================================================================= */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .8rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  background: var(--btn-bg);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(169,77,40,.7);
  transition: background-color .2s ease, transform .12s ease, box-shadow .2s ease;
  text-align: center;
}
.btn svg { flex: none; }
.btn--primary:hover { background: var(--accent-hover); }
.btn--primary:active { transform: translateY(1px); }
.btn--lg { min-height: 54px; padding: 1rem 1.9rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }
.btn.is-loading { opacity: .8; pointer-events: none; }

/* =========================================================================
   QUIÉN ESTÁ DETRÁS
   ========================================================================= */
.author__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}
@media (min-width: 720px) {
  .author__grid { grid-template-columns: 180px 1fr; }
}
.author__media { justify-self: center; }
.author__copy p + p { margin-top: var(--s-md); }
.callout {
  margin-top: var(--s-lg);
  padding: var(--s-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: .96rem;
  color: var(--ink-muted);
}
.callout strong { color: var(--ink); }

/* =========================================================================
   CARDS (qué hay adentro / bonos)
   ========================================================================= */
.cards {
  list-style: none;
  padding: 0;
  margin-top: var(--s-xl);
  display: grid;
  gap: var(--s-md);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.cards--3 { margin-top: var(--s-lg); }
@media (min-width: 620px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-md);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .96rem; color: var(--ink-muted); }
.card--bonus { display: flex; flex-direction: column; gap: .5rem; }
.tag {
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
}
.card__value {
  margin-top: auto;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: .02em;
}
.bonuses__hero {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 0 auto var(--s-xl);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.bonuses__total {
  margin-top: var(--s-lg);
  font-size: 1rem;
  color: var(--ink-muted);
}
.bonuses__total strong { color: var(--ink); font-family: var(--font-serif); }

/* ---------- Preview interior ---------- */
.preview {
  margin-top: var(--s-xl);
  display: flex;
  gap: clamp(.75rem, 3vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
}
.preview__page {
  width: clamp(120px, 26vw, 190px);
  height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}
.preview__page:nth-child(2) { transform: translateY(-10px); }

/* ---------- Índice del libro ---------- */
.toc {
  max-width: 44rem;
  margin: var(--s-xl) auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-md);
}
.toc__lead {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--s-xs);
}

/* Títulos de capítulo: siempre visibles */
.toc__chapters {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}
.toc__chapters li {
  position: relative;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  padding: .6rem 0 .6rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.toc__chapters li:last-child { border-bottom: 0; }
.toc__chapters li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.02rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

/* Detalle de secciones y ejercicios: dentro del desplegable */
.toc__detail {
  border-top: 1px solid var(--border);
  margin-top: var(--s-sm);
}
.toc__detail > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0 .3rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  min-height: 48px;
}
.toc__detail > summary::-webkit-details-marker { display: none; }
.toc__chev { flex: none; transition: transform .2s ease; }
.toc__detail[open] > summary .toc__chev { transform: rotate(180deg); }
.toc__detail[open] > summary {
  border-bottom: 1px solid var(--border);
  padding-bottom: .9rem;
}
.toc__body { padding-top: var(--s-md); }
.toc__full { list-style: none; padding: 0; display: grid; gap: var(--s-md); }
.toc__full > li > strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: .35rem;
}
.toc__full ul {
  list-style: none;
  padding-left: var(--s-md);
  display: grid;
  gap: .3rem;
  border-left: 2px solid var(--border);
}
.toc__full ul li { font-size: .92rem; color: var(--ink-muted); }

/* =========================================================================
   STEPS (cómo lo recibís)
   ========================================================================= */
.steps {
  list-style: none;
  padding: 0;
  margin-top: var(--s-lg);
  display: grid;
  gap: var(--s-md);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-md);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--night);
  color: var(--on-night);
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: var(--s-sm);
}
.step h3 { margin-bottom: .4rem; }
.step p { font-size: .96rem; color: var(--ink-muted); }
.fineprint {
  margin-top: var(--s-md);
  font-size: .86rem;
  color: var(--ink-muted);
}

/* =========================================================================
   RESEÑAS (oculta hasta tener reales)
   ========================================================================= */
.reviews__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--s-md);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .reviews__list { grid-template-columns: repeat(2, 1fr); } }
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-md);
  box-shadow: var(--shadow-sm);
}
.review__text { font-size: 1rem; }
.review__author {
  margin-top: var(--s-sm);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-muted);
}
.reviews__disclaimer {
  margin-top: var(--s-md);
  font-size: .82rem;
  color: var(--ink-muted);
  font-style: italic;
}

/* =========================================================================
   OFERTA PRINCIPAL
   ========================================================================= */
.offer__card {
  max-width: 40rem;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(1.5rem, 5vw, 2.75rem);
  box-shadow: var(--shadow-md);
}
.offer__card h2 { margin-bottom: var(--s-md); }
.offer__list { list-style: none; padding: 0; display: grid; gap: .7rem; }
.offer__list li {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: .7rem;
  align-items: start;
  font-size: .96rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
}
.offer__list svg { color: var(--success); margin-top: 3px; }
.offer__list em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.offer__pricing { margin: var(--s-lg) 0; text-align: center; }
.offer__total { color: var(--ink-muted); }
.offer__total s { font-variant-numeric: tabular-nums; }
.offer__price {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  margin: .2rem 0;
}
.offer__price span {
  display: block;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}
.offer__terms { font-size: .86rem; color: var(--ink-muted); }
.offer__reassure {
  margin-top: var(--s-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .84rem;
  color: var(--ink-muted);
  text-align: center;
}
.offer__reassure svg { color: var(--success); flex: none; }

/* =========================================================================
   GARANTÍA
   ========================================================================= */
.guarantee {
  display: grid;
  gap: var(--s-lg);
  align-items: center;
}
@media (min-width: 720px) { .guarantee { grid-template-columns: auto 1fr; } }
.guarantee__badge {
  justify-self: center;
  width: 96px; height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--success);
  color: var(--success);
}
.guarantee__copy p { margin-top: var(--s-sm); color: var(--ink-muted); }
.guarantee__copy a { color: var(--primary); text-decoration: underline; }

/* =========================================================================
   PARA QUIÉN
   ========================================================================= */
.audience__grid {
  display: grid;
  gap: var(--s-md);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .audience__grid { grid-template-columns: 1fr 1fr; } }
.audience__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-lg);
}
.audience__col h3 { margin-bottom: var(--s-md); }
.audience__col ul { padding-left: 0; list-style: none; display: grid; gap: .7rem; }
.audience__col li {
  position: relative;
  padding-left: 1.9rem;
  font-size: .96rem;
  color: var(--ink-muted);
}
.audience__col li::before {
  position: absolute;
  left: 0; top: .05rem;
  font-weight: 700;
  font-size: 1.05rem;
}
.audience__col--yes { border-top: 4px solid var(--success); }
.audience__col--yes li::before { content: "✓"; color: var(--success); }
.audience__col--no { border-top: 4px solid var(--primary); }
.audience__col--no li::before { content: "—"; color: var(--primary); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq__list {
  max-width: 46rem;
  border-top: 1px solid var(--border);
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  min-height: 48px;
}
.faq__chev { flex: none; color: var(--ink-muted); transition: transform .2s ease; }
.faq__q[aria-expanded="true"] .faq__chev { transform: rotate(180deg); }
.faq__a { padding: 0 0 1.15rem; }
.faq__a p { font-size: .98rem; color: var(--ink-muted); }
.faq__a a { color: var(--primary); text-decoration: underline; }

/* =========================================================================
   CIERRE
   ========================================================================= */
.closing {
  text-align: center;
  padding-block: clamp(3.5rem, 9vw, 6rem);
  max-width: 42rem;
}
.closing p { margin-top: var(--s-md); color: var(--on-night-muted); }
.closing .btn { margin-top: var(--s-lg); }
.closing__note { font-size: .86rem; margin-top: var(--s-md); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: var(--s-2xl) var(--s-2xl);
  font-size: .85rem;
  color: var(--ink-muted);
}
.site-footer .container { display: grid; gap: var(--s-sm); max-width: 46rem; }
.site-footer__brand { font-size: .95rem; color: var(--ink); }
.site-footer a { color: var(--primary); text-decoration: underline; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-footer__disclaimer {
  margin-top: var(--s-sm);
  padding-top: var(--s-md);
  border-top: 1px solid var(--border);
  line-height: 1.55;
}
.site-footer__legal { font-size: .78rem; }

/* =========================================================================
   BARRA FIJA MÓVIL
   ========================================================================= */
.stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-sm);
  padding: .7rem clamp(16px, 5vw, 24px);
  padding-bottom: calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: var(--night);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,.4);
  transform: translateY(110%);
  transition: transform .25s ease;
}
.stickybar.is-visible { transform: translateY(0); }
.stickybar__info { display: flex; flex-direction: column; line-height: 1.25; color: var(--on-night); }
.stickybar__price { font-family: var(--font-serif); font-weight: 600; font-size: 1.15rem; }
.stickybar__sub { font-size: .72rem; color: var(--on-night-muted); }
.stickybar .btn { min-height: 44px; padding: .6rem 1.2rem; font-size: .95rem; box-shadow: none; }

@media (min-width: 900px) {
  .stickybar { display: none !important; }
}
@media (max-width: 899px) {
  body { padding-bottom: 76px; }
}

/* =========================================================================
   ANIMACIÓN DE ENTRADA (progressive enhancement)
   ========================================================================= */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.js [data-reveal].in-view {
  opacity: 1;
  transform: none;
}

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

/* =========================================================================
   PÁGINAS LEGALES (terminos / privacidad / reembolso)
   ========================================================================= */
.legal-header {
  background: var(--night);
  color: var(--on-night);
}
.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-sm);
  padding-block: clamp(14px, 3vw, 20px);
}
.legal-header a { color: var(--on-night-muted); text-decoration: none; font-size: .9rem; }
.legal-header a:hover { color: var(--on-night); }

.legal-main {
  max-width: 46rem;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 44px);
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
}
.legal-main h1 { margin-bottom: .5rem; }
.legal-updated {
  color: var(--ink-muted);
  font-size: .88rem;
  margin-bottom: var(--s-xl);
}
.legal-main h2 {
  font-size: clamp(1.2rem, 1.6vw + .8rem, 1.5rem);
  margin-top: var(--s-xl);
  margin-bottom: var(--s-sm);
}
.legal-main p { margin-bottom: var(--s-md); }
.legal-main ul { margin: 0 0 var(--s-md) 1.25rem; display: grid; gap: .4rem; }
.legal-main li { padding-left: .25rem; }
.legal-main a { color: var(--primary); text-decoration: underline; }
.legal-main strong { color: var(--ink); }

.legal-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--s-xl);
  text-align: center;
  font-size: .82rem;
  color: var(--ink-muted);
}
.legal-footer a { color: var(--primary); }
