/* ==========================================================================
   L5 HOLDINGS — hoja de estilos global
   Tema oscuro con acento por división (--acc / --acc-2 según la clase del body)
   ========================================================================== */

:root {
  --bg: #04070e;
  --bg-2: #080d18;
  --bg-3: #0e1524;
  --line: rgba(140, 165, 200, 0.15);
  --line-2: rgba(140, 165, 200, 0.28);
  --txt: #eaf0f8;
  --txt-dim: #9dafc6;
  --txt-mute: #6b7d95;
  --acc: #4aa8ff;
  --acc-2: #0b4fc4;
  --radius: 16px;
  --max: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Arial Black", "Arial Bold", Impact, var(--font);
}

body.studios       { --acc: #b06bfb; --acc-2: #6d28d9; }
body.cybersecurity { --acc: #34d399; --acc-2: #0f766e; }
body.ia-labs       { --acc: #38bdf8; --acc-2: #1d4ed8; }
body.solutions     { --acc: #fb923c; --acc-2: #c2410c; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--acc); color: #04070f; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1d2a3d; border-radius: 10px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--acc); }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Grano y viñeta globales ---------- */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Preloader ---------- */
#pre {
  position: fixed; inset: 0; z-index: 2000; background: var(--bg);
  display: grid; place-items: center; gap: 22px; grid-auto-rows: min-content;
  transition: opacity .7s var(--ease), visibility .7s;
}
#pre.done { opacity: 0; visibility: hidden; }
#pre img { width: 132px; animation: pulse 1.9s ease-in-out infinite; }
#pre .bar { width: 190px; height: 2px; background: rgba(255, 255, 255, .12); overflow: hidden; border-radius: 2px; }
#pre .bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--acc), #fff); transition: width .3s ease; }
#pre span { font-size: .68rem; letter-spacing: .34em; color: var(--txt-mute); text-transform: uppercase; }
@keyframes pulse { 0%, 100% { opacity: .55; transform: scale(.97); } 50% { opacity: 1; transform: scale(1); } }

/* ---------- Cursor luminoso (solo escritorio con puntero fino) ---------- */
#glow {
  position: fixed; top: 0; left: 0; width: 340px; height: 340px; margin: -170px 0 0 -170px;
  border-radius: 50%; pointer-events: none; z-index: 1; opacity: 0;
  background: radial-gradient(circle, color-mix(in srgb, var(--acc) 24%, transparent) 0%, transparent 65%);
  transition: opacity .5s ease;
}
@media (hover: hover) and (pointer: fine) { #glow { opacity: 1; } }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.022em; font-weight: 800; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4.3rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.16rem; }
p { color: var(--txt-dim); }
.lead { font-size: 1.1rem; max-width: 60ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--acc); padding: 8px 15px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--acc) 28%, transparent);
  background: color-mix(in srgb, var(--acc) 8%, transparent);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--acc);
  box-shadow: 0 0 12px var(--acc); animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.grad-text {
  background: linear-gradient(96deg, #fff 0%, #d5e3f4 38%, var(--acc) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Split-text del titular */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; }
.split .w > i {
  display: inline-block; font-style: inherit;
  transform: translateY(110%) rotate(4deg); opacity: 0;
  transition: transform .85s var(--ease), opacity .85s var(--ease);
}
.split.in .w > i { transform: none; opacity: 1; }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(4, 7, 14, .72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line); transition: background .3s, border-color .3s;
}
.hdr.small { background: rgba(4, 7, 14, .92); }
.hdr .wrap { display: flex; align-items: center; gap: 18px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { height: 28px; width: auto; transition: transform .4s var(--ease); }
.brand:hover img { transform: scale(1.09) rotate(-3deg); }
.brand b { font-family: var(--font-display); font-size: 1rem; letter-spacing: .07em; }
.brand b span { color: var(--acc); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; padding: 10px 15px; border-radius: 9px; font-size: .92rem;
  color: var(--txt-dim); transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 1.5px;
  background: var(--acc); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover, .nav a.on { color: var(--txt); }
.nav a:hover::after, .nav a.on::after { transform: scaleX(1); }

.lang { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang button {
  background: none; border: 0; cursor: pointer; color: var(--txt-mute);
  font: 700 .74rem/1 var(--font); letter-spacing: .09em; padding: 9px 13px;
  transition: background .25s, color .25s;
}
.lang button.on { background: var(--acc); color: #04070f; }

.burger {
  display: none; background: none; border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 12px; cursor: pointer; color: var(--txt); font-size: 1rem;
}

/* Barra de progreso de lectura */
#prog {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--acc-2), var(--acc), #fff);
  box-shadow: 0 0 12px var(--acc);
}

/* ---------- Botones ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 11px; font-weight: 700; font-size: .94rem;
  border: 1px solid transparent; cursor: pointer; overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s;
}
.btn > * { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .35) 50%, transparent 80%);
  transform: translateX(-130%); transition: transform .7s var(--ease);
}
.btn:hover::before { transform: translateX(130%); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-p { background: linear-gradient(118deg, var(--acc), var(--acc-2)); color: #04070f; box-shadow: 0 12px 34px -14px var(--acc); }
.btn-p:hover { box-shadow: 0 20px 44px -14px var(--acc); }
.btn-s { border-color: var(--line-2); color: var(--txt); background: rgba(255, 255, 255, .04); }
.btn-s:hover { background: rgba(255, 255, 255, .09); border-color: var(--acc); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 104px 0 92px; overflow: hidden; }
#net { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .85; }
.hero::before {
  content: ""; position: absolute; inset: -35% -12% auto -12%; height: 720px; z-index: 0;
  background:
    radial-gradient(50% 58% at 20% 34%, color-mix(in srgb, var(--acc) 30%, transparent), transparent 68%),
    radial-gradient(44% 52% at 84% 10%, color-mix(in srgb, var(--acc-2) 36%, transparent), transparent 68%);
  filter: blur(26px); pointer-events: none;
  animation: drift 17s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, 0, 0) scale(1); }
  to   { transform: translate3d(3%, 3%, 0) scale(1.09); }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .45;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(72% 62% at 50% 32%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(72% 62% at 50% 32%, #000 0%, transparent 78%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 58px; align-items: center; }
.hero h1 { margin: 22px 0 20px; }
.hero .cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-art { display: flex; justify-content: center; position: relative; }
.hero-art::before {
  content: ""; position: absolute; width: 74%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--acc) 26%, transparent), transparent 66%);
  filter: blur(46px); animation: halo 6.5s ease-in-out infinite alternate;
}
@keyframes halo { from { transform: scale(.9); opacity: .65; } to { transform: scale(1.13); opacity: 1; } }
.hero-art img {
  position: relative; width: min(100%, 470px); height: auto;
  filter: drop-shadow(0 28px 68px rgba(0, 0, 0, .7));
  animation: float 7s ease-in-out infinite;
}
.hero-art img.lockup { width: min(86%, 320px); }
@keyframes float { 0%, 100% { transform: translateY(-9px); } 50% { transform: translateY(9px); } }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.pill {
  font-size: .76rem; letter-spacing: .11em; text-transform: uppercase; font-weight: 700;
  color: var(--txt-mute); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
  transition: color .25s, border-color .25s, transform .25s var(--ease);
}
.pill:hover { color: var(--txt); border-color: var(--acc); transform: translateY(-2px); }

.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2;
  width: 24px; height: 38px; border: 1.5px solid var(--line-2); border-radius: 14px;
}
.scroll-hint::before {
  content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 7px; border-radius: 3px;
  background: var(--acc); transform: translateX(-50%); animation: wheel 1.9s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, -4px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* ---------- Secciones ---------- */
section { padding: 96px 0; position: relative; }
.sec-head { max-width: 740px; margin-bottom: 50px; }
.sec-head h2 { margin: 18px 0 16px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.alt { background: linear-gradient(180deg, transparent, var(--bg-2) 10%, var(--bg-2) 90%, transparent); }

/* ---------- Tarjetas de división ---------- */
.divs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; perspective: 1100px; }
.dcard {
  position: relative; display: flex; flex-direction: column;
  padding: 30px 25px 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  overflow: hidden; transform-style: preserve-3d;
  transition: border-color .35s, box-shadow .35s, transform .18s ease-out;
}
.dcard::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s; pointer-events: none;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), color-mix(in srgb, var(--c) 20%, transparent), transparent 62%);
}
.dcard:hover::before { opacity: 1; }
.dcard::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--c), transparent);
  transform: scaleX(.28); transform-origin: left; transition: transform .5s var(--ease);
}
.dcard:hover::after { transform: scaleX(1); }
.dcard:hover { border-color: color-mix(in srgb, var(--c) 50%, transparent); box-shadow: 0 30px 60px -30px var(--c); }
.dcard > * { position: relative; z-index: 1; transform: translateZ(28px); }
.dcard .ico { height: 96px; margin-bottom: 20px; display: flex; align-items: center; }
.dcard .ico img {
  height: 96px; width: auto;
  filter: drop-shadow(0 0 0 transparent); transition: transform .45s var(--ease), filter .45s;
}
.dcard:hover .ico img { transform: scale(1.09) translateY(-4px); filter: drop-shadow(0 10px 24px color-mix(in srgb, var(--c) 55%, transparent)); }
.dcard h3 { font-family: var(--font-display); letter-spacing: .04em; font-size: 1.02rem; margin-bottom: 11px; }
.dcard h3 span:first-child { color: var(--c); }
.dcard p { font-size: .92rem; flex: 1; }
.dcard .more { margin-top: 20px; font-weight: 700; font-size: .87rem; color: var(--c); display: inline-flex; gap: 7px; transition: gap .3s var(--ease); }
.dcard:hover .more { gap: 13px; }

