/* TsBot — web oficial. Paleta: fondo casi negro azul petróleo, teal/cian para datos, naranja para acciones. */
:root {
  --bg: #070b10; --bg-2: #0a1017; --surface: #0d141c; --line: #16212b; --line-2: #1c2a36; --line-3: #2a3b49;
  --text: #e8eef3; --text-strong: #f4f7fa; --muted: #a9b8c5; --muted-2: #7d8f9e; --soft: #c9d4dd;
  --teal: #007c99; --teal-deep: #0b2330; --teal-line: #12465a; --cyan: #22bcd6; --cyan-soft: #7fdcec;
  --accent: #d9360c; --accent-soft: #ff6f55; --accent-bg: #2a130c; --accent-line: #7a2a12;
  --display: 'Chakra Petch', system-ui, sans-serif; --body: 'IBM Plex Sans', system-ui, sans-serif; --mono: 'JetBrains Mono', ui-monospace, monospace;
  --pad: clamp(16px, 5.5vw, 80px);
  /* ancho del CONTENIDO (sin márgenes laterales): igual que siempre hasta 1600 px, más ancho en pantallas grandes */
  --container: 1280px;
}
@media (min-width: 1600px) { :root { --container: 1360px; --pad: 80px; } }
@media (min-width: 1920px) { :root { --container: 1520px; --pad: 96px; } }
@media (min-width: 2400px) { :root { --container: 1720px; --pad: 120px; } }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--cyan-soft); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }
.wrap { width: 100%; max-width: calc(var(--container) + 2 * var(--pad)); margin: 0 auto; padding: 0 var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* botones */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: 600 16px/1 var(--body); padding: 15px 24px; border-radius: 12px; border: 1px solid transparent; cursor: pointer; transition: background .15s, border-color .15s, transform .15s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #ee4a1d; color: #fff; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-3); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--text-strong); }
.btn-sm { font-size: 15px; padding: 12px 18px; border-radius: 10px; }

/* cabecera */
.nav { position: sticky; top: 0; z-index: 20; background: rgba(7,11,16,0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav .wrap { height: 80px; display: flex; align-items: center; gap: 32px; }
.nav-logo img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; flex-grow: 1; font-size: 15px; font-weight: 500; }
/* enlaces de la cabecera y del pie: todos con el estilo de «Anti-DDoS» (naranja + punto). El punto es estático y
   late solo al pasar el ratón / con el foco y en el enlace de la página o sección actual. #ff6f55 sobre #070b10 ≈ 6,9:1 */
.nav-links a:not(.nav-panel-m), .footer nav a { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-soft); }
.nav-links a:not(.nav-panel-m)::before, .footer nav a::before { content: ''; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-soft); box-shadow: 0 0 8px rgba(255,111,85,.7); }
.nav-links a.nav-ddos::before { content: none; }
.nav-ddos .dot { width: 7px; height: 7px; background: var(--accent-soft); box-shadow: 0 0 8px rgba(255,111,85,.7); }
.nav-links .nav-ddos .dot.pulse { animation: none; }
.nav-links a:not(.nav-panel-m):hover, .nav-links a:not(.nav-panel-m):focus-visible, .footer nav a:hover, .footer nav a:focus-visible { color: #ffd2c6; }
.nav-links a:not(.nav-panel-m):hover::before, .nav-links a:not(.nav-panel-m):focus-visible::before, .nav-links a[aria-current="page"]::before,
.nav-links a.is-active::before, .footer nav a:hover::before, .footer nav a:focus-visible::before,
.nav-links .nav-ddos:hover .dot, .nav-links .nav-ddos:focus-visible .dot, .nav-links .nav-ddos.is-active .dot { animation: pulse 1.6s ease-in-out infinite; }
.nav-links a[aria-current="page"], .nav-links a.is-active { color: #ffd2c6; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 7px; }
.section[id] { scroll-margin-top: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--line-2); border-radius: 8px; }
.lang button { font: 500 12px/1 var(--mono); padding: 7px 9px; border-radius: 5px; border: 0; background: transparent; color: var(--muted-2); cursor: pointer; }
.lang button[aria-pressed="true"] { background: var(--line); color: var(--text); }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-3); background: transparent; color: var(--text); cursor: pointer; }

