/* Estilos compartidos por las páginas legales estáticas.
   Replican los tokens de src/index.css sin depender del bundle de React. */

:root {
  --bg: #fbfbf9;
  --bg-soft: #f2f1ec;
  --ink: #17171c;
  --ink-soft: #44454d;
  --ink-muted: #6a6a72;
  --line: #e4e3dc;
  --accent: #2540e6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 760px;
  margin-inline: auto;
  padding: 3rem 1.5rem 6rem;
}

.brand {
  display: inline-block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 3rem;
}
.brand span {
  color: var(--accent);
}

h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2.75rem 0 0.75rem;
}

p,
li {
  color: var(--ink-soft);
}

a {
  color: var(--accent);
}

.meta {
  color: var(--ink-muted);
  font-size: 0.85rem;
  margin: 0 0 2.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.94rem;
}
th,
td {
  text-align: left;
  padding: 0.7rem 1rem 0.7rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-muted);
}
