/* ================================================
   DION POWELL MUSIC — MAIN STYLESHEET
   Dark Cinematic | Gold Accents
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --black:       #080808;
  --deep:        #0e0e0e;
  --surface:     #141414;
  --surface2:    #1a1a1a;
  --border:      #242424;
  --gold:        #c9a84c;
  --gold-light:  #e2c47a;
  --gold-dim:    #8a6d2f;
  --white:       #f5f0e8;
  --muted:       #7a7a7a;
  --text:        #d4cfc6;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --nav-h: 80px;
  --max-w: 1240px;
  --radius: 2px;

  --ease-gold: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }

.label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.muted { color: var(--muted); }
.gold { color: var(--gold); }

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ─── GOLD LINE DIVIDER ─── */
.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}
.gold-line.center { margin: 20px auto; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease-gold);
}
.nav.scrolled {
  height: 64px;
  border-bottom-color: var(--gold-dim);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-gold);
}
.nav-logo-img:hover { transform: scale(1.05); }
.nav-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* fallback if img missing */
.nav-logo-img .logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-gold);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  transition: all 0.25s;
}
.nav-cart:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cart-count {
  background: var(--gold);
  color: var(--black);
  font-size: 0.55rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-gold);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease-gold);
}
.btn:hover::before { transform: translateX(0); }
.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}
.btn-gold::before { background: var(--gold-light); }
.btn-gold:hover { color: var(--black); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline::before { background: var(--gold); }
.btn-outline:hover { color: var(--black); }
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* ─── TRACK CARD ─── */
.track-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  transition: all 0.3s var(--ease-gold);
  position: relative;
}
.track-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.3s var(--ease-gold);
}
.track-card:hover {
  border-color: var(--gold-dim);
  background: var(--surface2);
  transform: translateY(-2px);
}
.track-card:hover::before { height: 100%; }
.track-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.track-meta { flex: 1; }
.track-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.track-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border);
  color: var(--muted);
}
.tag.exclusive {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.track-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
}
.track-price small {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

/* ─── AUDIO PLAYER ─── */
.audio-player {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.play-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.25s;
}
.play-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.play-btn svg { width: 14px; height: 14px; }
.waveform {
  flex: 1;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}
.waveform-bar {
  flex: 1;
  background: var(--border);
  border-radius: 1px;
  transition: background 0.2s;
  min-width: 2px;
}
.waveform-bar.played { background: var(--gold-dim); }
.waveform-bar.active { background: var(--gold); }
.track-duration {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.track-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.track-actions .btn { flex: 1; justify-content: center; padding: 10px 16px; }

/* ─── LICENSE SELECT ─── */
.license-select {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  width: 100%;
  margin-bottom: 10px;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.25s;
}
.license-select:focus {
  outline: none;
  border-color: var(--gold-dim);
}

/* ─── FILTER TABS ─── */
.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-tab {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: all 0.25s;
}
.filter-tab:hover { color: var(--white); border-color: var(--muted); }
.filter-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 700;
}

/* ─── TRACKS GRID ─── */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/typing_on_piano.jpeg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(0.18) saturate(0.5);
  transform: scale(1.03);
  transition: transform 8s ease-out;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.95) 40%, rgba(8,8,8,0.4) 100%),
    linear-gradient(0deg, rgba(8,8,8,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-gold) both;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  margin-bottom: 12px;
  animation: fadeUp 0.8s 0.1s var(--ease-gold) both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.2s var(--ease-gold) both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s var(--ease-gold) both;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(201,168,76,0.2);
  animation: fadeUp 0.8s 0.4s var(--ease-gold) both;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ─── HERO VISUAL PANEL (right side with main_page_photo) ─── */
.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  overflow: hidden;
  pointer-events: none;
}
.hero-visual-inner {
  position: absolute;
  inset: 0;
  clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero-visual-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.7) saturate(0.8);
}
.hero-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.7) 0%, transparent 40%),
    linear-gradient(0deg, rgba(8,8,8,0.5) 0%, transparent 40%),
    linear-gradient(135deg, transparent 60%, rgba(201,168,76,0.06) 100%);
  z-index: 1;
}
.hero-visual-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero-visual-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

/* ─── FEATURED SECTION ─── */
.featured-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.featured-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ─── LICENSE CARDS ─── */
.license-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.license-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}
.license-card:hover { background: var(--surface2); }
.license-card.featured {
  background: var(--surface2);
  border-top: 2px solid var(--gold);
}
.license-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; left: 32px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  background: var(--gold);
  color: var(--black);
  padding: 3px 10px;
  font-weight: 700;
}
.license-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  margin: 16px 0 4px;
  line-height: 1;
}
.license-price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  color: var(--gold);
}
.license-name {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.license-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.license-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.license-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.4;
}
.license-feature .check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.license-feature .cross { color: var(--muted); flex-shrink: 0; margin-top: 1px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-number {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: var(--border);
  position: absolute;
  right: 32px; top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  user-select: none;
}

/* ─── CART ─── */
.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-info { flex: 1; }
.cart-item-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.cart-item-license {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.cart-item-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}
.cart-remove {
  color: var(--muted);
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.cart-remove:hover { color: #e05555; border-color: #e05555; }
.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-total-row:last-of-type { border-bottom: none; }
.cart-grand-total {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
}

/* ─── CONTACT FORM ─── */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.9rem;
  transition: border-color 0.25s;
  border-radius: var(--radius);
}
.form-input:focus {
  outline: none;
  border-color: var(--gold-dim);
  background: var(--surface2);
}
.form-input::placeholder { color: var(--muted); }
textarea.form-input { resize: vertical; min-height: 140px; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease-gold);
}
.about-image:hover img { transform: scale(1.03); }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201,168,76,0.06) 100%);
  pointer-events: none;
}
/* Fallback placeholder */
.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--surface);
}
.about-image-placeholder .icon {
  font-size: 3rem;
  opacity: 0.3;
}
.about-image-placeholder p {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
}
.about-image-corner {
  position: absolute;
  width: 60px; height: 60px;
  border-color: var(--gold-dim);
  border-style: solid;
  border-width: 0;
  z-index: 2;
}
.about-image-corner.tl { top: 16px; left: 16px; border-top-width: 1px; border-left-width: 1px; }
.about-image-corner.br { bottom: 16px; right: 16px; border-bottom-width: 1px; border-right-width: 1px; }
.about-body { font-size: 0.95rem; line-height: 1.9; color: var(--text); }
.about-body p { margin-bottom: 20px; }
.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
}
.credential-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
}
.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ─── TOAST / NOTIFICATION ─── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--surface2);
  border: 1px solid var(--gold-dim);
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--white);
  z-index: 9998;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s var(--ease-gold);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── EMPTY STATE ─── */
.empty-state {
  text-align: center;
  padding: 100px 32px;
}
.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  opacity: 0.3;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s var(--ease-gold);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
  .mobile-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s var(--ease-gold);
    z-index: 999;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; }
  .mobile-menu a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu a:hover { color: var(--gold); }
  .tracks-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .license-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-number { display: none; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }
