/* ============================================================
   Los Juegos de Ávatar — Home
   Estilos de la página inicial.
   ============================================================ */

/* -------- RESET / BASE -------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; }

/* Hide scrollbars globally but keep scrolling */
*::-webkit-scrollbar { width: 0; height: 0; }
* { scrollbar-width: none; }

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* -------- BOTONES -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast),
              color var(--t-fast), box-shadow var(--t-fast),
              border-color var(--t-fast);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--ember);
  color: var(--ink);
}
.btn-primary:hover {
  background: #FA8246;
  box-shadow: 0 8px 24px -8px rgba(232,114,60,0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--lila);
  color: var(--lila);
}

.btn-lila {
  background: var(--lila);
  color: var(--ink);
}
.btn-lila:hover {
  background: var(--lila-bright);
  color: var(--ink);
  box-shadow: 0 0 32px -4px rgba(201,166,226,0.5);
}

.btn-cream {
  background: var(--cream);
  color: var(--ink);
}
.btn-cream:hover {
  background: #fff;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,0.4);
}

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: rgba(21,10,30,0.2);
}
.btn-outline-ink:hover {
  background: rgba(21,10,30,0.05);
  border-color: var(--ink);
}

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 18px 28px; font-size: 17px; gap: 12px; }
.btn-lg .icon { width: 22px; height: 22px; }

/* YouTube-red high-conversion CTA */
.btn-yt {
  background: #FF0033;
  color: #fff;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 10px 24px -8px rgba(255,0,51,0.45);
}
.btn-yt:hover {
  background: #FF1947;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 14px 32px -8px rgba(255,0,51,0.6), 0 0 32px -8px rgba(255,0,51,0.45);
  transform: translateY(-1px);
}
.btn-yt .icon { color: #fff; }
.btn-yt .arrow {
  width: 18px; height: 18px;
  margin-left: 2px;
  opacity: 0.9;
  transition: transform var(--t-fast);
}
.btn-yt:hover .arrow { transform: translateX(2px); }

/* -------- TIPO HELPERS -------- */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lila);
}
.serif-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lila);
}
.surface-cream .serif-em { color: var(--ember-deep); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11,5,17,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.nav.scrolled {
  background: rgba(11,5,17,0.88);
  border-bottom-color: var(--border-night);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.35);
}
.nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav .brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(201,166,226,0.18), 0 0 18px rgba(201,166,226,0.25);
}
.nav .brand .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--cream);
}
.nav .brand .name span { color: var(--lila); }
.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav a {
  color: var(--fg-2);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  transition: color var(--t-fast);
}
.nav a:hover, .nav a.active { color: var(--cream); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-night-strong);
  color: var(--cream);
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--grad-noche);
  padding: 88px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero .stars {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
}
.hero .stars svg { position: absolute; color: var(--lila-soft); }
.hero .content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero .copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero .eyebrow .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px var(--ember);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.35); }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 24px;
}
.hero h1 .em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--lila); letter-spacing: -0.01em; }
.hero p.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 44ch;
  margin: 0 0 36px;
}
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero .trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--fg-3);
  font-size: 13px;
}
.hero .trust .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--fg-3);
}
.hero .trust strong { color: var(--lila-soft); font-weight: 600; }

