/* ==========================================================================
   OptiXtream — Modelo 06 · Pulso en Vivo (Brutalismo Refinado / broadcast)
   Sobrescribe theme.css con la dirección del proyecto. Radios 0, bordes duros,
   una sola fuente de luz, y la traza de señal como único gesto animado extra.
   ========================================================================== */

:root {
  --bg: #0D0D0D;
  --bg-1: #141414;
  --bg-2: #1B1B1B;
  --surface: rgba(242, 242, 237, 0.04);
  --surface-2: rgba(242, 242, 237, 0.07);

  --accent: #12E27A;
  --accent-soft: #6CF0AC;
  --accent-2: #0AA85C;
  --accent-2-deep: #067A41;

  --text: #F2F2ED;
  --text-2: #9C9C94;
  --text-3: #64645D;
  --border: rgba(18, 226, 122, 0.16);
  --ink: #06120A;

  --grad-brand: linear-gradient(100deg, var(--accent), var(--accent-2));
  --grad-text: linear-gradient(100deg, var(--accent-soft), var(--accent) 45%, var(--accent-2));

  --ff-display: 'Syne', system-ui, sans-serif;
  --ff-body: 'Archivo', system-ui, -apple-system, sans-serif;

  --radius: 0px;
  --radius-lg: 0px;
  --shadow-accent: 0 18px 40px -14px rgba(18, 226, 122, 0.4);

  --border-w: 2px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.62;
}

h1, h2, h3, h4 { font-family: var(--ff-display); text-wrap: balance; overflow-wrap: break-word; }

a { text-decoration: none; }

::selection { background: var(--accent); color: var(--ink); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-2); border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-2-deep); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 0; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  padding: 0.85rem 1.25rem;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Grano — algo más marcado, textura de transmisión analógica */
.u-grain {
  opacity: 0.055;
  mix-blend-mode: overlay;
}

/* --------------------------------------------------------------------------
   Layout utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.container.narrow { max-width: 800px; }

/* Guías de grilla — reglas verticales sutiles a los costados del contenedor,
   solo en pantallas anchas: "grid visible" del brutalismo con criterio. */
@media (min-width: 1280px) {
  .container::before,
  .container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
  }
  .container::before { left: 1.5rem; }
  .container::after { right: 1.5rem; }
}

.centered { text-align: center; margin-left: auto; margin-right: auto; }
.max-w-prose { max-width: 56ch; }

.section { padding: 6rem 0; position: relative; }
.section-bordered { border-top: var(--border-w) solid var(--border); border-bottom: var(--border-w) solid var(--border); }
.bg-1 { background: var(--bg-1); }
.bg-2 { background: var(--bg-2); }

.section-kicker {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.section-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.section-kicker.centered-flex { justify-content: center; }

.section-title {
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.9rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.section-body {
  color: var(--text-2);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 56ch;
}

/* --------------------------------------------------------------------------
   Botones
   -------------------------------------------------------------------------- */
.btn-signal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.05rem 2.1rem;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: var(--border-w) solid var(--accent);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease);
  box-shadow: 5px 5px 0 0 var(--accent-2-deep);
}
.btn-signal svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-signal:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 0 var(--accent-2-deep);
}
.btn-signal:active { transform: translate(0, 0); box-shadow: 2px 2px 0 0 var(--accent-2-deep); }

.btn-signal--ghost {
  background: transparent;
  color: var(--text);
  border: var(--border-w) solid var(--border);
  box-shadow: none;
}
.btn-signal--ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent-soft);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 0 rgba(18, 226, 122, 0.18);
}
.btn-signal--ghost:active { transform: translate(0, 0); box-shadow: none; }

.btn-signal--sm { padding: 0.8rem 1.5rem; font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   Traza de señal — la firma "Pulso en Vivo"
   -------------------------------------------------------------------------- */
.pulse-wave { display: block; overflow: visible; }
.pulse-wave path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.pulse-wave-inner {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: wave-breathe 6.5s var(--ease) infinite;
}

@keyframes wave-breathe {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.09); }
}

