/* ============================================
   PRODE 2026 — VOLT DESIGN SYSTEM
   Dark theme · Anton display · JetBrains Mono · Geist body
   Acento: #DEFF0A (volt)
   ============================================ */

/* ============ DESIGN TOKENS ============ */
:root, .palette-volt {
  --bg: #0A0B0D;
  --bg-1: #101216;
  --bg-2: #15181E;
  --bg-3: #1C2028;
  --line: #23272F;
  --line-2: #2E333D;
  --fg: #F5F5F4;
  --fg-muted: #8C8E94;
  --fg-dim: #5C5F66;
  --accent: #DEFF0A;
  --accent-ink: #0A0B0D;
  --accent-2: #FF3B41;
  --success: #4ADE80;
  --warn: #FACC15;
}

.palette-pampa {
  --bg: #0F1117; --bg-1: #161924; --bg-2: #1D2130; --bg-3: #252A3D;
  --line: #2A2F44; --line-2: #353B54;
  --fg: #F4EDE0; --fg-muted: #9A93A8; --fg-dim: #5C5F70;
  --accent: #F4B33C; --accent-ink: #1A1410; --accent-2: #6CC2FF;
}
.palette-inferno {
  --bg: #0A0807; --bg-1: #120E0C; --bg-2: #1A1413; --bg-3: #221B19;
  --line: #2C2422; --line-2: #3A2F2C;
  --fg: #FAF3EF; --fg-muted: #9A8D88; --fg-dim: #5C524E;
  --accent: #FF3B30; --accent-ink: #FAF3EF; --accent-2: #FFB400;
}
.palette-albiceleste {
  --bg: #06101C; --bg-1: #0B1828; --bg-2: #122339; --bg-3: #1A2E48;
  --line: #1F3556; --line-2: #2A4470;
  --fg: #EAF4FF; --fg-muted: #94A8C2; --fg-dim: #5A7090;
  --accent: #75AADB; --accent-ink: #06101C; --accent-2: #FFD75E;
}

.density-comfortable { --gutter: 28px; --section-y: 140px; --card-pad: 28px; }
.density-compact      { --gutter: 20px; --section-y: 88px;  --card-pad: 20px; }

/* default density */
:root { --gutter: 28px; --section-y: 140px; --card-pad: 28px; }

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.volt {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "ss03", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
body.volt a { color: inherit; text-decoration: none; }
body.volt button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
body.volt img { max-width: 100%; display: block; }

[x-cloak] { display: none !important; }

/* ============ TYPOGRAPHY ============ */
.volt .display {
  font-family: 'Anton', 'Arial Narrow', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.86;
  text-transform: uppercase;
}
.volt .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: "zero", "ss01"; }
.volt .eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.volt .eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 0 0 var(--accent);
  animation: volt-pulse 1.8s ease-out infinite;
}
@keyframes volt-pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 70%, transparent); }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.volt .accent { color: var(--accent); }
.volt .stroke { -webkit-text-stroke: 1.5px var(--fg); color: transparent; }

/* ============ LAYOUT ============ */
.volt .container {
  width: 100%; max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.volt .section { padding: var(--section-y) 0; position: relative; }
.volt .section.tight { padding: calc(var(--section-y) * 0.65) 0; }
.volt .hairline-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: 0.25;
  mask-image: linear-gradient(to bottom, black, black 60%, transparent);
}

/* ============ NAV ============ */
.volt .nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(20px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}
.volt .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.volt .logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 0.04em;
  color: var(--fg);
}
.volt .logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 14px; font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}
.volt .nav-links { display: flex; gap: 28px; }
.volt .nav-links a {
  font-size: 13px; color: var(--fg-muted); font-weight: 500;
  transition: color .2s;
}
.volt .nav-links a:hover, .volt .nav-links a.active { color: var(--fg); }
.volt .nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 13px; font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease;
}
.volt .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px var(--accent); }
.volt .nav-burger {
  display: none;
  width: 36px; height: 36px;
  border-radius: 8px; border: 1px solid var(--line);
  align-items: center; justify-content: center;
  color: var(--fg);
}

