/* ───────────── Tokens (palette sampled from the album cover) ───────────── */
:root {
  --space-0: #03060c;
  --space-1: #060b14;
  --space-2: #0b1726;
  --nebula-teal: #12384a;
  --nebula-blue: #0f2440;
  --gold-1: #fff0bf;
  --gold-2: #e8c872;
  --gold-3: #b8893a;
  --gold-4: #7a5520;
  --ivory: #f4efe4;
  --text: #e9e6df;
  --muted: #9aa6b5;
  --line: rgba(232, 200, 114, 0.18);
  --glass: rgba(12, 22, 36, 0.55);
  --glass-edge: rgba(255, 240, 191, 0.12);

  --gold-grad: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 35%, var(--gold-3) 70%, var(--gold-2) 100%);
  --font-display: "Cinzel", "Trajan Pro", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(16px, 5vw, 64px);
  --max: 1180px;
  --radius: 22px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--space-1);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: .04em; margin: 0; line-height: 1.1; }
h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
::selection { background: var(--gold-2); color: var(--space-1); }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 6px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--gold-2); color: var(--space-1); padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ───────────── Space background ───────────── */
.nebula {
  position: fixed; inset: -10%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(40% 35% at 78% 18%, rgba(30, 90, 115, .38), transparent 70%),
    radial-gradient(45% 40% at 12% 70%, rgba(20, 50, 95, .45), transparent 70%),
    radial-gradient(30% 25% at 55% 55%, rgba(232, 200, 114, .06), transparent 70%),
    radial-gradient(120% 90% at 50% 0%, var(--space-2), var(--space-0) 70%);
  animation: nebula-drift 60s ease-in-out infinite alternate;
}
@keyframes nebula-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-2%, 3%, 0) scale(1.06); }
}
#stars { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