/* Visual side: logo + featured thumb composition */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.hero-visual .logo-halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,0,51,0.25), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}
.hero-visual .ring {
  position: absolute;
  width: 92%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px dashed rgba(201,166,226,0.28);
  animation: spin 80s linear infinite;
}
.hero-visual .ring.r2 {
  width: 102%;
  border-style: solid;
  border-color: rgba(201,166,226,0.12);
  animation-duration: 140s;
  animation-direction: reverse;
}
.hero-visual .ring .star {
  position: absolute;
  color: var(--lila);
  width: 16px; height: 16px;
}
.hero-visual .ring.r2 .star { color: var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-logo {
  position: relative;
  z-index: 2;
  width: 72%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 0 60px rgba(255,0,51,0.2), 0 32px 80px -16px rgba(0,0,0,0.8);
}

/* Thumb card hovering on hero visual */
.hero-thumb {
  position: absolute;
  right: -8px;
  bottom: -12%;
  width: 58%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  background-color: #0B0511;
  border: 1px solid rgba(255,0,51,0.3);
  box-shadow: 0 0 0 1px rgba(255,0,51,0.1), 0 24px 48px -12px rgba(0,0,0,0.8), 0 0 40px rgba(255,0,51,0.2);
  overflow: hidden;
  z-index: 3;
  transform: rotate(-2deg);
  transition: transform var(--t-med);
}
.hero-thumb:hover { transform: rotate(-1deg) translateY(-4px); }
.hero-thumb .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hero-thumb .play .ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #FF0033;
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(255,0,51,0.5), 0 0 32px rgba(255,0,51,0.35);
}
.hero-thumb .play .ring::after {
  content: '';
  width: 0; height: 0;
  border-left: 14px solid var(--ink);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.hero-thumb .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(11,5,17,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream);
}
.hero-thumb .title {
  position: absolute;
  left: 14px; bottom: 12px; right: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-thumb .dur {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(11,5,17,0.85);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Floating dice */
.float-dado {
  position: absolute;
  width: 56px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
  animation: drift 9s ease-in-out infinite alternate;
  z-index: 4;
}
.float-dado.d1 { top: 6%; left: -3%; transform: rotate(-12deg); }
.float-dado.d2 { top: 12%; right: -2%; width: 44px; transform: rotate(15deg); animation-duration: 11s; }
@keyframes drift {
  to { transform: translateY(-10px) rotate(var(--rot, -12deg)); }
}

/* ============================================================
   SECTIONS — base
   ============================================================ */
section.s {
  padding: 96px 0;
  position: relative;
  scroll-margin-top: 80px;
}
#top {
  scroll-margin-top: 80px;
}
.s-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.s-head .h-l { max-width: 720px; }
.s-head .eyebrow { margin-bottom: 12px; display: inline-block; }
.s-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 0 14px;
}
.s-head h2 .em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--lila); }
.s-head p.sub {
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.55;
  max-width: 56ch;
  margin: 0;
}
.surface-cream .s-head h2 { color: var(--ink); }
.surface-cream .s-head h2 .em { color: var(--ember-deep); }
.surface-cream .s-head p.sub { color: var(--fg-on-cream-2); }
.surface-cream .eyebrow { color: var(--ember-deep); }

/* ============================================================
   VALUE PROPS
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value {
  background: var(--ink-2);
  border: 1px solid var(--border-night);
  border-top: 2px solid rgba(201,166,226,0.2);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med), box-shadow var(--t-med);
  position: relative;
  overflow: hidden;
}
.value::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 100% 0%, var(--val-glow, transparent) 0%, transparent 40%);
  opacity: 0.15;
  pointer-events: none;
}
@media (hover: hover) {
  .value:hover {
    transform: translateY(-4px);
    border-color: rgba(201,166,226,0.35);
    border-top-color: var(--val-color, var(--lila));
    background: var(--ink-3);
    box-shadow: 0 12px 32px -12px var(--val-shadow, rgba(201,166,226,0.15));
  }
}
.value .iwrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--val-bg, rgba(201,166,226,0.1));
  color: var(--val-color, var(--lila));
  margin-bottom: 22px;
  border: 1px solid var(--val-border, rgba(201,166,226,0.18));
}
.value .iwrap svg { width: 26px; height: 26px; stroke-width: 2; }
.value h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.value p {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0;
}
.value .num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.02em;
}

/* Variations of icon tint */
.value.v-resenas {
  --val-color: var(--lila);
  --val-bg: rgba(201,166,226,0.12);
  --val-border: rgba(201,166,226,0.25);
  --val-shadow: rgba(201,166,226,0.15);
  --val-glow: var(--lila);
  border-top-color: rgba(201,166,226,0.2);
}
.value.v-tutoriales {
  --val-color: var(--info);
  --val-bg: rgba(111,166,214,0.12);
  --val-border: rgba(111,166,214,0.25);
  --val-shadow: rgba(111,166,214,0.15);
  --val-glow: var(--info);
  border-top-color: rgba(111,166,214,0.2);
}
.value.v-partidas {
  --val-color: var(--ember);
  --val-bg: rgba(232,114,60,0.12);
  --val-border: rgba(232,114,60,0.25);
  --val-shadow: rgba(232,114,60,0.15);
  --val-glow: var(--ember);
  border-top-color: rgba(232,114,60,0.2);
}
.value.v-unboxings {
  --val-color: var(--gold);
  --val-bg: rgba(232,181,71,0.12);
  --val-border: rgba(232,181,71,0.25);
  --val-shadow: rgba(232,181,71,0.15);
  --val-glow: var(--gold);
  border-top-color: rgba(232,181,71,0.2);
}
.value.v-tops {
  --val-color: var(--pro);
  --val-bg: rgba(107,168,138,0.12);
  --val-border: rgba(107,168,138,0.25);
  --val-shadow: rgba(107,168,138,0.15);
  --val-glow: var(--pro);
  border-top-color: rgba(107,168,138,0.2);
}
.value.v-ia {
  --val-color: var(--lila-bright);
  --val-bg: rgba(184,134,224,0.15);
  --val-border: rgba(184,134,224,0.3);
  --val-shadow: rgba(184,134,224,0.2);
  --val-glow: var(--lila-bright);
  border-top-color: rgba(184,134,224,0.3);
  background-image: radial-gradient(circle at 100% 100%, rgba(184,134,224,0.05) 0%, transparent 40%);
}
.value.v-ia::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,166,226,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,166,226,0.03) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