/* ============ BUTTONS ============ */
.volt .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  font-family: inherit;
  transition: transform .18s ease, box-shadow .2s ease, background .2s, color .2s;
  white-space: nowrap;
}
.volt .btn-primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 50%, transparent),
              0 14px 40px -12px var(--accent);
}
.volt .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 50px -16px var(--accent);
}
.volt .btn-ghost {
  background: transparent; color: var(--fg);
  border: 1px solid var(--line-2);
}
.volt .btn-ghost:hover { background: var(--bg-2); border-color: var(--fg-muted); }
.volt .btn-lg { padding: 20px 32px; font-size: 17px; }
.volt .btn-sm { padding: 9px 16px; font-size: 13px; }
.volt .btn-block { width: 100%; justify-content: center; }

/* ============ BADGES ============ */
.volt .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-1) 80%, transparent);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  color: var(--fg-muted);
}
.volt .badge-accent { color: var(--accent); border-color: color-mix(in oklab, var(--accent) 30%, var(--line)); }
.volt .badge .swatch { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ============ HERO ============ */
.volt .hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column;
  padding-top: 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.volt .hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 20% 20%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 70%),
    radial-gradient(40% 40% at 90% 80%, color-mix(in oklab, var(--accent-2, var(--accent)) 10%, transparent), transparent 70%);
}
.volt .hero-meta {
  display: flex; gap: 28px; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.16em; text-transform: uppercase;
  position: relative; z-index: 2;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px; margin-bottom: 56px;
}
.volt .hero-meta-item { display: flex; align-items: center; gap: 8px; }
.volt .hero-meta-item strong { color: var(--fg); font-weight: 500; }
.volt .hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
  flex: 1;
}
.volt .hero-headline {
  font-size: clamp(60px, 12vw, 200px);
  font-family: 'Anton', sans-serif;
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.volt .hero-headline .accent-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.volt .hero-headline .accent-word::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.06em;
  background: currentColor;
  opacity: 0.25;
}
.volt .hero-headline .stroke {
  -webkit-text-stroke: 2px var(--fg);
  color: transparent;
}
.volt .hero-sub {
  font-size: 16px; color: var(--fg-muted);
  max-width: 460px; line-height: 1.55;
  margin: 24px 0 0;
}
.volt .hero-sub strong { color: var(--fg); font-weight: 600; }
.volt .hero-actions {
  display: flex; gap: 16px; align-items: center;
  margin-top: 32px; flex-wrap: wrap;
}

/* ============ POZO LIVE CARD (en hero) ============ */
.volt .pozo-card {
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-1) 90%, transparent);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.volt .pozo-card-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.volt .pozo-amount {
  font-family: 'Anton', sans-serif;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
}
.volt .pozo-amount .currency {
  font-size: 0.5em;
  color: var(--fg-muted);
  margin-right: 8px;
  font-weight: 400;
}
.volt .pozo-delta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--success);
}
.volt .pozo-mini {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
  margin-top: 22px; padding-top: 18px;
}
.volt .pozo-mini > div { padding: 0 6px; }
.volt .pozo-mini > div + div { border-left: 1px solid var(--line); }
.volt .pozo-mini .num { font-family: 'Anton', sans-serif; font-size: 28px; }
.volt .pozo-mini .lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.14em;
  margin-top: 4px;
}

/* sparkline */
.volt .sparkline { width: 100%; height: 60px; margin-top: 18px; display: block; }
.volt .sparkline path.line { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.volt .sparkline path.area { fill: color-mix(in oklab, var(--accent) 18%, transparent); stroke: none; }
.volt .sparkline circle.dot { fill: var(--accent); }

/* ============ COUNTRY TICKER ============ */
.volt .ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
  position: relative;
  margin-top: 56px;
}
.volt .ticker::before, .volt .ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.volt .ticker::before { left: 0; background: linear-gradient(to right, var(--bg-1), transparent); }
.volt .ticker::after  { right: 0; background: linear-gradient(to left, var(--bg-1), transparent); }
.volt .ticker-track {
  display: flex; gap: 36px; align-items: center;
  padding: 18px 0;
  width: max-content;
  animation: ticker-scroll 80s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.volt .ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}
.volt .ticker-flag {
  width: 22px; height: 16px; border-radius: 2px;
  display: inline-block;
  background: var(--bg-3);
  border: 1px solid var(--line);
  object-fit: cover;
}

/* ============ SECTION HEAD ============ */
.volt .section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.volt .section-head .lhs h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 16px 0 0;
}
.volt .section-head .lhs h2 .accent-word { color: var(--accent); }
.volt .section-head .lhs h2 .stroke {
  -webkit-text-stroke: 1.5px var(--fg);
  color: transparent;
}
.volt .section-head .rhs {
  font-size: 16px; color: var(--fg-muted); line-height: 1.55;
  max-width: 440px;
  justify-self: end;
}
.volt .section-head .rhs strong { color: var(--fg); }