/* ---------- Tarjetas genéricas ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative; padding: 28px 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, .025); overflow: hidden;
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s; pointer-events: none;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--acc) 13%, transparent), transparent 60%);
}
.card:hover::before { opacity: 1; }
.card:hover { border-color: color-mix(in srgb, var(--acc) 42%, transparent); background: rgba(255, 255, 255, .05); transform: translateY(-4px); }
.card > * { position: relative; z-index: 1; }
.card .n {
  font-family: var(--font-display); font-size: .8rem; color: var(--acc);
  letter-spacing: .18em; display: block; margin-bottom: 13px;
}
.card h3 { margin-bottom: 11px; }
.card p { font-size: .93rem; }

/* ---------- Estadísticas ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  text-align: center; padding: 30px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, .022); transition: border-color .3s, transform .3s var(--ease);
}
.stat:hover { border-color: color-mix(in srgb, var(--acc) 45%, transparent); transform: translateY(-4px); }
.stat b {
  display: block; font-family: var(--font-display); font-size: 2.3rem; line-height: 1.05;
  background: linear-gradient(160deg, #fff, var(--acc)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { font-size: .8rem; letter-spacing: .11em; text-transform: uppercase; color: var(--txt-mute); }

/* ---------- Timeline de proceso ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 22px; }
.steps::before {
  content: ""; position: absolute; left: 4%; right: 4%; top: 27px; height: 2px;
  background: linear-gradient(90deg, var(--acc), color-mix(in srgb, var(--acc) 15%, transparent));
  transform: scaleX(0); transform-origin: left; transition: transform 1.6s var(--ease);
}
.steps.in::before { transform: scaleX(1); }
.step { text-align: center; padding: 0 6px; }
.step .dot {
  width: 54px; height: 54px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: .95rem; color: var(--acc);
  background: var(--bg-2); border: 2px solid color-mix(in srgb, var(--acc) 45%, transparent);
  position: relative; z-index: 1; transition: transform .4s var(--ease), box-shadow .4s, color .3s, background .3s;
}
.step:hover .dot { transform: scale(1.12); background: var(--acc); color: #04070f; box-shadow: 0 0 30px -4px var(--acc); }
.step h3 { font-size: 1rem; margin-bottom: 9px; }
.step p { font-size: .875rem; }

/* ---------- Marquee de tecnologías ---------- */
.marquee { position: relative; overflow: hidden; padding: 22px 0; border-block: 1px solid var(--line); }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.mtrack { display: flex; gap: 46px; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .mtrack { animation-play-state: paused; }
.mtrack span {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .12em; white-space: nowrap;
  color: var(--txt-mute); transition: color .3s;
}
.mtrack span:hover { color: var(--acc); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Producto destacado ---------- */
.prods { display: grid; gap: 24px; }
.prod {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 42px; align-items: center;
  border: 1px solid var(--line); border-radius: 22px; padding: 42px 40px;
  background:
    radial-gradient(78% 130% at 88% 0%, color-mix(in srgb, var(--acc) 15%, transparent), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .008));
  transition: border-color .35s, box-shadow .35s;
}
.prod:hover { border-color: color-mix(in srgb, var(--acc) 42%, transparent); box-shadow: 0 34px 70px -40px var(--acc); }
.prod:nth-child(even) { grid-template-columns: .88fr 1.12fr; }
.prod:nth-child(even) .prod-txt { order: 2; }
.prod:nth-child(even) .prod-logo { order: 1; }
.prod-txt > * { position: relative; z-index: 1; }
.prod .tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--acc); padding: 7px 13px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--acc) 32%, transparent);
  background: color-mix(in srgb, var(--acc) 9%, transparent);
}
.prod h3 {
  font-family: var(--font-display); letter-spacing: -.01em;
  font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 18px 0 14px;
}
.prod p { font-size: .98rem; max-width: 56ch; }
.facts { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 28px; }
.fact {
  border: 1px solid var(--line); border-radius: 9px; padding: 8px 13px;
  font-size: .8rem; color: var(--txt-dim); background: rgba(255, 255, 255, .025);
}

