/* =================================================================
   CANAL 1 ÑUBLE — Estilos principales
   Diseño: editorial moderno, fondo oscuro, acentos vibrantes
   ================================================================= */

:root {
  /* Brand colors directly from the logo */
  --c1-yellow:  #C9D63A;
  --c1-magenta: #D90A8E;
  --c1-blue:    #6FB6E8;
  --c1-purple:  #6A1FB1;

  /* Surfaces */
  --bg:         #0A0A0C;
  --bg-elev:    #14141A;
  --bg-card:    #1B1B23;
  --bg-card-2:  #22222C;
  --line:       rgba(255, 255, 255, 0.08);
  --line-2:     rgba(255, 255, 255, 0.16);

  /* Text */
  --text:       #F5F5F7;
  --text-dim:   rgba(245, 245, 247, 0.66);
  --text-faint: rgba(245, 245, 247, 0.42);

  /* Type — con fallbacks robustos */
  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

/* ================ RESET ================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ================ ATMOSPHERE ================ */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.atmosphere__blob {
  position: absolute;
  width: 50vmax;
  height: 50vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.20;
  mix-blend-mode: screen;
}
.atmosphere__blob--magenta {
  background: var(--c1-magenta);
  top: -10vmax; right: -10vmax;
  animation: float-a 20s ease-in-out infinite;
}
.atmosphere__blob--yellow {
  background: var(--c1-yellow);
  top: 30vh; left: -20vmax;
  opacity: 0.10;
  animation: float-b 25s ease-in-out infinite;
}
.atmosphere__blob--purple {
  background: var(--c1-purple);
  bottom: -20vmax; right: -10vmax;
  opacity: 0.18;
  animation: float-c 30s ease-in-out infinite;
}
.atmosphere__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}
@keyframes float-a {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-5vmax, 5vmax) scale(1.1); }
}
@keyframes float-b {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(8vmax, -3vmax) scale(0.9); }
}
@keyframes float-c {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-6vmax, -6vmax) scale(1.05); }
}

main { position: relative; z-index: 1; }

/* ================ ALERT BAR ================ */
.alert-bar {
  background: linear-gradient(90deg, var(--c1-magenta), var(--c1-purple));
  color: white;
  font-size: 13px;
  position: relative;
  z-index: 50;
}
.alert-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.alert-bar__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.alert-bar strong { letter-spacing: 0.14em; font-size: 11px; font-weight: 800; }
.alert-bar__cta {
  margin-left: auto;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.alert-bar__cta:hover { border-color: white; }
@media (max-width: 600px) {
  .alert-bar__cta { margin-left: 0; }
}

/* ================ NAV ================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  background: rgba(10, 10, 12, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.nav__logo img {
  height: 60px;
  width: auto;
  display: block;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
}
.nav__logo-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav__logo-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
  font-family: var(--font-body);
}
.nav__menu {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.nav__menu a {
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav__menu a::after {
  content:'';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--c1-magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__menu a:hover { color: var(--text); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c1-magenta), var(--c1-purple));
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s, box-shadow .25s;
  box-shadow: 0 6px 24px rgba(217, 10, 142, 0.25);
  white-space: nowrap;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(217, 10, 142, 0.4);
}
.nav__cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(1.3); }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--gutter) 24px;
  border-top: 1px solid var(--line);
  background: rgba(10,10,12,0.95);
  gap: 4px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 820px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .nav__cta span:not(.nav__cta-dot) { display: none; }
  .nav__cta { padding: 10px; }
  .nav__logo img { height: 46px; }
  .nav__logo-name { font-size: 18px; }
  .nav__logo-tagline { display: none; }
}

/* ================ IG EMBED (third-party widget container) ================ */
.ig-embed {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  position: relative;
  overflow: hidden;
}
.ig-embed iframe {
  display: block;
  width: 100% !important;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
}
/* Fallback when no embed is set */
.ig-embed--empty {
  display: grid;
  place-items: center;
  padding: 60px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(217, 10, 142, 0.08), rgba(106, 31, 177, 0.08));
  border-color: rgba(217, 10, 142, 0.20);
}
.ig-embed__placeholder {
  max-width: 480px;
}
.ig-embed__placeholder-icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: grid;
  place-items: center;
  color: white;
}
.ig-embed__placeholder-icon svg { width: 26px; height: 26px; fill: currentColor; }
.ig-embed__placeholder h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.ig-embed__placeholder p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0 0 18px;
}
.ig-embed__placeholder-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s;
}
.ig-embed__placeholder-btn:hover { transform: translateY(-1px); }

