/* ==========================================================
   BlackBox4U — Landing de preapertura (tema claro)
   ========================================================== */
:root {
  --bg: #ffffff;
  --bg-2: #f6f4f0;
  --bg-3: #eeeae3;
  --line: rgba(1, 1, 1, 0.09);
  --text: #0f0f0f;
  --muted: #5a5a5a;
  --ink: #010101;
  --ink-2: #1a1a1a;
  --accent: #c06a13;
  --accent-2: #a85a0e;
  --accent-soft: rgba(192, 106, 19, 0.12);
  --accent-ink: #ffffff;
  --ok: #1f9d55;
  --err: #d64545;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(1, 1, 1, 0.12);
  --shadow-sm: 0 8px 24px rgba(1, 1, 1, 0.08);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Archivo", var(--font);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
::selection { background: var(--accent); color: #fff; }

.container { width: min(var(--max), 92vw); margin: 0 auto; }
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; scroll-margin-top: 72px; }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--accent); border-radius: 2px; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.025em; line-height: 1.06; margin: 0; color: var(--ink); }
h2 { font-size: clamp(30px, 4.2vw, 48px); font-weight: 800; }
h3 { font-size: 20px; font-weight: 700; }
.lead { color: var(--muted); font-size: clamp(16px, 1.4vw, 19px); margin: 16px 0 0; }
.grad { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 15px; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 28px rgba(192, 106, 19, 0.32); }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-2); box-shadow: 0 16px 36px rgba(192, 106, 19, 0.4); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 10px 28px rgba(1, 1, 1, 0.22); }
.btn-dark:hover { transform: translateY(-2px); background: var(--ink-2); }
.btn-ghost { background: #fff; border-color: rgba(1,1,1,0.16); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn svg { width: 18px; height: 18px; }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 18px 0; transition: background .25s ease, backdrop-filter .25s ease, padding .25s ease, box-shadow .25s ease;
}
.nav.scrolled { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 12px 0; }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; display: block; transition: height .25s ease; }
.nav.scrolled .logo img { height: 34px; }
@media (max-width: 480px) { .logo img { height: 30px; } }
.nav-links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--accent); }
.nav .btn { padding: 11px 20px; font-size: 14px; }
@media (max-width: 960px) { .nav-links { display: none; } }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 140px 0 90px; overflow: hidden; background: var(--bg-2); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; transform: scale(1.04); animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { to { transform: scale(1.12); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(246,244,240,0.97) 0%, rgba(246,244,240,0.9) 38%, rgba(246,244,240,0.45) 65%, rgba(246,244,240,0.15) 100%),
    linear-gradient(180deg, rgba(246,244,240,0.35) 0%, rgba(246,244,240,0) 40%, var(--bg-2) 100%);
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px;
  border-radius: 999px; border: 1px solid rgba(192,106,19,0.3); background: #fff;
  font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(192,106,19,0.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(192,106,19,0); } 100% { box-shadow: 0 0 0 0 rgba(192,106,19,0); } }
.hero h1 { font-size: clamp(40px, 6.2vw, 78px); font-weight: 800; }
.hero .lead { max-width: 560px; font-size: clamp(17px, 1.5vw, 20px); margin-top: 22px; color: #3d3d3d; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; color: #3d3d3d; font-size: 14px; font-weight: 500; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--accent); }

.hero-card {
  background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.hero-card .label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 16px 0 22px; }
.countdown div { background: var(--ink); color: #fff; border-radius: var(--radius-sm); padding: 14px 6px; text-align: center; }
.countdown b { display: block; font-family: var(--display); font-size: clamp(24px, 3vw, 34px); font-weight: 800; line-height: 1; }
.countdown small { display: block; margin-top: 6px; color: rgba(255,255,255,0.65); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.hero-card .perk { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.hero-card .perk strong { color: var(--ink); display: block; }
.hero-card .perk svg { flex: none; width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(246,244,240,0.92) 0%, rgba(246,244,240,0.85) 60%, var(--bg-2) 100%); }
}

/* Marquee strip */
.strip { background: var(--ink); color: #fff; overflow: hidden; padding: 16px 0; }
.strip-track { display: flex; gap: 48px; width: max-content; animation: marquee 32s linear infinite; }
.strip span { display: inline-flex; align-items: center; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,0.85); white-space: nowrap; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.strip span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; overflow: hidden; }
.step::before { content: attr(data-n); position: absolute; right: 18px; top: 8px; font-family: var(--display); font-size: 84px; font-weight: 800; color: rgba(192,106,19,0.18); line-height: 1; }
.step .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; margin-bottom: 22px; }
.step .icon svg { width: 24px; height: 24px; }
.step p { color: var(--muted); margin: 10px 0 0; font-size: 15px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* Split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; background: var(--bg-3); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .tag {
  position: absolute; left: 18px; bottom: 18px; padding: 10px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); font-size: 13px; font-weight: 600; color: var(--ink); display: flex; gap: 8px; align-items: center; box-shadow: var(--shadow-sm);
}
.split-media .tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.checks { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 15.5px; }
.checks li strong { color: var(--ink); }
.checks svg { flex: none; width: 22px; height: 22px; color: var(--accent); margin-top: 1px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } .split-media { aspect-ratio: 4/3; } }

