:root {
  --bg: #050816;
  --bg-soft: #0b1124;
  --surface: rgba(13, 21, 43, 0.82);
  --surface-strong: rgba(7, 13, 29, 0.92);
  --text: #f6f8ff;
  --muted: #a6b3d6;
  --line: rgba(255, 255, 255, 0.09);
  --green: #1ed760;
  --green-glow: rgba(30, 215, 96, 0.35);
  --red: #ff4d6d;
  --amber: #ffc857;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1120px;
  --container-wide: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 77, 109, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(30, 215, 96, 0.18), transparent 28%),
    linear-gradient(180deg, #040611 0%, #070c1d 40%, #02040a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

iframe {
  border: 0;
  width: 100%;
}

.page-shell {
  width: min(100% - 1.5rem, var(--container));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.hero {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding: 0.75rem 0 1.5rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand,
.hero h1,
.hero-panel h2,
.section-copy h2,
.drop-card h3,
.embed-card h3 {
  font-family: "Archivo", sans-serif;
}

.brand {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-link {
  font-size: 0.94rem;
  color: var(--muted);
}

.brand-link {
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.1rem;
}

.nav-links a,
.topbar-link,
.brand-link {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.topbar-link:hover,
.topbar-link:focus-visible,
.brand-link:hover,
.brand-link:focus-visible {
  color: var(--green);
  transform: translateY(-1px);
}

.hero-content,
.hero-actions,
.hero-panel,
.embed-card,
.drop-card {
  backdrop-filter: blur(18px);
}

.hero-content {
  position: relative;
  z-index: 1;
  justify-self: stretch;
  text-align: left;
  display: grid;
  justify-items: start;
  margin-inline: 0;
}

.hero-actions {
  display: grid;
  justify-items: center;
  text-align: center;
  width: 100%;
}

.hero h1 {
  margin: 1rem 0 0.75rem;
  max-width: 11ch;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-align: left;
}

.eyebrow,
.section-label,
.panel-label,
.drop-tag,
.stream-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dce5ff;
  background: rgba(255, 255, 255, 0.04);
}

.hero-copy {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-support,
.section-copy p,
.hero-panel p,
.drop-card p,
.footer-copy,
.footer-tagline {
  color: var(--muted);
  line-height: 1.6;
}

.hero-support {
  max-width: 38rem;
  margin: 0.8rem auto 0;
  font-size: 1rem;
}

.cta-group {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
  justify-self: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 58px;
  padding: 1rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.cta-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.cta-primary {
  background: linear-gradient(135deg, rgba(30, 215, 96, 0.95), rgba(18, 117, 56, 0.95));
  color: #041108;
  box-shadow: 0 18px 42px var(--green-glow);
}

.cta-primary:hover,
.cta-primary:focus-visible {
  box-shadow: 0 22px 48px rgba(30, 215, 96, 0.45);
}

.cta-apple {
  background: linear-gradient(135deg, #fa233b, #ff6b7a 62%, #fff4f6);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 42px rgba(250, 35, 59, 0.28);
}

.cta-apple:hover,
.cta-apple:focus-visible {
  box-shadow: 0 22px 48px rgba(250, 35, 59, 0.38);
}

.cta-youtube-music {
  background: linear-gradient(135deg, #ffffff, #ffe9eb 54%, #ff0033);
  color: #8f001f;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 42px rgba(255, 0, 51, 0.22);
}

.cta-youtube-music:hover,
.cta-youtube-music:focus-visible {
  box-shadow: 0 22px 48px rgba(255, 0, 51, 0.32);
}

.cta-amazon {
  background: linear-gradient(135deg, #2d174d, #6a2dbd 60%, #ffcc33);
  color: #fff5cc;
  border-color: rgba(255, 204, 51, 0.24);
  box-shadow: 0 18px 42px rgba(106, 45, 189, 0.3);
}

.cta-amazon:hover,
.cta-amazon:focus-visible {
  box-shadow: 0 22px 48px rgba(106, 45, 189, 0.42);
}

.cta-outline {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.cta-icon {
  font-size: 1.05rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 18, 37, 0.92), rgba(7, 11, 23, 0.92));
  box-shadow: var(--shadow);
  text-align: center;
}

.site-header,
.page-main {
  display: grid;
  gap: 1.2rem;
}

.page-header {
  padding-top: 0.75rem;
}

.page-hero,
.content-section {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-hero {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  max-width: 12ch;
  text-align: center;
}

.page-intro {
  margin: 0;
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.7;
}

.grid-two,
.link-grid {
  display: grid;
  gap: 1rem;
}

.info-card,
.prose-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-strong);
}

.prose-card h2,
.info-card h2 {
  margin-top: 0;
  font-family: "Archivo", sans-serif;
}

.prose-card p,
.info-card p,
.bullet-list li {
  color: var(--muted);
  line-height: 1.7;
}

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
}

.text-link {
  color: var(--green);
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.hero-image-frame {
  position: relative;
  margin: 0;
}

.hero-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1680 / 945;
  width: 100%;
  margin-left: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  clip-path: inset(0 round var(--radius));
  box-shadow: var(--shadow);
  align-self: start;
  isolation: isolate;
  background: #050816;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
}

.panel-glow {
  position: absolute;
  inset: auto -30% -45% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 109, 0.38), transparent 68%);
  pointer-events: none;
}

.hero-panel h2 {
  margin: 0.9rem 0 0.5rem;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.panel-stats {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
  justify-items: center;
}

.panel-stats li {
  width: min(100%, 320px);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

main {
  display: grid;
  gap: 1.2rem;
}

.featured,
.drops,
.footer {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-copy h2 {
  margin: 0.8rem 0 0.6rem;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.section-copy,
.compact,
.embed-card,
.drop-card,
.card-header {
  text-align: center;
}

.section-copy,
.compact {
  display: grid;
  justify-items: center;
}

.embed-grid,
.drops-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.embed-card,
.drop-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-strong);
}

.card-header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.embed-card h3,
.drop-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.stream-pill {
  background: rgba(30, 215, 96, 0.12);
  border-color: rgba(30, 215, 96, 0.2);
}

.stream-pill.alt {
  background: rgba(255, 77, 109, 0.1);
  border-color: rgba(255, 77, 109, 0.2);
}

.spotify-card iframe {
  min-height: 352px;
  border-radius: 18px;
}

.youtube-card iframe {
  min-height: 220px;
  border-radius: 18px;
}

.embed-placeholder {
  display: grid;
  place-items: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 220px;
  padding: 1.4rem;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%),
    rgba(255, 255, 255, 0.025);
  text-align: center;
}

.spotify-card .embed-placeholder {
  min-height: 352px;
}

.embed-placeholder strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
}

.embed-placeholder p {
  margin: 0;
  max-width: 26ch;
  color: var(--muted);
}

.compact p:last-child {
  margin-bottom: 0;
}

.drop-card {
  min-height: 100%;
}

.drop-tag {
  margin-bottom: 1rem;
  color: #ffe7af;
  background: rgba(255, 200, 87, 0.08);
  border-color: rgba(255, 200, 87, 0.16);
}

.footer {
  display: grid;
  gap: 0.9rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: #dfe7ff;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
  transform: translateY(-1px);
}

.footer-tagline,
.footer-copy {
  margin: 0;
}

@media (min-width: 700px) {
  .page-shell {
    width: min(100% - 2rem, var(--container-wide));
    padding-top: 1.25rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1.15fr);
    align-items: start;
    gap: 2rem;
    padding-bottom: 1.8rem;
  }

  .topbar {
    grid-column: 1 / -1;
  }

  .hero-media {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    width: min(100%, 760px);
  }

  .hero-content {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: start;
    max-width: 34rem;
  }

  .hero-actions {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .hero-panel {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .cta-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .embed-grid,
  .drops-grid,
  .grid-two,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drops-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .page-shell {
    width: min(100% - 2.5rem, var(--container-wide));
    padding-bottom: 3rem;
  }

  .featured,
  .drops,
  .footer,
  .page-hero,
  .content-section {
    padding: 2rem;
  }

  .hero-panel {
    padding: 1.7rem;
  }

  .cta-button {
    min-height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}