/* ───────────── Nav ───────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 11, 20, .72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-color: var(--line);
  padding-block: 12px;
}
.nav__brand {
  font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; letter-spacing: .18em;
  text-transform: uppercase; text-decoration: none;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav__links { display: flex; gap: clamp(12px, 2.4vw, 32px); align-items: center; }
.nav__links a {
  text-decoration: none; font-size: .85rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); transition: color .25s;
}
.nav__links a:hover { color: var(--gold-1); }
.nav__cta { color: var(--gold-2) !important; }
@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ───────────── Buttons ───────────── */
.btn {
  --glow: rgba(232, 200, 114, .0);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 28px; border-radius: 999px;
  font: 700 .85rem/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  box-shadow: 0 0 0 1px var(--glass-edge), 0 10px 40px var(--glow);
}
.btn:hover { transform: translateY(-2px); --glow: rgba(232, 200, 114, .35); }
.btn:active { transform: translateY(0); }
.btn--gold {
  background: var(--gold-grad); background-size: 200% 200%; color: #1a1206;
  animation: sheen 6s ease-in-out infinite;
}
@keyframes sheen { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.btn--ghost { background: rgba(255, 240, 191, .04); color: var(--gold-1); box-shadow: inset 0 0 0 1px rgba(232, 200, 114, .45); }
.btn--ghost:hover { background: rgba(255, 240, 191, .1); box-shadow: inset 0 0 0 1px var(--gold-2), 0 10px 40px var(--glow); }

/* ───────────── Hero ───────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(32px, 6vw, 96px);
  max-width: var(--max); margin: 0 auto;
  padding: 120px var(--gutter) 100px;
}
.hero__art { position: relative; aspect-ratio: 1; width: 100%; max-width: 560px; justify-self: center; will-change: transform; }
.cover {
  position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255, 240, 191, .18), 0 40px 120px rgba(0, 0, 0, .7), 0 0 90px rgba(232, 200, 114, .18);
  animation: float 9s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-.6deg); }
  50%      { transform: translateY(-16px) rotate(.6deg); }
}
.halo {
  position: absolute; inset: -18%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 200, 114, .28) 0%, rgba(30, 90, 115, .18) 40%, transparent 68%);
  filter: blur(20px);
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: .7; transform: scale(.96); } 50% { opacity: 1; transform: scale(1.04); } }
.orbit {
  position: absolute; left: 50%; top: 50%; z-index: 1;
  border: 1px solid rgba(232, 200, 114, .22); border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(72deg);
  pointer-events: none;
}
.orbit span {
  position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
  transform: translate(-50%, -50%);
  animation: spin 16s linear infinite;
}
.orbit span::after {
  content: ""; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-1); box-shadow: 0 0 16px 4px rgba(255, 220, 140, .8);
}
.orbit--1 { width: 138%; height: 138%; }
.orbit--2 { width: 168%; height: 168%; border-color: rgba(120, 180, 210, .14); transform: translate(-50%, -50%) rotateX(74deg) rotateY(14deg); }
.orbit--2 span { animation-duration: 28s; animation-direction: reverse; }
.orbit--2 span::after { background: #bfe6ff; box-shadow: 0 0 14px 3px rgba(150, 210, 255, .7); width: 7px; height: 7px; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero__text { will-change: transform; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px;
  font-size: .8rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-2);
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 0 rgba(232, 200, 114, .7); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(232, 200, 114, 0); } 100% { box-shadow: 0 0 0 0 rgba(232, 200, 114, 0); } }
.title { font-size: clamp(3.2rem, 9vw, 7rem); font-weight: 900; line-height: .95; letter-spacing: .03em; }
.title__line {
  display: block;
  background: var(--gold-grad); background-size: 220% 220%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 24px rgba(232, 200, 114, .25));
  animation: sheen 8s ease-in-out infinite, rise 1.1s var(--ease) both;
}
.title__line:nth-child(2) { animation-delay: 0s, .12s; }
.title__line:nth-child(3) { animation-delay: 0s, .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(30px); filter: blur(8px); } to { opacity: 1; transform: none; } }
.byline { margin: 22px 0 6px; font-size: 1.1rem; color: var(--ivory); letter-spacing: .04em; }
.byline strong { font-family: var(--font-display); letter-spacing: .12em; color: var(--gold-1); }
.tagline { margin: 0 0 32px; color: var(--muted); max-width: 30ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border-radius: 14px; border: 1.5px solid rgba(232, 200, 114, .5);
}
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--gold-2); animation: cue 2s infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; gap: 40px; }
  .hero__art { max-width: 380px; }
  .tagline { margin-inline: auto; }
  .hero__actions, .eyebrow { justify-content: center; }
  .scroll-cue { display: none; }
}

/* ───────────── Sections ───────────── */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(72px, 12vw, 140px) var(--gutter) 0; }
.section__head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.kicker {
  margin: 0 0 12px; font-size: .75rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 14px;
}
.kicker::before, .kicker::after { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-3)); }
.kicker::after { transform: scaleX(-1); }

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius);
  backdrop-filter: blur(16px) saturate(120%); -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 240, 191, .06);
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ───────────── Platforms ───────────── */
.platforms {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
}
.platform {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; min-height: 76px;
  text-decoration: none; color: var(--text);
  background: var(--glass); border: 1px solid var(--glass-edge); border-radius: 18px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.platform::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s;
  background: radial-gradient(120% 120% at var(--mx, 50%) var(--my, 50%), rgba(232, 200, 114, .16), transparent 55%);
}
.platform:hover { transform: translateY(-4px); border-color: rgba(232, 200, 114, .5); box-shadow: 0 16px 50px rgba(232, 200, 114, .14); }
.platform:hover::before { opacity: 1; }
.platform__name { font-weight: 700; letter-spacing: .02em; flex: 1; position: relative; }
.platform__go { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); position: relative; transition: transform .3s var(--ease); }
.platform:hover .platform__go { transform: translateX(4px); }

.icon {
  flex: none; position: relative; width: 28px; height: 28px; background: var(--gold-1);
  -webkit-mask: var(--icon) center / contain no-repeat; mask: var(--icon) center / contain no-repeat;
}
.more { text-align: center; margin: 28px 0 0; }
.more a { color: var(--muted); font-size: .9rem; letter-spacing: .08em; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .25s, border-color .25s; }
.more a:hover { color: var(--gold-1); border-color: var(--gold-2); }

