/* ================================================================
   DtoMusic Premium — assets/css/style.css v3.0.0
   Diseño: Billboard × Apple Music × Pitchfork × Medio Digital RD
   Filosofía: Progressive Enhancement — funciona SIN JS, mejora CON él
   Performance: CSS-first, sin dependencias externas en crítico
   ================================================================ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-void:     #020208;
  --bg-base:     #07060f;
  --bg-surface:  #0d0b1a;
  --bg-raised:   #131124;
  --bg-hover:    #1a1830;

  /* Gold system */
  --gold:        #C9A84C;
  --gold-light:  #E8C96B;
  --gold-dim:    rgba(201,168,76,0.15);
  --gold-border: rgba(201,168,76,0.25);

  /* Accents */
  --crimson:     #C0392B;
  --emerald:     #1DB954;
  --violet:      #7C3AED;

  /* Text */
  --t-100: #FFFFFF;
  --t-200: #F0EEF8;
  --t-300: #C4BFD8;
  --t-400: #8B849E;
  --t-500: #544F68;

  /* Typography */
  --f-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --f-head:    'Syne', 'Arial', sans-serif;
  --f-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing scale */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  32px;
  --sp-lg:  64px;
  --sp-xl:  120px;
  --sp-2xl: 180px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px var(--gold-border);
  --shadow-glow:  0 0 40px rgba(201,168,76,0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --t-fast:   0.2s;
  --t-base:   0.4s;
  --t-slow:   0.7s;
}

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg-void);
  color: var(--t-300);
  font-family: var(--f-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--bg-raised); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ─── CURSOR PREMIUM (solo con JS activo) ─────────────────────── */
body.cursor-ready { cursor: none; }
body.cursor-ready * { cursor: none; }
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 10000;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0; transition: transform 0.1s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25); pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0; transition: width var(--t-base) var(--ease-out),
    height var(--t-base) var(--ease-out),
    border-color var(--t-base), opacity 0.3s;
}
body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring { opacity: 1; }
.cursor-ring.on-link  { width: 60px; height: 60px; border-color: rgba(255,255,255,0.6); }
.cursor-ring.on-video { width: 80px; height: 80px; background: rgba(255,255,255,0.08); border-color: #fff; }

/* ─── TIPOGRAFÍA ──────────────────────────────────────────────── */
.t-display {
  font-family: var(--f-display);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--t-100);
}
.t-display-xl  { font-size: clamp(80px,  14vw, 200px); }
.t-display-lg  { font-size: clamp(60px,  10vw, 140px); }
.t-display-md  { font-size: clamp(40px,   6vw,  80px); }
.t-display-sm  { font-size: clamp(28px,   4vw,  52px); }

.t-head {
  font-family: var(--f-head);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--t-200);
}
.t-head-xl { font-size: clamp(32px, 5vw, 56px); }
.t-head-lg { font-size: clamp(24px, 4vw, 40px); }
.t-head-md { font-size: clamp(20px, 3vw, 28px); }
.t-head-sm { font-size: 18px; }

.t-body    { font-family: var(--f-body); font-size: 17px; line-height: 1.75; color: var(--t-300); }
.t-body-sm { font-family: var(--f-body); font-size: 15px; line-height: 1.65; color: var(--t-400); }
.t-label {
  font-family: var(--f-head); font-weight: 700;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.t-meta { font-family: var(--f-body); font-size: 13px; color: var(--t-500); }

/* Gradient text */
.t-gradient-gold {
  background: linear-gradient(135deg, var(--t-100) 0%, var(--gold-light) 50%, var(--t-100) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% auto;
  animation: shimmer 5s linear infinite alternate;
}
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

.t-outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}

/* ─── LAYOUT ──────────────────────────────────────────────────── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 5vw; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
section { padding: var(--sp-2xl) 5vw; position: relative; }
section.tight { padding: var(--sp-xl) 5vw; }

/* ─── COMPONENTES GLOBALES ────────────────────────────────────── */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-head); font-weight: 800; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 32px; border-radius: var(--r-pill);
  transition: all var(--t-base) var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: #000;
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent; color: var(--t-200);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--gold-border); color: var(--gold);
  background: var(--gold-dim);
}
.btn-ghost {
  background: transparent; color: var(--gold); padding: 0;
  font-size: 13px; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { gap: 14px; }
.btn-ghost svg { transition: transform var(--t-fast) var(--ease-out); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* Tag / Pill */
.pill {
  display: inline-block;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-family: var(--f-head); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
}
.pill-crimson { background: rgba(192,57,43,0.12); color: #e74c3c; border-color: rgba(192,57,43,0.25); }
.pill-emerald { background: rgba(29,185,84,0.12); color: var(--emerald); border-color: rgba(29,185,84,0.25); }

/* Section header */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--sp-lg); gap: 20px; }
.section-header-left { flex: 1; }
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.section-label::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 1px;
}