/* ============================================================
   ÚLTIMO VÍDEO DESTACADO
   ============================================================ */
.featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(180deg, rgba(31,18,48,0.6) 0%, rgba(11,5,17,0.0) 100%),
              var(--ink-2);
  border: 1px solid var(--border-night);
  border-radius: var(--r-2xl);
  padding: 32px;
  box-shadow: var(--shadow-card-strong);
}
.featured .embed {
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(232,114,60,0.45) 0%, transparent 65%),
    linear-gradient(135deg, #4B2D6B 0%, #0B0511 80%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-night);
}
.featured .embed::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,166,226,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(232,181,71,0.14), transparent 50%);
}
.featured .embed .center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.featured .embed .play {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--ember);
  display: grid; place-items: center;
  box-shadow:
    0 0 0 1px rgba(232,114,60,0.5),
    0 0 48px rgba(232,114,60,0.4),
    0 20px 40px -10px rgba(0,0,0,0.6);
  cursor: pointer;
  transition: transform var(--t-med);
}
.featured .embed .play:hover { transform: scale(1.06); }
.featured .embed .play::after {
  content: '';
  width: 0; height: 0;
  border-left: 22px solid var(--ink);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 6px;
}
.featured .embed .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(11,5,17,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-night);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lila);
}
.featured .embed .dur {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(11,5,17,0.85);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}
.featured .embed .title-overlay {
  position: absolute;
  left: 20px; bottom: 18px; right: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
  max-width: 70%;
}
.featured .info .eyebrow { margin-bottom: 10px; display: inline-block; }
.featured .info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--cream);
}
.featured .info p {
  color: var(--fg-2);
  font-size: 15.5px;
  margin: 0 0 22px;
}
.featured .info .meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin: 0 0 22px;
  font-size: 13px;
  color: var(--fg-3);
}
.featured .info .meta span { display: inline-flex; align-items: center; gap: 6px; }
.featured .info .meta svg { width: 14px; height: 14px; }
.featured .info .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   EXPLORA — playlist cards
   ============================================================ */
.playlists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pl {
  background: linear-gradient(180deg, var(--ink-2) 0%, rgba(11,5,17,0.4) 100%);
  border: 1px solid var(--border-night);
  border-radius: var(--r-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
@media (hover: hover) {
  .pl:hover { 
    transform: translateY(-4px); 
    border-color: var(--lila); 
    box-shadow: 0 8px 24px -8px rgba(201,166,226,0.15);
  }
}
.pl .top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.pl .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--ink-3);
  color: var(--lila);
  border: 1px solid var(--border-night);
  flex-shrink: 0;
}
.pl .ico svg { width: 22px; height: 22px; stroke-width: 1.75; }
.pl .count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  border: 1px solid var(--border-night);
}
.pl h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.pl p {
  font-size: 14px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.5;
}
.pl .cta {
  margin-top: auto;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--lila);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast), color var(--t-fast);
}
.pl:hover .cta { gap: 10px; color: var(--lila-bright); }

/* Colored variants */
.pl.c-opin .ico { background: rgba(107,168,138,0.12); color: var(--pro); border-color: rgba(107,168,138,0.3); }
.pl.c-tut .ico { background: rgba(111,166,214,0.12); color: var(--info); border-color: rgba(111,166,214,0.3); }
.pl.c-part .ico { background: rgba(232,114,60,0.12); color: var(--ember); border-color: rgba(232,114,60,0.3); }
.pl.c-unbox .ico { background: rgba(201,166,226,0.12); color: var(--lila); border-color: rgba(201,166,226,0.3); }
.pl.c-tops .ico { background: rgba(232,181,71,0.12); color: var(--gold); border-color: rgba(232,181,71,0.3); }
.pl.c-cf .ico { background: rgba(199,71,74,0.1); color: #E08F91; border-color: rgba(199,71,74,0.3); }

/* IA Tech variant */
.pl.c-ia {
  background: linear-gradient(180deg, rgba(201,166,226,0.06) 0%, var(--ink-2) 100%);
  border-color: rgba(201,166,226,0.25);
}
.pl.c-ia::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lila), transparent);
  opacity: 0.6;
}
.pl.c-ia::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,166,226,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,166,226,0.04) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
  opacity: 0.5;
}
@media (hover: hover) {
  .pl.c-ia:hover {
    border-color: rgba(201,166,226,0.4);
    box-shadow: 0 0 24px rgba(201,166,226,0.15);
  }
}
.pl.c-ia .ico { background: rgba(201,166,226,0.15); color: var(--lila); border-color: rgba(201,166,226,0.4); }

