/* ============ Tokens ============ */
:root {
  --bg: #07090f;
  --bg-2: #0b0e17;
  --bg-3: #10141f;
  --glass: rgba(255, 255, 255, 0.035);
  --glass-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #f2f3f5;
  --dim: #9aa0b4;
  --lime: #b4ff45;
  --teal: #38e8c6;
  --warm: #ff5c3a;
  --warm-2: #ffb03a;
  --grad: linear-gradient(92deg, var(--lime), var(--teal));
  --grad-warm: linear-gradient(92deg, var(--warm), var(--warm-2));
  --lime-soft: rgba(180, 255, 69, 0.12);
  --teal-soft: rgba(56, 232, 198, 0.12);
  --warm-soft: rgba(255, 92, 58, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Mono', 'Courier New', monospace;
  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; flex: none; }
::selection { background: var(--lime); color: #06080c; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--lime); color: #000; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.012em; line-height: 1.14; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); line-height: 1.06; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); line-height: 1.1; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.12rem; display: flex; align-items: center; gap: 8px; }
h4 svg { color: var(--lime); font-size: 1.15em; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.warm { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--dim); }
.note { color: var(--dim); font-size: 0.92rem; margin-top: 18px; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--grad); border-radius: 2px; }
.eyebrow-warm { color: var(--warm-2); }
.eyebrow-warm::before { background: var(--grad-warm); }
.eyebrow svg { font-size: 1.1em; }

.tag {
  display: inline-block; font-style: normal; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; background: var(--teal-soft); color: var(--teal); border: 1px solid rgba(56, 232, 198, 0.3); vertical-align: middle;
}
.tag-warm { background: var(--warm-soft); color: var(--warm-2); border-color: rgba(255, 176, 58, 0.35); }

/* ============ Botones ============ */
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.97rem; border: 1px solid transparent; cursor: pointer; font-family: var(--font-body);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { font-size: 1.1em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--grad); color: #06080c; box-shadow: 0 8px 30px rgba(180, 255, 69, 0.22); }
.btn-primary:hover { box-shadow: 0 14px 40px rgba(180, 255, 69, 0.32); }
.btn-ghost { background: var(--glass); border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: var(--glass-2); }
.btn-warm { background: var(--grad-warm); color: #1a0a05; box-shadow: 0 8px 30px rgba(255, 92, 58, 0.28); }
.btn-sm { padding: 9px 16px; font-size: 0.88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-more { color: var(--teal); font-weight: 500; align-self: center; }
.link-more:hover { text-decoration: underline; }

/* ============ Nav ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 50;
  background: rgba(7, 9, 15, 0.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-color: var(--border); background: rgba(7, 9, 15, 0.82); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; color: #06080c;
  box-shadow: 0 6px 20px rgba(56, 232, 198, 0.3);
}
.brand-mark svg { font-size: 20px; }
.brand-text { font-family: var(--font-display); line-height: 1; display: flex; flex-direction: column; }
.brand-text b { font-size: 0.98rem; letter-spacing: 0.14em; font-weight: 700; }
.brand-text i { font-style: normal; font-size: 0.72rem; letter-spacing: 0.32em; color: var(--teal); font-weight: 700; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { padding: 8px 12px; border-radius: 999px; font-size: 0.92rem; color: var(--dim); font-weight: 500; transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--glass-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); background: var(--glass); cursor: pointer; place-items: center; }
.burger svg { font-size: 22px; color: var(--text); }
.burger .ic-x, .burger[aria-expanded="true"] .ic-menu { display: none; }
.burger[aria-expanded="true"] .ic-x { display: block; }

/* ============ Hero ============ */
.hero { position: relative; min-height: min(100svh, 920px); display: flex; flex-direction: column; justify-content: center; padding: calc(var(--nav-h) + 56px) 0 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0.55; transform: scale(1.04); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(180, 255, 69, 0.14), transparent 70%),
    radial-gradient(50% 50% at 85% 20%, rgba(56, 232, 198, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(7, 9, 15, 0.55) 0%, rgba(7, 9, 15, 0.35) 45%, rgba(7, 9, 15, 0.92) 85%, var(--bg) 100%),
    linear-gradient(90deg, rgba(7, 9, 15, 0.75), rgba(7, 9, 15, 0.2));
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.35;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%); -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero-pcb { position: absolute; inset: 0; opacity: 0.16; background: url("assets/img/circuit.svg") center / 640px 640px repeat; mask-image: radial-gradient(70% 70% at 70% 40%, black, transparent 75%); -webkit-mask-image: radial-gradient(70% 70% at 70% 40%, black, transparent 75%); }
.hero-in { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: center; position: relative; }
.circuit-anim { position: absolute; pointer-events: none; z-index: 0; }
.circuit-anim .c-base { stroke: rgba(56, 232, 198, 0.28); }
.circuit-anim .c-pads { fill: var(--bg); stroke: rgba(56, 232, 198, 0.6); stroke-width: 1.5; }
.circuit-anim .c-flow { stroke: var(--lime); stroke-dasharray: 14 260; stroke-dashoffset: 0; animation: flow 6s linear infinite; filter: drop-shadow(0 0 6px rgba(180, 255, 69, 0.8)); }
.circuit-anim .c-flow path:nth-child(2) { animation-delay: -2s; animation-duration: 7s; }
.circuit-anim .c-flow path:nth-child(3) { animation-delay: -4s; animation-duration: 8s; }
@keyframes flow { from { stroke-dashoffset: 548; } to { stroke-dashoffset: 0; } }
.circuit-hero { right: -40px; top: -120px; width: 640px; opacity: 0.9; }
.hero-card { position: relative; z-index: 1; }
.circuit-arena { right: 0; top: 40px; width: 560px; opacity: 0.55; }
.circuit-arena .c-base { stroke: rgba(255, 176, 58, 0.3); }
.circuit-arena .c-pads { stroke: rgba(255, 176, 58, 0.6); }
.circuit-arena .c-flow { stroke: var(--warm-2); filter: drop-shadow(0 0 6px rgba(255, 176, 58, 0.8)); }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; padding: 6px 14px 6px 10px; border: 1px solid rgba(56, 232, 198, 0.3); border-radius: 999px; background: rgba(7, 9, 15, 0.5); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(180, 255, 69, 0.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(180, 255, 69, 0.6); } 70% { box-shadow: 0 0 0 10px rgba(180, 255, 69, 0); } 100% { box-shadow: 0 0 0 0 rgba(180, 255, 69, 0); } }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: #d3d6e0; max-width: 620px; margin-top: 22px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 9px 14px; border-radius: 12px; background: rgba(11, 14, 23, 0.7); border: 1px solid var(--border); font-size: 0.92rem; color: var(--dim); }
.pill svg { color: var(--lime); font-size: 1.15em; }
.pill b { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.countdown { display: flex; gap: 12px; margin-top: 34px; }
.countdown div { min-width: 82px; padding: 12px 10px; border-radius: 14px; background: rgba(11, 14, 23, 0.72); border: 1px solid var(--border); text-align: center; backdrop-filter: blur(8px); }
.countdown b { display: block; font-family: var(--font-mono); font-size: 1.9rem; font-weight: 600; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; }
.countdown span { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin-top: 6px; }

.hero-card { display: flex; flex-direction: column; gap: 12px; padding: 18px; border-radius: var(--radius); background: rgba(11, 14, 23, 0.72); border: 1px solid var(--border); backdrop-filter: blur(14px); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45); }
.hc-row { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 14px; background: var(--glass); border: 1px solid var(--border); }
.hc-row img { width: 60px; height: 60px; object-fit: contain; flex: none; }
.hc-row small { display: block; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); }
.hc-row strong { display: block; font-family: var(--font-display); font-size: 1.02rem; margin: 2px 0 4px; }
.hc-row .muted { font-size: 0.82rem; display: block; line-height: 1.4; }
.hc-logo { width: 60px; height: 60px; border-radius: 16px; background: var(--grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: #06080c; flex: none; }
.hc-slot { padding: 16px; border-radius: 14px; border: 1.5px dashed rgba(180, 255, 69, 0.45); background: var(--lime-soft); display: flex; flex-direction: column; gap: 4px; }
.hc-slot small { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); }
.hc-slot strong { font-family: var(--font-display); font-size: 1.05rem; }
.hc-slot a { color: var(--lime); font-weight: 600; font-size: 0.9rem; }

.hero-marquee { margin-top: 56px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(11, 14, 23, 0.6); overflow: hidden; padding: 12px 0; }
.hero-marquee div { display: flex; gap: 48px; white-space: nowrap; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); animation: marquee 40s linear infinite; width: max-content; }
.hero-marquee span { display: inline-flex; align-items: center; gap: 10px; }
.hero-marquee span svg { color: var(--lime); font-size: 1.1em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ Logos / auspician ============ */
.logos { padding: 44px 0 10px; }
.logos-title { text-align: center; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); margin-bottom: 20px; }
.logos-row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.logo-slot { aspect-ratio: 2.4; border-radius: 12px; border: 1.5px dashed var(--border-strong); background: var(--glass); display: grid; place-items: center; text-align: center; padding: 8px; color: var(--dim); font-size: 0.78rem; line-height: 1.3; transition: border-color 0.25s, color 0.25s, transform 0.25s; }
.logo-slot:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.logo-slot b { display: block; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
.logo-real { aspect-ratio: 2.4; border-radius: 12px; background: #fff; display: grid; place-items: center; padding: 12px; }
.logo-real img { max-height: 56px; width: auto; object-fit: contain; }
.logos-note { text-align: center; color: var(--dim); font-size: 0.9rem; margin-top: 16px; }
.logos-note a { color: var(--teal); font-weight: 500; }

/* ============ Metas ============ */
.metas { padding: 40px 0 20px; }
.metas-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.meta { padding: 22px 20px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--border); position: relative; overflow: hidden; }
.meta::after { content: ''; position: absolute; inset: auto -20% -60% auto; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(56, 232, 198, 0.16), transparent 70%); }
.meta b { display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 2.3vw, 2.5rem); font-weight: 700; line-height: 1.05; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.meta span { display: block; color: var(--dim); font-size: 0.9rem; margin-top: 8px; }
.meta small { position: absolute; top: 12px; right: 14px; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); opacity: 0.7; }