/* ================ X CTA (clean card, no auto-feed) ================ */
.x-cta {
  padding: clamp(40px, 6vw, 64px) 0;
}
.x-cta__card {
  background: #0F0F14;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  position: relative;
  overflow: hidden;
}
.x-cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.x-cta__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: white;
  color: #000;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.x-cta__icon svg { width: 34px; height: 34px; }
.x-cta__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.x-cta__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 6px;
  background: linear-gradient(180deg, #fff 0%, #cfcfd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.x-cta__sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
  max-width: 480px;
}
.x-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #000;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform .15s, box-shadow .25s;
  white-space: nowrap;
}
.x-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.12);
}
.x-cta__btn svg { width: 14px; height: 14px; }

@media (max-width: 720px) {
  .x-cta__card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .x-cta__icon { margin: 0 auto; }
  .x-cta__sub { max-width: none; }
  .x-cta__btn { justify-self: center; }
}

/* ================ IG FEED (editorial layout) ================ */
.ig-feed {
  padding: clamp(60px, 10vw, 100px) 0;
}
.ig-feed__tag {
  background: linear-gradient(135deg, rgba(217, 10, 142, 0.10), rgba(106, 31, 177, 0.10));
  border: 1px solid rgba(217, 10, 142, 0.30);
  color: var(--c1-magenta);
  display: inline-flex;
  align-items: center;
}
.ig-feed__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.ig-feed__post {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .25s;
  aspect-ratio: 1 / 1;
}
.ig-feed__post:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
}
/* Featured (first) post spans 2 rows */
.ig-feed__post--featured {
  grid-row: span 2;
  aspect-ratio: auto;
}
.ig-feed__post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.ig-feed__post:hover img {
  transform: scale(1.04);
}
.ig-feed__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.85) 100%);
  color: white;
  pointer-events: none;
}
.ig-feed__post--featured .ig-feed__overlay {
  padding: 24px 26px;
}
.ig-feed__caption {
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  font-weight: 500;
}
.ig-feed__post--featured .ig-feed__caption {
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  -webkit-line-clamp: 3;
  margin-bottom: 10px;
}
.ig-feed__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.85;
}
.ig-feed__meta-icon {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
}
.ig-feed__meta-icon svg { width: 10px; height: 10px; }
.ig-feed__date {
  margin-left: auto;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .ig-feed__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ig-feed__post--featured {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 560px) {
  .ig-feed__grid {
    grid-template-columns: 1fr;
  }
  .ig-feed__post--featured {
    grid-column: span 1;
  }
}

/* ================ SECTION KICKER ================ */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.section-kicker__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c1-magenta);
  box-shadow: 0 0 0 5px rgba(217, 10, 142, 0.25);
  animation: livePulse 1.6s infinite;
}
.section-kicker__text {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-dim);
}

/* ================ HERO V2 — PLAYER + WIDGETS ================ */
.hero-v2 {
  padding: clamp(36px, 6vw, 56px) 0 clamp(40px, 6vw, 64px);
  position: relative;
}
.hero-v2__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(14px, 1.8vw, 20px);
  align-items: stretch;
}
@media (max-width: 1024px) {
  .hero-v2__grid {
    grid-template-columns: 1fr;
  }
}