/* Logotipo del producto */
.prod-logo { display: grid; justify-items: center; gap: 18px; position: relative; }
.prod-logo::before {
  content: ""; position: absolute; top: 6%; width: 68%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--acc) 40%, transparent), transparent 68%);
  filter: blur(38px); opacity: .75; transition: opacity .45s, transform .45s var(--ease);
}
.prod-logo img {
  position: relative; width: min(72%, 218px); height: auto; border-radius: 24%;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 26px 54px -22px rgba(0, 0, 0, .95);
  transition: transform .45s var(--ease), box-shadow .45s;
}
.prod-logo.cover img { border-radius: 18px; width: min(84%, 268px); }
.prod-logo.static { cursor: default; }
.prod-logo.static:hover img { transform: translateY(-6px); box-shadow: 0 30px 60px -24px color-mix(in srgb, var(--acc) 45%, transparent); }
.btn.soon { cursor: default; opacity: .92; }
.btn.soon::before { display: none; }
.btn.soon:hover { transform: none; background: rgba(255, 255, 255, .04); border-color: var(--line-2); }
.prod-logo:hover img { transform: translateY(-8px) scale(1.04); box-shadow: 0 36px 66px -22px color-mix(in srgb, var(--acc) 60%, transparent); }
.prod-logo:hover::before { opacity: 1; transform: scale(1.12); }
.prod-logo span {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  font-size: .84rem; font-weight: 700; color: var(--txt-dim); transition: color .3s, gap .3s var(--ease);
}
.prod-logo:hover span { color: var(--acc); gap: 10px; }
.prod h3 a { transition: color .3s; }
.prod h3 a:hover { color: var(--acc); }