/* Divider line */
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.05); margin: 0; }

/* Fade-up — CSS puro, progressivo. JS lo refuerza si está disponible */
.fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── TICKER ──────────────────────────────────────────────────── */
.top-ticker {
  position: relative; z-index: 1001;
  height: 34px; overflow: hidden;
  background: linear-gradient(90deg, #080010, #12091e, #080010);
  border-bottom: 1px solid var(--gold-border);
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: ticker-run 40s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 24px;
  font-family: var(--f-head); font-weight: 700;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); padding-right: 48px;
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes ticker-run { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── NAV ─────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 1000;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: background var(--t-base), backdrop-filter var(--t-base),
              border-color var(--t-base), top var(--t-base);
}
.site-nav.scrolled {
  top: 0;
  background: rgba(2,2,8,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--f-head); font-weight: 800; font-size: 22px;
  color: var(--t-100); letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #000;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-head); font-weight: 600; font-size: 12px;
  color: var(--t-400); text-transform: uppercase; letter-spacing: 0.1em;
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right var(--t-base) var(--ease-out);
}
.nav-links a:hover { color: var(--t-100); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 16px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--t-200); border-radius: 1px;
  transition: all var(--t-base);
}
.nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: var(--bg-void);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--f-display); font-size: 48px; color: var(--t-200);
  text-transform: uppercase; transition: color var(--t-fast);
}
.nav-mobile a:hover { color: var(--gold); }

/* ─── HERO SECTION ────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding: 0; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--bg-void);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(124,58,237,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
/* Noise grain overlay */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}
#hero-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 5vw;
  max-width: 1400px; width: 100%;
}
.hero-eyebrow { margin-bottom: 24px; }
.hero-title { margin-bottom: 28px; }
.hero-subtitle {
  font-family: var(--f-head); font-weight: 300; font-size: clamp(16px, 2vw, 22px);
  color: var(--t-400); margin-bottom: 48px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-head); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--t-500);
  animation: scroll-bounce 2s ease-in-out infinite;
}
.hero-scroll-hint svg { opacity: 0.4; }
@keyframes scroll-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ─── BREAKING NEWS TICKER ────────────────────────────────────── */
.breaking-bar {
  background: var(--crimson); padding: 10px 5vw;
  display: flex; align-items: center; gap: 20px;
  position: relative; overflow: hidden;
}
.breaking-label {
  font-family: var(--f-head); font-weight: 900; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,0.3); padding: 4px 12px; border-radius: var(--r-sm);
  white-space: nowrap; flex-shrink: 0;
}
.breaking-items {
  display: flex; gap: 48px; white-space: nowrap;
  animation: ticker-run 20s linear infinite;
}
.breaking-item {
  font-family: var(--f-head); font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.9);
}
.breaking-item a:hover { color: #fff; text-decoration: underline; }

/* ─── NEWS — BILLBOARD LAYOUT ─────────────────────────────────── */
.news-section { background: var(--bg-base); }

/* Lead story: 1 grande + 2 medium */
.news-lead { display: grid; grid-template-columns: 1fr 380px; gap: 2px; margin-bottom: 2px; }
.news-secondary { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-bottom: var(--sp-lg); }

/* Universal news card */
.news-card {
  position: relative; overflow: hidden;
  background: var(--bg-surface);
  display: block; color: inherit; text-decoration: none;
}
.news-card-media {
  position: relative; overflow: hidden;
}
.news-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out), opacity var(--t-base);
  opacity: 0.75;
}
.news-card:hover .news-card-img { transform: scale(1.06); opacity: 0.9; }