.pulse-wave--hero {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1440px, 128vw);
  height: auto;
  transform: translate(-50%, -50%) scaleY(var(--pulse-scale, 1));
  transition: transform 0.5s var(--ease);
  z-index: 1;
  opacity: 0.32;
  pointer-events: none;
}

.pulse-wave--footer {
  width: min(340px, 78vw);
  height: auto;
  opacity: 0.55;
}
.pulse-wave--footer path { stroke-width: 2.2; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 85% at 50% -10%, rgba(18, 226, 122, 0.14), transparent 55%),
    radial-gradient(90% 60% at 50% 115%, rgba(10, 168, 92, 0.1), transparent 62%),
    linear-gradient(180deg, #111311 0%, #0D0D0D 55%, #0a0a0a 100%);
  border-bottom: var(--border-w) solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(120% 110% at 50% 40%, transparent 46%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow { justify-content: center; animation-delay: 0.1s; }

.hero-title {
  width: 100%;
  min-width: 0;
  font-weight: 800;
  font-size: clamp(2.5rem, 1rem + 7.6vw, 8.4rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0.4rem 0 0;
  max-width: none;
  animation-delay: 0.32s;
}
.hero-title .line { display: block; }
.hero-title .dot { color: var(--accent); -webkit-text-fill-color: var(--accent); }

@media (min-width: 860px) {
  .hero-title { margin-inline: -1.6rem; }
}

.hero-sub {
  width: 100%;
  min-width: 0;
  margin-top: 1.9rem;
  max-width: 52ch;
  color: var(--text-2);
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.24rem);
  line-height: 1.66;
  animation-delay: 0.62s;
}

.hero-actions {
  width: 100%;
  min-width: 0;
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation-delay: 0.86s;
}

.hero-note {
  color: var(--text-2);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   SPLIT — Contenido HD
   -------------------------------------------------------------------------- */
.section-split .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.split-text { min-width: 0; }

.split-media {
  position: relative;
  min-width: 0;
  border: var(--border-w) solid var(--border);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: saturate(1.02) contrast(1.03);
}

.spec-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--border-w) solid var(--border);
  border-left: var(--border-w) solid var(--border);
}
.spec-item {
  padding: 1.5rem 1.25rem;
  border-right: var(--border-w) solid var(--border);
  border-bottom: var(--border-w) solid var(--border);
}
.spec-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.5rem);
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.spec-num .plus { color: var(--accent); }
.spec-label {
  margin-top: 0.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* --------------------------------------------------------------------------
   MARQUEE — plataformas
   -------------------------------------------------------------------------- */
.section-platforms { padding: 5rem 0; }

.marquee {
  margin-top: 3rem;
  overflow: hidden;
  border-top: var(--border-w) solid var(--border);
  border-bottom: var(--border-w) solid var(--border);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  display: flex;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-right: 1px solid var(--border);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   ONE-CLICK
   -------------------------------------------------------------------------- */
.section-oneclick {
  position: relative;
  background-color: var(--bg-1);
  background-image:
    linear-gradient(180deg, rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.97)),
    url('assets/unsplash-05.jpg');
  background-size: cover;
  background-position: center;
}

.oneclick-actions {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   INTERSTICIO a sangre
   -------------------------------------------------------------------------- */
.section-interstitial {
  position: relative;
  min-height: min(60vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
  border-top: var(--border-w) solid var(--border);
  border-bottom: var(--border-w) solid var(--border);
}

.interstitial-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.interstitial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interstitial-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.78) 60%, rgba(10, 10, 10, 0.92) 100%),
    radial-gradient(80% 70% at 50% 50%, transparent 30%, rgba(10, 10, 10, 0.5) 100%);
}

.interstitial-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  text-align: center;
  max-width: 780px;
}

