* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #f4fbff;
  background: #061116;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #061116;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 17, 22, 0.92), rgba(6, 17, 22, 0.26) 55%, rgba(6, 17, 22, 0.7)),
    linear-gradient(0deg, #061116 0%, rgba(6, 17, 22, 0.22) 38%, rgba(6, 17, 22, 0.04) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  padding: 0 20px 56px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: #5fd7e7;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #c6eaf0;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  line-height: 1.45;
}

.press-section {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 56px 20px 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 16%, rgba(95, 215, 231, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(8, 45, 58, 0.32), rgba(6, 17, 22, 0));
}

.music-section {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 0 20px 76px;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.music-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.spotify-player {
  display: block;
  width: 100%;
  height: 88px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

.press-copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.press-copy p:last-child {
  max-width: 480px;
  color: #c6eaf0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-photo {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #0b2530;
  border: 1px solid rgba(95, 215, 231, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 10, 14, 0.72);
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.signup-modal[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.signup-dialog {
  position: relative;
  width: min(460px, 100%);
  padding: 28px;
  border: 1px solid rgba(95, 215, 231, 0.36);
  border-radius: 8px;
  color: #f4fbff;
  background:
    linear-gradient(145deg, rgba(13, 58, 72, 0.97), rgba(4, 18, 25, 0.98)),
    #061116;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.signup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(95, 215, 231, 0.3);
  border-radius: 50%;
  color: #f4fbff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.signup-dialog h2 {
  margin: 0;
  padding-right: 36px;
  font-size: clamp(2.2rem, 9vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.signup-copy {
  margin: 16px 0 22px;
  color: #c6eaf0;
  line-height: 1.55;
}

.signup-form {
  display: grid;
  gap: 14px;
}

.signup-form label {
  display: grid;
  gap: 6px;
  color: #c6eaf0;
  font-size: 0.9rem;
  font-weight: 700;
}

.signup-form input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(95, 215, 231, 0.36);
  border-radius: 8px;
  color: #f4fbff;
  background: rgba(3, 10, 14, 0.58);
  font: inherit;
}

.signup-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #031014;
  background: #5fd7e7;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.signup-status {
  min-height: 1.4em;
  margin: 0;
  color: #f4fbff;
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .hero {
    min-height: 0;
    display: block;
  }

  .hero::after {
    display: none;
  }

  .hero-image {
    position: relative;
    width: 100vw;
    height: auto;
    min-height: 0;
    display: block;
    object-fit: contain;
    object-position: center;
  }

  .hero-content {
    padding: 28px 20px 42px;
  }

  h1 {
    font-size: clamp(3.2rem, 22vw, 5.6rem);
  }

  .lead {
    margin-top: 18px;
  }

  .press-section {
    grid-template-columns: 1fr;
    padding: 12px 20px 48px;
    gap: 24px;
  }

  .music-section {
    grid-template-columns: 1fr;
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .feature-photo {
    aspect-ratio: 1;
  }

  figure {
    width: 100%;
    max-width: calc(100vw - 40px);
    margin: 0 auto;
  }

  .signup-dialog {
    padding: 24px 20px;
  }
}
