/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --bg: #0E0E12;
  --bg-surface: #141418;
  --bg-surface-2: #1A1A20;
  --accent: #F5A623;
  --accent-2: #FF6B35;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #F2EDE4;
  --text-2: #A09A90;
  --text-3: #5C5750;
  --border: rgba(242, 237, 228, 0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ─── Base Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #0E0E12;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  padding: 80px 48px 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-artist {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stream-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 40px;
  transition: border-color 0.2s, color 0.2s;
  font-weight: 400;
}

.stream-link:hover {
  border-color: var(--accent);
  color: var(--text);
}

.stream-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-3);
}

.stream-dot.spotify { background: #1DB954; }
.stream-dot.amazon { background: #FFA94D; }
.stream-dot.twitter { background: #1DA1F2; }

/* Hero Visual - Concentric Rings */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.2);
  animation: pulse-ring 3s ease-out infinite;
}

.ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.ring-2 { width: 78%; height: 78%; animation-delay: 0.4s; border-color: rgba(245, 166, 35, 0.25); }
.ring-3 { width: 56%; height: 56%; animation-delay: 0.8s; border-color: rgba(245, 166, 35, 0.30); }
.ring-4 { width: 36%; height: 36%; animation-delay: 1.2s; border-color: rgba(245, 166, 35, 0.40); }
.ring-5 { width: 18%; height: 18%; animation-delay: 1.6s; border-color: rgba(245, 166, 35, 0.60); }

.sound-center {
  position: absolute;
  width: 18%;
  height: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-eye {
  width: 100%;
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(245, 166, 35, 0.4), 0 0 80px rgba(245, 166, 35, 0.15);
}

.eye-inner {
  width: 40%;
  height: 40%;
  background: #0E0E12;
  border-radius: 50%;
}

@keyframes pulse-ring {
  0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.3; }
  100% { opacity: 0; transform: scale(1.12); }
}

/* ─── Manifesto ─────────────────────────────────────────── */
.manifesto {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  padding-left: 31px;
}

/* ─── Proof / Catalog ───────────────────────────────────── */
.proof {
  padding: 100px 48px;
}

.proof-header {
  margin-bottom: 56px;
}

.proof-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.proof-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.proof-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin-bottom: 72px;
}

.track-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: border-color 0.2s;
}

.track-card:hover { border-color: rgba(245, 166, 35, 0.25); }

.track-art {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-art-inner {
  width: 40px;
  height: 40px;
}

.track-wave {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.track-wave::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 4px,
    rgba(14,14,18,0.4) 4px,
    rgba(14,14,18,0.4) 6px
  );
}

.track-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.track-meta {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 10px;
}

.track-status {
  font-size: 12px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.5);
}

.proof-numbers {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 600px;
  padding: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.proof-stat {
  flex: 1;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 24px;
}

/* ─── How It Works ──────────────────────────────────────── */
.how {
  padding: 100px 48px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.how-header { margin-bottom: 64px; }

.how-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.how-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 32px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.step:hover { border-color: rgba(245, 166, 35, 0.3); }

.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.step-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}

.step-connector {
  padding: 0 12px;
  padding-top: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ─── Closing Statement ─────────────────────────────────── */
.closing {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}

.closing-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sig-artist {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.sig-platform {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand-mark {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #0E0E12;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-3);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

/* ─── Artist Hub ─────────────────────────────────────────── */
.artist-hero {
  padding: 80px 48px 72px;
  border-bottom: 1px solid var(--border);
}

.artist-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.artist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.artist-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(245, 166, 35, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(245, 166, 35, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 16px rgba(245, 166, 35, 0.8); }
}

.artist-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.05;
}

.artist-tagline {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 20px;
  font-weight: 300;
}

.artist-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.artist-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
}

.artist-meta svg { flex-shrink: 0; }

.artist-bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 36px;
}

.listen-now { margin-bottom: 0; }

.listen-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}

.listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 40px;
  transition: border-color 0.2s, transform 0.2s;
}

.listen-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.listen-btn.spotify { color: #1DB954; border-color: rgba(29, 185, 84, 0.2); }
.listen-btn.apple { color: #FA243C; border-color: rgba(250, 36, 60, 0.2); }
.listen-btn.amazon { color: #FFA94D; border-color: rgba(255, 169, 77, 0.2); }

.listen-btn.spotify:hover { border-color: #1DB954; }
.listen-btn.apple:hover { border-color: #FA243C; }
.listen-btn.amazon:hover { border-color: #FFA94D; }

/* Artist Visual */
.artist-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-rings { position: relative; width: 100%; height: 100%; }

.v-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 3s ease-out infinite;
}

.v-ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.v-ring-2 { width: 80%; height: 80%; animation-delay: 0.4s; border-color: rgba(245, 166, 35, 0.2); }
.v-ring-3 { width: 60%; height: 60%; animation-delay: 0.8s; border-color: rgba(245, 166, 35, 0.25); }
.v-ring-4 { width: 40%; height: 40%; animation-delay: 1.2s; border-color: rgba(245, 166, 35, 0.35); }
.v-ring-5 { width: 22%; height: 22%; animation-delay: 1.6s; border-color: rgba(245, 166, 35, 0.5); }

.visual-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22%;
  height: 22%;
}

.visual-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(245, 166, 35, 0.3), 0 0 80px rgba(245, 166, 35, 0.1);
  color: #0E0E12;
}

/* Stats Bar */
.stats-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 32px 48px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 2px;
}

.stat-source {
  display: block;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Tracks Section */
.tracks-section {
  padding: 72px 48px;
}

.tracks-inner { max-width: 900px; margin: 0 auto; }

.tracks-header { margin-bottom: 40px; }

.tracks-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.tracks-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.tracks-grid { display: flex; flex-direction: column; gap: 4px; }

.track-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.track-row:hover { border-color: rgba(245, 166, 35, 0.2); }

.track-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-3);
  width: 24px;
  flex-shrink: 0;
}

.track-info { flex: 1; min-width: 0; }

.track-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
}

.track-dot { color: var(--text-3); }

.track-platforms {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-3);
}

.platform-dot-spotify { background: #1DB954; }
.platform-dot-apple { background: #FA243C; }
.platform-dot-amazon { background: #FFA94D; }

.track-listen { flex-shrink: 0; }

.track-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 7px 14px;
  border-radius: 40px;
  transition: border-color 0.2s, background-color 0.2s;
}

.track-play-btn:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* Streaming CTA */
.streaming-cta {
  padding: 72px 48px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.streaming-cta-inner { max-width: 700px; margin: 0 auto; text-align: center; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 36px;
}

.cta-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 40px;
  transition: border-color 0.2s, transform 0.2s;
}

.cta-btn:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-2px);
}

.cta-spotify:hover { border-color: #1DB954; color: #1DB954; }
.cta-apple:hover { border-color: #FA243C; color: #FA243C; }
.cta-amazon:hover { border-color: #FFA94D; color: #FFA94D; }
.cta-soundcloud:hover { border-color: #FF5500; color: #FF5500; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 300px; }
  .proof-tracks { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; }
  .step-connector { transform: rotate(90deg); padding: 8px 0; }
  .proof-numbers { flex-direction: column; gap: 24px; }
  .proof-divider { width: 40px; height: 1px; margin: 0; }
  .nav { padding: 20px 24px; }
  .hero, .manifesto, .proof, .how, .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 36px; }
  .hero-stream-links { flex-direction: column; }
  .nav-tagline { display: none; }
}