/* ============ POZO FEATURE (big section) ============ */
.volt .pozo-feature {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(80% 60% at 20% 0%, color-mix(in oklab, var(--accent) 8%, transparent), transparent 60%),
    var(--bg-1);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.volt .pozo-feature .label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.volt .pozo-feature .big-amount {
  font-family: 'Anton', sans-serif;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.015em;
  color: var(--accent);
  display: flex; align-items: baseline; gap: 0.05em;
}
.volt .pozo-feature .big-amount .cur {
  color: var(--fg);
  font-size: 0.4em;
  font-weight: 400;
  margin-right: 0.05em;
}
.volt .pozo-feature .stats-row {
  display: flex; gap: 36px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.volt .pozo-feature .stat .v {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px; color: var(--fg);
  font-weight: 500;
}
.volt .pozo-feature .stat .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-top: 4px;
}

/* podium */
.volt .podium {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; align-items: end;
}
.volt .podium-step {
  position: relative;
  padding: 20px 16px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 14px;
}
.volt .podium-step.first {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--accent) 18%, transparent), transparent 70%),
    var(--bg-2);
  box-shadow: 0 0 0 1px var(--accent), 0 30px 60px -30px var(--accent);
  transform: translateY(-12px);
}
.volt .podium-step .place {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.volt .podium-step.first .place { color: var(--accent); }
.volt .podium-step .amount {
  font-family: 'Anton', sans-serif;
  font-size: 30px; line-height: 1;
}
.volt .podium-step.first .amount { font-size: 40px; }
.volt .podium-step .pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--fg-muted);
  margin-top: 8px;
}

/* ============ SCALE GRID ============ */
.volt .scale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-1);
}
.volt .scale-cell {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.volt .scale-cell:nth-child(4n) { border-right: 0; }
.volt .scale-cell .players {
  font-family: 'Anton', sans-serif;
  font-size: 44px; line-height: 1;
}
.volt .scale-cell .players .x {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--fg-muted);
  margin-left: 6px; vertical-align: super;
  text-transform: uppercase;
}
.volt .scale-cell .pot-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.14em;
  margin-top: 24px;
}
.volt .scale-cell .pot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px; font-weight: 500;
  margin-top: 4px; color: var(--fg);
}
.volt .scale-cell.is-highlight .pot { color: var(--accent); }
.volt .scale-cell.is-highlight {
  background: color-mix(in oklab, var(--accent) 5%, var(--bg-1));
}
.volt .scale-cell .bar {
  position: relative; height: 4px;
  background: var(--line); border-radius: 2px;
  margin-top: 18px; overflow: hidden;
}
.volt .scale-cell .bar-fill {
  position: absolute; inset: 0 auto 0 0;
  background: var(--accent); border-radius: 2px;
}
.volt .scale-cell .breakdown {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--fg-muted);
}
.volt .scale-cell .breakdown div { display: flex; align-items: center; gap: 4px; }
.volt .scale-cell .breakdown .medal {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; opacity: 0.4;
}
.volt .scale-cell .breakdown .gold   { color: var(--accent); }
.volt .scale-cell .breakdown .silver { color: var(--fg-muted); }
.volt .scale-cell .breakdown .bronze { color: color-mix(in oklab, var(--accent-2, var(--accent)) 70%, var(--fg-muted)); }

/* ============ STEPS (Cómo funciona) ============ */
.volt .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.volt .step {
  padding: 36px 28px 36px 0;
  position: relative;
  border-right: 1px solid var(--line);
}
.volt .step:last-child { border-right: 0; }
.volt .step:nth-child(n+2) { padding-left: 28px; }
.volt .step .num {
  font-family: 'Anton', sans-serif;
  font-size: 96px; line-height: 0.9;
  color: var(--fg);
  -webkit-text-stroke: 1.5px var(--fg);
  background: linear-gradient(180deg, transparent, var(--bg) 95%);
  -webkit-background-clip: text;
  background-clip: text;
}
.volt .step .num.is-active {
  color: var(--accent);
  -webkit-text-stroke: 0;
  background: none;
}
.volt .step h3 {
  font-family: 'Anton', sans-serif;
  font-size: 30px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.01em;
  margin: 24px 0 12px;
}
.volt .step p {
  font-size: 15px; color: var(--fg-muted); line-height: 1.55;
  max-width: 280px; margin: 0;
}
.volt .step .meta {
  margin-top: 20px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.14em;
  display: flex; align-items: center; gap: 8px;
}

