:root {
  --bg: #060606;
  --bg-soft: #111111;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f3ef;
  --muted: #b8b4ad;
  --accent: #95f0ff;
  --accent-soft: rgba(149, 240, 255, 0.15);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --content-width: 1180px;
  --font-display: "Avenir Next", "Futura", "Helvetica Neue", sans-serif;
  --font-body: "Suisse Intl", "Avenir Next", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(149, 240, 255, 0.11), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: var(--text);
  font-family: var(--font-body);
}

img {
  display: block;
  max-width: 100%;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}

.ambient-left {
  top: -12rem;
  left: -10rem;
  background: rgba(149, 240, 255, 0.18);
}

.ambient-right {
  right: -12rem;
  bottom: 8rem;
  background: rgba(255, 255, 255, 0.08);
}

.site-header,
.hero,
.release-section,
.bio-visuals,
.connect-section,
.site-footer {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  margin-top: 0.5rem;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.9), rgba(6, 6, 6, 0.4));
  backdrop-filter: blur(18px);
}

.brand-mark,
.site-nav a,
.eyebrow,
#hero-title {
  letter-spacing: 0.12em;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1rem;
}

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

.site-nav a {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 2rem;
  align-items: center;
  padding: 5rem 0 3rem;
}

.hero-copy,
.hero-panel,
.release-card,
.release-embed,
.bio-card,
.visuals-card,
.connect-links {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(2rem, 4vw, 4rem);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--accent);
}

#hero-title {
  margin: 0;
  font-size: clamp(3rem, 10vw, 7rem);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.92;
}

.hero-intro,
#bio-body,
.release-description,
#footer-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-intro {
  max-width: 58ch;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--text);
  color: var(--bg);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
}

.button.is-disabled {
  opacity: 0.55;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
}

.hero-stat {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-meta dt {
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-panel {
  padding: 1.25rem;
}

.hero-logo-frame {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 2rem;
  border-radius: calc(var(--radius) - 8px);
  background:
    radial-gradient(circle at center, rgba(149, 240, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#hero-logo {
  width: min(100%, 420px);
  aspect-ratio: 1;
  object-fit: contain;
}

.release-section,
.connect-section {
  padding: 2rem 0 0;
}

.section-heading h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.release-grid,
.bio-visuals,
.connect-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.release-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
}

.release-card {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.25rem;
}

.release-artwork {
  display: grid;
  place-items: center;
  border-radius: calc(var(--radius) - 8px);
  background: #000;
  min-height: 280px;
  overflow: hidden;
}

#release-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.release-kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.release-description {
  margin: 1rem 0 0;
}

.release-embed {
  padding: 1.25rem;
}

.release-embed.is-hidden {
  display: none;
}

.embed-placeholder,
.embed-frame {
  display: grid;
  place-items: center;
  min-height: 100%;
  border-radius: calc(var(--radius) - 8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top, rgba(149, 240, 255, 0.12), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
}

.embed-placeholder p {
  max-width: 28ch;
  margin: 0;
  text-align: center;
  color: var(--muted);
}

.embed-frame iframe {
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 18px;
}

.bio-visuals {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: 2rem 0 0;
}

.bio-card,
.visuals-card,
.connect-links {
  padding: 1.5rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.visual-card {
  min-height: 220px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 10px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    #090909;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card.placeholder {
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.visual-card.placeholder p {
  max-width: 20ch;
  margin: 0;
  text-align: center;
  color: var(--muted);
}

.connect-grid {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 3rem;
}

.connect-links h3 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.link-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.link-row:hover,
.link-row:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(149, 240, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.link-row-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(149, 240, 255, 0.09);
  color: var(--accent);
  flex: 0 0 auto;
}

.link-icon svg {
  width: 22px;
  height: 22px;
}

.link-copy {
  min-width: 0;
}

.link-copy span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.link-copy strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

.link-action {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer {
  padding: 0 0 2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero,
  .release-grid,
  .bio-visuals,
  .connect-grid,
  .release-card {
    grid-template-columns: 1fr;
  }

  .hero-logo-frame {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy,
  .hero-panel,
  .release-card,
  .release-embed,
  .bio-card,
  .visuals-card,
  .connect-links {
    padding: 1.15rem;
  }

  .hero-meta,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .hero,
  .release-section,
  .bio-visuals,
  .connect-section,
  .site-footer {
    width: min(calc(100% - 1rem), var(--content-width));
  }

  .button {
    width: 100%;
  }
}
