#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  padding: 0 4rem; overflow: hidden;
  background-image: url('/static/img/hero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,14,26,0.95) 0%,
    rgba(10,14,26,0.78) 50%,
    rgba(10,14,26,0.4) 100%
  );
  z-index: 0;
}
.hero-bg-radial {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 60% 50%, rgba(201,168,76,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(20,40,100,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(201,168,76,0.05) 0%, transparent 55%);
  z-index: 0;
}
.hero-lines { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-lines::before {
  content: ''; position: absolute; left: 55%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.12) 30%, rgba(201,168,76,0.12) 70%, transparent);
}
.hero-lines::after {
  content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.06) 30%, rgba(201,168,76,0.06) 70%, transparent);
}
.hero-content {
  position: relative; z-index: 2; max-width: 700px;
  animation: fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.65rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem; opacity: 0.85;
}
.eyebrow-line { width: 40px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 300; line-height: 1; letter-spacing: 0.04em; color: var(--cream);
}
.hero-title em { font-style: italic; color: var(--gold2); display: block; font-weight: 300; }
.hero-divider {
  width: 80px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 2rem 0;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic; font-weight: 300;
  line-height: 1.7; color: rgba(240,234,216,0.65); max-width: 420px;
}
.hero-cta { display: flex; gap: 1.2rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-cross {
  position: absolute; right: 4rem; top: 50%;
  transform: translateY(-50%); z-index: 1;
  animation: fadeIn 2s ease 1s both;
}
.cross-svg { opacity: 0.06; }
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 4rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.6rem; letter-spacing: 0.3em; color: var(--muted);
  text-transform: uppercase; animation: fadeIn 1s 1.8s both; z-index: 2;
}
.scroll-cue-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@media (max-width: 900px) {
  #hero { padding: 0 1.5rem; background-position: 70% top; }
  .hero-cross { display: none; }
}

/* Platform buttons */
.hero-cta { 
  display: flex; 
  gap: 1rem; 
  margin-top: 3rem; 
  flex-wrap: wrap; 
}

.platform-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px; cursor: none;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  border: 1px solid transparent;
}
.platform-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.platform-btn.spotify {
  background: #1DB954;
  color: #000;
  box-shadow: 0 4px 20px rgba(29,185,84,0.25);
}
.platform-btn.spotify:hover {
  box-shadow: 0 6px 28px rgba(29,185,84,0.4);
}

.platform-btn.apple {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,234,216,0.25);
}
.platform-btn.apple:hover {
  border-color: var(--cream);
  background: rgba(255,255,255,0.05);
}

.platform-btn.yt {
  background: transparent;
  color: #FF0000;
  border-color: rgba(255,0,0,0.25);
}
.platform-btn.yt:hover {
  border-color: #FF0000;
  background: rgba(255,0,0,0.05);
}

@media (max-width: 600px) {
  .platform-btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 600px) {
  .hero-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .platform-btn {
    padding: 0.75rem 0.5rem;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .platform-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 600px) {
  .hero-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .eyebrow-line {
    width: 20px;
    flex-shrink: 0;
  }
}