/* ============ REFERIDOS ============ */
.volt .ref-progress {
  border: 1px solid var(--line);
  background: var(--bg-1);
  border-radius: 18px;
  padding: 36px;
}
.volt .ref-progress-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 28px;
}
.volt .ref-track {
  position: relative;
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
  margin: 56px 0 56px;
}
.volt .ref-track .fill {
  position: absolute; inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--accent), color-mix(in oklab, var(--accent) 50%, var(--fg)));
  border-radius: 3px;
  transition: width .4s cubic-bezier(.2,.7,.2,1);
}
.volt .ref-tier {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line-2);
  cursor: pointer; z-index: 2;
  transition: all .2s;
}
.volt .ref-tier.reached { background: var(--accent); border-color: var(--accent); }
.volt .ref-tier.active {
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 25%, transparent);
}
.volt .ref-tier-label {
  position: absolute; top: 28px; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--fg-muted); white-space: nowrap;
}
.volt .ref-tier-label .v { color: var(--fg); font-weight: 500; }
.volt .ref-tier-label-top {
  position: absolute; bottom: 28px; transform: translateX(-50%);
  font-family: 'Anton', sans-serif; font-size: 24px;
  color: var(--fg-muted); white-space: nowrap;
  text-transform: uppercase;
}
.volt .ref-tier.reached + .ref-tier-label-top,
.volt .ref-tier.active ~ .ref-tier-label-top { color: var(--fg); }
.volt .ref-current {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.volt .ref-current .v {
  font-family: 'Anton', sans-serif; font-size: 56px; line-height: 0.95;
}
.volt .ref-current .v.accent { color: var(--accent); }
.volt .ref-current .l {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.14em;
  margin-top: 6px;
}

/* ============ FAQ ============ */
.volt .faq-list { border-top: 1px solid var(--line); }
.volt .faq-item { border-bottom: 1px solid var(--line); }
.volt .faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 28px 4px;
  font-size: 22px;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--fg);
  transition: color .2s;
}
.volt .faq-q:hover { color: var(--accent); }
.volt .faq-q .toggle {
  font-family: 'JetBrains Mono', monospace; font-size: 14px;
  color: var(--fg-muted);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all .2s;
}
.volt .faq-item.open .faq-q .toggle {
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
}
.volt .faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.2,.7,.2,1);
}
.volt .faq-item.open .faq-a { max-height: 600px; }
.volt .faq-a-inner {
  padding: 0 4px 32px;
  color: var(--fg-muted);
  font-size: 16px; line-height: 1.6;
  max-width: 760px;
}

/* ============ CTA BLOCK ============ */
.volt .cta-block {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 80px 60px;
  background:
    radial-gradient(60% 80% at 100% 0%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 70%),
    var(--bg-1);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.volt .cta-block::before {
  content: ""; position: absolute;
  inset: -200px -200px auto auto; width: 500px; height: 500px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 30%, transparent), transparent);
  filter: blur(40px);
  pointer-events: none;
}
.volt .cta-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0;
}
.volt .cta-headline .accent-word { color: var(--accent); }
.volt .cta-side {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.volt .cta-side .price {
  font-family: 'Anton', sans-serif; font-size: 64px; line-height: 1;
}
.volt .cta-side .price .cur { color: var(--fg-muted); font-size: 0.45em; margin-right: 6px; }
.volt .cta-side .meta {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.14em;
}

/* ============ FOOTER ============ */
.volt .foot {
  border-top: 1px solid var(--line);
  padding: 56px 0 36px;
  background: var(--bg);
}
.volt .foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.volt .foot-grid h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.16em;
  margin: 0 0 18px; font-weight: 500;
}
.volt .foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.volt .foot-grid li a { font-size: 14px; color: var(--fg); transition: color .2s; }
.volt .foot-grid li a:hover { color: var(--accent); }
.volt .foot-brand .display {
  font-size: 64px; line-height: 0.85;
  margin-bottom: 16px;
}
.volt .foot-brand p { color: var(--fg-muted); font-size: 14px; max-width: 380px; line-height: 1.55; margin: 0; }
.volt .foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.14em;
}