.news-card-body {
  padding: 28px 32px;
  background: var(--bg-surface);
}
.news-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.news-card-title {
  font-family: var(--f-head); font-weight: 800;
  color: var(--t-100); line-height: 1.2;
  transition: color var(--t-fast);
}
.news-card:hover .news-card-title { color: var(--gold-light); }
.news-card-excerpt { font-size: 15px; color: var(--t-400); line-height: 1.6; margin-top: 10px; }
.news-card-read {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-family: var(--f-head); font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  transition: gap var(--t-fast);
}
.news-card:hover .news-card-read { gap: 12px; }

/* Card sizes */
.news-card-hero .news-card-media { height: 520px; }
.news-card-hero .news-card-title { font-size: clamp(22px, 3vw, 36px); }
.news-card-side .news-card-media { height: 260px; }
.news-card-side .news-card-body { padding: 20px 24px; }
.news-card-side .news-card-title { font-size: 18px; }
.news-card-sm .news-card-media { height: 200px; }
.news-card-sm .news-card-body { padding: 18px 20px; }
.news-card-sm .news-card-title { font-size: 16px; }

/* Overlay card variant (full image with gradient) */
.news-card-overlay { min-height: 420px; }
.news-card-overlay .news-card-media { position: absolute; inset: 0; height: auto; }
.news-card-overlay .news-card-img { height: 100%; }
.news-card-overlay .news-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(2,2,8,0.98) 0%, rgba(2,2,8,0.6) 60%, transparent 100%);
  padding: 40px 32px 32px;
}

/* News magazine grid */
.news-magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
}
.news-magazine-grid .news-card { background: var(--bg-base); }

/* News list (sidebar style) */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-list-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.news-list-item:last-child { border-bottom: none; }
.news-list-thumb { width: 80px; height: 64px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.news-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-list-title { font-family: var(--f-head); font-weight: 700; font-size: 14px; color: var(--t-200); line-height: 1.3; transition: color var(--t-fast); }
.news-list-item:hover .news-list-title { color: var(--gold-light); }
.news-list-meta { font-size: 12px; color: var(--t-500); margin-top: 4px; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; padding-top: var(--sp-lg); }
.page-btn { width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 700; font-size: 14px; color: var(--t-400); background: var(--bg-raised); border: 1px solid rgba(255,255,255,0.05); transition: all var(--t-fast); }
.page-btn:hover, .page-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* ─── ARTISTAS ────────────────────────────────────────────────── */
.artists-section { background: var(--bg-void); padding-bottom: 0; }

/* Horizontal scroll track */
.artists-scroll-wrap { overflow: hidden; position: relative; }
.artists-track {
  display: flex; gap: 2px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 0;
}
.artists-track::-webkit-scrollbar { display: none; }
.artists-scroll-controls {
  display: flex; gap: 12px; align-items: center;
  justify-content: flex-end; padding: 24px 5vw;
  background: var(--bg-void);
}
.scroll-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--t-300); transition: all var(--t-fast);
}
.scroll-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* Artist card */
.artist-card {
  flex: 0 0 380px; height: 560px;
  scroll-snap-align: start; position: relative;
  overflow: hidden; background: #000;
  display: block; color: inherit; text-decoration: none;
}
.artist-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(80%) contrast(1.1);
  transition: filter var(--t-slow), transform var(--t-slow) var(--ease-out);
}
.artist-card:hover img { filter: grayscale(0%) contrast(1); transform: scale(1.06); }
.artist-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(2,2,8,0.95) 0%, rgba(2,2,8,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 40px;
}
.artist-number {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--f-display); font-size: 100px; line-height: 1;
  color: rgba(255,255,255,0.04); letter-spacing: -0.05em; pointer-events: none;
  transition: color var(--t-slow);
}
.artist-card:hover .artist-number { color: rgba(201,168,76,0.08); }
.artist-name {
  font-family: var(--f-display); font-size: clamp(48px, 6vw, 80px);
  line-height: 0.88; color: #fff; margin-bottom: 8px;
}
.artist-genre { color: var(--gold); margin-bottom: 16px; }
.artist-stats {
  display: flex; gap: 20px; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  transition: all var(--t-base) var(--ease-out);
}
.artist-card:hover .artist-stats { opacity: 1; transform: translateY(0); }
.artist-stat { font-family: var(--f-head); font-size: 13px; color: var(--t-300); }
.artist-stat strong { color: var(--t-100); }