/* Player */
.player {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 10px;
}
.player__frame {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: linear-gradient(135deg, #2a1a4a 0%, #4a1a3a 50%, #1a3a4a 100%);
  position: relative;
  overflow: hidden;
}
.player__badge-live {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: var(--c1-magenta);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  z-index: 3;
  color: white;
}
.player__badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.4s infinite;
}
.player__badge-hd {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 9px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  z-index: 3;
  color: white;
  letter-spacing: 0.04em;
}
.player__art {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 0;
}
.player__art-yellow  { background: var(--c1-yellow); }
.player__art-magenta { background: var(--c1-magenta); }
.player__art-blue    { background: var(--c1-blue); }
.player__art-purple  { background: var(--c1-purple); }

.player__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  color: var(--bg);
}
.player__play::before {
  content: '';
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: white;
  transition: transform .25s, box-shadow .3s;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.player__play:hover::before {
  transform: scale(1.08);
  box-shadow: 0 18px 60px rgba(255,255,255,0.18);
}
.player__play svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.player__info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  gap: 14px;
  z-index: 2;
}
.player__info-left { flex: 1; min-width: 0; }
.player__info-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 3px;
}
.player__info-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player__info-right {
  text-align: right;
  flex-shrink: 0;
}
.player__info-time {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-variant-numeric: tabular-nums;
  margin-bottom: 3px;
}
.player__info-remaining {
  display: block;
  font-size: 11px;
  color: var(--c1-yellow);
  font-weight: 600;
}

/* Widgets column */
.widgets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget {
  border-radius: var(--radius);
  padding: 18px 20px;
  position: relative;
}
.widget--now {
  background: linear-gradient(135deg, rgba(217, 10, 142, 0.10) 0%, rgba(106, 31, 177, 0.10) 100%);
  border: 1px solid rgba(217, 10, 142, 0.28);
}
.widget--next {
  background: var(--bg-card);
  border: 1px solid var(--line);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.widget__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.widget__pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c1-magenta);
  box-shadow: 0 0 0 4px rgba(217, 10, 142, 0.22);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.widget__kicker {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c1-magenta);
}
.widget__kicker--yellow {
  color: var(--c1-yellow);
  display: block;
  margin-bottom: 14px;
}
.widget__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 8px;
}
.widget__desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 16px;
}
.widget__progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
}
.widget__progress-percent {
  font-weight: 600;
  color: var(--c1-yellow);
}
.widget__progress-track {
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.10);
  overflow: hidden;
}
.widget__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--c1-magenta), var(--c1-yellow));
  border-radius: 3px;
  transition: width .5s ease;
}

/* Up next list */
.upnext {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.upnext__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.upnext__item:hover { opacity: 0.85; }
.upnext__time {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 6px 0;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.upnext__item--soon .upnext__time {
  background: rgba(217, 10, 142, 0.15);
  border-color: rgba(217, 10, 142, 0.35);
  color: var(--c1-magenta);
}
.upnext__info { min-width: 0; }
.upnext__title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.upnext__meta {
  font-size: 11px;
  color: var(--text-faint);
}

.widget__link {
  text-align: center;
  display: block;
  padding-top: 14px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  transition: color .2s;
}
.widget__link:hover { color: var(--c1-magenta); }

/* ================ BANNER STRIP (compact banner) ================ */
.banner-strip {
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.banner-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.banner-strip__copy {
  max-width: 720px;
}
.banner-strip__kicker {
  display: inline-block;
  padding: 4px 11px;
  background: rgba(201, 214, 58, 0.10);
  border: 1px solid rgba(201, 214, 58, 0.30);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c1-yellow);
  margin-bottom: 10px;
}
.banner-strip__title {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #cfcfd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.banner-strip__sub {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 580px;
}
.banner-strip__shapes {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media (max-width: 720px) {
  .banner-strip__inner { grid-template-columns: 1fr; }
  .banner-strip__shapes { display: none; }
}
.bs-shape {
  border-radius: 999px;
}
.bs-shape--yellow  { width: 22px; height: 14px; background: var(--c1-yellow); }
.bs-shape--magenta { width: 22px; height: 14px; background: var(--c1-magenta); }
.bs-shape--blue    { width: 14px; height: 28px; background: var(--c1-blue); }
.bs-shape--purple  { width: 22px; height: 14px; background: var(--c1-purple); }

/* ================ CATEGORY TABS ================ */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.category-tab {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--text-dim);
  transition: all .2s;
  cursor: pointer;
}
.category-tab:hover {
  color: var(--text);
  border-color: var(--text-dim);
}
.category-tab.is-active {
  background: white;
  color: var(--bg);
  border-color: white;
  font-weight: 600;
}
.category-tab__count {
  opacity: 0.55;
  margin-left: 4px;
  font-weight: 500;
}
.category-tab.is-active .category-tab__count {
  opacity: 0.65;
}

/* ================ SCHEDULE ================ */
.schedule {
  padding: clamp(60px, 10vw, 100px) 0;
  background: rgba(255, 255, 255, 0.012);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.schedule__item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm, 12px);
  padding: 14px;
  text-decoration: none;
  color: inherit;
  transition: background .2s, border-color .2s, transform .15s;
  display: block;
}
.schedule__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.schedule__item--live {
  background: rgba(217, 10, 142, 0.10);
  border-color: var(--c1-magenta);
}
.schedule__item--live::after {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c1-magenta);
  box-shadow: 0 0 0 4px rgba(217, 10, 142, 0.25);
  animation: pulse 1.5s infinite;
}
.schedule__time {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.schedule__item--live .schedule__time {
  color: var(--c1-magenta);
}
.schedule__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.2;
}
.schedule__meta {
  font-size: 11px;
  color: var(--text-faint);
}
.schedule__item--live .schedule__meta {
  color: var(--text-dim);
}