/* hero */
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px; padding-top: 72px; padding-bottom: 56px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; font: 500 13px/1.3 var(--mono); color: var(--cyan); letter-spacing: 0.08em; text-transform: uppercase; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.pulse { animation: pulse 1.6s ease-in-out infinite; }
h1, h2, h3 { font-family: var(--display); color: var(--text-strong); margin: 0; letter-spacing: -0.01em; }
.hero h1 { font-size: clamp(44px, 6vw, 84px); line-height: 1.02; font-weight: 700; margin: 22px 0 22px; }
.hot { color: var(--accent-soft); }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 610px; margin: 0; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; font-size: 14px; color: var(--muted-2); }
.hero-art { position: relative; min-height: 580px; }
.glow { position: absolute; left: 50%; top: 42%; width: 520px; height: 520px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(0,124,153,.35) 0%, rgba(0,124,153,.08) 45%, rgba(7,11,16,0) 70%); pointer-events: none; }
.mascot { position: absolute; left: 50%; top: 10px; width: min(360px, 70%); transform: translateX(-50%); animation: float 6s ease-in-out infinite; }
.card { background: var(--surface); border: 1px solid var(--line-2); border-radius: 16px; }
.float-card { position: absolute; padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.poke-card { left: 0; top: 380px; width: min(320px, 56%); border-color: #22394a; }
.srv-card { right: 0; top: 460px; width: min(250px, 42%); }
.tag { font: 500 11px/1.3 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); }
.tag-hot { color: var(--accent-soft); }
.bar { height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.bar > span { display: block; height: 100%; width: 65%; background: var(--teal); border-radius: 3px; }
.row-flex { display: flex; align-items: center; gap: 8px; }
.row-flex .mono { margin-left: auto; }
.mono { font-family: var(--mono); }
.cyan { color: var(--cyan); }
.muted { color: var(--muted); }

/* anti-ddos */
.hero-badges { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.ddos-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px 9px 12px; border-radius: 999px; background: var(--accent-bg); border: 1px solid #b8401a; color: #ffd2c6; font: 600 14px/1 var(--body); letter-spacing: .01em; box-shadow: 0 0 0 0 rgba(217,54,12,.45); animation: ring-glow 2.4s ease-out infinite; }
.ddos-pill svg { width: 18px; height: 18px; color: var(--accent-soft); }
.ddos-pill:hover { color: #fff; border-color: var(--accent-soft); }
.ddos { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.ddos h2 { font-size: clamp(32px, 3.8vw, 52px); line-height: 1.08; font-weight: 700; margin: 14px 0 18px; }
.hot-eyebrow { color: var(--accent-soft); }
.ddos-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 28px; }
.ddos-list li { display: flex; flex-direction: column; gap: 6px; padding-left: 18px; border-left: 2px solid var(--teal-line); }
.ddos-list b { font-family: var(--display); font-size: 18px; color: var(--text-strong); }
.ddos-list span { font-size: 14px; color: var(--muted); }
.shield-art { position: relative; height: 520px; border-radius: 22px; background: radial-gradient(ellipse at 50% 50%, #0b1c26 0%, #070b10 70%); border: 1px solid var(--line); overflow: hidden; box-shadow: inset 0 0 80px rgba(0,0,0,.6); }
#ddos-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hud { position: absolute; display: flex; gap: 10px; font: 500 12px/1.2 var(--mono); letter-spacing: .06em; padding: 10px 14px; border-radius: 10px; background: rgba(10,16,23,.78); border: 1px solid var(--line-2); backdrop-filter: blur(6px); color: var(--soft); }
.hud-tl { left: 18px; top: 18px; flex-direction: column; gap: 6px; }
.hud-k { text-transform: uppercase; color: var(--muted-2); }
.hud-v { display: flex; align-items: center; gap: 8px; color: var(--cyan); font-size: 14px; font-weight: 600; text-transform: uppercase; }
.hud-bl { left: 18px; bottom: 18px; flex-direction: column; gap: 8px; }
.lg { display: flex; align-items: center; gap: 9px; }
.lg i { width: 18px; height: 3px; border-radius: 2px; }
.lg-atk { background: linear-gradient(90deg, rgba(255,111,85,0), #ff6f55); box-shadow: 0 0 8px rgba(255,111,85,.8); }
.lg-ok { background: linear-gradient(90deg, rgba(127,220,236,0), #7fdcec); box-shadow: 0 0 8px rgba(34,188,214,.8); }
.hud-br { right: 18px; top: 18px; align-items: center; }
@keyframes ring-glow { 0% { box-shadow: 0 0 0 0 rgba(217,54,12,.45); } 70%, 100% { box-shadow: 0 0 0 12px rgba(217,54,12,0); } }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; padding: 34px 44px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; }
.stat b { display: block; font: 700 40px/1.1 var(--display); color: var(--text); }
.stat b.cyan { color: var(--cyan); }
.stat span { font-size: 14px; color: var(--muted); }

/* secciones */
.section { padding-top: 120px; }
.section-head { display: flex; flex-direction: column; gap: 14px; max-width: 780px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(32px, 3.6vw, 48px); line-height: 1.1; font-weight: 700; }
.section-head p { margin: 0; font-size: 18px; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature { padding: 32px; display: flex; flex-direction: column; gap: 14px; transition: border-color .2s, transform .2s; }
.feature:hover { border-color: #22394a; transform: translateY(-3px); }
.feature h3 { font-size: 22px; font-weight: 600; }
.feature p { margin: 0; font-size: 15px; color: var(--muted); }
.ico { width: 32px; height: 32px; }

/* comandos */
.cmd-head { display: flex; align-items: flex-end; gap: 40px; justify-content: space-between; flex-wrap: wrap; margin-bottom: 40px; }
.cmd-head .section-head { margin-bottom: 0; }
.counter { text-align: right; }
.counter b { display: block; font: 700 clamp(72px, 9vw, 120px)/1 var(--display); color: var(--accent-soft); }
.counter b i { font-style: normal; color: var(--text-strong); }
.counter > span { font: 500 13px/1.3 var(--mono); color: var(--muted-2); letter-spacing: .08em; }
.marquee { overflow: hidden; display: flex; flex-direction: column; gap: 14px; max-width: calc(var(--container) + 2 * var(--pad)); margin: 0 auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.track { display: flex; gap: 12px; width: max-content; }
.track.l { animation: left 60s linear infinite; }
.track.r { animation: right 70s linear infinite; }
.chip { font: 500 15px/1 var(--mono); padding: 11px 16px; border-radius: 10px; white-space: nowrap; }
.chip.c1 { color: #cfe7ee; border: 1px solid #1d3a47; background: #0b1820; }
.chip.c2 { color: #ffd2c6; border: 1px solid #4a2418; background: #1a0f0b; }
.cmd-body { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 20px; margin-top: 44px; }
.term { background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden; }
.term-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.term-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-3); }
.term-bar span { margin-left: 10px; font: 500 12px/1 var(--mono); color: var(--muted-2); }
.term-body { min-height: 290px; padding: 24px; display: flex; flex-direction: column; gap: 14px; font: 500 15px/1.5 var(--mono); }
.term-line .who { color: var(--muted-2); }
.term-line.old { opacity: .55; }
.term-reply { color: var(--cyan); }
.caret { display: inline-block; width: 9px; height: 18px; margin-left: 2px; vertical-align: -3px; background: var(--accent-soft); animation: caret 1s step-end infinite; }
.mods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-content: start; }
.mod { padding: 15px 18px; display: flex; align-items: center; gap: 12px; }
.mod span { flex-grow: 1; font-size: 15px; font-weight: 600; }
.mod b { font: 500 14px/1 var(--mono); color: var(--cyan); }

/* pasos */
.step { display: flex; flex-direction: column; gap: 14px; padding-top: 24px; border-top: 2px solid var(--line-3); }
.step.first { border-top-color: var(--accent); }
.step .n { font: 500 14px/1 var(--mono); color: var(--muted-2); }
.step.first .n { color: var(--accent-soft); }
.step h3 { font-size: 24px; font-weight: 600; }
.step p { margin: 0; color: var(--muted); }

/* banda de planes */
.band { margin-top: 120px; padding: 56px 64px; border-radius: 22px; background: var(--teal-deep); border: 1px solid var(--teal-line); display: flex; align-items: center; gap: 40px; justify-content: space-between; flex-wrap: wrap; }
.band h2 { font-size: clamp(30px, 3.2vw, 44px); line-height: 1.1; font-weight: 700; margin-top: 12px; }
.band p { margin: 12px 0 0; color: #b9d3dd; max-width: 620px; }
.band .eyebrow { color: var(--cyan-soft); }
.band .band-cta { margin-top: 0; }

/* faq */
.faq { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: 80px; }
.faq details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq summary { cursor: pointer; font-size: 18px; font-weight: 600; color: var(--text-strong); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::after { content: '+'; font-family: var(--mono); color: var(--muted-2); }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin: 12px 0 0; color: var(--muted); font-size: 15px; }

/* pie */
.footer { margin-top: 120px; border-top: 1px solid var(--line); }
.footer .wrap { display: flex; align-items: center; gap: 32px; padding-top: 44px; padding-bottom: 44px; flex-wrap: wrap; }
.footer img { height: 34px; width: auto; }
.footer small { flex-grow: 1; color: var(--muted-2); font-size: 13px; }
.footer nav { display: flex; gap: 22px; font-size: 14px; }
.footer nav { flex-wrap: wrap; }

/* configurador de planes */
.pl-head { padding-top: 56px; margin-bottom: 0; }
.pl-head h1 { font-size: clamp(34px, 4vw, 52px); line-height: 1.06; font-weight: 700; }
.planner { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 32px; align-items: start; padding-top: 40px; }
.pl-step { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.pl-step h2 { font-size: 22px; font-weight: 600; display: flex; align-items: baseline; gap: 12px; }
.pl-step h2 small { font: 500 13px/1 var(--mono); color: var(--accent-soft); }
.pl-step .hint { font-size: 13px; color: var(--muted-2); font-weight: 400; font-family: var(--body); }
.opts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.opts.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.opt { text-align: left; padding: 18px 20px; border-radius: 14px; background: var(--surface); border: 2px solid var(--line-2); color: var(--text-strong); cursor: pointer; display: flex; flex-direction: column; gap: 6px; font: inherit; transition: border-color .15s, background .15s; }
.opt:hover { border-color: var(--line-3); }
.opt[aria-pressed="true"] { background: var(--teal-deep); border-color: var(--cyan); }
.opt:disabled { cursor: not-allowed; background: #0a0f15; border: 1px solid var(--line); color: #5b6b78; }
.opt .big { font: 700 26px/1.1 var(--display); }
.opt .sub { font-size: 14px; color: var(--muted); }
.opt .price { font: 500 14px/1 var(--mono); color: var(--cyan); }
.opt.row { flex-direction: row; align-items: center; gap: 18px; }
.opt.row .grow { flex-grow: 1; display: flex; flex-direction: column; gap: 6px; }
.opt.row .title { font-size: 18px; font-weight: 600; }
.slots-box { padding: 22px 24px; display: flex; flex-direction: column; gap: 16px; border-color: #22394a; }
.slots-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.slots-label { font-size: 16px; color: var(--muted); }
.slots-label b { font: 700 40px/1 var(--display); color: var(--text-strong); margin-right: 6px; }
.big-price { font-size: 20px; }
#slots-range { width: 100%; accent-color: var(--cyan); height: 28px; cursor: pointer; }
.slots-quick { display: flex; gap: 8px; flex-wrap: wrap; }
.slots-quick button { font: 500 14px/1 var(--mono); padding: 10px 14px; border-radius: 9px; border: 1px solid var(--line-3); background: transparent; color: var(--soft); cursor: pointer; }
.slots-quick button[aria-pressed="true"] { border-color: var(--cyan); background: var(--teal-deep); color: var(--text-strong); }
.check { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--line-3); color: transparent; font-weight: 700; flex-shrink: 0; }
.opt[aria-pressed="true"] .check { background: var(--cyan); border-color: var(--cyan); color: #06212a; }
.is-off { opacity: .55; }
[hidden] { display: none !important; }
/* extras «próximamente» (se anuncian, no se pueden elegir) */
.soon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.soon-card { position: relative; padding: 16px 18px; border-radius: 14px; border: 1px dashed var(--line-3); display: flex; flex-direction: column; gap: 6px; overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(34,188,214,.04) 0 10px, transparent 10px 20px), var(--bg-2); }
.soon-card .tag { align-self: flex-start; font: 500 11px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--accent-soft); padding: 5px 8px; border: 1px solid var(--accent-line); border-radius: 999px; }
.soon-card b { font-size: 16px; color: var(--text-strong); }
.opt .price { white-space: nowrap; }
/* botón «Panel» de la cabecera (+ punto cian si hay sesión) y su enlace en el menú del teléfono */
.nav-panel { gap: 9px; }
.nav-online { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #5fe3f5; box-shadow: 0 0 0 2px rgba(6,33,42,.55), 0 0 10px #22bcd6; flex-shrink: 0; }
.nav-online[hidden] { display: none; }
.nav-links .nav-panel-m { display: none; }
/* tarjeta «próximamente» dentro de la rejilla de extras: mismo tamaño que un extra, sin poder elegirse */
.opts .opt-soon { padding: 16px 20px; border-radius: 14px; border-width: 2px; cursor: not-allowed; justify-content: center; }
.soon-card .soon-price { font: 600 13px/1.2 var(--mono); color: var(--cyan-soft); }
.soon-card span:last-child { font-size: 13px; color: var(--muted); }
.summary { position: sticky; top: 104px; padding: 30px; display: flex; flex-direction: column; gap: 18px; border-color: #22394a; }
.summary ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.summary li { display: flex; gap: 12px; font-size: 15px; }
.summary li span:first-child { flex-grow: 1; color: var(--soft); }
.summary li span:last-child { font-family: var(--mono); }
.summary hr { border: 0; border-top: 1px solid var(--line-2); margin: 0; }
.total { display: flex; align-items: baseline; gap: 10px; }
.total b { font: 700 48px/1 var(--display); color: var(--text-strong); }
.total span { color: var(--muted); }
.fine { margin: 0; font-size: 13px; color: var(--muted-2); }

/* panel provisional */
.soon { min-height: calc(100vh - 80px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; text-align: center; padding-bottom: 60px; }
.soon img { width: 180px; animation: float2 6s ease-in-out infinite; }
.soon h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* animaciones */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes float { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -10px); } }
@keyframes left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes caret { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

/* pantallas grandes (≥ 1600 px): contenedor más ancho (--container), tipografía algo mayor y el héroe reequilibrado
   (texto ~55 % / arte ~45 %); portátil y móvil no cambian */
@media (min-width: 1600px) {
  body { font-size: 17px; }
  .btn { font-size: 17px; padding: 16px 26px; }
  .btn-sm { font-size: 15px; padding: 12px 18px; }
  .nav-links { font-size: 16px; gap: 32px; }
  .hero .wrap { grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr); gap: 56px; padding-top: 88px; }
  .hero h1 { font-size: clamp(88px, 5.2vw, 124px); }
  .lead { font-size: clamp(20px, 1.15vw, 24px); max-width: 720px; }
  .trust { font-size: 15px; }
  .hero-art { min-height: 720px; }
  .mascot { width: min(460px, 72%); }
  .glow { width: 640px; height: 640px; }
  .float-card { padding: 18px 20px; gap: 9px; }
  .poke-card { top: 490px; width: min(360px, 56%); }
  .srv-card { top: 585px; width: min(280px, 42%); }
  .stats { padding: 40px 52px; }
  .stat b { font-size: 48px; }
  .stat span { font-size: 15px; }
  .section { padding-top: 140px; }
  .section-head { max-width: 920px; }
  .section-head h2 { font-size: clamp(48px, 2.9vw, 64px); }
  .section-head p { font-size: 20px; }
  .grid-3 { gap: 24px; }
  .feature { padding: 36px; }
  .feature h3 { font-size: 24px; }
  .feature p { font-size: 16px; }
  .counter b { font-size: clamp(120px, 7vw, 168px); }
  .cmd-body { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 24px; }
  .term-body { min-height: 330px; font-size: 16px; }
  .mods { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ddos h2 { font-size: clamp(52px, 3vw, 64px); }
  .ddos-list b { font-size: 20px; }
  .ddos-list span { font-size: 15px; }
  .shield-art { height: 600px; }
  .step h3 { font-size: 26px; }
  .band { padding: 64px 72px; }
  .band h2 { font-size: clamp(44px, 2.6vw, 56px); }
  .faq { grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: 96px; }
  .faq summary { font-size: 19px; }
  .pl-head h1 { font-size: clamp(52px, 3.1vw, 64px); }
  .planner { grid-template-columns: minmax(0, 1fr) 440px; gap: 40px; }
  .footer nav { font-size: 15px; }
}
@media (min-width: 2400px) {
  .mascot { width: min(520px, 72%); }
  .hero-art { min-height: 780px; }
  .poke-card { top: 540px; }
  .srv-card { top: 645px; }
}

/* responsive */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nav-actions { margin-left: auto; }
  .nav.open .nav-links { display: flex; position: absolute; top: 80px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px var(--pad) 16px; }
  .nav.open .nav-links a { padding: 12px 0; font-size: 17px; }
  .hero .wrap { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-art { min-height: 520px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cmd-body { grid-template-columns: 1fr; }
  .planner { grid-template-columns: 1fr; }
  .summary { position: static; }
  .faq { grid-template-columns: 1fr; gap: 24px; }
  .ddos { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .nav .wrap { height: 68px; gap: 12px; }
  .nav.open .nav-links { top: 68px; }
  .nav-logo img { height: 32px; }
  .nav-actions .btn { display: none; }
  .nav.open .nav-links .nav-panel-m { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 8px; padding: 13px 0; border-radius: 10px; background: var(--accent); color: #fff; font-weight: 600; }
  .hero-art { min-height: 440px; }
  .mascot { width: 200px; }
  .glow { width: 320px; height: 320px; }
  .poke-card { top: 270px; left: 0; right: 0; width: auto; }
  .srv-card { display: none; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 22px; gap: 18px; }
  .stat b { font-size: 30px; }
  .grid-3, .mods, .opts, .opts.two { grid-template-columns: 1fr; }
  .section { padding-top: 72px; }
  .section[id] { scroll-margin-top: 24px; }
  .band { padding: 30px 22px; margin-top: 72px; }
  .counter { text-align: left; }
  .chip { font-size: 13px; padding: 9px 13px; }
  .ddos-list { grid-template-columns: 1fr; }
  .shield-art { height: 420px; }
  .hud-bl { display: none; }
  .hud-br { top: auto; bottom: 14px; right: 14px; }
  .hud-tl { left: 14px; top: 14px; }
  .hud { font-size: 10px; padding: 7px 10px; gap: 6px; }
  .hud-tl { gap: 4px; }
  .hud-v { font-size: 12px; gap: 6px; }
  .footer nav { gap: 14px 20px; }
}

/* Acceso al panel (login, 2FA, invitación): estructura mínima por si panel.css no llegara a cargar (caché, red
   o un despliegue a medias). panel.css va DESPUÉS y redefine todo esto; aquí solo se evita que la página se
   desmorone: mascota gigante, pasos como lista numerada, campos en línea. */
.pn-auth { display: grid; gap: 32px; align-items: start; }
.pn-mascot { width: min(300px, 62%); height: auto; }
.pn-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pn-steps li { display: flex; align-items: center; gap: 8px; }
.pn-form { display: flex; flex-direction: column; gap: 16px; }
.pn-field { display: flex; flex-direction: column; gap: 8px; }
.pn-field input { width: 100%; }
.pn-codes { list-style: none; padding: 0; }
.pn-card { padding: 24px; }
.pn-points { display: flex; flex-direction: column; gap: 6px; padding: 16px; }