.interstitial-title {
  font-weight: 800;
  font-size: clamp(2rem, 1.1rem + 4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.interstitial-sub {
  margin-top: 1.4rem;
  color: var(--text-2);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

/* --------------------------------------------------------------------------
   VIP
   -------------------------------------------------------------------------- */
.section-vip .split-text .btn-signal { margin-top: 1.7rem; }

/* --------------------------------------------------------------------------
   PRECIOS
   -------------------------------------------------------------------------- */
.section-pricing { background: var(--bg-1); }

.pricing-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--border-w) solid var(--border);
}

.price-card {
  position: relative;
  background: var(--bg-1);
  border-right: var(--border-w) solid var(--border);
  display: flex;
  flex-direction: column;
  transition: background 0.25s var(--ease);
}
.price-card:last-child { border-right: none; }
.price-card:hover { background: var(--surface); }

.price-card.featured {
  background: linear-gradient(180deg, rgba(18, 226, 122, 0.1), rgba(20, 20, 20, 0.4));
  box-shadow: inset 0 0 0 var(--border-w) var(--accent);
}
.price-card.featured:hover { background: linear-gradient(180deg, rgba(18, 226, 122, 0.15), rgba(20, 20, 20, 0.4)); }

.price-badge {
  background: var(--accent);
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 0.5rem;
}

.price-header {
  padding: 1.9rem 1.4rem 1.2rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.price-title {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-sub {
  margin-top: 0.35rem;
  color: var(--text-3);
  font-size: 0.82rem;
}

.price-body {
  padding: 1.6rem 1.4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.price-tag {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.5rem + 1.4vw, 2.5rem);
  font-variant-numeric: tabular-nums;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.price-tag .cents { font-size: 0.55em; color: var(--text-2); }

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: left;
  flex: 1;
}
.price-features li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.4;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

/* --------------------------------------------------------------------------
   TRUST BAR
   -------------------------------------------------------------------------- */
.section-trust {
  padding: 0;
  border-top: var(--border-w) solid var(--border);
  border-bottom: var(--border-w) solid var(--border);
  background: var(--bg-2);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  padding: 2.6rem 1.75rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.trust-item:last-child { border-right: none; }
.trust-label {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}
.trust-sub {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.section-faq { background: var(--bg); }

.accordion {
  margin-top: 2.6rem;
  border-top: var(--border-w) solid var(--border);
}

.faq-item { border-bottom: var(--border-w) solid var(--border); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.2rem);
  color: var(--text);
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-soft); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg) scaleY(0); }

.faq-body {
  padding: 0 0.25rem 1.6rem;
  max-width: 68ch;
}
.faq-body p {
  color: var(--text-2);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-1);
  border-top: var(--border-w) solid var(--border);
  padding: 4rem 0 2.5rem;
}

.footer-signal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.footer-signal-caption {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.footer-copy {
  color: var(--text-2);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  align-items: center;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-2);
  font-weight: 600;
  padding: 0.5rem 0.2rem;
  transition: color 0.2s var(--ease);
}
.footer-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.footer-link:hover { color: var(--accent); }

.footer-hours {
  color: var(--text-3);
  text-align: right;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .section-split .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-media { order: -1; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card:nth-child(2) { border-right: none; }
  .price-card { border-bottom: var(--border-w) solid var(--border); }
  .price-card:nth-last-child(-n+2) { border-bottom: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1.1rem; }
  .footer-hours { text-align: center; }
  .spec-grid { grid-template-columns: 1fr; }
  .marquee-track span { font-size: 1.1rem; padding: 1.15rem 1.5rem; }
}

@media (max-width: 560px) {
  .section { padding: 4.5rem 0; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .hero-title { margin-inline: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none; border-bottom: var(--border-w) solid var(--border); }
  .price-card:last-child { border-bottom: none; }
  .price-card:nth-last-child(-n+2) { border-bottom: var(--border-w) solid var(--border); }
  .price-card:last-child { border-bottom: none; }
}

/* ========================================================================== 
   CINEMA PASS — emisión en vivo, bloqueo de señal y flare técnico
   ========================================================================== */
.hero-inner::before {
  content: '';
  position: absolute;
  width: min(820px,90vw);
  height: min(820px,90vw);
  left: 50%;
  top: 45%;
  z-index: -1;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,229,138,.12), rgba(8,183,117,.035) 42%, transparent 70%);
  filter: blur(14px);
  animation: m06-lock 4.5s ease-in-out infinite alternate;
}
.hero-title { position: relative; }
.hero-title::after { content: 'SEÑAL BLOQUEADA · 4K · 24/7'; display: block; width: fit-content; margin: 1.1rem auto 0; padding: .38rem .7rem; border: 1px solid rgba(120,243,184,.24); color: var(--accent-soft); font-family: var(--ff-body); font-size: .64rem; font-weight: 600; letter-spacing: .16em; line-height: 1; }
.pulse-wave--hero { animation: m06-wave-glow 2.8s ease-in-out infinite alternate; }
.section-bordered { box-shadow: inset 0 1px 0 rgba(120,243,184,.035), inset 0 -1px 0 rgba(120,243,184,.035); }

@keyframes m06-lock { from { opacity: .55; transform: translate(-50%,-50%) scale(.94); } to { opacity: 1; transform: translate(-50%,-50%) scale(1.04); } }
@keyframes m06-wave-glow { from { filter: drop-shadow(0 0 5px rgba(24,229,138,.18)); } to { filter: drop-shadow(0 0 13px rgba(24,229,138,.46)); } }
@media (prefers-reduced-motion: reduce) { .hero-inner::before, .pulse-wave--hero { animation: none !important; } }

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .pulse-wave-inner { animation: none !important; }
  .pulse-wave--hero { transform: translate(-50%, -50%) !important; }
  .marquee-track { animation: none !important; }
}