/* Original hero kept for backward compat (unused now but harmless) */
.hero {
  padding: clamp(60px, 10vh, 120px) 0 0;
  position: relative;
}
.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}
.hero__copy { animation: rise 1s cubic-bezier(.2,.8,.2,1) both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__kicker {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c1-yellow);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero__title-line {
  background: linear-gradient(180deg, #ffffff 0%, #cfcfd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero__subtitle {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .25s, background .25s, color .25s, border-color .25s;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: white;
  color: var(--bg);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255,255,255,.12);
}
.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--text-dim);
}
.btn--whatsapp {
  background: #25D366;
  color: #0a0a0c;
}
.btn--whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3);
}

.hero__live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dim);
}
.hero__live-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c1-magenta);
  box-shadow: 0 0 0 0 rgba(217, 10, 142, 0.6);
  animation: livePulse 1.6s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(217, 10, 142, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(217, 10, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 10, 142, 0); }
}

/* HERO Visual - reinterpretación del "1" del logo con formas robustas */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  animation: rise 1s .15s cubic-bezier(.2,.8,.2,1) both;
}
.hero__shapes {
  position: absolute;
  inset: 5%;
  z-index: 1;
}
.shape {
  position: absolute;
  border-radius: 999px;
  opacity: 1;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.shape--yellow {
  width: 42%; height: 30%;
  top: 4%; left: 14%;
  background: var(--c1-yellow);
  z-index: 2;
  animation: shapeYel 6s ease-in-out infinite;
}
.shape--magenta {
  width: 42%; height: 30%;
  top: 4%; left: 44%;
  background: var(--c1-magenta);
  z-index: 3;
  animation: shapeMag 7s ease-in-out infinite;
}
.shape--blue {
  width: 32%; height: 64%;
  top: 22%; left: 50%;
  background: var(--c1-blue);
  z-index: 1;
  animation: shapeBlu 8s ease-in-out infinite;
}
.shape--purple {
  width: 42%; height: 30%;
  bottom: 4%; left: 36%;
  background: var(--c1-purple);
  z-index: 2;
  animation: shapePur 7.5s ease-in-out infinite;
}
@keyframes shapeYel { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px) rotate(-2deg);} }
@keyframes shapeMag { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes shapeBlu { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes shapePur { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero__one {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(220px, 38vw, 480px);
  font-weight: 200;
  line-height: 1;
  color: rgba(255,255,255, 0.04);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
}
.hero__shapes { z-index: 1; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
}

/* ================ MARQUEE ================ */
.hero__marquee {
  margin-top: clamp(60px, 10vw, 110px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: rgba(255,255,255,0.02);
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  color: var(--text-faint);
  letter-spacing: -0.01em;
  width: max-content;
}
.marquee__track span:nth-child(2n) {
  color: var(--c1-magenta);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================ SECTION HEAD ================ */
.section-head { margin-bottom: clamp(36px, 5vw, 64px); max-width: 760px; }
.section-head--row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  max-width: none;
}
@media (max-width: 720px){
  .section-head--row { grid-template-columns: 1fr; }
}
.section-head__tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c1-yellow);
  margin-bottom: 16px;
}
.section-head__title {
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: -0.035em;
  line-height: 1;
}
.section-head__lead {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 460px;
}
.section-head__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--c1-magenta);
  padding-bottom: 4px;
  transition: color .2s;
}
.section-head__link:hover { color: var(--c1-magenta); }

