/* ==========================================================================
   Solar Agent Squad — Propuesta Fable V1 (2026-08-14)
   Sistema: antracita + naranja/dorado. Sin dependencias externas.
   Tipografía: system stack (display contundente) + monospace de sistema
   para datos/etiquetas — la página entera respira "ficha técnica".
   ========================================================================== */

:root {
  --ink:        #14181f;   /* antracita profundo */
  --ink-2:      #1c222c;   /* antracita elevado */
  --ink-3:      #262e3a;   /* bordes sobre oscuro */
  --paper:      #f7f5f0;   /* blanco roto cálido */
  --paper-2:    #efece4;   /* papel sombreado */
  --line:       #dcd7cc;   /* líneas sobre claro */
  --amber:      #e8761a;   /* naranja marca */
  --amber-deep: #b95c0e;   /* naranja profundo (texto accesible sobre claro) */
  --muted:      #5c6470;   /* gris texto secundario */
  --muted-dark: #9aa3b0;   /* gris sobre oscuro */
  --ok:         #2f9e63;   /* verde confirmación, uso mínimo */

  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 1120px;
  --radius: 14px;
  --radius-sm: 8px;
}

/* ---------- Base ---------- */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }
html.reduced-motion { scroll-behavior: auto; }

body {
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ---------- Tipografía ---------- */

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.005em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber-deep);
  margin-bottom: 14px;
}
.eyebrow-dark { color: var(--amber); }