/* Chips */
.pl .chip {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04);
  color: var(--fg-2);
  border: 1px solid rgba(255,255,255,0.08);
  align-self: flex-start;
  margin-top: 4px;
}
.pl.c-opin .chip { background: rgba(107,168,138,0.1); color: var(--pro); border-color: rgba(107,168,138,0.2); }
.pl.c-tut .chip { background: rgba(111,166,214,0.1); color: var(--info); border-color: rgba(111,166,214,0.2); }
.pl.c-part .chip { background: rgba(232,114,60,0.1); color: var(--ember); border-color: rgba(232,114,60,0.2); }
.pl.c-unbox .chip { background: rgba(201,166,226,0.1); color: var(--lila); border-color: rgba(201,166,226,0.2); }
.pl.c-tops .chip { background: rgba(232,181,71,0.1); color: var(--gold); border-color: rgba(232,181,71,0.2); }
.pl.c-cf .chip { background: rgba(199,71,74,0.1); color: #E08F91; border-color: rgba(199,71,74,0.2); }
.pl.c-ia .chip { background: rgba(201,166,226,0.1); color: var(--lila); border-color: rgba(201,166,226,0.2); }

/* ============================================================
   IA EN LA MESA — special section
   ============================================================ */
.ia {
  background:
    radial-gradient(80% 60% at 80% 30%, rgba(201,166,226,0.18) 0%, transparent 60%),
    radial-gradient(70% 60% at 20% 80%, rgba(232,114,60,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #1A0F2A 0%, #0F0719 100%);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border-night-strong);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.ia::before {
  /* subtle grid */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,166,226,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,166,226,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(70% 70% at 60% 40%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 70% at 60% 40%, black 0%, transparent 80%);
  pointer-events: none;
}
.ia .ia-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.ia .badge-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lila);
  background: rgba(201,166,226,0.08);
  border: 1px solid rgba(201,166,226,0.22);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.ia .badge-pill .live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lila);
  box-shadow: 0 0 12px var(--lila);
  animation: pulse 2.2s ease-in-out infinite;
}
.ia h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--cream);
}
.ia h2 .em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--lila); }
.ia p.lead {
  font-size: 17px;
  color: var(--fg-2);
  margin: 0 0 28px;
  max-width: 48ch;
}
.ia ul.uses {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.ia ul.uses li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px;
  color: var(--fg-1);
  line-height: 1.5;
}
.ia ul.uses li .chk {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 7px;
  background: rgba(201,166,226,0.1);
  border: 1px solid rgba(201,166,226,0.3);
  color: var(--lila);
  display: grid; place-items: center;
  margin-top: 1px;
}
.ia ul.uses li .chk svg { width: 12px; height: 12px; stroke-width: 2.5; }
.ia ul.uses li strong { color: var(--cream); font-weight: 600; }
.ia .ia-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--lila-soft);
  border-left: 2px solid var(--lila);
  padding-left: 14px;
  margin: 0 0 24px;
  max-width: 46ch;
}

/* IA visual demo card */
.ia-demo {
  position: relative;
  background: linear-gradient(180deg, rgba(31,18,48,0.9) 0%, rgba(11,5,17,0.7) 100%);
  border: 1px solid var(--border-night-strong);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--shadow-card-strong);
  backdrop-filter: blur(8px);
}
.ia-demo .demo-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-night);
}
.ia-demo .demo-head .dots { display: flex; gap: 6px; }
.ia-demo .demo-head .dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.ia-demo .demo-head .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  margin-left: 4px;
}
.ia-demo .demo-head .live {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lila);
  display: inline-flex; align-items: center; gap: 6px;
}
.ia-demo .demo-head .live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lila);
  box-shadow: 0 0 10px var(--lila);
}
.ia-demo .q {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-night);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--fg-2);
  margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 10px;
}
.ia-demo .q .me {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: var(--ember);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-top: 1px;
}
.ia-demo .a {
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(201,166,226,0.06) 0%, rgba(201,166,226,0.02) 100%);
  border: 1px solid rgba(201,166,226,0.18);
}
.ia-demo .a .who {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: var(--lila);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 8px;
}
.ia-demo .a .who::before {
  content: ''; width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-lila);
  box-shadow: 0 0 12px rgba(201,166,226,0.5);
}
.ia-demo .a p {
  font-size: 14px; line-height: 1.55;
  color: var(--fg-1);
  margin: 0 0 12px;
}
.ia-demo .a p:last-child { margin-bottom: 0; }
.ia-demo .a strong { color: var(--lila-soft); font-weight: 600; }
.ia-demo .a .typing {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--lila);
  vertical-align: -2px;
  animation: blink 1s steps(2, end) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   APP RECOMENDADORA — "Qué juego saco hoy"
   ============================================================ */