/* ============ FORM (login/registro) ============ */
.volt .form-card {
  max-width: 460px; margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--bg-1);
  border-radius: 18px;
  padding: 36px;
}
.volt .form-card h1 {
  font-family: 'Anton', sans-serif;
  font-size: 56px; line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.volt .form-card .lead { color: var(--fg-muted); font-size: 14px; margin-bottom: 28px; }
.volt .field { margin-bottom: 20px; }
.volt .field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.volt .field input,
.volt .field textarea,
.volt .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.volt .field input:focus,
.volt .field textarea:focus,
.volt .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 25%, transparent);
}
.volt .field .hint { color: var(--fg-dim); font-size: 12px; margin-top: 6px; }
.volt .checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--fg-muted); line-height: 1.5;
  margin: 12px 0 24px;
}
.volt .checkbox-row a { color: var(--fg); text-decoration: underline; }
.volt .alert {
  border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px; margin-bottom: 16px;
  background: var(--bg-2);
}
.volt .alert-error    { border-color: color-mix(in oklab, var(--accent-2) 50%, var(--line)); color: var(--accent-2); }
.volt .alert-success  { border-color: color-mix(in oklab, var(--success) 50%, var(--line)); color: var(--success); }

/* ============================================
   LEGACY OVERRIDES — vistas internas (dashboard, pronósticos, tabla, etc.)
   que se escribieron originalmente con clases Tailwind tipo bg-white, text-primary, etc.
   Las re-mapeamos al dark theme volt.
   ============================================ */
body.volt main { color: var(--fg); }

/* Backgrounds */
body.volt .bg-white     { background: var(--bg-1) !important; color: var(--fg); }
body.volt .bg-bg        { background: var(--bg) !important; }
body.volt .bg-gray-50,
body.volt .bg-gray-100  { background: var(--bg-2) !important; color: var(--fg); }
body.volt .bg-gray-900,
body.volt .bg-bgdark    { background: var(--bg) !important; }

/* Text colors */
body.volt .text-primary { color: var(--fg) !important; }
body.volt .text-ink     { color: var(--fg) !important; }
body.volt .text-muted   { color: var(--fg-muted) !important; }
body.volt .text-gray-500,
body.volt .text-gray-600,
body.volt .text-gray-700,
body.volt .text-gray-800 { color: var(--fg-muted) !important; }
body.volt .text-gold    { color: var(--accent) !important; }
body.volt .text-success { color: var(--success) !important; }
body.volt .text-accent  { color: var(--accent-2) !important; }
body.volt .text-bgdark  { color: var(--bg) !important; }

/* Borders */
body.volt .border-gray-100,
body.volt .border-gray-200,
body.volt .border-gray-300 { border-color: var(--line) !important; }
body.volt .border-gold   { border-color: var(--accent) !important; }
body.volt .border-primary { border-color: var(--line-2) !important; }

/* Backgrounds tinted */
body.volt .bg-gold      { background: var(--accent) !important; color: var(--accent-ink) !important; }
body.volt .bg-primary,
body.volt .bg-bg-primary { background: var(--bg-2) !important; }
body.volt .bg-success   { background: var(--success) !important; color: var(--bg) !important; }
body.volt .bg-accent    { background: var(--accent-2) !important; color: var(--fg) !important; }

/* Tinted overlays (gold/10, primary/5, etc.) — common Tailwind alpha utilities */
body.volt [class*="bg-gold/"]  { background: color-mix(in oklab, var(--accent) 12%, var(--bg-1)) !important; }
body.volt [class*="bg-primary/"] { background: color-mix(in oklab, var(--bg) 80%, var(--bg-2)) !important; }
body.volt [class*="bg-success/"] { background: color-mix(in oklab, var(--success) 14%, var(--bg-1)) !important; }
body.volt [class*="bg-accent/"]  { background: color-mix(in oklab, var(--accent-2) 14%, var(--bg-1)) !important; }
body.volt [class*="bg-gray-50"], body.volt [class*="bg-gray-100"] { background: var(--bg-2) !important; }

/* Gradients (limpiar fondos blancos visibles) */
body.volt .bg-gradient-to-br,
body.volt .bg-gradient-to-b,
body.volt .bg-gradient-to-r {
  background-image: linear-gradient(135deg, var(--bg-1), var(--bg-2)) !important;
}

