﻿:root {
  color-scheme: dark;
  --bg: #050606;
  --surface: #0c0e0d;
  --surface-2: #111411;
  --ink: #f7f0e4;
  --muted: rgba(247, 240, 228, .68);
  --soft: rgba(247, 240, 228, .44);
  --gold: #e8bd66;
  --green: #62c49c;
  --rose: #df767e;
  --violet: #a676ff;
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(42rem 18rem at 14% 4%, rgba(232, 189, 102, .10), transparent 66%),
    radial-gradient(44rem 20rem at 92% 10%, rgba(166, 118, 255, .12), transparent 64%),
    linear-gradient(180deg, #050606 0%, #070807 58%, #050606 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header,
.landing-shell,
.footer {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, rgba(5, 6, 6, .94), rgba(5, 6, 6, .68) 72%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  font-size: 15px;
  font-weight: 860;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #000;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .38);
}

.brand-mark img {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  object-fit: cover;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
}

.site-nav a,
.site-nav button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(247, 240, 228, .62);
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav button:hover,
.site-nav a:focus-visible,
.site-nav button:focus-visible {
  outline: 0;
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(247, 240, 228, .94);
  color: #0d0d0a;
  font-size: 13px;
  font-weight: 880;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .26);
}

.landing-shell {
  min-height: calc(100svh - 112px);
  display: grid;
  align-content: center;
  gap: clamp(12px, 2vh, 18px);
  padding-block: clamp(16px, 3vh, 28px);
}

.hero {
  min-height: min(500px, calc(100svh - 210px));
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  border-radius: clamp(30px, 4vw, 48px);
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(247, 240, 228, .055), rgba(247, 240, 228, .018)),
    var(--surface);
  box-shadow: 0 36px 120px rgba(0, 0, 0, .30);
  overflow: hidden;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: clamp(14px, 2.2vh, 22px);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(52px, 7.3vw, 96px);
  line-height: .9;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
  font-weight: 590;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.primary-action,
.secondary-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 880;
}

.primary-action {
  gap: 9px;
  background: linear-gradient(135deg, #f1cd76, #df767e 58%, #a676ff);
  color: #10100c;
  box-shadow: 0 22px 70px rgba(223, 118, 126, .22);
}

.secondary-action {
  background: rgba(247, 240, 228, .075);
  color: rgba(247, 240, 228, .76);
}

.primary-action .icon { width: 21px; height: 21px; }

.music-board {
  position: relative;
  min-height: 360px;
  width: min(390px, 100%);
  justify-self: center;
  display: grid;
  align-content: center;
  gap: 16px;
}

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

.release-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 28px 86px rgba(0, 0, 0, .30);
}

.release-grid img:first-child {
  grid-row: span 2;
  align-self: center;
}

.release-grid img:nth-child(2) { margin-top: 24px; }
.release-grid img:nth-child(3) { margin-bottom: 24px; }

.player-card {
  width: min(430px, 88%);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  justify-self: center;
  margin-top: -58px;
  border-radius: 28px;
  padding: 14px;
  background: rgba(247, 240, 228, .96);
  color: #11110d;
  box-shadow: 0 24px 82px rgba(0, 0, 0, .28);
}

.play-dot {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  background: #080908;
  color: var(--gold);
  font-size: 26px;
}

.player-card strong,
.player-card small {
  display: block;
  min-width: 0;
}

.player-card strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 1.15;
}