/* ───────────── Player + tracklist ───────────── */
.split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: stretch; }
.player { padding: 12px; min-height: 380px; }
.player iframe { width: 100%; height: 100%; min-height: 352px; border: 0; border-radius: 14px; display: block; }
.tracklist { padding: clamp(24px, 3vw, 36px); }
.tracklist__title { font-size: 1.1rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-1); margin-bottom: 18px; display: flex; justify-content: space-between; gap: 12px; align-items: baseline; flex-wrap: wrap; }
.tracklist__title span { font-family: var(--font-body); font-size: .75rem; letter-spacing: .14em; color: var(--muted); font-weight: 600; }
.tracklist ol { list-style: none; margin: 0; padding: 0; counter-reset: t; }
.tracklist li {
  counter-increment: t;
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px;
  padding: 14px 4px; border-top: 1px solid var(--line);
  transition: background .25s, padding .25s;
}
.tracklist li:hover { background: rgba(232, 200, 114, .05); padding-inline: 12px; }
.tracklist li::before {
  content: counter(t, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; color: var(--gold-3); font-size: .95rem;
}
.track__title { font-weight: 600; }
.track__len { color: var(--muted); font-variant-numeric: tabular-nums; font-size: .9rem; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ───────────── Video ───────────── */
.video { position: relative; aspect-ratio: 16 / 9; padding: 10px; overflow: hidden; }
.video iframe, .video__poster { width: 100%; height: 100%; border: 0; border-radius: 14px; display: block; }
.video__poster { position: relative; padding: 0; cursor: pointer; overflow: hidden; background: var(--space-0); }
.video__poster img { width: 100%; height: 100%; object-fit: cover; opacity: .55; filter: saturate(1.1); transition: transform 1.2s var(--ease), opacity .4s; }
.video__poster:hover img { transform: scale(1.04); opacity: .7; }
.video__play {
  position: absolute; left: 50%; top: 50%; width: 88px; height: 88px; transform: translate(-50%, -50%);
  border-radius: 50%; background: var(--gold-grad);
  box-shadow: 0 0 0 10px rgba(232, 200, 114, .15), 0 0 60px rgba(232, 200, 114, .5);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.video__play::after {
  content: ""; position: absolute; left: 36px; top: 28px;
  border-style: solid; border-width: 16px 0 16px 26px; border-color: transparent transparent transparent #1a1206;
}
.video__poster:hover .video__play { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 0 16px rgba(232, 200, 114, .12), 0 0 80px rgba(232, 200, 114, .6); }

/* ───────────── About ───────────── */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about__photo { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.about__photo::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px var(--glass-edge); background: linear-gradient(to top, rgba(6, 11, 20, .6), transparent 45%); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about:not(.about--no-photo) .about__text .kicker::before { display: none; }
.about__text h2 { margin-bottom: 22px; }
.about__text p { color: #cfd3d9; margin: 0 0 16px; }
.about--no-photo { grid-template-columns: 1fr; text-align: center; max-width: 760px; margin-inline: auto; }
.about--no-photo .about__photo { display: none; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } .about__photo { max-width: 420px; } }

/* ───────────── Connect ───────────── */
.connect { text-align: center; padding: clamp(40px, 7vw, 80px) clamp(20px, 5vw, 72px); position: relative; overflow: hidden; }
.connect::before {
  content: ""; position: absolute; left: 50%; top: -60%; width: 120%; aspect-ratio: 1; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 200, 114, .12), transparent 60%); pointer-events: none;
}
.connect > * { position: relative; }
.connect__lede { color: var(--muted); max-width: 46ch; margin: 18px auto 32px; }
.signup { display: flex; gap: 10px; max-width: 520px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.signup input[type="email"] {
  flex: 1 1 240px; min-height: 52px; padding: 0 22px; border-radius: 999px;
  background: rgba(3, 6, 12, .6); border: 1px solid rgba(232, 200, 114, .3); color: var(--text);
  font: 500 1rem var(--font-body); transition: border-color .25s, box-shadow .25s;
}
.signup input[type="email"]::placeholder { color: #6b7686; }
.signup input[type="email"]:focus { outline: none; border-color: var(--gold-2); box-shadow: 0 0 0 4px rgba(232, 200, 114, .15); }
.signup__msg { min-height: 1.6em; margin: 14px 0 0; font-size: .95rem; color: var(--gold-1); }
.signup__msg.is-error { color: #ff9c8a; }
.connect__contact { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin: 36px 0 0; padding-top: 32px; border-top: 1px solid var(--line); }
.connect__contact > span { color: var(--muted); font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; }

.socials { list-style: none; padding: 0; margin: 36px 0 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.socials a {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 240, 191, .04); box-shadow: inset 0 0 0 1px rgba(232, 200, 114, .3);
  transition: transform .3s var(--ease), background .3s, box-shadow .3s;
}
.socials .icon { width: 22px; height: 22px; background: var(--gold-2); transition: background .3s; }
.socials a:hover { transform: translateY(-3px); background: rgba(232, 200, 114, .12); box-shadow: inset 0 0 0 1px var(--gold-2), 0 10px 30px rgba(232, 200, 114, .25); }
.socials a:hover .icon { background: var(--gold-1); }

/* ───────────── Footer ───────────── */
.footer { text-align: center; padding: 80px var(--gutter) 40px; color: #6b7686; font-size: .85rem; letter-spacing: .06em; }
.footer p { margin: 0; }

/* ───────────── Reduced motion ───────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