/* Artist featured (full width) */
.artist-featured {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
  background: var(--bg-surface);
}
.artist-featured-media { overflow: hidden; position: relative; }
.artist-featured-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(60%); transition: filter var(--t-slow); }
.artist-featured:hover .artist-featured-media img { filter: grayscale(0%); }
.artist-featured-body {
  padding: var(--sp-xl) var(--sp-lg);
  display: flex; flex-direction: column; justify-content: center;
}

/* ─── PRODUCTORA / SERVICIOS ──────────────────────────────────── */
.services-section { background: var(--bg-void); }

/* Service grid: 3-col */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.service-card {
  background: var(--bg-surface);
  padding: var(--sp-lg) var(--sp-md);
  display: flex; flex-direction: column; gap: 20px;
  transition: background var(--t-base);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}
.service-card:hover { background: var(--bg-raised); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.service-number {
  font-family: var(--f-display); font-size: 80px; line-height: 1;
  color: rgba(255,255,255,0.03); position: absolute;
  bottom: 16px; right: 24px; pointer-events: none;
  transition: color var(--t-slow);
}
.service-card:hover .service-number { color: rgba(201,168,76,0.06); }
.service-title {
  font-family: var(--f-head); font-weight: 800; font-size: 22px;
  color: var(--t-100); line-height: 1.2;
}
.service-desc { font-size: 15px; color: var(--t-400); line-height: 1.65; flex: 1; }
.service-price {
  font-family: var(--f-head); font-weight: 700; font-size: 28px;
  color: var(--gold);
}
.service-price span { font-size: 14px; color: var(--t-500); font-weight: 400; }

/* Pricing table */
.pricing-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pricing-card {
  background: var(--bg-surface); padding: var(--sp-lg) var(--sp-md);
  position: relative; overflow: hidden;
  transition: background var(--t-base);
}
.pricing-card.featured {
  background: var(--bg-raised);
  border: 1px solid var(--gold-border);
}
.pricing-card.featured::before {
  content: 'MÁS POPULAR';
  position: absolute; top: 20px; right: 20px;
  font-family: var(--f-head); font-weight: 900; font-size: 9px;
  letter-spacing: 0.2em; color: #000;
  background: var(--gold); padding: 4px 10px; border-radius: var(--r-sm);
}
.pricing-plan { font-family: var(--f-head); font-weight: 700; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--t-500); margin-bottom: 16px; }
.pricing-price { font-family: var(--f-display); font-size: 64px; line-height: 1; color: var(--t-100); margin-bottom: 8px; }
.pricing-price sup { font-family: var(--f-head); font-size: 24px; vertical-align: super; }
.pricing-price sub { font-family: var(--f-head); font-size: 16px; color: var(--t-500); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--t-300); }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 900; flex-shrink: 0; }