/* ============ Manifiesto ============ */
.manifiesto { padding: 72px 0 40px; position: relative; }
.manifiesto::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 60% at 50% 50%, rgba(56, 232, 198, 0.07), transparent 70%); }
.mani-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; }
.mani-grid { display: grid; gap: 14px; max-width: 900px; }
.mani-photo { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 5; margin: 0; }
.mani-photo::before { content: ''; position: absolute; inset: -1px; z-index: 1; pointer-events: none; opacity: 0.35; background: url("assets/img/circuit.svg") center / 480px 480px repeat; mask-image: linear-gradient(200deg, black 10%, transparent 55%); -webkit-mask-image: linear-gradient(200deg, black 10%, transparent 55%); }
.mani-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.mani-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 60px 20px 18px; color: #fff; font-weight: 500; font-size: 0.95rem; display: flex; gap: 10px; align-items: center; background: linear-gradient(transparent, rgba(7, 9, 15, 0.9)); }
.mani-photo figcaption svg { color: var(--lime); font-size: 1.3em; flex: none; }
.mani-line { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.3; letter-spacing: -0.005em; padding-left: 26px; position: relative; color: #e6e8ee; }
.mani-line::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 12px; height: 2px; background: var(--grad); }
.mani-line span { color: var(--lime); }
.mani-close { margin-top: 36px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3.1rem); letter-spacing: -0.015em; line-height: 1.12; }