.player-card small {
  margin-top: 4px;
  color: rgba(17, 17, 13, .62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pillars article {
  min-height: 110px;
  display: grid;
  align-content: end;
  gap: 8px;
  border-radius: 28px;
  padding: 18px 20px;
  background: var(--surface-2);
}

.pillars span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pillars h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.pillars article:nth-child(1) h2 { color: #f2d28a; }
.pillars article:nth-child(2) h2 { color: #8eddb9; }
.pillars article:nth-child(3) h2 { color: #c2a4ff; }

.pillars p {
  max-width: 25ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.footer {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: max(6px, env(safe-area-inset-bottom));
  color: rgba(247, 240, 228, .52);
  font-size: 12px;
  font-weight: 720;
}

.footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.header-cta:hover,
.header-cta:focus-visible,
.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  outline: 0;
  transform: translateY(-1px);
}

.about-modal[hidden] { display: none; }
.about-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.about-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(14px);
}

.about-modal__sheet {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  border-radius: 32px;
  padding: clamp(24px, 4vw, 38px);
  background: #101210;
  box-shadow: 0 34px 120px rgba(0, 0, 0, .54);
}

.about-modal__sheet:focus { outline: 0; }

.about-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(247, 240, 228, .08);
  font-size: 12px;
  font-weight: 840;
}

.about-modal h2 {
  max-width: 10ch;
  margin: 8px 0 16px;
  font-size: clamp(40px, 7vw, 64px);
  line-height: .92;
}

.about-modal p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.mobile-listening-gate {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.mobile-listening-gate__card {
  width: min(520px, 100%);
  display: grid;
  gap: 18px;
  border-radius: 34px;
  padding: clamp(26px, 5vw, 42px);
  background: var(--surface);
  box-shadow: 0 30px 110px rgba(0, 0, 0, .34);
  text-align: center;
}

.mobile-listening-gate .brand-mark {
  justify-self: center;
  width: 54px;
  height: 54px;
  border-radius: 19px;
}

.mobile-listening-gate .brand-mark img {
  width: 42px;
  height: 42px;
  border-radius: 15px;
}

.mobile-listening-gate h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 52px);
  line-height: .96;
}

.mobile-listening-gate p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto; }
  .site-nav { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { justify-items: center; }
  .hero h1 { max-width: 10ch; }
  .hero-actions { justify-content: center; }
  .music-board { min-height: 380px; width: min(560px, 100%); justify-self: center; }
  .pillars { grid-template-columns: 1fr; }
  .pillars article {
    min-height: 108px;
    align-content: center;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 620px) {
  .site-header,
  .landing-shell,
  .footer { width: min(100% - 28px, var(--max)); }
  .site-header { min-height: 64px; }
  .brand span:last-child { display: none; }
  .header-cta { min-height: 38px; padding-inline: 14px; }
  .landing-shell { padding-block: 18px 24px; gap: 12px; }
  .hero {
    border-radius: 30px;
    padding: 24px 18px 20px;
    gap: 24px;
  }
  .hero h1 { font-size: clamp(43px, 13vw, 60px); }
  .hero-lead { font-size: 15.5px; }
  .primary-action,
  .secondary-action {
    width: min(100%, 230px);
    min-height: 50px;
  }
  .music-board { min-height: 310px; }
  .release-grid { gap: 9px; }
  .release-grid img { border-radius: 22px; }
  .player-card {
    width: min(320px, 94%);
    grid-template-columns: 50px minmax(0, 1fr);
    border-radius: 23px;
    padding: 11px;
    text-align: left;
  }
  .play-dot {
    width: 50px;
    height: 50px;
    border-radius: 18px;
  }
  .player-card strong { font-size: 14px; }
  .player-card small { font-size: 12px; }
  .pillars article {
    border-radius: 23px;
    padding: 18px;
  }
  .footer {
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer nav { justify-content: center; gap: 13px; }
  .about-modal { padding: 12px; }
  .about-modal__sheet { border-radius: 26px; }
}




.phone-url {
  display: inline-flex;
  justify-self: center;
  border-radius: 999px;
  padding: 11px 15px;
  background: rgba(247, 240, 228, .075);
  color: rgba(247, 240, 228, .82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.hero-actions--center { justify-content: center; }
.mobile-listening-gate .primary-action,
.mobile-listening-gate .secondary-action { width: min(100%, 230px); }