/* Horizontal process steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.process-step {
  background: var(--bg-surface); padding: var(--sp-md) var(--sp-md);
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute; top: 50%; right: -12px; transform: translateY(-50%);
  font-size: 20px; color: var(--t-500); z-index: 2;
}
.process-step:last-child::after { display: none; }
.step-num { font-family: var(--f-display); font-size: 64px; color: var(--gold-dim); line-height: 1; margin-bottom: 12px; }
.step-title { font-family: var(--f-head); font-weight: 800; font-size: 18px; color: var(--t-100); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--t-400); line-height: 1.6; }

/* ─── DISTRIBUCIÓN (sticky cinematic) ────────────────────────── */
.dist-section { background: var(--bg-surface); padding: 0; }
.dist-wrap { height: 280vh; position: relative; }
.dist-sticky {
  position: sticky; top: 0; height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 0 5vw; gap: var(--sp-lg);
}
.dist-text { position: relative; }
.dist-step-item {
  position: absolute; top: 50%; left: 0; width: 100%;
  transform: translateY(-50%); opacity: 0;
  transition: opacity 0.4s;
}
.dist-step-item.active { opacity: 1; }
.dist-step-item h2 { font-size: clamp(48px, 7vw, 90px); }
.dist-step-item p { font-size: 20px; color: var(--t-400); max-width: 420px; margin-top: 16px; }
.dist-visual {
  display: flex; align-items: center; justify-content: center;
}
.phone-mockup {
  width: 300px; height: 620px;
  border-radius: 52px; background: #000;
  border: 10px solid #1a1a1a;
  box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden; position: relative;
}
.phone-screen {
  width: 100%; height: 100%; position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.5s ease;
}
.phone-screen.s1 { background: linear-gradient(135deg, #1DB954, #0d4a1f); }
.phone-screen.s2 { background: linear-gradient(135deg, #fc3c44, #1a0012); }
.phone-screen.s3 { background: linear-gradient(135deg, var(--gold), #3d2800); }
.phone-notch {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 32px;
  background: #000; border-radius: 0 0 24px 24px;
}

/* ─── STATS / SOCIAL PROOF ────────────────────────────────────── */
.stats-strip {
  background: var(--bg-raised);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: var(--sp-lg) 5vw;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-lg); text-align: center; }
.stat-number {
  font-family: var(--f-display); font-size: clamp(48px, 6vw, 80px);
  color: var(--t-100); line-height: 1; margin-bottom: 8px;
}
.stat-number span { color: var(--gold); }
.stat-label { font-family: var(--f-head); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--t-500); }

/* ─── TESTIMONIOS ─────────────────────────────────────────────── */
.testimonials-section { background: var(--bg-surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.testimonial-card {
  background: var(--bg-base); padding: var(--sp-md) var(--sp-md);
  border-bottom: 2px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.testimonial-card:hover { background: var(--bg-raised); border-color: var(--gold); }
.testimonial-quote {
  font-size: 17px; line-height: 1.7; color: var(--t-200);
  font-style: italic; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  background: var(--bg-raised); flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-family: var(--f-head); font-weight: 700; font-size: 14px; color: var(--t-100); }
.testimonial-role { font-size: 12px; color: var(--t-500); }

/* ─── CTA SECCIONES ───────────────────────────────────────────── */
.cta-strip {
  padding: var(--sp-lg) 5vw;
  background: var(--gold);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cta-strip-text h2 { font-family: var(--f-head); font-weight: 800; font-size: clamp(22px, 3vw, 32px); color: #000; }
.cta-strip-text p { font-size: 16px; color: rgba(0,0,0,0.65); margin-top: 6px; }
.btn-dark { background: #000; color: var(--gold); }
.btn-dark:hover { background: var(--bg-raised); transform: translateY(-2px); }

.cta-full {
  min-height: 80vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden;
  background: var(--bg-void);
}
.cta-orb {
  position: absolute; width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  filter: blur(100px); animation: orb-pulse 8s infinite alternate;
}
@keyframes orb-pulse { 0% { transform: scale(0.85); opacity: 0.6; } 100% { transform: scale(1.15); opacity: 1; } }
.cta-full-title { margin-bottom: 24px; position: relative; z-index: 2; }
.cta-full-subtitle { font-size: 20px; color: var(--t-400); margin-bottom: 48px; position: relative; z-index: 2; max-width: 600px; }
.cta-full-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 2; }

/* ─── PORTAFOLIO ──────────────────────────────────────────────── */
.portfolio-section { background: var(--bg-void); }
.portfolio-masonry { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 80px; gap: 2px; }
.portfolio-item { overflow: hidden; position: relative; background: var(--bg-surface); display: block; }
.portfolio-item.p1 { grid-column: span 8; grid-row: span 6; }
.portfolio-item.p2 { grid-column: span 4; grid-row: span 3; }
.portfolio-item.p3 { grid-column: span 4; grid-row: span 3; }
.portfolio-item.p4 { grid-column: span 4; grid-row: span 4; }
.portfolio-item.p5 { grid-column: span 4; grid-row: span 4; }
.portfolio-item.p6 { grid-column: span 4; grid-row: span 4; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: opacity var(--t-slow), transform var(--t-slow) var(--ease-out); }
.portfolio-item:hover img { opacity: 0.9; transform: scale(1.06); }
.portfolio-item-info {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  background: linear-gradient(0deg, rgba(2,2,8,0.9) 0%, transparent 60%);
}
.portfolio-item-title { font-family: var(--f-head); font-weight: 800; font-size: 18px; color: #fff; opacity: 0; transform: translateY(12px); transition: all var(--t-base) var(--ease-out); }
.portfolio-item:hover .portfolio-item-title { opacity: 1; transform: translateY(0); }

/* ─── GRUPO TeleRadioNorte ────────────────────────────────────── */
.group-section { background: var(--bg-surface); }
.group-grid-bg {
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  position: absolute; inset: 0; pointer-events: none;
}
.group-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: var(--sp-lg); }
.group-pillar {
  background: var(--bg-base); padding: var(--sp-md);
  text-align: center; position: relative; overflow: hidden;
  transition: background var(--t-base);
}
.group-pillar:hover { background: var(--bg-raised); }
.group-pillar-num { font-family: var(--f-display); font-size: 72px; color: var(--t-100); line-height: 1; margin-bottom: 8px; }
.group-pillar-label { font-family: var(--f-head); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--t-500); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-void);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-lg); padding: var(--sp-xl) 5vw; }
.footer-brand-logo { font-family: var(--f-head); font-weight: 900; font-size: 28px; color: var(--t-100); margin-bottom: 16px; }
.footer-brand-desc { font-size: 15px; color: var(--t-500); line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--t-400); transition: all var(--t-fast);
}
.social-link:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.footer-col-title { font-family: var(--f-head); font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--t-500); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--t-400); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 24px 5vw;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--t-500); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--t-300); }
.footer-copy { font-size: 12px; color: var(--t-500); }

/* ─── WA CHATBOT ──────────────────────────────────────────────── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.12) translateY(-4px); box-shadow: 0 16px 48px rgba(37,211,102,0.5); }
.wa-btn svg { width: 30px; height: 30px; fill: currentColor; }
.wa-label {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(8px);
  background: #fff; color: #000; padding: 8px 14px; border-radius: var(--r-pill);
  font-family: var(--f-head); font-weight: 700; font-size: 12px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: all var(--t-base) var(--ease-out);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.wa-btn:hover .wa-label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ─── BANNER ADS ──────────────────────────────────────────────── */
.ad-banner {
  background: var(--bg-raised); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-md); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ad-banner::after {
  content: 'PUBLICIDAD';
  position: absolute; top: 8px; right: 10px;
  font-size: 9px; letter-spacing: 0.12em; color: var(--t-500);
}
.ad-leaderboard { height: 90px; }
.ad-rectangle  { width: 300px; height: 250px; }

/* ─── SINGLE ARTICLE ──────────────────────────────────────────── */
.article-hero { position: relative; min-height: 70vh; display: flex; align-items: flex-end; overflow: hidden; }
.article-hero-img { position: absolute; inset: 0; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.article-hero-grad { position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg-void) 0%, rgba(2,2,8,0.5) 60%, transparent 100%); }
.article-hero-body { position: relative; z-index: 2; padding: var(--sp-xl) 5vw var(--sp-lg); max-width: 900px; }
.article-body { padding: var(--sp-lg) 5vw var(--sp-2xl); display: grid; grid-template-columns: 1fr 320px; gap: var(--sp-lg); align-items: start; }
.article-content { max-width: 720px; }
.article-content p { font-size: 18px; line-height: 1.85; color: var(--t-300); margin-bottom: 24px; }
.article-content h2 { font-family: var(--f-head); font-weight: 800; font-size: 28px; color: var(--t-100); margin: 48px 0 20px; }
.article-content h3 { font-family: var(--f-head); font-weight: 700; font-size: 22px; color: var(--t-200); margin: 36px 0 16px; }
.article-content blockquote { border-left: 3px solid var(--gold); padding: 20px 28px; margin: 32px 0; background: var(--bg-raised); border-radius: 0 var(--r-md) var(--r-md) 0; }
.article-content blockquote p { font-size: 20px; font-style: italic; color: var(--t-200); margin: 0; }
.article-sidebar { position: sticky; top: 120px; }