/* ================ NEWS HIGHLIGHT ================ */
.news { padding: clamp(80px, 12vw, 140px) 0 clamp(40px, 6vw, 80px); }
.news__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .news__grid { grid-template-columns: 1fr 1fr; }
  .news__grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .news__grid { grid-template-columns: 1fr; }
}

.news-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  display: block;
  isolation: isolate;
}
.news-card:first-child { aspect-ratio: 4 / 5; }
@media (min-width: 901px) {
  .news-card:first-child { aspect-ratio: auto; }
}
.news-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.news-card:hover img { transform: scale(1.05); }
.news-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,12,0.95) 100%);
  z-index: 1;
}
.news-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 2.5vw, 32px);
  z-index: 2;
}
.news-card__category {
  display: inline-block;
  padding: 4px 10px;
  background: var(--c1-magenta);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.news-card__title {
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.15;
  margin-bottom: 8px;
  font-weight: 600;
}
.news-card__date {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ================ EN VIVO ================ */
.live { padding: clamp(80px, 12vw, 140px) 0; }
.live__card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 36px);
  align-items: center;
}
@media (max-width: 820px) {
  .live__card { grid-template-columns: 1fr; }
}
.live__player-shell {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c1-purple), var(--c1-magenta) 60%, var(--c1-blue));
  padding: 2px;
}
.live__player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) - 2px);
  background: #050507;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.live__player-overlay {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--c1-magenta);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  z-index: 2;
}
.live__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.4s infinite;
}
.live__player-art {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  filter: blur(40px);
  opacity: 0.45;
}
.live__player-art-yellow  { background: var(--c1-yellow); }
.live__player-art-magenta { background: var(--c1-magenta); }
.live__player-art-blue    { background: var(--c1-blue); }
.live__player-art-purple  { background: var(--c1-purple); }

.live__play {
  position: relative;
  z-index: 2;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: white;
  color: var(--bg);
  display: grid;
  place-items: center;
  transition: transform .25s, box-shadow .3s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.live__play svg { width: 32px; height: 32px; margin-left: 4px; }
.live__play:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 50px rgba(255,255,255,0.2);
}

.live__badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--c1-yellow);
  color: var(--bg);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.live__info h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
}
.live__info p {
  color: var(--text-dim);
  margin-bottom: 24px;
}
.live__now {
  padding: 16px 18px;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 14px;
}
.live__now strong {
  display: block;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  margin-bottom: 4px;
}

/* ================ PARRILLA ================ */
.grid-section { padding: clamp(60px, 10vw, 120px) 0; }
.programs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.program {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: transform .35s ease, border-color .25s;
  cursor: pointer;
  isolation: isolate;
  display: block;
  color: inherit;
}
.program:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
}
.program__image {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #0f0f15;
}
.program__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.program:hover .program__image img { transform: scale(1.04); }
.program__image::after {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,12, 0.45) 100%);
  pointer-events: none;
}
.program__category {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  z-index: 2;
}
.program__category--yellow  { background: var(--c1-yellow); }
.program__category--magenta { background: var(--c1-magenta); color: white; }
.program__category--blue    { background: var(--c1-blue); }
.program__category--purple  { background: var(--c1-purple); color: white; }
.program__category--live {
  background: var(--c1-magenta);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.program__live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.4s infinite;
}
.program--live { border-color: var(--c1-magenta); }

