:root {
  --black: #05070a;
  --panel: #0c1015;
  --panel-2: #111820;
  --white: #f7f8fa;
  --muted: #aeb5bf;
  --yellow: #ffbf00;
  --orange: #ff6a00;
  --blue: #00a8e8;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input { font: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: linear-gradient(to bottom, rgba(4,7,10,.9), rgba(4,7,10,.35), transparent);
  backdrop-filter: blur(6px);
}
.brand { display: inline-flex; align-items: center; gap: 8px; font-size: 1.1rem; letter-spacing: .03em; }
.brand-strong { font-weight: 800; }
.brand-divider { width: 2px; height: 24px; background: var(--blue); }
nav { display: flex; gap: 28px; align-items: center; font-size: .92rem; font-weight: 600; }
nav a:not(.nav-cta) { color: #d7dbe0; }
nav a:hover { color: var(--yellow); }
.nav-cta { border: 1px solid rgba(255,255,255,.35); padding: 10px 16px; }
.menu-button { display: none; border: 0; background: none; color: white; font-size: 1.6rem; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 7vw, 110px) 80px;
  background: url('assets/album-front.png') center 42% / cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,5,8,.95) 0%, rgba(2,5,8,.66) 39%, rgba(2,5,8,.08) 72%), linear-gradient(0deg, #05070a 0%, transparent 22%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 72%, rgba(255,107,0,.18), transparent 34%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.eyebrow { margin: 0 0 14px; color: var(--yellow); font-weight: 800; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; }
h1, h2 { font-family: "Barlow Condensed", Impact, sans-serif; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(5rem, 12vw, 10.5rem); line-height: .72; letter-spacing: -.045em; text-shadow: 0 7px 30px rgba(0,0,0,.45); }
h1 span { color: var(--yellow); }
.hero-copy { max-width: 590px; margin: 34px 0 0; color: #e8eaed; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 22px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.button-primary { background: var(--yellow); color: #050505; box-shadow: 0 12px 34px rgba(255,191,0,.22); }
.button-primary:hover { background: #ffd13b; transform: translateY(-2px); }
.button-secondary { border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(5px); }
.button-secondary:hover { border-color: var(--yellow); color: var(--yellow); }
.hero-badge { position: absolute; z-index: 3; right: clamp(24px, 6vw, 95px); bottom: 80px; width: 130px; height: 130px; border: 2px solid var(--yellow); border-radius: 50%; display: grid; place-content: center; text-align: center; transform: rotate(8deg); background: rgba(5,7,10,.58); }
.hero-badge strong { display: block; font: 800 3rem/1 "Barlow Condensed"; }
.hero-badge span { font-size: .7rem; letter-spacing: .18em; color: var(--yellow); }
.scroll-hint { position: absolute; z-index: 3; left: 50%; bottom: 22px; font-size: 1.6rem; animation: bob 1.8s infinite; }
@keyframes bob { 50% { transform: translateY(7px); } }

.section { padding: clamp(80px, 9vw, 140px) clamp(20px, 7vw, 110px); }
.section-intro { max-width: 760px; margin-bottom: 54px; }
.section-intro.compact { margin-bottom: 30px; }
h2 { margin: 0; font-size: clamp(3.3rem, 7vw, 6.4rem); line-height: .9; letter-spacing: -.035em; }
.section-intro > p:last-child { color: var(--muted); line-height: 1.75; max-width: 650px; font-size: 1.05rem; }
.album-section { background: linear-gradient(180deg, #05070a, #0b0f14); }
.album-grid { display: grid; grid-template-columns: minmax(280px, 1.05fr) minmax(260px, .95fr); gap: clamp(34px, 6vw, 90px); align-items: center; }
.cover-card { border: 0; background: none; padding: 0; color: inherit; cursor: pointer; perspective: 1600px; }
.cover-inner { position: relative; display: block; aspect-ratio: 4 / 3; transform-style: preserve-3d; transition: transform .9s cubic-bezier(.2,.75,.2,1); }
.cover-card.flipped .cover-inner { transform: rotateY(180deg); }
.cover-face { position: absolute; inset: 0; backface-visibility: hidden; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.45); }
.cover-back { transform: rotateY(180deg); }
.cover-hint { display: block; margin-top: 14px; color: var(--muted); font-size: .82rem; letter-spacing: .04em; }
.album-facts { border-top: 1px solid var(--line); }
.album-facts > div { display: grid; grid-template-columns: 105px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.album-facts span { color: var(--muted); font-size: .86rem; }
.album-facts strong { font-size: 1rem; }
blockquote { margin: 38px 0 0; padding-left: 20px; border-left: 4px solid var(--yellow); color: var(--yellow); font: 700 clamp(1.6rem, 3vw, 2.6rem)/1.05 "Barlow Condensed"; text-transform: uppercase; }

.track-section { background: var(--panel); }
.track-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.track-toolbar input { width: min(420px, 70vw); color: white; background: #080b0f; border: 1px solid var(--line); padding: 14px 16px; outline: none; }
.track-toolbar input:focus { border-color: var(--yellow); }
.track-toolbar > span { color: var(--muted); font-size: .9rem; }
.track-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.track-list li { background: var(--panel); min-height: 68px; display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; padding: 12px 18px; transition: background .2s; }
.track-list li:hover { background: var(--panel-2); }
.track-number { color: var(--yellow); font-family: "Barlow Condensed"; font-size: 1.35rem; font-weight: 800; }
.track-title { font-weight: 600; }
.track-mix { display: block; margin-top: 4px; color: var(--yellow); font-size: .75rem; font-weight: 600; }
.track-icon { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); font-size: .7rem; }
.track-empty { grid-column: 1 / -1 !important; display: block !important; text-align: center; padding: 40px !important; color: var(--muted); }

.manifesto { min-height: 72vh; display: grid; align-items: center; padding: clamp(80px, 11vw, 160px) clamp(20px, 7vw, 110px); background: linear-gradient(90deg, rgba(3,5,7,.95), rgba(3,5,7,.35)), url('assets/album-back.png') 68% center / cover no-repeat; }
.manifesto-content { max-width: 650px; }
.manifesto p:not(.eyebrow) { color: #d4d9df; max-width: 560px; font-size: 1.15rem; line-height: 1.7; margin: 26px 0 32px; }
footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 28px clamp(20px, 5vw, 72px); border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
footer .brand { color: white; }
footer a:hover { color: var(--yellow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 900px) {
  nav { display: none; position: absolute; top: 72px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; background: rgba(7,10,14,.98); padding: 22px; border: 1px solid var(--line); }
  nav.open { display: flex; }
  .menu-button { display: block; }
  .hero { background-position: 60% center; }
  .hero::after { background: linear-gradient(90deg, rgba(2,5,8,.92), rgba(2,5,8,.42)), linear-gradient(0deg, #05070a 0%, transparent 25%); }
  .hero-badge { width: 100px; height: 100px; right: 22px; bottom: 65px; }
  .album-grid { grid-template-columns: 1fr; }
  .track-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .site-header { padding: 16px 18px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  h1 { font-size: clamp(4.3rem, 24vw, 7rem); }
  .hero-badge { display: none; }
  .track-toolbar { align-items: stretch; flex-direction: column; }
  .track-toolbar input { width: 100%; }
  .track-list li { grid-template-columns: 38px 1fr 32px; padding: 12px; }
  footer { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

/* MP3-Player */
.audio-player {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(280px, 1.3fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #080b0f;
}
.audio-player > div { min-width: 0; }
.audio-label {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.audio-player strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.audio-player audio { width: 100%; }
.track-play {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .7rem;
}
.track-play:hover,
.track-list li.is-playing .track-play {
  border-color: var(--yellow);
  color: var(--yellow);
}
.track-list li.is-playing { background: var(--panel-2); }

@media (max-width: 700px) {
  .audio-player { grid-template-columns: 1fr; gap: 14px; }
}