.app-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background:
    linear-gradient(rgba(201,166,226,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,166,226,0.03) 1px, transparent 1px),
    linear-gradient(135deg, #1F1230 0%, #2A1A40 100%);
  background-size: 20px 20px, 20px 20px, 100% 100%;
  border-radius: var(--r-2xl);
  padding: 56px;
  border: 1px solid var(--border-night);
  position: relative;
  overflow: hidden;
}
.app-promo::before {
  content: ''; position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,114,60,0.16), transparent 60%);
  top: -120px; right: -120px;
  pointer-events: none;
}
.app-promo .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ember);
  background: rgba(232,114,60,0.12);
  border: 1px solid rgba(232,114,60,0.3);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.app-promo h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--cream);
}
.app-promo h2 .em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--lila); }
.app-promo p {
  font-size: 16px;
  color: var(--fg-2);
  margin: 0 0 24px;
  max-width: 42ch;
}
.app-promo .features {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--fg-3);
}
.app-promo .features span { display: inline-flex; align-items: center; gap: 8px; }
.app-promo .features svg { width: 16px; height: 16px; color: var(--gold); }

/* "App" mock visual */
.app-mock {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
}
.app-card {
  width: 100%;
  max-width: 360px;
  background: var(--ink-2);
  border: 1px solid var(--border-night-strong);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--shadow-pop);
}
.app-card .acard-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.app-card .acard-head .lg {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-lila);
  display: grid; place-items: center;
  color: var(--ink);
}
.app-card .acard-head .lg svg { width: 18px; height: 18px; }
.app-card .acard-head .t {
  font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--cream);
  line-height: 1.1;
}
.app-card .acard-head .t small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.filters {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.filters span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-night);
  color: var(--fg-2);
}
.filters span.on {
  background: var(--lila);
  color: var(--ink);
  border-color: var(--lila);
}
.suggest {
  background: linear-gradient(135deg, rgba(232,114,60,0.18), rgba(201,166,226,0.12));
  border: 1px solid rgba(232,114,60,0.3);
  border-radius: 14px;
  padding: 16px;
  display: flex; gap: 14px;
  align-items: center;
}
.suggest .cov {
  width: 60px; height: 70px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4B2D6B, #150A1E);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  color: var(--cream);
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.05;
  padding: 4px;
}
.suggest .info {
  flex: 1; min-width: 0;
}
.suggest .info .lab {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ember);
  margin-bottom: 4px;
}
.suggest .info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 4px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.suggest .info .row {
  display: flex; gap: 10px;
  font-size: 11px;
  color: var(--fg-3);
}
.suggest .info .row span { display: inline-flex; align-items: center; gap: 4px; }
.suggest .info .row svg { width: 11px; height: 11px; }

/* ============================================================
   EDITORIALES — collab section (cream)
   ============================================================ */
.colab {
  background:
    radial-gradient(circle at 100% 0%, rgba(201,166,226,0.15), transparent 40%),
    var(--cream);
  color: var(--ink);
  border-radius: var(--r-2xl);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.colab .colab-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: flex-start;
}
.colab h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--ink);
}
.colab h2 .em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--ember-deep); }
.colab p.lead {
  font-size: 16px;
  color: var(--fg-on-cream-2);
  margin: 0 0 28px;
  max-width: 40ch;
}
.colab .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--dusk);
  border-left: 2px solid var(--ember);
  padding-left: 14px;
  margin: 0 0 28px;
  max-width: 40ch;
}
.colab .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.collab-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.collab-types .ct {
  display: flex; align-items: center; gap: 12px;
  background: rgba(21,10,30,0.04);
  border: 1px solid var(--border-cream);
  border-radius: 12px;
  padding: 14px 16px;
}
.collab-types .ct .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.collab-types .ct .ic svg { width: 18px; height: 18px; stroke-width: 1.75; }
.collab-types .ct .lbl {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.1;
}
.collab-types .ct .lbl small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--fg-on-cream-2);
  margin-top: 3px;
}

.trust-strip {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-cream);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-strip .lbl {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-on-cream-3);
}
.trust-strip .seals { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-strip .seal {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--cream);
  letter-spacing: 0.02em;
}
.trust-strip .seal.s-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px dashed rgba(21,10,30,0.35);
}

/* ============================================================
   COMUNIDAD / SOCIAL
   ============================================================ */
.socials {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
}
.social {
  background: var(--ink-2);
  border: 1px solid var(--border-night);
  border-radius: var(--r-lg);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.social:hover { transform: translateY(-4px); border-color: var(--lila); }
.social .top { display: flex; align-items: flex-start; justify-content: space-between; }
.social .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--ink-3);
  color: var(--cream);
}
.social .ic svg { width: 24px; height: 24px; }
.social .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-night);
  display: grid; place-items: center;
  color: var(--fg-2);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.social:hover .arrow { background: var(--lila); color: var(--ink); transform: rotate(-45deg); }