.program__body {
  padding: 24px;
}
.program__title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 8px;
}
.program__schedule {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.program__desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

/* ================ INSTAGRAM ================ */
.instagram { padding: clamp(60px, 10vw, 120px) 0; }
.instagram__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 720px){
  .instagram__head { grid-template-columns: 1fr; }
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.ig-post {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  display: block;
  isolation: isolate;
}
.ig-post img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.ig-post:hover img { transform: scale(1.08); }
.ig-post::after {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85));
  opacity: 0;
  transition: opacity .25s;
  z-index: 1;
}
.ig-post:hover::after { opacity: 1; }
.ig-post__caption {
  position: absolute;
  inset: auto 0 0;
  padding: 16px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .35s;
  z-index: 2;
}
.ig-post:hover .ig-post__caption {
  opacity: 1;
  transform: translateY(0);
}
.ig-post__icon {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.9);
  color: var(--bg);
  border-radius: 8px;
  display: grid;
  place-items: center;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
}

/* ================ CTA BAND (WhatsApp denuncia) ================ */
.cta-band {
  padding: clamp(40px, 8vw, 80px) 0;
}
.cta-band__inner {
  background: linear-gradient(135deg, var(--c1-yellow) 0%, #d4e22b 100%);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-band__inner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  right: -60px; top: -60px;
  border-radius: 50%;
  background: rgba(10,10,12,0.05);
}
.cta-band__inner::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  left: 30%; bottom: -100px;
  border-radius: 50%;
  background: rgba(10,10,12,0.05);
}
.cta-band__copy {
  color: var(--bg);
  position: relative;
  z-index: 2;
}
.cta-band__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(10,10,12,0.1);
  border-radius: 999px;
}
.cta-band__copy h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: -0.025em;
}
.cta-band__copy p {
  color: rgba(10,10,12,0.75);
  font-size: 16px;
  max-width: 540px;
}
.cta-band .btn--whatsapp {
  position: relative;
  z-index: 2;
  background: #0a0a0c;
  color: white;
}
.cta-band .btn--whatsapp:hover {
  background: #25D366;
  color: var(--bg);
}
@media (max-width: 720px){
  .cta-band__inner { grid-template-columns: 1fr; }
}

/* ================ ABOUT ================ */
.about { padding: clamp(80px, 12vw, 140px) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 820px){
  .about__grid { grid-template-columns: 1fr; }
}
.about__copy p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 560px;
}
.about__copy strong {
  color: var(--c1-yellow);
  font-weight: 600;
}
.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.about__pills li {
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}
.about__numbers {
  display: grid;
  gap: 16px;
}
.about__number {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: baseline;
  gap: 16px;
  transition: border-color .25s, transform .25s;
}
.about__number:hover {
  border-color: var(--c1-magenta);
  transform: translateX(6px);
}
.about__number strong {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, white 0%, #aaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__number span {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}

/* ================ FOOTER ================ */
.footer {
  background: #050507;
  border-top: 1px solid var(--line);
  padding: clamp(60px, 10vw, 100px) 0 32px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px){
  .footer__top { grid-template-columns: 1fr; }
}
.footer__brand img { height: 80px; margin-bottom: 16px; }
.footer__brand p {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.footer__brand-region {
  font-size: 13px;
  color: var(--text-faint);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 600px) { .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px 16px; } }
.footer__cols h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c1-yellow);
  margin-bottom: 16px;
}
.footer__cols a, .footer__cols span {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 6px 0;
  transition: color .2s;
}
.footer__cols a:hover { color: var(--text); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-faint);
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  transition: all .25s;
}
.footer__social a:hover {
  background: var(--c1-magenta);
  color: white;
  border-color: var(--c1-magenta);
}

/* ================ UTILITIES & ACCESSIBILITY ================ */
:focus-visible {
  outline: 2px solid var(--c1-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
