:root {
  --navy-900: #071528;
  --navy-800: #0b1f3a;
  --navy-700: #12315a;
  --line: rgba(127, 178, 255, 0.18);
  --blue: #7fb2ff;
  --blue-bright: #a9ccff;
  --amber: #f5b84c;
  --green: #34c77b;
  --text: #eef3fa;
  --muted: #9db1cf;
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1120px;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--navy-900); color: var(--text); font-family: var(--sans);
  font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: var(--blue-bright); }
img { display: block; max-width: 100%; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.nav { position: sticky; top: 0; z-index: 10; background: rgba(7, 21, 40, 0.86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: -0.01em; }
.nav-brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--text); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 15px; border: 1px solid transparent; transition: transform .15s, background .15s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #061428; }
.btn-primary:hover { background: var(--blue-bright); }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { background: rgba(255,255,255,0.07); }
.btn-sm { padding: 9px 14px; font-size: 14px; }
.hero { padding: 72px 0 56px; position: relative; }
.hero::before { content: ""; position: absolute; inset: -200px 0 auto; height: 520px; background: radial-gradient(600px 300px at 20% 20%, rgba(127,178,255,0.22), transparent 70%), radial-gradient(500px 260px at 85% 10%, rgba(245,184,76,0.12), transparent 70%); pointer-events: none; }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-bright); font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(52,199,123,0.2); }
h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 900; }
h1 span { color: var(--blue); }
.lead { color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); margin: 22px 0 30px; max-width: 58ch; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-card { background: linear-gradient(160deg, var(--navy-700), var(--navy-800)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: 0 30px 80px rgba(0,0,0,0.35); }
.hero-card h3 { font-size: 15px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.hero-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hero-list li { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: rgba(7,21,40,0.55); border-radius: 12px; border: 1px solid var(--line); }
.hero-list img { width: 40px; height: 40px; border-radius: 10px; flex: none; }
.hero-list b { display: block; font-size: 15px; }
.hero-list small { color: var(--muted); font-size: 13px; }
section { padding: 64px 0; }
.section-head { max-width: 62ch; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.section-head p { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.card-top { display: flex; align-items: center; gap: 14px; }
.card-top img { width: 56px; height: 56px; border-radius: 14px; }
.card h3 { font-size: 22px; font-weight: 800; }
.chip { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .03em; padding: 4px 10px; border-radius: 999px; background: rgba(127,178,255,0.14); color: var(--blue-bright); }
.chip.ok { background: rgba(52,199,123,0.16); color: #7fe3ad; }
.chip.soon { background: rgba(245,184,76,0.16); color: #ffd58a; }
.card p { color: var(--muted); flex: 1; }
.card .actions { gap: 10px; }
.card.soon { border-style: dashed; opacity: .85; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.step b { display: block; font-size: 30px; color: var(--blue); margin-bottom: 8px; font-weight: 900; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
.band { background: linear-gradient(120deg, var(--navy-800), var(--navy-700)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq { display: grid; gap: 10px; max-width: 800px; }
details { background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 20px; }
summary { cursor: pointer; padding: 16px 0; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
summary::after { content: "+"; color: var(--blue); font-weight: 900; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); padding: 0 0 18px; }
footer { padding: 40px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
footer .wrap { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; }
footer h4 { color: var(--text); font-size: 14px; margin: 0 0 10px; text-transform: uppercase; letter-spacing: .06em; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }
.legal { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); grid-column: 1 / -1; font-size: 13px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { padding: 48px 0 40px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 32px; }
  .grid, .steps { grid-template-columns: 1fr; }
  footer .wrap { grid-template-columns: 1fr; }
}

/* Estilos propios de las páginas legales (privacidad.html, terminos.html) */
.legal-doc { padding: 48px 0 64px; }
.legal-doc .wrap { max-width: 760px; }
.legal-doc h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.legal-doc .actualizado { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal-doc h2 { font-size: 22px; font-weight: 800; margin: 36px 0 14px; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p { color: var(--text); margin-bottom: 14px; }
.legal-doc ul, .legal-doc ol { color: var(--text); margin: 0 0 14px; padding-left: 22px; }
.legal-doc li { margin-bottom: 8px; }
.legal-doc table { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 15px; }
.legal-doc th, .legal-doc td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal-doc th { color: var(--muted); font-weight: 600; }
.legal-doc hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }
