/* ─────────────────────────────────────────────
   Vela — páginas de tierra (legales)
   sobrias, legibles, pero del mismo mundo
   ───────────────────────────────────────────── */

:root {
  --bg: #06060a;
  --ink: #e9e6df;
  --ink-soft: rgba(233, 230, 223, 0.74);
  --gold: #c9a96a;
  --meta: rgba(233, 230, 223, 0.42);
  --hairline: rgba(233, 230, 223, 0.14);
  --font-voice: "Cormorant Garamond", serif;
  --font-meta: "IBM Plex Mono", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-meta);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding: clamp(2.5rem, 7vw, 6rem) 1.5rem;
  animation: pageIn 1.4s ease both;
}

@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* campo de estrellas — solo estrellas, sin niebla; parallax leve con el mouse (stars.js) */
#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  pointer-events: none;
}

main {
  max-width: 46rem;
  margin: 0 auto;
}

/* cabecera */
.doc-head {
  margin-bottom: 3.5rem;
  text-align: center;
}
.doc-mark {
  font-family: var(--font-voice);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.4rem;
  transition: opacity 0.4s ease;
}
.doc-mark:hover { opacity: 0.7; }
.doc-head h1 {
  font-family: var(--font-voice);
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 2.8rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.doc-updated {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--meta);
}

/* cuerpo */
.doc-body h2 {
  font-family: var(--font-voice);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2.8rem 0 0.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
}
.doc-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.doc-body p { margin: 0 0 1rem; color: var(--ink-soft); }
.doc-body ul { margin: 0 0 1.2rem 1.2rem; color: var(--ink-soft); }
.doc-body li { margin-bottom: 0.5rem; }
.doc-body strong { color: var(--ink); font-weight: 400; }
.doc-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201, 169, 106, 0.35); }
.doc-body a:hover { border-bottom-color: var(--gold); }

.doc-lead {
  font-family: var(--font-voice);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink) !important;
  margin-bottom: 2.4rem !important;
}

/* pie */
.doc-foot {
  margin-top: 4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--hairline);
  text-align: center;
  font-size: 0.82rem;
  color: var(--meta);
}
.doc-foot a { color: var(--meta); text-decoration: none; border-bottom: 1px solid var(--hairline); }
.doc-foot a:hover { color: var(--ink); }
.doc-foot nav { margin-bottom: 1rem; display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; }