/* Sizes */
.sizes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.size { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; position: relative; cursor: pointer; }
.size:hover, .size:focus-visible { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-sm); outline: none; }
.size.locker { background: var(--ink); border-color: var(--ink); color: #fff; }
.size.locker .code { color: #f0a052; }
.size.locker .m2, .size.locker .m2 small { color: #fff; }
.size.locker p, .size.locker ul { color: rgba(255,255,255,0.72); }
.size.locker .box i { border-color: #f0a052; background: rgba(240,160,82,0.18); }
.size .badge { display: inline-block; margin-bottom: 10px; background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.size .code { font-family: var(--display); font-size: 12px; letter-spacing: .14em; color: var(--accent); font-weight: 700; text-transform: uppercase; }
.size .m2 { font-family: var(--display); font-size: 36px; font-weight: 800; line-height: 1; margin: 12px 0 4px; color: var(--ink); }
.size .m2 small { font-size: 16px; color: var(--muted); font-weight: 600; margin-left: 2px; }
.size .box { height: 74px; display: flex; align-items: flex-end; margin: 16px 0; }
.size .box i { display: block; border: 2px solid var(--ink); border-radius: 6px; background: var(--accent-soft); }
.size p { margin: 0; font-size: 13.5px; color: var(--muted); }
.size ul { list-style: none; padding: 0; margin: 12px 0 0; font-size: 13px; color: var(--muted); display: grid; gap: 4px; }
.size ul li::before { content: "· "; color: var(--accent); font-weight: 700; }
@media (max-width: 1100px) { .sizes { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .sizes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sizes { grid-template-columns: repeat(2, 1fr); } }

/* Features grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: box-shadow .2s ease, transform .2s ease; }
.feature:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.feature .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.feature .icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 18px; }
.feature p { color: var(--muted); font-size: 14.5px; margin: 8px 0 0; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* Signup (bloque oscuro sobre fondo claro) */
.signup { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.signup::before { content: ""; position: absolute; inset: -20% -10%; background: radial-gradient(40% 50% at 20% 50%, rgba(192,106,19,0.35), transparent 70%); pointer-events: none; }
.signup h2, .signup h3 { color: #fff; }
.signup .eyebrow { color: #f0a052; }
.signup .eyebrow::before { background: #f0a052; }
.signup .lead { color: rgba(255,255,255,0.72); }
.signup .grad { color: #f0a052; }
.signup-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.signup-benefits { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.signup-benefits li { display: flex; gap: 12px; color: rgba(255,255,255,0.72); font-size: 15.5px; }
.signup-benefits li strong { color: #fff; }
.signup-benefits .n { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 800; }
.form-card { background: #fff; color: var(--text); border-radius: 24px; padding: clamp(24px, 3vw, 36px); box-shadow: 0 30px 80px rgba(0,0,0,0.45); }
.form-card h3 { font-size: 22px; color: var(--ink); }
.form-card .sub { color: var(--muted); font-size: 14px; margin: 6px 0 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: var(--muted); font-weight: 600; }
.field input, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: #9a9a9a; }
.field input:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); background: #fff; }
.field.error input { border-color: var(--err); }
.field .hint { font-size: 12px; color: var(--err); display: none; }
.field.error .hint { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--muted); margin-top: 16px; }
.consent input { margin-top: 3px; accent-color: var(--accent); }
.consent a { color: var(--accent); text-decoration: underline; }
.form-card .btn { width: 100%; margin-top: 18px; }
.form-card .btn[disabled] { opacity: .7; cursor: wait; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin: 12px 0 0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success .check { width: 68px; height: 68px; border-radius: 50%; background: rgba(31,157,85,0.12); color: var(--ok); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--muted); margin: 10px 0 0; }
.form-card.done form { display: none; }
.form-card.done .form-success { display: block; }
.form-error { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: rgba(214,69,69,0.08); border: 1px solid rgba(214,69,69,0.3); color: #b83232; font-size: 13px; }
.form-error.show { display: block; }
@media (max-width: 900px) { .signup-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; font-weight: 700; font-size: 17px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--display); font-size: 24px; color: var(--accent); transition: transform .2s ease; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 0 0 22px; font-size: 15px; max-width: 720px; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 48px 0 32px; background: var(--bg-2); font-size: 13.5px; color: var(--muted); }
.footer .footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 28px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo img { height: 44px; }
.footer-brand p { margin: 0 0 8px; line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; }
.footer-brand .fi { flex: none; width: 16px; height: 16px; color: var(--accent); margin-top: 3px; }
.footer-brand p a { color: var(--ink); font-weight: 500; }
.footer-brand p a:hover { color: var(--accent); }
.footer nav { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; justify-content: flex-end; }
.footer nav a:hover { color: var(--accent); }
.footer .powered { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12.5px; letter-spacing: .02em; }
.footer .powered a { color: var(--muted); }
.footer .powered strong { color: var(--ink); font-weight: 700; }
.footer .powered a:hover strong { color: var(--accent); }
@media (max-width: 720px) { .footer nav { justify-content: flex-start; } .footer .powered { justify-content: center; text-align: center; } }

/* Map */
.map-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 24px; align-items: stretch; }
.map-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); min-height: 420px; box-shadow: var(--shadow-sm); }
.map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; gap: 10px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(192,106,19,0.12), transparent 70%), var(--bg-2); }
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); }
.map-placeholder strong { font-family: var(--display); font-size: 20px; color: var(--ink); }
.map-placeholder p { color: var(--muted); font-size: 14px; max-width: 380px; margin: 0 0 8px; }
.map-placeholder .map-link { font-size: 13px; color: var(--accent); text-decoration: underline; }
.map-info { display: grid; gap: 14px; align-content: start; }
.map-info-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; display: grid; gap: 2px; }
.map-info-block .label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.map-info-block strong { font-size: 16px; color: var(--ink); }
.map-info-block span:not(.label) { color: var(--muted); font-size: 14px; }
.map-info .btn { justify-content: center; }
@media (max-width: 900px) { .map-grid { grid-template-columns: 1fr; } .map-card { min-height: 340px; } }

/* Cookie banner */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; margin: 0 auto; max-width: 720px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px); border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px;
  display: flex; align-items: center; gap: 20px; box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-text strong { display: block; margin-bottom: 4px; color: var(--ink); }
.cookie-text p { margin: 0; font-size: 13.5px; color: var(--muted); }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie-actions .btn { padding: 11px 18px; font-size: 14px; }
@media (max-width: 640px) { .cookie-banner { flex-direction: column; align-items: stretch; } .cookie-actions .btn { flex: 1; } }
body.cookie-open .mobile-cta { display: none !important; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1, 1, 1, 0.55); backdrop-filter: blur(6px); }
.modal-dialog { position: relative; width: min(860px, 100%); max-height: min(88vh, 900px); display: flex; flex-direction: column;
  background: #fff; border-radius: 22px; box-shadow: var(--shadow); overflow: hidden;
  animation: modalIn .22s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--line); flex: none; }
.modal-head h3 { font-size: 20px; }
.modal-close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-2); color: var(--ink); cursor: pointer; display: grid; place-items: center; font-size: 22px; line-height: 1; transition: background .15s ease; }
.modal-close:hover { background: var(--bg-3); }
.modal-body { overflow: auto; padding: 8px 28px 32px; overscroll-behavior: contain; }
.modal-body.legal { padding: 8px 36px 40px; }
.modal-body .eyebrow, .modal-body h1 { display: none; }
.modal-body .lead { font-size: 16px; margin-top: 12px; }
.modal-body .legal-card { padding: 22px 26px; }
.modal-body h2 { font-size: 19px; margin: 30px 0 10px; }
.modal-loading { padding: 40px; text-align: center; color: var(--muted); }
body.modal-open { overflow: hidden; }
@media (max-width: 640px) { .modal { padding: 0; align-items: flex-end; } .modal-dialog { max-height: 92vh; border-radius: 22px 22px 0 0; } .modal-body, .modal-body.legal { padding: 4px 20px 32px; } }

/* Legal pages */
.legal-page .nav { position: sticky; }
.legal { padding: 60px 0 100px; }
.legal .container { max-width: 800px; }
.legal h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 800; }
.legal .updated { font-size: 13px; color: var(--muted); margin: 10px 0 40px; }
.legal h2 { font-size: 22px; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; }
.legal p { margin: 0 0 14px; }
.legal ul { padding-left: 22px; margin: 0 0 14px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; margin: 8px 0 20px; }
.legal-card dl { display: grid; grid-template-columns: 160px 1fr; gap: 10px 20px; margin: 0; font-size: 15px; }
.legal-card dt { color: var(--muted); }
.legal-card dd { margin: 0; color: var(--ink); }
.legal table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal th, .legal td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { color: var(--accent); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.legal td { color: var(--muted); }
.legal td:first-child { color: var(--ink); white-space: nowrap; }
@media (max-width: 560px) { .legal-card dl { grid-template-columns: 1fr; gap: 2px 0; } .legal-card dt { margin-top: 10px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; } }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img, .strip-track { animation: none; }
}

/* Sticky mobile CTA */
.mobile-cta { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40; }
.mobile-cta .btn { width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
@media (max-width: 720px) { .mobile-cta.visible { display: block; } }