/* ========================================================================== 
   POWER PASS 2026 — Broadcast táctico / pulso verde mineral
   ========================================================================== */
:root {
  --bg: #07110D;
  --bg-1: #0C1812;
  --bg-2: #112219;
  --surface: rgba(58,239,152,.045);
  --surface-2: rgba(58,239,152,.075);
  --accent: #18E58A;
  --accent-soft: #78F3B8;
  --accent-2: #08B775;
  --accent-2-deep: #04704A;
  --text-2: #A9B5AE;
  --text-3: #748079;
  --border: rgba(24,229,138,.2);
}

body { background: linear-gradient(180deg, var(--bg), #050A08); }
.hero { background: radial-gradient(80% 68% at 50% 0%, rgba(24,229,138,.13), transparent 64%), linear-gradient(180deg, #0A1711, #070D0A); }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background: repeating-linear-gradient(180deg, transparent 0 5px, rgba(120,243,184,.055) 6px);
  mix-blend-mode: screen;
}
.hero-title .u-accent-text { filter: drop-shadow(0 18px 32px rgba(24,229,138,.22)); }
.pulse-wave { filter: drop-shadow(0 0 9px rgba(24,229,138,.32)); }
.btn-signal { background: linear-gradient(105deg, #78F3B8, #18E58A 48%, #08B775); box-shadow: 6px 6px 0 #04704A, 0 20px 40px -18px rgba(24,229,138,.65); }
.btn-signal:hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 #04704A, 0 28px 48px -16px rgba(24,229,138,.72); }
.spec-item, .price-card { background: linear-gradient(150deg, rgba(24,229,138,.065), rgba(255,255,255,.012)); }
.price-card:hover { background: linear-gradient(150deg, rgba(24,229,138,.12), rgba(255,255,255,.02)); }
.trust-item { background: radial-gradient(circle at 50% 0%, rgba(24,229,138,.075), transparent 62%); }
.faq-item { border-bottom-color: rgba(24,229,138,.22); }

@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.55rem, 13vw, 4rem); }
  .btn-signal { box-shadow: 4px 4px 0 #04704A; }
}