/* Maqueta de pantalla */
.mock {
  border: 1px solid var(--line-2); border-radius: 20px; padding: 20px;
  background: linear-gradient(180deg, #0b1120, #070b14);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .06);
  font-size: .82rem;
}
.mock-top { display: flex; justify-content: space-between; align-items: center; color: var(--txt-mute); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.mock-top em {
  font-style: normal; color: var(--acc); display: inline-flex; align-items: center; gap: 6px;
}
.mock-top em::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--acc); animation: blink 1.6s ease-in-out infinite; }
.mock-duel { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; margin: 18px 0 14px; text-align: center; }
.mock-duel b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--txt); line-height: 1.1; }
.mock-duel span { font-size: .7rem; color: var(--txt-mute); }
.mock-duel .vs { font-size: .68rem; letter-spacing: .16em; color: var(--txt-mute); }
.mock-bar { height: 5px; border-radius: 5px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.mock-bar i { display: block; height: 100%; width: 86%; background: linear-gradient(90deg, var(--acc-2), var(--acc)); }
.mock-win { margin: 9px 0 16px; font-size: .74rem; color: var(--txt-mute); display: flex; justify-content: space-between; }
.mock-win b { color: var(--acc); }
.mock-list { list-style: none; display: grid; gap: 8px; }
.mock-list li {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px;
  background: rgba(255, 255, 255, .03); color: var(--txt-dim); font-size: .8rem;
}
.mock-list li i { font-style: normal; font-size: .62rem; font-weight: 800; letter-spacing: .1em; color: var(--acc); min-width: 24px; }
.mock-list li b { margin-left: auto; color: var(--txt); font-variant-numeric: tabular-nums; }
.mock-list li.hot { border: 1px solid color-mix(in srgb, var(--acc) 38%, transparent); background: color-mix(in srgb, var(--acc) 10%, transparent); }
.mock-push {
  margin-top: 14px; padding: 11px 13px; border-radius: 11px; font-size: .76rem; color: var(--txt);
  border: 1px solid color-mix(in srgb, var(--acc) 32%, transparent);
  background: color-mix(in srgb, var(--acc) 11%, transparent);
}

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line); border-radius: 9px; padding: 9px 15px;
  font-size: .85rem; color: var(--txt-dim); background: rgba(255, 255, 255, .025);
  transition: color .25s, border-color .25s, transform .25s var(--ease);
}
.chip:hover { color: var(--txt); border-color: var(--acc); transform: translateY(-3px); }

