/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  padding: 0 var(--gap) 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 68% 42%, rgba(107,58,154,.22) 0%, transparent 65%),
    radial-gradient(ellipse 38% 55% at 78% 65%, rgba(224,94,0,.14) 0%, transparent 55%),
    linear-gradient(155deg, #080808 0%, #0b0810 55%, #0f0602 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; opacity: .45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-letter {
  position: absolute; right: -30px; top: 50%; transform: translateY(-52%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(260px,36vw,560px); font-weight: 900;
  color: transparent; -webkit-text-stroke: 1px rgba(107,58,154,.13);
  line-height: 1; pointer-events: none; user-select: none;
}
.hero-line {
  position: absolute; left: var(--gap); top: 100px; bottom: 100px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--purpura), var(--naranja), transparent);
  opacity: .35;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding-left: 28px; }
.hero-eyebrow {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: var(--naranja);
  margin-bottom: 20px; opacity: 0; animation: fadeUp 1s ease .3s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px,8vw,106px); font-weight: 900; line-height: .9;
  opacity: 0; animation: fadeUp 1s ease .5s forwards;
}
.hero-title em {
  font-style: italic; font-weight: 400; color: var(--purpura-claro);
  display: block; font-size: clamp(36px,5.5vw,74px);
}
.hero-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(13px,1.8vw,20px); letter-spacing: 8px; color: var(--gris-claro);
  margin-top: 16px; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s ease .7s forwards;
}
.hero-desc {
  font-size: 15px; line-height: 1.85; color: rgba(240,237,232,.58);
  max-width: 440px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 1s ease .9s forwards;
}
.hero-actions {
  display: flex; gap: 24px; align-items: center;
  opacity: 0; animation: fadeUp 1s ease 1.1s forwards;
}
.scroll-indicator {
  position: absolute; right: var(--gap); bottom: 80px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-indicator span { font-size: 8px; letter-spacing: 4px; text-transform: uppercase; color: var(--gris-claro); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 52px; background: linear-gradient(to bottom, var(--naranja), transparent); animation: pulse 2s ease infinite; }

/* ===== LATEST RELEASE ===== */
.section-latest { padding: 120px var(--gap); }
.latest-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.latest-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,4vw,54px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.latest-title em { font-style: italic; color: var(--naranja); }
.latest-desc { font-size: 15px; line-height: 1.9; color: rgba(240,237,232,.6); margin-bottom: 32px; }
.latest-tracks { display: flex; flex-direction: column; border-top: 1px solid rgba(240,237,232,.08); }
.track-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid rgba(240,237,232,.07);
  transition: padding-left .3s;
}
.track-item:hover { padding-left: 8px; }
.track-num { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--purpura-claro); width: 24px; flex-shrink: 0; }
.track-name { font-size: 14px; flex: 1; }
.track-name em { font-size: 11px; color: var(--gris-claro); font-style: normal; }
.track-dur { font-size: 11px; color: var(--gris-claro); letter-spacing: 1px; }

/* ===== SPOTIFY WIDGET ===== */
.spotify-widget {
  background: #0d0d0d; border: 1px solid rgba(240,237,232,.08);
  padding: 24px; border-radius: 4px;
  position: sticky; top: 100px;
}
.spotify-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.spotify-header span { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #1DB954; font-weight: 500; flex: 1; }
.spotify-follow {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--negro); background: #1DB954;
  padding: 5px 12px; text-decoration: none;
  transition: opacity .3s;
}
.spotify-follow:hover { opacity: .85; }
.spotify-platforms { margin-top: 16px; }
.platforms-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gris-claro); margin-bottom: 12px; }
.platforms-row { display: flex; flex-wrap: wrap; gap: 8px; }
.platform-btn {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(240,237,232,.5); border: 1px solid rgba(240,237,232,.15);
  padding: 6px 12px; text-decoration: none; transition: all .3s;
}
.platform-btn:hover { color: var(--blanco); border-color: rgba(240,237,232,.4); }
.platform-btn-orange { color: var(--naranja) !important; border-color: rgba(224,94,0,.4) !important; }

/* ===== STATS ===== */
.section-stats { background: var(--gris-oscuro); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-card {
  padding: 52px 40px; border-right: 1px solid rgba(240,237,232,.07);
  text-align: center; position: relative; overflow: hidden;
  transition: background .3s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(107,58,154,.06); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 64px;
  color: var(--naranja); line-height: 1; margin-bottom: 10px;
  display: block;
}
.stat-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gris-claro); line-height: 1.6; }

/* ===== VIDEO HOME ===== */
.section-video-home { padding: 120px var(--gap); background: var(--gris-oscuro); }
.video-home-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.video-home-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,4vw,54px); font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
.video-home-title em { font-style: italic; color: var(--naranja); }
.video-home-desc { font-size: 15px; line-height: 1.9; color: rgba(240,237,232,.6); }
.yt-thumb-wrapper {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; cursor: pointer; background: #000;
}
.yt-thumb-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, opacity .4s; }
.yt-thumb-wrapper:hover img { transform: scale(1.04); opacity: .7; }
.yt-play-btn {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
}
.yt-play-btn::before {
  content: ''; width: 68px; height: 68px; border-radius: 50%;
  background: rgba(224,94,0,.85); display: flex;
  align-items: center; justify-content: center;
  transition: all .3s; border: 2px solid rgba(255,255,255,.2);
}
.yt-thumb-wrapper:hover .yt-play-btn::before { background: var(--naranja); transform: scale(1.1); }
.yt-play-btn svg { position: absolute; }
.yt-iframe-container { position: relative; aspect-ratio: 16/9; }
.yt-iframe-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ===== BIO SNIPPET ===== */
.section-bio-snippet { padding: 120px var(--gap); }
.bio-snippet-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.bio-snippet-title { font-family: 'Playfair Display', serif; font-size: clamp(34px,3.8vw,52px); font-weight: 700; line-height: 1.15; margin-bottom: 24px; }
.bio-snippet-title em { font-style: italic; color: var(--naranja); }
.bio-text { font-size: 15px; line-height: 1.9; color: rgba(240,237,232,.62); margin-bottom: 16px; }
.photo-frame { aspect-ratio: 3/4; }

/* ===== CTA HOME ===== */
.section-cta-home {
  padding: 100px var(--gap); text-align: center;
  background: linear-gradient(135deg, rgba(107,58,154,.15) 0%, rgba(224,94,0,.08) 100%);
  border-top: 1px solid rgba(240,237,232,.06);
  border-bottom: 1px solid rgba(240,237,232,.06);
}
.cta-home-inner { max-width: 600px; margin: 0 auto; }
.cta-home-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,4vw,56px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.cta-home-title em { font-style: italic; color: var(--naranja); }
.cta-home-desc { font-size: 15px; color: rgba(240,237,232,.55); margin-bottom: 36px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 0 var(--gap) 60px; }
  .hero-line { display: none; }
  .hero-letter { font-size: 180px; right: -20px; }
  .latest-inner, .video-home-inner, .bio-snippet-inner { grid-template-columns: 1fr; gap: 48px; }
  .spotify-widget { position: static; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(240,237,232,.07); }
}