/* ─── SEARCH ──────────────────────────────────────────────────── */
.search-bar {
  display: flex; align-items: center;
  background: var(--bg-raised); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-pill); padding: 12px 20px; gap: 12px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search-bar:focus-within { border-color: var(--gold-border); box-shadow: 0 0 0 3px var(--gold-dim); }
.search-bar input {
  background: none; border: none; outline: none; flex: 1;
  font-family: var(--f-body); font-size: 15px; color: var(--t-100);
}
.search-bar input::placeholder { color: var(--t-500); }
.search-bar svg { color: var(--t-500); flex-shrink: 0; }

/* ─── FORMULARIO DE CONTACTO ──────────────────────────────────── */
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-family: var(--f-head); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t-400); }
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-raised); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md); padding: 14px 18px;
  font-family: var(--f-body); font-size: 15px; color: var(--t-100);
  outline: none; transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold-border); box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .pricing-table    { grid-template-columns: 1fr 1fr; }
  .process-steps    { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .group-pillars    { grid-template-columns: 1fr 1fr; }
  .footer-main      { grid-template-columns: 1fr 1fr; }
  .article-body     { grid-template-columns: 1fr; }
  .article-sidebar  { position: static; }
}

@media (max-width: 768px) {
  :root { --sp-xl: 80px; --sp-2xl: 120px; }
  section { padding: var(--sp-xl) 5vw; }

  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .site-nav { height: 60px; }

  .news-lead { grid-template-columns: 1fr; }
  .news-secondary { grid-template-columns: 1fr 1fr; }
  .news-magazine-grid { grid-template-columns: 1fr 1fr; }

  .artists-track { gap: 1px; }
  .artist-card { flex: 0 0 300px; height: 440px; }
  .artist-featured { grid-template-columns: 1fr; }
  .artist-featured-media { height: 300px; }

  .services-grid { grid-template-columns: 1fr; }
  .pricing-table { grid-template-columns: 1fr; }
  .pricing-card.featured::before { display: none; }
  .process-steps { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .portfolio-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .portfolio-item.p1 { grid-column: span 2; grid-row: span 2; }
  .portfolio-item.p2,.portfolio-item.p3,.portfolio-item.p4,
  .portfolio-item.p5,.portfolio-item.p6 { grid-column: span 1; grid-row: span 1; }

  .dist-sticky { grid-template-columns: 1fr; padding-top: 100px; }
  .phone-mockup { width: 220px; height: 450px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .group-pillars { grid-template-columns: 1fr 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .news-secondary { grid-template-columns: 1fr; }
  .news-magazine-grid { grid-template-columns: 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .portfolio-item.p1 { grid-column: span 1; grid-row: span 2; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .group-pillars { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
}

/* ─── ACCESSIBILITY & MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .ticker-track, .breaking-items { animation: none; }
  .cta-orb { animation: none; }
}

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 20px; z-index: 99999;
  background: var(--gold); color: #000; padding: 12px 20px; border-radius: var(--r-md);
  font-family: var(--f-head); font-weight: 700; font-size: 14px;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 20px; }