/* ---------- Lista con check ---------- */
.checks { list-style: none; display: grid; gap: 13px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; color: var(--txt-dim); font-size: .95rem; }
.checks li::before { content: "▸"; color: var(--acc); font-weight: 900; line-height: 1.6; }

/* ---------- Banner CTA ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 22px; padding: 56px 46px;
  background: radial-gradient(90% 150% at 10% 0%, color-mix(in srgb, var(--acc) 24%, transparent), transparent 60%), var(--bg-3);
  display: flex; gap: 32px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cta-band::before {
  content: ""; position: absolute; inset: -50%; pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0deg, color-mix(in srgb, var(--acc) 16%, transparent) 60deg, transparent 130deg);
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 22ch; }

/* ---------- Formulario ---------- */
.form { display: grid; gap: 17px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--txt-mute); display: block; margin-bottom: 8px; }
input, select, textarea {
  width: 100%; padding: 14px 16px; border-radius: 11px; color: var(--txt);
  background: rgba(255, 255, 255, .04); border: 1px solid var(--line);
  font: inherit; font-size: .95rem; transition: border-color .22s, background .22s, box-shadow .22s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--acc); background: rgba(255, 255, 255, .07);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--acc) 14%, transparent);
}
textarea { min-height: 155px; resize: vertical; }
select option { background: var(--bg-2); }
.form-note { font-size: .82rem; color: var(--txt-mute); }
.form-ok {
  display: none; padding: 15px 17px; border-radius: 11px; font-size: .92rem;
  border: 1px solid color-mix(in srgb, var(--acc) 45%, transparent);
  background: color-mix(in srgb, var(--acc) 12%, transparent); color: var(--txt);
}
.form-ok.show { display: block; animation: pop .45s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.ftr { border-top: 1px solid var(--line); padding: 62px 0 32px; background: var(--bg-2); }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.ftr h4 { font-size: .78rem; letter-spacing: .17em; text-transform: uppercase; color: var(--txt-mute); margin-bottom: 15px; }
.ftr ul { list-style: none; display: grid; gap: 10px; }
.ftr a { color: var(--txt-dim); font-size: .92rem; transition: color .22s, padding-left .22s; }
.ftr a:hover { color: var(--acc); padding-left: 5px; }
.ftr .brand { margin-bottom: 16px; }
.ftr-bot {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .84rem; color: var(--txt-mute);
}

/* ---------- Volver arriba ---------- */
#top {
  position: fixed; right: 26px; bottom: 26px; z-index: 55;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line-2); background: rgba(14, 21, 36, .85); backdrop-filter: blur(10px);
  color: var(--txt); font-size: 1rem; display: grid; place-items: center;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .35s, transform .35s var(--ease), border-color .25s, background .25s;
}
#top.show { opacity: 1; transform: none; pointer-events: auto; }
#top:hover { border-color: var(--acc); background: var(--acc); color: #04070f; }

/* ---------- Revelado al hacer scroll ---------- */
.rev { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rev.in { opacity: 1; transform: none; }

/* ---------- Transición de página ---------- */
#fade {
  position: fixed; inset: 0; z-index: 1500; background: var(--bg); pointer-events: none;
  opacity: 0; transition: opacity .38s ease;
}
#fade.on { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .divs { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .steps::before { display: none; }
  .prod, .prod:nth-child(even) { grid-template-columns: 1fr; gap: 30px; }
  .prod:nth-child(even) .prod-txt { order: 1; }
  .prod:nth-child(even) .prod-logo { order: 2; }
}
@media (max-width: 700px) {
  .nav {
    position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 2px; padding: 14px 20px 20px;
    background: var(--bg-2); border-bottom: 1px solid var(--line); display: none;
  }
  .nav.open { display: flex; }
  .nav a::after { display: none; }
  .burger { display: block; }
  .divs, .cards, .cards.two, .row2, .stats, .steps { grid-template-columns: 1fr; }
  .prod { padding: 28px 22px; gap: 28px; }
  section { padding: 68px 0; }
  .hero { padding: 62px 0 70px; }
  .cta-band { padding: 36px 26px; }
  .scroll-hint { display: none; }
  #glow { display: none; }
  #top { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .rev, .split .w > i { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-art img, .hero::before, .hero-art::before, .cta-band::before, .mtrack, .eyebrow::before, .scroll-hint::before { animation: none !important; }
  html { scroll-behavior: auto; }
  #net { display: none; }
}
