@font-face {
  font-family: "Sora";
  src: url("/assets/sora-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("/assets/sora-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("/assets/sora-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("/assets/sora-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("/assets/sora-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #8a2cf6;
  --purple-bright: #a95dff;
  --purple-soft: #cda9ff;
  --ink: #1b1b1b;
  --surface: #242424;
  --surface-2: #2b2b2b;
  --surface-3: #303030;
  --white: #fff;
  --muted: #aaa5b1;
  --muted-2: #77717d;
  --line: #ffffff1c;
  --container: 1180px;
  --page-grid:
    linear-gradient(#ffffff07 1px, transparent 1px),
    linear-gradient(90deg, #ffffff07 1px, transparent 1px);
  --page-grid-size: 70px 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--white);
  background-color: var(--ink);
  background-image: var(--page-grid);
  background-size: var(--page-grid-size);
  font-family: "Sora", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 10px;
  color: var(--white);
  background: var(--purple);
  font-size: 11px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--purple-soft); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid #ffffff14;
  background: #1b1b1bd9;
  backdrop-filter: blur(22px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.04em;
}
.brand img { width: 34px; height: 34px; object-fit: contain; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav-links a {
  color: #c9c5ce;
  font-size: 12px;
  font-weight: 500;
  transition: color .18s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"] { position: relative; }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  height: 2px;
  border-radius: 99px;
  background: var(--purple);
  inset: auto 0 -11px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #ffffff0a;
}
.menu-toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: var(--white); }

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .18s, background .18s, border-color .18s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--purple); box-shadow: 0 14px 38px #8a2cf64d; }
.button-primary:hover { background: #9a44fa; }
.button-secondary { border-color: var(--line); background: #ffffff0b; }
.button-secondary:hover { border-color: #ffffff3b; background: #ffffff12; }
.button-small { min-height: 44px; padding-inline: 17px; background: var(--purple); }

.service-hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 166px 0 92px;
  border-bottom: 1px solid var(--line);
  background-color: var(--ink);
  background-image: var(--page-grid);
  background-size: var(--page-grid-size);
}
.service-hero::before {
  content: none;
}
.service-hero::after {
  content: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 642px;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 82px;
}
.hero-copy { align-self: center; }
.eyebrow, .plan-code, .section-kicker {
  color: var(--purple-soft);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 9px;
  font-weight: 700;
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 0 5px #8a2cf61f; }
.hero-copy h1 {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: clamp(55px, 6.6vw, 88px);
  line-height: .98;
  letter-spacing: -.075em;
  font-weight: 650;
}
.hero-copy h1 span { color: var(--purple-bright); }
.hero-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 29px; }
.hero-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #b7b1bc;
  background: #ffffff08;
  font-size: 9px;
  font-weight: 600;
}
.service-hero .eyebrow,
.service-hero .hero-copy h1,
.service-hero .hero-copy > p,
.service-hero .hero-actions,
.service-hero .hero-tags {
  animation: heroRise .72s cubic-bezier(.22, 1, .36, 1) both;
}
.service-hero .hero-copy h1 { animation-delay: .06s; }
.service-hero .hero-copy > p { animation-delay: .12s; }
.service-hero .hero-actions { animation-delay: .18s; }
.service-hero .hero-tags { animation-delay: .24s; }
.signal-panel {
  position: relative;
  min-height: 430px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #ffffff20;
  border-radius: 28px;
  background: linear-gradient(145deg, #303030, #202020);
  box-shadow: 0 34px 85px #00000040;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.signal-panel:hover {
  transform: translateY(-5px);
  border-color: #a95dff52;
  box-shadow: 0 38px 90px #00000052, 0 0 0 1px #8a2cf612;
}
.signal-panel::after {
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  left: -45%;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cda9ffb8, transparent);
  animation: panelTrace 6.5s ease-in-out infinite;
  pointer-events: none;
}
.service-hero .signal-panel { animation: panelReveal .82s .14s ease-out both; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes panelReveal {
  from { opacity: 0; clip-path: inset(0 12% 0 12% round 28px); }
  to { opacity: 1; clip-path: inset(0 0 0 0 round 28px); }
}
@keyframes panelTrace {
  0%, 16% { left: -45%; opacity: 0; }
  25% { opacity: 1; }
  58%, 100% { left: 112%; opacity: 0; }
}
.panel-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.panel-top small { display: block; color: var(--muted-2); font-size: 8px; letter-spacing: .16em; }
.panel-top strong { display: block; margin-top: 8px; font-size: 14px; }
.panel-pill {
  padding: 8px 10px;
  border: 1px solid #75ffb329;
  border-radius: 999px;
  color: #9af9c1;
  background: #75ffb30d;
  font-size: 8px;
  font-weight: 700;
}
/* Visualizaciones específicas para cada servicio */
.service-visual-stage {
  position: relative;
  min-height: 318px;
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(#ffffff06 1px, transparent 1px),
    linear-gradient(90deg, #ffffff06 1px, transparent 1px),
    #1d1d1d;
  background-size: 26px 26px;
}
.service-visual-stage::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, #8a2cf637, transparent 67%);
  right: -120px;
  top: -130px;
  pointer-events: none;
}
.stage-status {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid #ffffff1f;
  border-radius: 999px;
  color: #b9b3be;
  background: #181818d9;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stage-status i { width: 5px; height: 5px; border-radius: 50%; background: #75ffb3; box-shadow: 0 0 0 4px #75ffb318; animation: statusPulse 1.8s ease-in-out infinite; }
@keyframes statusPulse { 50% { box-shadow: 0 0 0 8px #75ffb300; } }

.hosting-stage { padding: 35px 30px; display: grid; place-items: center; }
.hosting-stage .stage-status { top: 17px; right: 17px; }
.hosting-rack { position: relative; z-index: 3; width: min(82%, 325px); display: flex; flex-direction: column; gap: 9px; }
.hosting-server {
  position: relative;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border: 1px solid #a95dff30;
  border-radius: 11px;
  background: linear-gradient(90deg, #8a2cf615, #262626);
  box-shadow: 0 12px 30px #00000024;
  animation: serverFloat 4s ease-in-out infinite;
}
.hosting-server:nth-child(2) { animation-delay: -.8s; }
.hosting-server:nth-child(3) { animation-delay: -1.6s; }
.hosting-server strong { font-size: 8px; letter-spacing: .09em; }
.server-leds { display: flex; gap: 5px; }
.server-leds i { width: 5px; height: 5px; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 9px #a95dff; animation: ledBlink 1.5s ease-in-out infinite; }
.server-leds i:nth-child(2) { background: #75ffb3; box-shadow: 0 0 9px #75ffb3; animation-delay: -.7s; }
.server-load { height: 5px; overflow: hidden; border-radius: 999px; background: #ffffff0c; }
.server-load b { display: block; width: 62%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8a2cf638, var(--purple-bright)); animation: serverLoad 2.8s ease-in-out infinite alternate; }
.hosting-server:nth-child(2) .server-load b { width: 78%; animation-delay: -.9s; }
.hosting-server:nth-child(3) .server-load b { width: 49%; animation-delay: -1.6s; }
.hosting-stage::after { content: ""; position: absolute; z-index: 2; width: 75%; height: 1px; background: linear-gradient(90deg, transparent, var(--purple-bright), transparent); top: 22%; left: -80%; animation: rackScan 3.8s ease-in-out infinite; box-shadow: 0 0 18px #8a2cf6; }
@keyframes serverFloat { 50% { transform: translateY(-3px); border-color: #a95dff66; } }
@keyframes serverLoad { to { width: 92%; filter: brightness(1.35); } }
@keyframes ledBlink { 50% { opacity: .28; } }
@keyframes rackScan { 55%, 100% { left: 105%; } }

.vps-stage { display: grid; place-items: center; }
.vps-stage .stage-status { top: 17px; left: 17px; }
.resource-orbit { position: absolute; display: grid; place-items: center; width: 225px; height: 225px; border: 1px solid #ffffff12; border-radius: 50%; animation: resourceSpin 14s linear infinite; }
.resource-orbit::before { content: ""; position: absolute; width: 165px; height: 165px; border: 1px dashed #a95dff52; border-radius: 50%; animation: resourceSpin 9s linear infinite reverse; }
.resource-orbit i, .resource-orbit b { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 16px #a95dff; }
.resource-orbit i { top: 10px; left: 50%; }
.resource-orbit b { bottom: 25px; left: 23px; background: #75ffb3; box-shadow: 0 0 16px #75ffb3; }
.vps-core-card { position: relative; z-index: 3; width: 124px; min-height: 112px; padding: 20px; border: 1px solid #a95dff61; border-radius: 25px; text-align: center; background: #202020ed; box-shadow: 0 0 62px #8a2cf64d; }
.vps-core-card small { display: block; color: var(--purple-soft); font-size: 8px; letter-spacing: .1em; }
.vps-core-card strong { display: block; margin-top: 9px; font-size: 24px; letter-spacing: -.06em; }
.vps-core-card span { display: block; margin-top: 5px; color: var(--muted-2); font-size: 8px; }
.terminal-window { position: absolute; z-index: 5; left: 18px; right: 18px; bottom: 17px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; background: #151515e6; color: #9af9c1; font-family: monospace; font-size: 8px; }
.terminal-window b { display: inline-block; width: 6px; height: 10px; margin-left: 5px; vertical-align: -2px; background: #9af9c1; animation: terminalCursor .8s steps(1) infinite; }
@keyframes resourceSpin { to { transform: rotate(360deg); } }
@keyframes terminalCursor { 50% { opacity: 0; } }

.radio-stage { padding: 28px 24px 22px; display: flex; flex-direction: column; justify-content: flex-end; }
.radio-stage .stage-status { top: 17px; right: 17px; color: #ffbeca; border-color: #ee5a7642; }
.radio-stage .stage-status i { background: #ee5a76; box-shadow: 0 0 0 4px #ee5a761c; }
.frequency-ring { position: absolute; width: 190px; height: 190px; border: 1px solid #8a2cf632; border-radius: 50%; top: 23px; left: 50%; transform: translateX(-50%); }
.frequency-ring::before, .frequency-ring::after { content: ""; position: absolute; inset: 24px; border: 1px solid #8a2cf626; border-radius: 50%; animation: radioRing 2.4s ease-out infinite; }
.frequency-ring::after { inset: 53px; animation-delay: -.8s; }
.radio-wave { position: relative; z-index: 3; height: 150px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.radio-wave span { width: 6px; height: var(--wave); border-radius: 999px; background: linear-gradient(var(--purple-soft), var(--purple)); box-shadow: 0 0 12px #8a2cf631; animation: radioWave 1.15s ease-in-out infinite alternate; animation-delay: var(--delay); }
.now-playing { position: relative; z-index: 4; min-height: 58px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; background: #181818e8; }
.now-playing > i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; color: var(--purple-soft); background: #8a2cf621; font-style: normal; font-size: 9px; }
.now-playing small, .now-playing strong { display: block; }
.now-playing small { color: var(--muted-2); font-size: 7px; }
.now-playing strong { margin-top: 5px; font-size: 10px; }
.now-playing b { color: var(--purple-soft); font-size: 8px; }
@keyframes radioRing { from { opacity: .8; transform: scale(.7); } to { opacity: 0; transform: scale(1.35); } }
@keyframes radioWave { to { transform: scaleY(.4); filter: brightness(1.35); } }

.video-stage { padding: 22px; display: flex; flex-direction: column; justify-content: center; }
.video-stage .stage-status { top: 15px; right: 15px; color: #ffbeca; border-color: #ee5a7642; }
.video-stage .stage-status i { background: #ee5a76; box-shadow: 0 0 0 4px #ee5a761c; }
.stream-screen { position: relative; z-index: 2; aspect-ratio: 16 / 9; width: 100%; overflow: hidden; border: 1px solid #a95dff45; border-radius: 15px; background: radial-gradient(circle at 50% 45%, #8a2cf62e, transparent 38%), linear-gradient(145deg, #2b2b2b, #171717); box-shadow: 0 20px 45px #00000036; }
.stream-screen::before { content: ""; position: absolute; inset: 0; background: linear-gradient(#ffffff07 1px, transparent 1px), linear-gradient(90deg, #ffffff07 1px, transparent 1px); background-size: 30px 30px; }
.play-core { position: absolute; z-index: 4; display: grid; place-items: center; width: 66px; height: 66px; border: 1px solid #ffffff30; border-radius: 50%; background: #8a2cf6d9; top: 50%; left: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 12px #8a2cf618, 0 0 45px #8a2cf669; font-size: 15px; padding-left: 3px; animation: playPulse 2.4s ease-in-out infinite; }
.video-scanline { position: absolute; z-index: 3; height: 1px; left: 0; right: 0; top: 0; background: linear-gradient(90deg, transparent, #a95dff, transparent); box-shadow: 0 0 16px #8a2cf6; animation: videoScanline 3.2s ease-in-out infinite; }
.stream-corners::before, .stream-corners::after { content: ""; position: absolute; z-index: 4; width: 26px; height: 26px; border-color: #ffffff8c; }
.stream-corners::before { left: 15px; top: 15px; border-left: 2px solid; border-top: 2px solid; }
.stream-corners::after { right: 15px; bottom: 15px; border-right: 2px solid; border-bottom: 2px solid; }
@keyframes playPulse { 50% { box-shadow: 0 0 0 20px #8a2cf600, 0 0 58px #8a2cf67a; } }
@keyframes videoScanline { 50%, 100% { top: 100%; } }

.domain-stage { padding: 24px; }
.domain-stage .stage-status { top: 17px; right: 17px; }
.domain-query { position: relative; z-index: 5; min-height: 54px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 10px 13px 10px 17px; border: 1px solid #a95dff4f; border-radius: 13px; background: #171717ed; box-shadow: 0 18px 40px #0000002e; }
.domain-query span { font-size: 11px; font-weight: 600; }
.domain-query b { padding: 7px 9px; border-radius: 8px; color: #9af9c1; background: #75ffb315; font-size: 8px; }
.dns-map { position: relative; min-height: 190px; margin-top: 14px; }
.dns-core { position: absolute; z-index: 4; width: 74px; height: 74px; display: grid; place-items: center; border: 1px solid #a95dff5c; border-radius: 22px; background: #202020; color: var(--purple-soft); top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 15px; font-weight: 800; box-shadow: 0 0 42px #8a2cf643; }
.dns-node { position: absolute; z-index: 4; min-width: 62px; padding: 9px; border: 1px solid var(--line); border-radius: 10px; text-align: center; background: #232323; color: #c7c1cc; font-size: 7px; font-weight: 700; animation: dnsNode 3s ease-in-out infinite; }
.dns-node.one { top: 13px; left: 14px; }
.dns-node.two { top: 19px; right: 10px; animation-delay: -.8s; }
.dns-node.three { bottom: 10px; left: 23px; animation-delay: -1.5s; }
.dns-node.four { right: 18px; bottom: 8px; animation-delay: -2.2s; }
.dns-link { position: absolute; z-index: 2; width: 100px; height: 1px; background: linear-gradient(90deg, #ffffff0d, var(--purple-bright)); top: 50%; left: 50%; transform-origin: 0; }
.dns-link.one { transform: rotate(-142deg); }
.dns-link.two { transform: rotate(-37deg); }
.dns-link.three { transform: rotate(142deg); }
.dns-link.four { transform: rotate(35deg); }
.dns-link i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--purple-soft); top: -2px; left: 0; box-shadow: 0 0 10px var(--purple); animation: dnsPacket 2.2s ease-in-out infinite; }
.dns-link.two i { animation-delay: -.5s; }.dns-link.three i { animation-delay: -1s; }.dns-link.four i { animation-delay: -1.5s; }
@keyframes dnsPacket { from { opacity: 0; left: 0; } 20%, 80% { opacity: 1; } to { opacity: 0; left: 100%; } }
@keyframes dnsNode { 50% { border-color: #a95dff5c; transform: translateY(-3px); } }

/* Segunda generación de visuales: nube, consola, estudio y dominio */
.hosting-stage { display: block; padding: 24px; }
.hosting-stage .stage-status { top: 17px; right: 17px; }
.cloud-hub { position: relative; z-index: 2; width: min(100%, 360px); height: 242px; margin: 28px auto 0; }
.cloud-core {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 50%;
  width: 140px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translateX(-50%);
  border: 1px solid #b875ff66;
  border-radius: 32px;
  background: linear-gradient(145deg, #31243e, #222222 70%);
  box-shadow: 0 22px 60px #0000004a, 0 0 52px #8a2cf652, inset 0 1px #ffffff12;
  animation: cloudHover 4s ease-in-out infinite;
}
.cloud-core::before { content: ""; position: absolute; width: 190px; height: 190px; border: 1px solid #a95dff17; border-radius: 50%; animation: cloudAura 3s ease-out infinite; }
.cloud-core svg { width: 62px; height: 48px; fill: none; stroke: #c48aff; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 12px #8a2cf6a3); }
.cloud-core span { color: #d8c4ef; font-size: 8px; font-weight: 700; letter-spacing: .04em; }
.cloud-node {
  position: absolute;
  z-index: 5;
  width: 92px;
  min-height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid #ffffff17;
  border-radius: 13px;
  background: #202020ed;
  box-shadow: 0 14px 28px #00000033;
  animation: cloudNode 3.4s ease-in-out infinite;
}
.cloud-node.one { top: 156px; left: 0; }.cloud-node.two { top: 156px; right: 0; animation-delay: -1.1s; }.cloud-node.three { bottom: 0; left: calc(50% - 46px); animation-delay: -2.2s; }
.cloud-node small { color: #77717d; font-size: 6px; letter-spacing: .12em; }
.cloud-node strong { margin-top: 5px; color: #ded8e2; font-size: 10px; }
.cloud-route { position: absolute; z-index: 2; width: 132px; height: 1px; top: 108px; left: 50%; transform-origin: 0; background: linear-gradient(90deg, #a95dff80, #ffffff0a); }
.cloud-route.one { transform: rotate(147deg); }.cloud-route.two { transform: rotate(33deg); }.cloud-route.three { width: 104px; transform: rotate(90deg); }
.cloud-route i { position: absolute; width: 5px; height: 5px; top: -2px; left: 0; border-radius: 50%; background: #c48aff; box-shadow: 0 0 12px #a95dff; animation: cloudData 2.7s ease-in-out infinite; }
.cloud-route.two i { animation-delay: -.9s; }.cloud-route.three i { animation-delay: -1.8s; }
@keyframes cloudHover { 50% { transform: translate(-50%, -5px); border-color: #c48aff9c; } }
@keyframes cloudAura { from { opacity: .75; transform: scale(.55); } to { opacity: 0; transform: scale(1.25); } }
@keyframes cloudNode { 50% { transform: translateY(-3px); border-color: #a95dff4d; } }
@keyframes cloudData { from { opacity: 0; left: 0; } 18%, 82% { opacity: 1; } to { opacity: 0; left: 100%; } }

.vps-stage { display: block; padding: 24px 18px 18px; }
.vps-stage .stage-status { top: 14px; right: 14px; left: auto; }
.vps-terminal { position: relative; z-index: 3; height: 250px; margin-top: 18px; overflow: hidden; border: 1px solid #a95dff42; border-radius: 16px; background: #151515f2; box-shadow: 0 24px 55px #0000004a, 0 0 45px #8a2cf622; }
.vps-terminal::after { content: ""; position: absolute; height: 1px; left: 0; right: 0; top: 38px; background: linear-gradient(90deg, transparent, #a95dff8a, transparent); animation: terminalScan 3.8s ease-in-out infinite; box-shadow: 0 0 15px #8a2cf6; }
.terminal-head { height: 38px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 0 13px; border-bottom: 1px solid #ffffff0d; background: #242424; }
.terminal-head > span { color: #8f8994; font-family: monospace; font-size: 8px; }
.terminal-head > b { padding: 4px 6px; border-radius: 5px; color: #9af9c1; background: #75ffb312; font-size: 6px; letter-spacing: .1em; }
.terminal-dots { display: flex; gap: 5px; }.terminal-dots i { width: 6px; height: 6px; border-radius: 50%; background: #ee5a76; }.terminal-dots i:nth-child(2) { background: #f1c75b; }.terminal-dots i:nth-child(3) { background: #75ffb3; }
.terminal-code { min-height: 142px; padding: 15px 16px 9px; color: #d2cbd7; font-family: monospace; font-size: 8px; line-height: 1.6; }
.terminal-code p { margin: 0 0 4px; animation: terminalLine 6s ease both infinite; }
.terminal-code p:nth-child(2) { animation-delay: .3s; }.terminal-code p:nth-child(3) { animation-delay: .6s; }.terminal-code p:nth-child(4) { animation-delay: .9s; }.terminal-code p:nth-child(5) { animation-delay: 1.2s; }.terminal-code p:nth-child(6) { animation-delay: 1.5s; }
.terminal-code p > span { color: #b875ff; }.terminal-output { color: #aaa3ae; }.terminal-output i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: #75ffb3; box-shadow: 0 0 7px #75ffb3; }.terminal-output strong { color: #9af9c1; }.terminal-fade { color: #6f6973; }
.terminal-cursor { display: inline-block; width: 6px; height: 11px; vertical-align: -2px; background: #b875ff; animation: terminalCursor .8s steps(1) infinite; }
.terminal-stats { position: absolute; left: 12px; right: 12px; bottom: 11px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.terminal-stats > div { padding: 8px 9px; border: 1px solid #ffffff0d; border-radius: 9px; background: #202020; }
.terminal-stats span, .terminal-stats strong { display: block; }.terminal-stats span { color: #716b75; font-size: 6px; }.terminal-stats strong { margin-top: 4px; color: #d2cbd7; font-size: 8px; }
.terminal-stats div > i { display: block; height: 3px; margin-top: 7px; overflow: hidden; border-radius: 999px; background: #ffffff0a; }.terminal-stats div > i b { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8a2cf6, #c48aff); animation: terminalLoad 2.8s ease-in-out infinite alternate; }
@keyframes terminalScan { 50%, 100% { top: 100%; } }
@keyframes terminalLine { 0%, 8% { opacity: .18; transform: translateX(-5px); } 17%, 100% { opacity: 1; transform: none; } }
@keyframes terminalLoad { to { filter: brightness(1.45); transform: scaleX(.88); transform-origin: left; } }

.radio-stage { display: block; padding: 22px 24px 20px; }
.radio-stage .stage-status { top: 16px; right: 16px; }
.mic-studio { position: relative; z-index: 2; height: 210px; display: grid; place-items: center; }
.mic-core { position: relative; z-index: 5; width: 92px; height: 92px; display: grid; place-items: center; border: 1px solid #c48aff80; border-radius: 29px; background: linear-gradient(145deg, #39254d, #222 72%); box-shadow: 0 0 0 11px #8a2cf611, 0 0 54px #8a2cf65c, inset 0 1px #ffffff17; animation: micFloat 3.4s ease-in-out infinite; }
.mic-core svg { width: 48px; height: 48px; fill: none; stroke: #d0a4ff; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 10px #8a2cf6); }
.mic-rings { position: absolute; width: 168px; height: 168px; border: 1px solid #a95dff2b; border-radius: 50%; }
.mic-rings::before, .mic-rings::after, .mic-rings i, .mic-rings b { content: ""; position: absolute; inset: 21px; border: 1px solid #a95dff29; border-radius: 50%; animation: micSignal 2.8s ease-out infinite; }
.mic-rings::after { inset: -25px; animation-delay: -.7s; }.mic-rings i { inset: -52px; animation-delay: -1.4s; }.mic-rings b { inset: 46px; animation-delay: -2.1s; }
.mic-eq { position: absolute; z-index: 4; display: flex; align-items: center; gap: 6px; top: 50%; transform: translateY(-50%); }.mic-eq.left { left: 18px; }.mic-eq.right { right: 18px; }
.mic-eq i { width: 4px; height: var(--level); border-radius: 999px; background: linear-gradient(#c48aff, #8a2cf6); box-shadow: 0 0 10px #8a2cf642; animation: micLevel 1.15s ease-in-out infinite alternate; animation-delay: var(--delay); }
.studio-strip { position: relative; z-index: 6; min-height: 57px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid #ffffff16; border-radius: 12px; background: #181818ed; }
.studio-strip > div { display: flex; align-items: center; gap: 9px; }.studio-strip > div > i { width: 25px; height: 25px; border-radius: 8px; background: radial-gradient(circle, #ff97aa 0 18%, #ee5a7630 20%); box-shadow: 0 0 18px #ee5a7633; animation: livePulse 1.4s ease-in-out infinite; }
.studio-strip small, .studio-strip strong { display: block; }.studio-strip small { color: #736d77; font-size: 6px; letter-spacing: .1em; }.studio-strip strong { margin-top: 4px; font-size: 9px; }.studio-strip > b { color: #c48aff; font-size: 8px; }.studio-strip > em { color: #8c858f; font-size: 7px; font-style: normal; }
@keyframes micFloat { 50% { transform: translateY(-5px); box-shadow: 0 0 0 17px #8a2cf608, 0 0 65px #8a2cf66e; } }
@keyframes micSignal { from { opacity: .75; transform: scale(.75); } to { opacity: 0; transform: scale(1.22); } }
@keyframes micLevel { to { transform: scaleY(.36); filter: brightness(1.35); } }
@keyframes livePulse { 50% { box-shadow: 0 0 0 7px #ee5a7600, 0 0 22px #ee5a7659; } }

.domain-stage { display: block; padding: 23px; }
.domain-stage .stage-status { top: 16px; right: 16px; }
.domain-browser { position: relative; z-index: 3; margin-top: 30px; }
.domain-searchbar { min-height: 56px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 10px; padding: 10px 11px 10px 14px; border: 1px solid #b875ff59; border-radius: 14px; background: #181818f2; box-shadow: 0 18px 45px #0000003d, 0 0 35px #8a2cf61f; }
.domain-searchbar svg { width: 17px; height: 17px; fill: none; stroke: #9e98a3; stroke-width: 1.6; stroke-linecap: round; }
.domain-searchbar span { overflow: hidden; color: #e0dae4; font-size: 10px; font-weight: 600; white-space: nowrap; }
.domain-searchbar > i { width: 1px; height: 15px; background: #c48aff; animation: terminalCursor .8s steps(1) infinite; }
.domain-searchbar b { padding: 7px 9px; border-radius: 8px; color: #9af9c1; background: #75ffb313; font-size: 7px; white-space: nowrap; }
.domain-identity { min-height: 120px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; margin-top: 12px; padding: 16px 18px; border: 1px solid #ffffff12; border-radius: 15px; background: linear-gradient(135deg, #242424, #1b1b1b); }
.domain-globe { position: relative; width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid #a95dff4d; border-radius: 24px; background: #8a2cf613; box-shadow: inset 0 1px #ffffff0f, 0 0 30px #8a2cf629; }
.domain-globe svg { width: 45px; height: 45px; fill: none; stroke: #c48aff; stroke-width: 1.15; stroke-linecap: round; filter: drop-shadow(0 0 8px #8a2cf6); animation: globeTurn 7s ease-in-out infinite; }
.domain-globe i, .domain-globe b { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #75ffb3; box-shadow: 0 0 12px #75ffb3; animation: dnsBeacon 2.4s ease-in-out infinite; }.domain-globe i { top: 14px; right: 14px; }.domain-globe b { left: 13px; bottom: 16px; animation-delay: -1.2s; }
.domain-identity small, .domain-identity strong, .domain-identity span { display: block; }.domain-identity small { color: #756f79; font-size: 6px; letter-spacing: .13em; }.domain-identity strong { margin-top: 7px; color: #dfd8e4; font-size: 12px; }.domain-identity span { margin-top: 7px; color: #8f8994; font-size: 8px; }
.tld-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 10px; }.tld-row span { padding: 8px 4px; border: 1px solid #ffffff0f; border-radius: 8px; text-align: center; color: #9d96a1; background: #202020; font-size: 7px; font-weight: 700; transition: .25s; }.tld-row span:nth-child(2) { color: #d3b3f6; border-color: #a95dff40; background: #8a2cf614; animation: tldFocus 3s ease-in-out infinite; }
@keyframes globeTurn { 50% { transform: rotateY(24deg) rotateZ(3deg); } }
@keyframes dnsBeacon { 50% { opacity: .35; transform: scale(.65); } }
@keyframes tldFocus { 50% { border-color: #c48aff80; box-shadow: 0 0 16px #8a2cf622; } }

/* La terminal aprovecha más ancho con el mismo margen visible a ambos lados. */
.page-vps .vps-stage { padding-right: 8px; padding-left: 8px; }
.page-vps .vps-terminal {
  left: auto;
  width: 100%;
  margin: 18px auto 0;
  transform: none;
}
.page-video .hero-grid { grid-template-columns: 1.04fr .96fr; gap: 82px; }
.page-video .signal-panel { min-height: 430px; }
.page-video .video-stage { display: block; min-height: 0; padding: 12px; }
.page-video .video-stage .stage-status { top: 14px; right: 14px; }
.live-preview { position: relative; z-index: 3; margin-top: 12px; }
.page-video .stream-screen { aspect-ratio: 16 / 8.2; border-radius: 17px; background: radial-gradient(circle at 50% 45%, #8a2cf640, transparent 34%), linear-gradient(145deg, #31283a, #161616 72%); box-shadow: 0 25px 55px #00000052, 0 0 36px #8a2cf625; }
.page-video .stream-corners::before { content: none; }
.page-video .stream-screen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0 42%, #ffffff09 48%, transparent 54%); transform: translateX(-100%); animation: videoGlass 5.2s ease-in-out infinite; }
.preview-top { position: absolute; z-index: 7; top: 13px; left: 13px; right: 13px; display: flex; align-items: center; justify-content: space-between; }
.preview-top span { display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; border: 1px solid #ff93a742; border-radius: 7px; color: #ffc0cb; background: #ee5a7624; font-size: 7px; font-weight: 800; letter-spacing: .08em; }
.preview-top span i { width: 5px; height: 5px; border-radius: 50%; background: #ff718c; box-shadow: 0 0 10px #ff718c; animation: livePulse 1.4s ease-in-out infinite; }
.preview-top b { padding: 5px 7px; border-radius: 6px; color: #aaa4ae; background: #1010109e; font-family: monospace; font-size: 7px; }
.page-video .play-core { width: 58px; height: 58px; border-radius: 19px; background: linear-gradient(145deg, #a95dff, #7020cf); box-shadow: 0 0 0 11px #8a2cf615, 0 0 43px #8a2cf66e; }
.preview-audience { position: absolute; z-index: 7; right: 13px; bottom: 13px; min-width: 68px; padding: 8px 9px; border: 1px solid #ffffff17; border-radius: 9px; text-align: right; background: #111111c9; backdrop-filter: blur(8px); }
.preview-audience small, .preview-audience strong { display: block; }.preview-audience small { color: #756f79; font-size: 5px; letter-spacing: .1em; }.preview-audience strong { margin-top: 3px; font-size: 12px; }
.preview-quality { position: absolute; z-index: 7; left: 13px; bottom: 13px; padding: 6px 7px; border-radius: 6px; color: #bcb5c1; background: #111111c9; font-size: 6px; font-weight: 700; letter-spacing: .06em; }
.video-console { min-height: 50px; display: grid; grid-template-columns: .9fr 1.2fr auto; align-items: center; gap: 14px; margin-top: 8px; padding: 8px 10px; border: 1px solid #ffffff14; border-radius: 12px; background: #181818e8; }
.video-console small, .video-console strong { display: block; }.video-console small { color: #706a74; font-size: 6px; letter-spacing: .1em; }.video-console strong { margin-top: 5px; color: #d3ccd8; font-size: 8px; }.video-console > b { color: #c48aff; font-size: 8px; white-space: nowrap; }
.bitrate-monitor span { display: block; height: 4px; margin-top: 8px; overflow: hidden; border-radius: 999px; background: #ffffff0c; }.bitrate-monitor span i { display: block; width: 76%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #6b22c0, #c48aff); animation: bitrateLive 3.2s ease-in-out infinite alternate; }
@keyframes videoGlass { 0%, 24% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }
@keyframes bitrateLive { to { width: 94%; filter: brightness(1.35); } }

@media (min-width: 861px) {
  .page-video .hero-copy h1 { font-size: clamp(55px, 5.8vw, 78px); }
  .page-video .signal-panel { width: 100%; max-width: 528px; justify-self: end; }
}

.metric-row { border-bottom: 1px solid var(--line); }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { padding: 26px; border-left: 1px solid var(--line); }
.metric:first-child { border-left: 0; }
.metric strong { display: block; font-size: 17px; letter-spacing: -.04em; }
.metric span { display: block; margin-top: 7px; color: var(--muted-2); font-size: 9px; }

.section { padding: 118px 0; }
.section[id] { scroll-margin-top: 86px; }
.section-alt { border-block: 1px solid var(--line); background: #191919; }
.section-head { max-width: 780px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  margin: 16px 0 0;
  font-size: clamp(39px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.06em;
  font-weight: 650;
}
.section-head p { max-width: 690px; margin: 22px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.section-head.center p { margin-inline: auto; }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 55px; }
.plan-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  min-width: 0;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  transition: transform .25s, border-color .25s, background .25s;
}
.plan-card:hover { transform: translateY(-6px); border-color: #8a2cf675; background: #28232d; }
.plan-card.featured { border-color: #a95dffb8; background: linear-gradient(#8a2cf629, var(--surface) 38%); }
.plan-card > .plan-code { grid-column: 1; grid-row: 1; align-self: center; }
.plan-badge { position: static; grid-column: 2; grid-row: 1; align-self: start; justify-self: end; max-width: 100%; margin-left: 12px; padding: 6px 9px; border-radius: 999px; color: var(--purple-soft); background: #8a2cf626; font-size: 8px; font-weight: 700; line-height: 1.2; text-align: center; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.plan-card h3, .plan-card > p, .plan-card > .price, .plan-card > .button, .plan-card > .feature-list { grid-column: 1 / -1; }
.plan-card h3 { margin: 19px 0 8px; font-size: 25px; letter-spacing: -.05em; }
.plan-card > p { min-height: 58px; margin: 0; color: #9f99a6; font-size: 11px; line-height: 1.65; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 25px 0 21px; }
.price span { color: var(--muted); font-size: 11px; }
.price strong { font-size: clamp(28px, 3vw, 36px); letter-spacing: -.06em; }
.price small { color: var(--muted-2); font-size: 9px; }
.plan-card .button { width: 100%; min-height: 48px; margin-bottom: 24px; background: #ffffff0c; border-color: var(--line); font-size: 11px; }
.plan-card.featured .button { background: var(--purple); border-color: var(--purple); }
.feature-list { display: flex; flex-direction: column; gap: 11px; margin: 0; padding: 21px 0 0; border-top: 1px solid var(--line); list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 9px; color: #b8b2bd; font-size: 10px; line-height: 1.5; }
.feature-list li::before { content: "✓"; flex: none; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: var(--purple-soft); background: #8a2cf621; font-size: 8px; }
.plan-note { margin: 27px 0 0; color: var(--muted-2); text-align: center; font-size: 10px; line-height: 1.7; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.benefit-card { min-height: 230px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.benefit-card > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--purple-soft); background: #8a2cf61d; font-size: 11px; font-weight: 800; }
.benefit-card h3 { margin: 42px 0 12px; font-size: 17px; letter-spacing: -.04em; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

.domain-search { display: flex; gap: 7px; max-width: 760px; margin: 39px auto 0; padding: 7px; border: 1px solid #ffffff24; border-radius: 15px; background: var(--surface); }
.domain-search input { min-width: 0; height: 52px; flex: 1; padding: 0 15px; border: 0; outline: 0; color: var(--white); background: transparent; font-size: 13px; }
.domain-search input::placeholder { color: var(--muted-2); }
.domain-search button { min-width: 150px; border: 0; border-radius: 10px; color: var(--white); background: var(--purple); cursor: pointer; font-size: 11px; font-weight: 700; }
.domain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 50px; }
.domain-card { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.domain-card strong { color: var(--purple-soft); font-size: 24px; letter-spacing: -.05em; }
.domain-card span { display: block; margin-top: 18px; color: var(--muted); font-size: 9px; }
.domain-card b { display: block; margin-top: 7px; font-size: 17px; }

.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 110px; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin: 15px 0 0; font-size: clamp(38px, 4.3vw, 57px); line-height: 1.05; letter-spacing: -.06em; }
.faq-intro p { margin: 22px 0 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 86px; display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 15px; font-weight: 600; letter-spacing: -.03em; }
.faq-list summary i { flex: none; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--purple-soft); font-style: normal; transition: transform .18s; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 660px; margin: -6px 50px 28px 0; color: var(--muted); font-size: 11px; line-height: 1.8; }

.cta-section { padding: 0 0 96px; }
.cta-card { position: relative; overflow: hidden; padding: 86px 38px; border-radius: 30px; text-align: center; background: radial-gradient(circle at 20% 0, #ffffff30, transparent 28%), var(--purple); }
.cta-card::before, .cta-card::after { content: ""; position: absolute; border: 1px solid #ffffff1c; border-radius: 50%; }
.cta-card::before { width: 430px; height: 430px; top: -275px; right: -80px; }
.cta-card::after { width: 620px; height: 620px; left: -350px; bottom: -520px; }
.cta-card > * { position: relative; z-index: 2; }
.cta-card h2 { max-width: 850px; margin: 17px auto 0; font-size: clamp(40px, 5vw, 66px); line-height: 1.02; letter-spacing: -.06em; }
.cta-card p { max-width: 650px; margin: 21px auto 0; color: #ffffffc5; font-size: 13px; line-height: 1.7; }
.cta-card .hero-actions { align-items: stretch; justify-content: center; }
.cta-card .hero-actions .button { min-height: 56px; margin-top: 0; text-align: center; }
.cta-card .button-secondary { background: #1b1b1b36; }

/* Modernización general de las secciones internas */
.button { position: relative; overflow: hidden; isolation: isolate; }
.button::after { content: ""; position: absolute; z-index: -1; width: 46px; height: 140%; top: -20%; left: -70px; transform: rotate(18deg); background: #ffffff1c; transition: left .55s ease; }
.button:hover::after { left: calc(100% + 25px); }
.metric-row {
  background-color: var(--ink);
  background-image: var(--page-grid);
  background-size: var(--page-grid-size);
}
.metrics { gap: 10px; padding-block: 15px; }
.metric { position: relative; overflow: hidden; padding: 22px 24px; border: 1px solid #ffffff14; border-radius: 15px; background: linear-gradient(145deg, #242424, #202020); transition: transform .25s, border-color .25s, background .25s; }
.metric:first-child { border-left: 1px solid #ffffff14; }
.metric::before { content: ""; position: absolute; width: 54%; height: 1px; top: 0; left: -60%; background: linear-gradient(90deg, transparent, #c48aff, transparent); animation: metricScan 5.2s ease-in-out infinite; }
.metric:nth-child(2)::before { animation-delay: -1.3s; }.metric:nth-child(3)::before { animation-delay: -2.6s; }.metric:nth-child(4)::before { animation-delay: -3.9s; }
.metric:hover { transform: translateY(-3px); border-color: #a95dff4a; background: #28242b; }
.metric strong { color: #eee9f1; }.metric span { color: #8d8792; }
@keyframes metricScan { 52%, 100% { left: 110%; } }
.section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--ink);
  background-image: var(--page-grid);
  background-size: var(--page-grid-size);
}
.section::before { content: none; }
.section-alt, .cta-section {
  background-color: var(--ink);
  background-image: var(--page-grid);
  background-size: var(--page-grid-size);
}
.section-head { position: relative; }
.section-kicker { display: inline-flex; align-items: center; gap: 9px; }
.section-kicker::before { content: ""; width: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--purple-bright)); }
.section-head h2 { text-wrap: balance; }
.plan-card { overflow: hidden; background: linear-gradient(155deg, #292929, #212121 58%); box-shadow: inset 0 1px #ffffff08, 0 18px 48px #0000001d; }
.plan-card::before { content: ""; position: absolute; z-index: 1; height: 2px; inset: 0 100% auto 0; background: linear-gradient(90deg, var(--purple), var(--purple-soft)); transition: inset .45s ease; }
.plan-card::after { content: ""; position: absolute; z-index: 0; width: 230px; height: 230px; border-radius: 50%; right: -150px; bottom: -150px; background: radial-gradient(circle, #8a2cf62d, transparent 68%); transition: transform .45s ease; }
.plan-card > * { position: relative; z-index: 2; }
.plan-card:hover { transform: translateY(-9px); border-color: #a95dff70; background: linear-gradient(155deg, #302735, #222 62%); box-shadow: 0 26px 65px #0000003b, 0 0 36px #8a2cf616; }
.plan-card:hover::before { right: 0; }.plan-card:hover::after { transform: translate(-20px, -18px) scale(1.2); }
.plan-card.featured { box-shadow: 0 24px 70px #8a2cf618, inset 0 1px #ffffff0d; }
.plan-card .button { backdrop-filter: blur(8px); }
.benefit-card { position: relative; overflow: hidden; background: linear-gradient(145deg, #292929, #222); box-shadow: inset 0 1px #ffffff08; transition: transform .28s, border-color .28s, box-shadow .28s; }
.benefit-card::before { content: ""; position: absolute; height: 2px; inset: 0 100% auto 0; background: linear-gradient(90deg, var(--purple), var(--purple-soft)); transition: inset .4s ease; }
.benefit-card::after { content: "↗"; position: absolute; top: 22px; right: 23px; color: #5f5964; font-size: 12px; transition: color .25s, transform .25s; }
.benefit-card:hover { transform: translateY(-7px); border-color: #a95dff5a; box-shadow: 0 24px 52px #00000032; }
.benefit-card:hover::before { right: 0; }.benefit-card:hover::after { color: var(--purple-soft); transform: translate(2px, -2px); }
.benefit-card > span { box-shadow: inset 0 1px #ffffff14, 0 0 24px #8a2cf61f; }
.domain-search { box-shadow: 0 22px 55px #0000002b, 0 0 0 6px #ffffff03; transition: border-color .25s, box-shadow .25s; }
.domain-search:focus-within { border-color: #a95dff75; box-shadow: 0 24px 60px #0000003d, 0 0 35px #8a2cf61e; }
.domain-card { position: relative; overflow: hidden; background: linear-gradient(145deg, #292929, #222); transition: transform .25s, border-color .25s; }
.domain-card::after { content: ""; position: absolute; width: 90px; height: 90px; right: -50px; top: -50px; border-radius: 50%; background: radial-gradient(circle, #8a2cf647, transparent 70%); transition: transform .35s; }
.domain-card:hover { transform: translateY(-5px); border-color: #a95dff5e; }.domain-card:hover::after { transform: scale(1.4); }
.faq-list { display: grid; gap: 10px; border-top: 0; }
.faq-list details { overflow: hidden; border: 1px solid #ffffff14; border-radius: 15px; background: linear-gradient(145deg, #252525, #202020); transition: border-color .22s, background .22s; }
.faq-list details[open] { border-color: #a95dff4f; background: linear-gradient(145deg, #2b2630, #202020); }
.faq-list summary { min-height: 78px; padding: 0 20px; }
.faq-list details p { margin: -4px 58px 0 0; padding: 0 20px 24px; }
.faq-list summary i { background: #8a2cf610; }
.cta-card { border: 1px solid #ffffff25; background: radial-gradient(circle at 16% -10%, #ffffff38, transparent 28%), radial-gradient(circle at 90% 115%, #3e0b7b, transparent 42%), linear-gradient(125deg, #7620d7, #9d43ff 58%, #7b23dc); box-shadow: 0 32px 95px #4d12845c, inset 0 1px #ffffff2b; }
.cta-card::before { animation: ctaOrbit 9s ease-in-out infinite; }.cta-card::after { animation: ctaOrbit 12s ease-in-out infinite reverse; }
.cta-card .button-secondary { border-color: #ffffff35; background: #17171745; backdrop-filter: blur(10px); }
@keyframes ctaOrbit { 50% { transform: translate(32px, 18px) scale(1.08); } }

/* CTA compartido: centrado geométrico y controles con medidas idénticas. */
.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-card > .section-kicker {
  align-self: center;
  justify-content: center;
  text-align: center;
}
.cta-card > .section-kicker::before {
  display: none;
}
.cta-card > h2,
.cta-card > p {
  width: 100%;
  text-align: center;
  text-wrap: balance;
}
.cta-card .hero-actions {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(220px, 250px));
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}
.cta-card .hero-actions .button {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  margin-top: 0;
  padding: 0 20px;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
}

footer {
  border-top: 1px solid var(--line);
  background-color: var(--ink);
  background-image: var(--page-grid);
  background-size: var(--page-grid-size);
}
.footer-top { display: grid; grid-template-columns: 1.6fr .85fr .85fr; gap: 72px; padding-block: 72px 62px; }
.footer-brand p { max-width: 340px; margin: 20px 0 0; color: var(--muted-2); font-size: 11px; line-height: 1.7; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column strong { margin-bottom: 7px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer-column a, .footer-column span { color: #88828d; font-size: 10px; line-height: 1.6; }
.footer-column a:hover { color: var(--purple-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 25px 28px; border-top: 1px solid var(--line); color: #5f5964; font-size: 8px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s, transform .65s; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav-links { gap: 15px; }
  .header-cta { display: none; }
  .hero-grid { gap: 48px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid, .domain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-links {
    position: absolute;
    inset: 72px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #1b1b1bfa;
    box-shadow: 0 20px 50px #00000059;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 14px; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .service-hero { min-height: 0; padding: 132px 0 76px; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; }
  .page-video .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-video .signal-panel { width: 100%; max-width: 520px; min-height: 430px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-tags { justify-content: center; }
  .signal-panel { max-width: 570px; width: 100%; margin-inline: auto; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .metric:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 82px 0; }
  .plans-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 50px; }
  .faq-intro { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 560px) {
  .hero-copy h1 { font-size: 49px; }
  .hero-actions { display: grid; }
  .signal-panel { min-height: 360px; padding: 22px; }
  .page-video .signal-panel { min-height: 360px; }
  .service-visual-stage { min-height: 292px; }
  .page-video .video-stage { min-height: 0; }
  .page-video .video-console { grid-template-columns: 1fr auto; }
  .page-video .bitrate-monitor { display: none; }
  .metrics, .benefit-grid, .domain-grid { grid-template-columns: 1fr; }
  .metrics { gap: 9px; }
  .metric, .metric:first-child { border: 1px solid var(--line); }
  .plan-card { padding: 24px; }
  .domain-search { flex-direction: column; }
  .domain-search button { min-height: 48px; }
  .cta-card { padding: 68px 22px; border-radius: 22px; }
  .cta-card h2 { font-size: 39px; }
  .cta-card .hero-actions {
    max-width: 330px;
    grid-template-columns: minmax(0, 1fr);
  }
  .cta-card .hero-actions .button {
    white-space: normal;
  }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