.section-intro {
  max-width: 620px;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Revelado progresivo ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js .reveal.in { opacity: 1; transform: none; }
.no-js .reveal,
.reduced-motion .reveal { opacity: 1; transform: none; transition: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Header ---------- */

.site-header {
  background: var(--ink);
  border-bottom: 1px solid var(--ink-3);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }

.brand-product {
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.brand-by {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 22px; min-width: 0; }

.nav a {
  color: #d7dbe2;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a:hover { color: #fff; }

.nav-cta {
  background: var(--amber);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}
.nav-cta:hover { background: #f5871f; }

/* ---------- Botones ---------- */

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover { background: #f5871f; }

.btn-ghost {
  color: #e8ebf0;
  border: 1px solid var(--ink-3);
}
.btn-ghost:hover { border-color: var(--muted-dark); color: #fff; }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero-body {
  color: #c6ccd6;
  max-width: 520px;
  margin-top: 20px;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted-dark);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* ---------- La ficha (protagonista) ---------- */

.ficha {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.ficha-ribbon {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--amber-deep);
  background: #f9e9d8;
  border-bottom: 1px solid #eeD9bf;
  padding: 8px 18px;
}

.ficha-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 4px;
}

.ficha-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.ficha-addr { display: flex; flex-direction: column; gap: 6px; }

.addr-check {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ok);
}

.addr-demo {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.chip-priority { background: var(--amber); color: #fff; }
.chip-neutral  { background: #e3dfd5; color: #4d5560; }
.chip-closed   { background: #e9e5dc; color: #757d89; text-transform: none; letter-spacing: 0.02em; }
.chip-sm { font-size: 0.66rem; padding: 5px 10px; }

.ficha-data {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 16px;
}

.fd { background: var(--paper); padding: 13px 18px; }
.fd-wide { grid-column: 1 / -1; }

.fd dt {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 3px;
}

.fd dd {
  font-size: 1.06rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.ficha-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 13px 18px 15px;
}

.foot-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}
.dot-ok { background: var(--ok); }

/* ---------- Secciones base ---------- */

.section { padding: 84px 0; }
.section-alt { background: var(--paper-2); }

.section-close {
  margin-top: 34px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.demo-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-deep);
  background: #f5e6d4;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- Problema ---------- */

.problema-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}

.problema-copy p { margin-top: 16px; color: #3a414c; max-width: 540px; }
.problema-copy h2 { margin-top: 0; }

.bandeja {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(20, 24, 31, 0.07);
}

.bandeja-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  margin-bottom: 12px;
}

.bandeja-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 4px;
  border-top: 1px solid var(--paper-2);
}

.bandeja-lead {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}

.bandeja-chip {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: #8b93a0;
  background: var(--paper-2);
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.bandeja-question {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--amber-deep);
}

.callout {
  margin-top: 56px;
  padding: 26px 30px;
  border-left: 4px solid var(--amber);
  background: var(--paper-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.18rem;
  line-height: 1.45;
  max-width: 720px;
}
.callout strong { color: var(--amber-deep); }

/* ---------- El giro ---------- */

.giro {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.giro-line1 {
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 700;
  color: var(--muted-dark);
  letter-spacing: -0.01em;
}

.giro-line2 {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--amber);
  margin-top: 8px;
  text-wrap: balance;
}

.giro-sub {
  color: #c6ccd6;
  max-width: 560px;
  margin: 26px auto 0;
  font-size: 1.04rem;
}

/* ---------- Cómo decide ---------- */

.decide-steps {
  list-style: none;
  counter-reset: paso;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.decide-step {
  counter-increment: paso;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.decide-step::before {
  content: "0" counter(paso);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber-deep);
}

.decide-step p { font-size: 0.93rem; color: var(--muted); flex: 1; }

.artifact {
  font-family: var(--font-mono);
  font-size: 0.78rem !important;
  font-weight: 700;
  color: var(--ink) !important;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-variant-numeric: tabular-nums;
  flex: none !important;
}

/* ---------- Qué recibe tu comercial ---------- */

.entrega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  margin-top: 44px;
}

.entrega-card {
  border-radius: var(--radius);
  padding: 30px 30px 28px;
}

.entrega-comercial {
  background: var(--ink);
  color: #eef1f5;
}

.entrega-lead {
  background: #fff;
  border: 1px solid var(--line);
}

.entrega-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: var(--amber);
}
.entrega-lead .entrega-kicker { color: var(--amber-deep); }

.entrega-card h3 { font-size: 1.35rem; margin-bottom: 16px; }

.entrega-list { list-style: none; }

.entrega-list li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 0.96rem;
  color: #c9cfd8;
  border-top: 1px solid var(--ink-3);
}
.entrega-list li:first-child { border-top: 0; }
.entrega-list li strong { color: #fff; }

.entrega-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--amber);
}

.entrega-lead p { color: #3a414c; margin-top: 12px; font-size: 0.98rem; }
.entrega-lead p:first-of-type { margin-top: 0; }
.entrega-lead strong { color: var(--amber-deep); }

/* ---------- El valor del no ---------- */

.valorno-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.valorno-copy p { margin-top: 16px; color: #3a414c; max-width: 540px; }
.valorno-copy strong { color: var(--ink); }

.valorno-visual-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  margin-bottom: 12px;
}

.valorno-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.vn-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.vn-col-si { border-top: 3px solid var(--amber); }
.vn-col-no { border-top: 3px solid #b7bfca; }

.vn-head {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}

.vn-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--paper-2);
}

.vn-reason {
  font-size: 0.84rem;
  color: var(--muted);
}

/* ---------- Para quién ---------- */

.quien-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.quien-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.quien-col-no { background: var(--paper-2); }

.quien-title { margin-bottom: 18px; font-size: 1.2rem; }

.checklist { list-style: none; }

.checklist li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 0.97rem;
  color: #3a414c;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12.5l5 5L20 6.5"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12.5l5 5L20 6.5"/></svg>') center / contain no-repeat;
}

.checklist-no li::before {
  background: #8b93a0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="black" stroke-width="3.2" stroke-linecap="round"><path d="M6 12h12"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="black" stroke-width="3.2" stroke-linecap="round"><path d="M6 12h12"/></svg>') center / contain no-repeat;
}

.quien-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- Servicio gestionado ---------- */

.gestionado-box {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 44px;
  align-items: center;
}

.gestionado-copy p { margin-top: 16px; color: #3a414c; max-width: 540px; }

.condiciones { list-style: none; }

.condiciones li {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 13px 0 13px 26px;
  border-top: 1px solid var(--paper-2);
  position: relative;
  color: var(--ink);
}
.condiciones li:first-child { border-top: 0; }

.condiciones li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--amber);
}

.condiciones-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- Filosofía ---------- */

.section-dark {
  background: var(--ink);
  color: #fff;
  padding: 92px 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
}

.philosophy-title span { color: var(--amber); }

.philosophy-coda {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.02em;
}

.philosophy-body { color: #c6ccd6; font-size: 1.05rem; }

/* ---------- CTA final ---------- */

.section-cta {
  background: linear-gradient(180deg, var(--ink) 0%, #10141a 100%);
  color: #fff;
  padding: 100px 0 110px;
  text-align: center;
  border-top: 1px solid var(--ink-3);
}

.cta-inner { max-width: 680px; }

.cta-body {
  color: #c6ccd6;
  margin-top: 20px;
  font-size: 1.05rem;
}

.cta-actions { margin-top: 32px; }

.cta-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--muted-dark);
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; gap: 13px; align-items: flex-start; }

.footer-name { font-weight: 800; line-height: 1.2; }

.footer-by {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-tagline { margin-top: 8px; font-size: 0.88rem; color: var(--muted); }

.footer-meta { text-align: right; font-size: 0.9rem; }
.footer-meta a { color: var(--ink); }

.footer-legal { margin-top: 8px; color: var(--muted); }
.footer-legal a { color: var(--muted); }

.footer-copy { margin-top: 8px; color: var(--muted); font-size: 0.82rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .decide-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gestionado-box { grid-template-columns: 1fr; gap: 28px; padding: 34px; }
}

@media (max-width: 860px) {
  .hero { padding: 52px 0 64px; }
  .hero-grid,
  .problema-grid,
  .valorno-grid,
  .philosophy-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .entrega-grid,
  .quien-grid { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .section { padding: 64px 0; }
  .giro { padding: 76px 0; }
  .section-dark { padding: 68px 0; }
  .section-cta { padding: 76px 0 84px; }
  .callout { margin-top: 40px; font-size: 1.08rem; padding: 22px 24px; }
}

@media (max-width: 640px) {
  .nav a:not(.nav-cta) { display: none; }
  body { font-size: 16px; }
  .decide-steps { grid-template-columns: 1fr; }
  .valorno-visual { grid-template-columns: 1fr; }
  .gestionado-box { padding: 26px 22px; }
  .entrega-card { padding: 24px 22px; }
  .quien-col { padding: 24px 22px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .ficha-head { flex-direction: column; }
  .ficha-data { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .cta-actions .btn { width: 100%; }
}

/* ---------- Páginas legales (Aviso legal / Privacidad) ---------- */
/* Reutiliza tipografía y paleta existentes. Sin componentes nuevos de diseño. */

.legal-wrap { max-width: 760px; }
.legal-page h1 { margin-top: 10px; }
.legal-page h2 { margin-top: 40px; margin-bottom: 4px; font-size: 1.25rem; }
.legal-page p { margin-top: 12px; color: #3a414c; }
.legal-page ul { margin-top: 12px; padding-left: 22px; color: #3a414c; }
.legal-page li { margin-top: 6px; }
.legal-page a { color: var(--amber-deep); text-decoration: underline; }

.legal-table { margin-top: 16px; width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.legal-table td { padding: 8px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal-table td:first-child { color: var(--muted); padding-right: 18px; }

.legal-updated { margin-top: 40px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.88rem; }