.social .arrow svg { width: 16px; height: 16px; }
.social h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 16px 0 2px;
  color: var(--cream);
  letter-spacing: -0.015em;
}
.social .handle {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
}
.social.primary {
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(232,114,60,0.35), transparent 60%),
    linear-gradient(135deg, #2A1226 0%, #150A1E 100%);
  border-color: rgba(232,114,60,0.3);
  box-shadow: 0 0 0 1px rgba(232,114,60,0.18), 0 24px 48px -20px rgba(232,114,60,0.4);
}
.social.primary .ic { background: var(--ember); color: var(--ink); }
.social.primary .stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.social.primary .stat small {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ember);
  margin-left: 4px;
  vertical-align: 4px;
}
.social.primary .label { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

.social.s-ig .ic { background: linear-gradient(135deg, #F58529, #DD2A7B 50%, #8134AF 100%); color: white; }
.social.s-tg .ic { background: linear-gradient(135deg, #2AABEE, #229ED9); color: white; }
.social.s-x  .ic { background: #0B0511; color: var(--cream); border: 1px solid var(--border-night-strong); }

/* ============================================================
   MANIFIESTO
   ============================================================ */
.manifesto {
  position: relative;
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(201,166,226,0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
  border-radius: var(--r-2xl);
  padding: 80px 48px;
  text-align: center;
  border: 1px solid var(--border-night);
  overflow: hidden;
}
.manifesto .dado {
  position: absolute;
  opacity: 0.12;
  filter: drop-shadow(0 0 20px rgba(201,166,226,0.4));
}
.manifesto .dado.d1 { top: 10%; left: 8%; width: 60px; transform: rotate(-15deg); }
.manifesto .dado.d2 { bottom: 14%; right: 10%; width: 80px; transform: rotate(20deg); }
.manifesto .dado.d3 { top: 22%; right: 18%; width: 40px; transform: rotate(45deg); }
.manifesto .logo-bg {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}
.manifesto .inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.manifesto .eyebrow { display: inline-block; margin-bottom: 22px; }
.manifesto blockquote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.manifesto blockquote .em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--lila); }
.manifesto .sign {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--lila);
}
.manifesto .sign::before { content: '— '; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink-deep);
  color: var(--fg-2);
  padding: 80px 0 36px;
  border-top: 1px solid var(--border-night);
}
.footer .top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-night);
}
.footer .brand {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer .brand img {
  width: 52px; height: 52px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(201,166,226,0.18), 0 0 16px rgba(201,166,226,0.25);
}
.footer .brand .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.1;
}
.footer .brand .name span { color: var(--lila); }
.footer .desc {
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.55;
  max-width: 34ch;
  margin: 0 0 24px;
}
.footer .subs {
  margin-top: 8px;
}
.footer h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lila);
  margin: 0 0 18px;
}
.footer ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer ul a {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--t-fast);
}
.footer ul a:hover { color: var(--cream); }
.footer .social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.footer .social-row a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-night);
  color: var(--fg-2);
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.footer .social-row a:hover { color: var(--lila); border-color: var(--lila); background: rgba(201,166,226,0.08); }
.footer .social-row a svg { width: 18px; height: 18px; }

.footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: var(--fg-3);
  gap: 24px;
  flex-wrap: wrap;
}
.footer .bottom .legal {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.footer .bottom .legal a {
  color: var(--fg-3);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer .bottom .legal a:hover { color: var(--cream); }

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HERO SOCIAL PROOF STRIP
   ============================================================ */
.hero-meta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--fg-1);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-night);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.hero-meta .chip svg { width: 14px; height: 14px; color: var(--lila); }
.hero-meta .chip.live svg { color: #FF0033; }
.hero-meta .chip strong { color: var(--cream); font-weight: 700; }
.hero-meta .chip em { font-style: normal; color: var(--fg-3); font-weight: 500; margin-left: 2px; font-family: var(--font-body); font-size: 11px; }

/* ============================================================
   VIDEOS — UNIFIED SECTION
   ============================================================ */
.video-hub { display: grid; gap: 32px; }

/* Playlist chip filter */
.pl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.pl-chip {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--border-night-strong);
  color: var(--fg-2);
  cursor: pointer;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.pl-chip svg { width: 14px; height: 14px; }
.pl-chip:hover { color: var(--cream); border-color: var(--lila); }
.pl-chip.on {
  background: var(--lila);
  color: var(--ink);
  border-color: var(--lila);
}
.pl-chip .count {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.7;
  font-weight: 500;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vcard {
  background: var(--ink-2);
  border: 1px solid var(--border-night);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), border-color var(--t-med);
}
.vcard:hover { transform: translateY(-4px); border-color: var(--lila); }
.vcard .thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.vcard .thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,5,17,0.75) 100%);
  pointer-events: none;
}
.vcard .thumb .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--t-med);
}
.vcard:hover .thumb .play { opacity: 1; }
.vcard .thumb .play .ring {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ember);
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(232,114,60,0.5), 0 0 24px rgba(232,114,60,0.4);
}
.vcard .thumb .play .ring::after {
  content: '';
  width: 0; height: 0;
  border-left: 14px solid var(--ink);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.vcard .thumb .badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(11,5,17,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: 5px 10px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream);
  z-index: 3;
}
.vcard .thumb .dur {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(11,5,17,0.85);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 3;
}
.vcard .thumb .title-thumb {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cream);
  text-align: center;
  padding: 16px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.vcard .thumb.t1 { background: linear-gradient(135deg, #6BA88A 0%, #1F4030 100%); }
.vcard .thumb.t2 { background: linear-gradient(135deg, #C7474A 0%, #4B0F12 100%); }
.vcard .thumb.t3 { background: linear-gradient(135deg, #4B2D6B 0%, #150A1E 100%); }
.vcard .thumb.t4 { background: linear-gradient(135deg, #E8B547 0%, #8C5A0A 100%); }
.vcard .thumb.t5 { background: linear-gradient(135deg, #6FA6D6 0%, #1F3D5C 100%); }
.vcard .thumb.t6 { background: linear-gradient(135deg, #E8723C 0%, #C45A28 100%); }
.vcard .body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.vcard h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.005em;
}
.vcard .meta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  color: var(--fg-3);
  display: flex;
  gap: 10px;
  align-items: center;
}
.vcard .meta .tag {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lila);
}

/* ============================================================
   BIG YOUTUBE CTA BANNER
   ============================================================ */
.yt-banner {
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(255,0,51,0.18) 0%, transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(201,166,226,0.14) 0%, transparent 60%),
    linear-gradient(135deg, #1A0F2A 0%, #0B0511 100%);
  border-radius: var(--r-2xl);
  padding: 64px 56px;
  border: 1px solid var(--border-night-strong);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.yt-banner .dado-bg {
  position: absolute;
  width: 200px;
  opacity: 0.08;
  filter: drop-shadow(0 0 20px rgba(201,166,226,0.5));
  pointer-events: none;
}
.yt-banner .dado-bg.b1 { top: -40px; right: 200px; transform: rotate(-20deg); }
.yt-banner .dado-bg.b2 { bottom: -60px; left: -40px; transform: rotate(15deg); width: 280px; }

.yt-banner .copy { position: relative; z-index: 2; }
.yt-banner .eyebrow { color: #FF6B85; margin-bottom: 16px; display: inline-block; }
.yt-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--cream);
}
.yt-banner h2 .em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--lila); }
.yt-banner p {
  font-size: 16px;
  color: var(--fg-2);
  margin: 0 0 28px;
  max-width: 44ch;
}
.yt-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.yt-banner .secondary {
  color: var(--fg-2);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.yt-banner .secondary:hover { color: var(--lila); border-color: var(--lila); }

.yt-banner .visual {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 2;
}
.yt-banner .stat-card {
  width: 100%;
  max-width: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-night-strong);
  border-radius: var(--r-xl);
  padding: 22px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card-strong);
}
.yt-banner .stat-card .head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-night);
}
.yt-banner .stat-card .yt-mark {
  width: 32px; height: 22px;
  background: #FF0033;
  border-radius: 6px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.yt-banner .stat-card .yt-mark::after {
  content: '';
  width: 0; height: 0;
  border-left: 8px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}
.yt-banner .stat-card .handle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.1;
}
.yt-banner .stat-card .handle small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
}
.yt-banner .stat-card .stat-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.yt-banner .stat-card .stat-rows .sr {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-night);
  border-radius: 10px;
  padding: 12px;
}
.yt-banner .stat-card .stat-rows .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
}
.yt-banner .stat-card .stat-rows .l {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-3);
  margin-top: 4px;
}
.yt-banner .stat-card .editable {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  text-align: center;
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 70;
  background: rgba(11,5,17,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-night-strong);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.6);
}
.sticky-cta .label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sticky-cta .label svg { width: 16px; height: 16px; color: var(--lila); flex-shrink: 0; }
.sticky-cta .btn { padding: 11px 18px; font-size: 13px; gap: 8px; }
.sticky-cta .btn .icon { width: 16px; height: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero .content { gap: 40px; }
  .featured { grid-template-columns: 1fr; }
  .ia { padding: 40px; }
  .ia .ia-grid { grid-template-columns: 1fr; gap: 32px; }
  .app-promo { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .colab { padding: 48px 40px; }
  .colab .colab-grid { grid-template-columns: 1fr; gap: 36px; }
  .socials { grid-template-columns: repeat(2, 1fr); }
  .social.primary { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .wrap { padding: 0 22px; }
  .nav ul { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav .row { padding: 14px 0; gap: 12px; }

  /* Hide CTA text on mobile, show icon only */
  .nav-cta .cta-label { display: none; }
  .nav-cta { padding: 10px 12px !important; min-width: 44px; min-height: 44px; justify-content: center; }

  .hero { padding: 56px 0 80px; }
  .hero .content { grid-template-columns: 1fr; gap: 48px; text-align: left; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .hero p.lead { max-width: none; }
  .hero .trust { flex-wrap: wrap; }

  section.s { padding: 64px 0; scroll-margin-top: 72px; }
  #top { scroll-margin-top: 72px; }
  .s-head { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
  .values { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .value { padding: 22px; }
  .playlists { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pl { padding: 16px; gap: 12px; }
  .pl .ico { width: 40px; height: 40px; }
  .pl .ico svg { width: 20px; height: 20px; }
  .pl h3 { font-size: 18px; margin-bottom: 4px; }
  .pl p { font-size: 13.5px; }

  .featured { padding: 20px; }
  .featured .embed .play { width: 64px; height: 64px; }
  .featured .embed .play::after { border-left-width: 16px; border-top-width: 10px; border-bottom-width: 10px; }
  .featured .embed .title-overlay { font-size: 16px; max-width: 80%; }

  .ia { padding: 32px 24px; }
  .app-promo { padding: 32px 24px; }
  .colab { padding: 40px 28px; }
  .collab-types { grid-template-columns: 1fr; }

  .manifesto { padding: 48px 24px; }

  .footer { padding: 56px 0 28px; }
  .footer .top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 36px; }
  .footer .brand-col { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .values { grid-template-columns: 1fr; }
  .playlists { grid-template-columns: 1fr; }
  .socials { grid-template-columns: 1fr; }
  .social.primary { grid-column: 1; }

  .hero h1 { font-size: 44px; }
  .s-head h2 { font-size: 32px; }

  .hero .actions { width: 100%; }
  .hero .actions .btn { flex: 1; justify-content: center; }
  
  .hero-visual { max-width: 280px; margin: 0 auto; }
  .hero-thumb { display: block; position: absolute; right: -12px; bottom: -8%; width: 70%; }
  
  .featured .info h3 { font-size: 22px; }

  .footer .top { grid-template-columns: 1fr; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11,5,17,0.96);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 80px 28px 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .close {
  position: absolute;
  top: 16px; right: 20px;
  background: transparent;
  border: 1px solid var(--border-night-strong);
  color: var(--cream);
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  cursor: pointer;
}
.mobile-menu nav {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--cream);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-night);
}
.mobile-menu nav a:hover { color: var(--lila); }
.mobile-menu .cta-mob {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-menu .cta-mob .btn { justify-content: center; padding: 16px; font-size: 16px; }

/* Mobile legibility and spacing tweaks */
@media (max-width: 860px) {
  p.lead, .value p, .pl p, .featured .info p, .app-promo p, .colab p.lead {
    font-size: 16.5px !important;
    line-height: 1.65;
  }
  .s-head h2 {
    font-size: 38px !important;
  }
  .btn {
    padding: 16px 24px;
    font-size: 15px;
  }
}
@media (max-width: 560px) {
  .s-head h2 {
    font-size: 34px !important;
  }
  .hero h1 {
    font-size: 48px !important;
  }
}
/* ============================================================
   RECENT VIDEO CARDS — hover & responsive
   ============================================================ */

/* Desktop hover */
@media (hover: hover) {
  .recent-card:hover {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,0,51,0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .recent-card:hover img {
    transform: scale(1.05);
  }
}
.recent-card img {
  transition: transform 0.4s ease;
}

/* Tablet: 2 columns */
@media (max-width: 960px) {
  .recent-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile: horizontal carousel with scroll-snap */
@media (max-width: 640px) {
  /* Contain horizontal overflow at the section level */
  #videos { overflow: hidden; }

  .recent-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    padding: 0 0 8px;
    margin: 0 -22px;
    padding-left: 22px;
    /* Override grid */
    grid-template-columns: none !important;
  }
  .recent-grid::-webkit-scrollbar {
    display: none;
  }
  .recent-card {
    flex: 0 0 80% !important;
    max-width: 80%;
    scroll-snap-align: start;
  }
  .recent-card:last-child {
    margin-right: 22px;
  }
}