/* ============ Secciones ============ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-alt::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.07; background: url("assets/img/circuit.svg") center / 640px 640px repeat; mask-image: linear-gradient(180deg, black, transparent 60%); -webkit-mask-image: linear-gradient(180deg, black, transparent 60%); }
.section-alt > .wrap { position: relative; z-index: 1; }
.sec-head { max-width: 760px; margin-bottom: 44px; }
.sec-lead { color: var(--dim); font-size: 1.08rem; margin-top: 16px; }

.card { padding: 22px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--border); transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s; }
.card:hover { border-color: var(--border-strong); background: var(--glass-2); }

/* PMV */
.pmv { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.pmv-card { padding: 28px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--border); position: relative; overflow: hidden; }
.pmv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.pmv-card:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), #7aa2ff); }
.pmv-card:nth-child(3)::before { background: var(--grad-warm); }
.pmv-card .num { font-family: var(--font-mono); color: var(--dim); font-size: 0.74rem; letter-spacing: 0.14em; }
.pmv-card h3 { margin: 10px 0 12px; }
.pmv-card p { color: #cfd3dd; }

.why { margin-top: 64px; padding: 36px; border-radius: 24px; background: linear-gradient(135deg, rgba(180, 255, 69, 0.07), rgba(56, 232, 198, 0.05)); border: 1px solid rgba(180, 255, 69, 0.2); }
.why-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.why-head p { color: var(--dim); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-item { padding: 20px; border-radius: 14px; background: rgba(7, 9, 15, 0.55); border: 1px solid var(--border); }
.why-item b { display: block; font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; line-height: 1.1; color: var(--lime); }
.why-item i { display: block; font-style: normal; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin: 4px 0 10px; }
.why-item p { color: #cfd3dd; font-size: 0.93rem; }
.why-item .src { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 0.74rem; color: var(--dim); font-family: var(--font-mono); }
.why-item .src:hover { color: var(--teal); }
.why-item .src svg { font-size: 1.1em; flex: none; }
.nemby-datos { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: -12px 0 28px; }
.ndato { padding: 16px 18px; border-radius: 14px; background: var(--glass); border: 1px solid var(--border); }
.ndato b { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--lime); line-height: 1.15; }
.ndato span { display: block; color: var(--dim); font-size: 0.82rem; margin-top: 4px; }

/* Ejes */
.ejes-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.eje { padding: 22px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--border); transition: transform 0.3s var(--ease), border-color 0.3s; overflow: hidden; display: flex; flex-direction: column; }
.eje-body { display: flex; gap: 16px; }
.eje-foto { padding: 0; }
.eje-foto > img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; display: block; border-bottom: 1px solid var(--border); }
.eje-foto .eje-body { padding: 20px 22px 22px; }
.eje:hover { transform: translateY(-4px); border-color: rgba(180, 255, 69, 0.4); }
.eje-ico { width: 48px; height: 48px; border-radius: 13px; background: var(--lime-soft); color: var(--lime); display: grid; place-items: center; flex: none; }
.eje-ico svg { font-size: 24px; }
.eje:first-child .eje-ico { background: var(--grad); color: #06080c; }
.eje h3 { font-size: 1.1rem; margin-bottom: 6px; }
.eje h3 { font-size: 1.1rem; margin-bottom: 6px; }
.eje p { color: var(--dim); font-size: 0.93rem; }

/* Arena / batallas */
.arena { overflow: hidden; }
.arena-bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 40% at 80% 10%, rgba(255, 92, 58, 0.16), transparent 70%), radial-gradient(40% 40% at 10% 90%, rgba(255, 176, 58, 0.1), transparent 70%); }
.arena-bg::after { content: ''; position: absolute; inset: 0; opacity: 0.08; background: url("assets/img/circuit-warm.svg") center / 640px 640px repeat; mask-image: radial-gradient(60% 60% at 80% 30%, black, transparent 75%); -webkit-mask-image: radial-gradient(60% 60% at 80% 30%, black, transparent 75%); }
.arena .wrap { position: relative; }
.arena .sec-head { position: relative; z-index: 1; }
.arena-photos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 24px; position: relative; z-index: 1; }
.arena-photos figure { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 92, 58, 0.3); aspect-ratio: 3 / 2; }
.arena-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.arena-photos figure:hover img { transform: scale(1.05); }
.arena-photos figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px; font-size: 0.85rem; font-weight: 500; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); }
.arena-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
.arena-cats { display: grid; gap: 12px; align-content: start; }
.cat { display: grid; grid-template-columns: 52px 1fr auto; gap: 16px; align-items: center; padding: 18px 20px; border-radius: 16px; background: var(--glass); border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s var(--ease); }
.cat:hover { border-color: rgba(255, 92, 58, 0.5); transform: translateX(4px); }
.cat-n { width: 52px; height: 52px; border-radius: 14px; background: var(--warm-soft); color: var(--warm-2); font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; display: grid; place-items: center; }
.cat h3 { font-size: 1.1rem; }
.cat p { color: var(--dim); font-size: 0.9rem; margin-top: 3px; }
.cat-t { font-family: var(--font-mono); font-size: 0.85rem; color: var(--warm-2); padding: 6px 12px; border-radius: 999px; background: var(--warm-soft); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.arena-side { display: grid; gap: 12px; align-content: start; }
.arena-side .card h4 svg { color: var(--warm-2); }
.score { display: grid; gap: 10px; margin-top: 14px; }
.score div { font-size: 0.9rem; }
.score .bar { height: 8px; border-radius: 99px; background: var(--glass-2); margin-top: 6px; overflow: hidden; }
.score .bar i { display: block; height: 100%; width: 0; background: var(--grad-warm); border-radius: 99px; transition: width 1.2s var(--ease); }
.score .lbl { display: flex; justify-content: space-between; color: #d3d6e0; }
.score .lbl b { font-family: var(--font-mono); color: var(--warm-2); font-weight: 500; }
.checks { list-style: none; display: grid; gap: 10px; margin-top: 14px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; color: #d3d6e0; font-size: 0.93rem; }
.checks li::before { content: ''; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--lime-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23b4ff45' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; }
.card-safe { background: var(--warm-soft); border-color: rgba(255, 92, 58, 0.3); }
.card-safe p { color: #f0d6cf; font-size: 0.92rem; margin-top: 10px; }
.arena-cta { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 24px 28px; border-radius: 20px; background: linear-gradient(90deg, rgba(255, 92, 58, 0.16), rgba(255, 176, 58, 0.08)); border: 1px solid rgba(255, 92, 58, 0.35); }
.arena-cta strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.arena-cta span { color: var(--dim); font-size: 0.93rem; }

/* Agenda */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tab { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border); background: var(--glass); color: var(--dim); font-weight: 500; font-size: 0.9rem; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.tab i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.tab[aria-selected="true"] { background: var(--text); color: #06080c; border-color: var(--text); }
.tab:hover:not([aria-selected="true"]) { color: var(--text); border-color: var(--border-strong); }
.timeline { list-style: none; position: relative; display: grid; gap: 10px; }
.timeline::before { content: ''; position: absolute; left: 92px; top: 0; bottom: 0; width: 1px; background: linear-gradient(var(--border-strong), var(--border)); }
.slot { display: grid; grid-template-columns: 72px 40px 1fr; gap: 0 12px; align-items: start; padding: 14px 16px 14px 0; border-radius: 14px; transition: background 0.25s, opacity 0.35s, transform 0.35s var(--ease); }
.slot:hover { background: var(--glass); }
.slot.hidden { display: none; }
.slot time { font-family: var(--font-mono); font-size: 1.05rem; font-weight: 600; color: var(--text); text-align: right; padding-top: 2px; }
.slot .dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--border-strong); margin: 8px auto 0; }
.slot[data-esc="principal"] .dot { background: var(--teal); }
.slot[data-esc="arena"] .dot { background: var(--warm); }
.slot[data-esc="taller"] .dot { background: var(--lime); }
.slot[data-esc="stands"] .dot { background: #7aa2ff; }
.slot-body { padding: 8px 14px 10px; border-radius: 12px; background: var(--glass); border: 1px solid var(--border); }
.slot-body h3 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.slot-body p { color: var(--dim); font-size: 0.9rem; margin-top: 4px; }
.slot-esc { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px; border: 1px solid; }
.slot[data-esc="principal"] .slot-esc { color: var(--teal); border-color: rgba(56, 232, 198, 0.4); }
.slot[data-esc="arena"] .slot-esc { color: var(--warm-2); border-color: rgba(255, 92, 58, 0.4); }
.slot[data-esc="taller"] .slot-esc { color: var(--lime); border-color: rgba(180, 255, 69, 0.4); }
.slot[data-esc="stands"] .slot-esc { color: #7aa2ff; border-color: rgba(122, 162, 255, 0.4); }
.slot.destacado .slot-body { background: linear-gradient(90deg, rgba(255, 92, 58, 0.18), rgba(255, 176, 58, 0.06)); border-color: rgba(255, 92, 58, 0.45); }
.slot.destacado h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.slot .star { color: var(--warm-2); display: inline-flex; }
.slot .star svg, .inl.star { fill: currentColor; color: var(--warm-2); vertical-align: -0.15em; }
.agenda-ad { margin-top: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 18px 22px; border-radius: 16px; border: 1.5px dashed rgba(180, 255, 69, 0.4); background: var(--lime-soft); }
.agenda-ad strong { flex: 1; font-weight: 500; font-size: 0.95rem; }

/* Stands */
.stands-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.stand { padding: 24px 22px; border-radius: 22px; background: var(--glass); border: 1px solid var(--border); position: relative; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), border-color 0.3s; }
.stand:hover { transform: translateY(-4px); }
.stand.destacado { border-color: rgba(180, 255, 69, 0.5); background: linear-gradient(180deg, rgba(180, 255, 69, 0.08), var(--glass)); }
.stand .badge { position: absolute; top: -12px; left: 24px; padding: 4px 12px; border-radius: 999px; background: var(--grad); color: #06080c; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.stand h3 { font-size: 1.2rem; }
.stand .medida { font-family: var(--font-mono); color: var(--teal); font-size: 0.85rem; margin: 4px 0 14px; }
.stand .precio { font-family: var(--font-display); font-size: clamp(1.2rem, 1.6vw, 1.5rem); font-weight: 700; letter-spacing: -0.01em; }
.stand .precio small { display: block; font-size: 0.7rem; font-family: var(--font-mono); color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 400; margin-top: 2px; }
.stand .checks { margin: 18px 0 24px; flex: 1; }
.stand .btn { align-self: stretch; justify-content: center; white-space: normal; text-align: center; }

/* Auspiciar */
.sponsor { background: radial-gradient(70% 40% at 50% 0%, rgba(56, 232, 198, 0.1), transparent 70%); }
.tiers { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.tier { padding: 22px 18px; border-radius: 20px; background: var(--glass); border: 1px solid var(--border); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.3s var(--ease), border-color 0.3s; }
.tier:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.tier::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--tier-color, var(--teal)); }
.tier.top { background: linear-gradient(180deg, rgba(232, 236, 244, 0.1), var(--glass)); border-color: rgba(232, 236, 244, 0.35); }
.tier h3 { font-size: 1.25rem; color: var(--tier-color, var(--text)); }
.tier .cupo { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-top: 4px; }
.tier .precio { font-family: var(--font-display); font-size: clamp(1rem, 1.2vw, 1.18rem); font-weight: 700; margin: 14px 0 4px; letter-spacing: -0.01em; }
.tier .checks { margin: 14px 0 20px; flex: 1; gap: 8px; }
.tier .checks li { font-size: 0.86rem; }
.tier .btn { align-self: stretch; justify-content: center; }

.adspaces { margin-top: 56px; }
.adspaces-head { margin-bottom: 20px; }
.adspaces-head p { color: var(--dim); margin-top: 6px; }
.adspaces-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.adspace { padding: 20px; border-radius: 16px; border: 1.5px dashed var(--border-strong); background: var(--glass); display: flex; gap: 14px; align-items: flex-start; transition: border-color 0.25s, background 0.25s; }
.adspace:hover { border-color: var(--lime); background: var(--lime-soft); }
.ad-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--lime-soft); color: var(--lime); display: grid; place-items: center; flex: none; }
.ad-ico svg { font-size: 20px; }
.adspace strong { display: block; font-size: 1rem; }
.adspace p { color: var(--dim); font-size: 0.88rem; margin-top: 4px; }
.adspace em { display: inline-block; margin-top: 8px; font-style: normal; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.sponsor-cta { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 28px 32px; border-radius: 22px; background: linear-gradient(90deg, rgba(180, 255, 69, 0.14), rgba(56, 232, 198, 0.08)); border: 1px solid rgba(180, 255, 69, 0.35); }
.sponsor-cta strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; }
.sponsor-cta span { color: var(--dim); }

/* Prensa + muni */
.prensa-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: start; }
.prensa-copy .checks { margin: 24px 0 28px; }
.muni-card { padding: 26px; border-radius: 22px; background: linear-gradient(180deg, rgba(200, 30, 45, 0.1), var(--glass)); border: 1px solid rgba(220, 60, 70, 0.3); }
.muni-top { display: flex; gap: 16px; align-items: center; }
.muni-top img { width: 84px; height: 84px; object-fit: contain; }
.muni-top small { display: block; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); }
.muni-top strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin: 4px 0 6px; line-height: 1.2; }
.muni-card > p { color: #d3d6e0; margin: 18px 0; font-size: 0.95rem; }
.muni-photo { border-radius: 14px; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Ñemby */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
.gallery figure { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery figure:nth-child(4), .gallery figure:nth-child(5), .gallery figure:nth-child(6) { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px; font-size: 0.82rem; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, 0.75)); }
.ubicacion { margin-top: 40px; display: grid; grid-template-columns: 1fr 1.6fr; gap: 20px; }
.ubi-info { padding: 26px; border-radius: 20px; background: var(--glass); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.ubi-info h3 { display: flex; align-items: center; gap: 8px; }
.ubi-info h3 svg { color: var(--lime); }
.ubi-info .btn { align-self: flex-start; margin-top: auto; }
.ubi-map { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); min-height: 320px; background: #1a1f2c; }
.ubi-map iframe { filter: invert(0.92) hue-rotate(180deg) saturate(0.6) contrast(0.95); }
.ubi-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* FAQ */
.faq-wrap { max-width: 860px; }
.faq details { border: 1px solid var(--border); border-radius: 14px; background: var(--glass); margin-bottom: 10px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq-ic { color: var(--lime); font-size: 1.3rem; flex: none; transition: transform 0.3s var(--ease); }
.faq details[open] .faq-ic { transform: rotate(180deg); }
.faq details p { padding: 0 22px 18px; color: var(--dim); }

/* Contacto */
.contacto { background: radial-gradient(60% 50% at 80% 100%, rgba(180, 255, 69, 0.1), transparent 70%); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-list { display: grid; gap: 10px; margin-top: 28px; }
.contact-list a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px; background: var(--glass); border: 1px solid var(--border); font-weight: 500; transition: border-color 0.25s, transform 0.25s var(--ease); }
.contact-list a:hover { border-color: var(--lime); transform: translateX(4px); }
.contact-list svg { font-size: 1.4em; color: var(--lime); }
.form { padding: 28px; border-radius: 22px; background: var(--bg-3); border: 1px solid var(--border); display: grid; gap: 14px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 0.85rem; color: var(--dim); font-weight: 500; }
.form input, .form select, .form textarea { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border-strong); background: rgba(7, 9, 15, 0.7); color: var(--text); font: inherit; font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(180, 255, 69, 0.18); }
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%239aa0b4' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; }
.form select option { background: #10141f; }
.form textarea { resize: vertical; }
.f-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.f-hint { color: var(--dim); font-size: 0.8rem; }
.form.invalid input:invalid { border-color: var(--warm); }

/* Footer */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border); background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.foot-grid .muted { margin-top: 14px; font-size: 0.9rem; max-width: 380px; }
.foot-grid .muted a { color: var(--teal); }
.foot-grid h5 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.foot-grid div > a:not(.brand) { display: flex; align-items: center; gap: 8px; color: #d3d6e0; padding: 4px 0; font-size: 0.93rem; }
.foot-grid div > a:not(.brand) svg { color: var(--dim); font-size: 1.05em; }
.foot-grid div > a:not(.brand):hover { color: var(--lime); }
.credits { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--dim); font-size: 0.78rem; display: grid; gap: 6px; }
.credits a { color: var(--dim); text-decoration: underline dotted; }
.credits a:hover { color: var(--text); }

.wa-float { position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); z-index: 40; transition: transform 0.25s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { font-size: 28px; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; } .reveal-d2 { transition-delay: 0.16s; } .reveal-d3 { transition-delay: 0.24s; } .reveal-d4 { transition-delay: 0.32s; } .reveal-d5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .tiers { grid-template-columns: repeat(3, 1fr); }
  .logos-row { grid-template-columns: repeat(3, 1fr); }
  .hero-in { grid-template-columns: 1.3fr 1fr; gap: 28px; }
}
@media (max-width: 960px) {
  .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; padding: 12px 16px 20px; background: rgba(7, 9, 15, 0.96); border-bottom: 1px solid var(--border); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; font-size: 1.05rem; }
  .burger { display: grid; }
  .nav-actions .btn { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 40px); min-height: auto; }
  .hero-in { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .metas-grid { grid-template-columns: repeat(2, 1fr); }
  .pmv, .why-grid, .ejes-grid, .stands-grid, .adspaces-grid, .nemby-datos { grid-template-columns: 1fr 1fr; }
  .arena-grid, .prensa-grid, .contacto-grid, .ubicacion, .mani-wrap { grid-template-columns: 1fr; }
  .mani-photo { max-width: 420px; aspect-ratio: 4 / 4; }
  .circuit-hero { width: 420px; top: -60px; right: -80px; opacity: 0.5; }
  .circuit-arena { width: 380px; opacity: 0.35; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery figure:nth-child(4), .gallery figure:nth-child(5), .gallery figure:nth-child(6) { grid-column: span 1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  h1 { font-size: 2.5rem; }
  .countdown { gap: 8px; }
  .countdown div { min-width: 0; flex: 1; padding: 10px 6px; }
  .countdown b { font-size: 1.5rem; }
  .pmv, .why-grid, .ejes-grid, .stands-grid, .adspaces-grid, .tiers, .metas-grid, .foot-grid { grid-template-columns: 1fr; }
  .nemby-datos { grid-template-columns: 1fr 1fr; }
  .logos-row { grid-template-columns: repeat(2, 1fr); }
  .arena-photos { grid-template-columns: 1fr; }
  .arena-photos figure { aspect-ratio: 16 / 9; }
  .circuit-hero { display: none; }
  .timeline::before { left: 62px; }
  .slot { grid-template-columns: 48px 28px 1fr; gap: 0 8px; padding-right: 0; }
  .slot time { font-size: 0.92rem; }
  .cat { grid-template-columns: 44px 1fr; }
  .cat-t { grid-column: 2; justify-self: start; }
  .f-row { grid-template-columns: 1fr; }
  .why { padding: 22px; }
  .arena-cta, .sponsor-cta { padding: 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .wa-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}