/* Specific gold/yellow tinted gradients (prize cards) — convertir a accent */
body.volt .from-yellow-100,
body.volt .to-yellow-50,
body.volt .from-gold\/20    { --tw-gradient-from: color-mix(in oklab, var(--accent) 15%, var(--bg-1)) !important; }
body.volt .from-gray-100,
body.volt .to-gray-50       { --tw-gradient-from: var(--bg-2) !important; }
body.volt .from-orange-100,
body.volt .to-orange-50     { --tw-gradient-from: color-mix(in oklab, var(--accent-2) 15%, var(--bg-1)) !important; }

/* Shadows mas sutiles */
body.volt .shadow-sm,
body.volt .shadow-md,
body.volt .shadow-lg,
body.volt .shadow-xl,
body.volt .shadow-coin,
body.volt .shadow-gold      { box-shadow: 0 8px 24px rgba(0,0,0,.4) !important; }
body.volt .shadow-2xl       { box-shadow: 0 20px 50px rgba(0,0,0,.5) !important; }

/* Rounded surfaces (cards) */
body.volt .rounded-2xl,
body.volt .rounded-3xl,
body.volt .rounded-xl       { border-color: var(--line); }

/* Inputs y forms en páginas internas */
body.volt input[type="text"]:not(.num-inp),
body.volt input[type="email"],
body.volt input[type="password"],
body.volt input[type="tel"],
body.volt input[type="number"],
body.volt input[type="search"],
body.volt input[type="datetime-local"],
body.volt textarea:not([class*="text-green"]),
body.volt select {
  background: var(--bg-2) !important;
  color: var(--fg) !important;
  border-color: var(--line) !important;
}
body.volt input:focus, body.volt textarea:focus, body.volt select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 25%, transparent) !important;
}

/* Tabs activos heredados (clase .active de leaderboard/predictions) */
body.volt .bg-primary.text-white {
  background: var(--accent) !important;
  color: var(--accent-ink) !important;
}

/* Tablas de admin (dashboard.php legacy) */
body.volt table { color: var(--fg); }

/* Sticky bottom de tabla legacy */
body.volt .bg-primary.text-white.shadow-2xl {
  background: var(--bg-2) !important;
  color: var(--fg) !important;
  border-top: 1px solid var(--line);
}

/* Flag coin shadow */
body.volt .shadow-coin {
  box-shadow: 0 4px 12px rgba(0,0,0,.4), inset 0 0 0 2px rgba(255,255,255,.5) !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .volt .hero-content      { grid-template-columns: 1fr; gap: 40px; }
  .volt .scale-grid        { grid-template-columns: repeat(2, 1fr); }
  .volt .scale-cell:nth-child(4n) { border-right: 1px solid var(--line); }
  .volt .scale-cell:nth-child(2n) { border-right: 0; }
  .volt .pozo-feature      { grid-template-columns: 1fr; gap: 48px; padding: 32px; }
  .volt .steps             { grid-template-columns: repeat(2, 1fr); }
  .volt .step:nth-child(2) { border-right: 0; }
  .volt .step              { border-bottom: 1px solid var(--line); }
  .volt .step:last-child   { border-bottom: 0; }
  .volt .section-head      { grid-template-columns: 1fr; gap: 24px; }
  .volt .section-head .rhs { justify-self: start; }
  .volt .cta-block         { grid-template-columns: 1fr; padding: 48px 32px; }
  .volt .foot-grid         { grid-template-columns: 1fr 1fr; }
  .volt .nav-links         { display: none; }
  .volt .nav-burger        { display: inline-flex; }
}
@media (max-width: 720px) {
  :root { --gutter: 18px; --section-y: 80px; }
  .volt .scale-grid { grid-template-columns: 1fr; }
  .volt .scale-cell { border-right: 0 !important; }
  .volt .steps      { grid-template-columns: 1fr; }
  .volt .step       { border-right: 0; }
  .volt .foot-grid  { grid-template-columns: 1fr; }
  .volt .hero       { min-height: auto; padding-bottom: 60px; padding-top: 32px; }
  .volt .hero-meta  { gap: 16px; flex-wrap: wrap; padding-bottom: 14px; margin-bottom: 32px; }
  .volt .hero-headline { font-size: clamp(48px, 14vw, 92px); }
  .volt .pozo-feature .stats-row { gap: 20px; }
  .volt .ref-current { grid-template-columns: 1fr; }
  .volt .pozo-amount { font-size: 56px; }
  .volt .nav-cta span { display: none; }
}
