/* ═══════════════════════════════════════════════════════════════════
   CHAD SANDERS OFFICIAL — Main Stylesheet
   Theme: Cosmic Country / Future Western
   ═══════════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --cs-black:       #080a0e;
  --cs-dark:        #0d0f14;
  --cs-charcoal:    #13161c;
  --cs-gunmetal:    #1a1e26;
  --cs-panel:       #1e2330;
  --cs-mid:         #252c3a;
  --cs-steel:       #2e3547;

  /* Accent — electric cyan */
  --cs-cyan:        #00c8ff;
  --cs-cyan-dim:    rgba(0,200,255,.15);
  --cs-cyan-glow:   rgba(0,200,255,.35);

  /* Accent — warm amber / gold */
  --cs-amber:       #c8780a;
  --cs-gold:        #e8a020;
  --cs-gold-dim:    rgba(232,160,32,.15);
  --cs-gold-glow:   rgba(232,160,32,.35);

  /* Accent — stage red */
  --cs-red:         #cc2211;
  --cs-red-dim:     rgba(204,34,17,.2);

  /* Text */
  --cs-text:        #d8dde6;
  --cs-text-muted:  #7a8498;
  --cs-text-dim:    #4a5268;
  --cs-white:       #f0f3f8;

  /* Typography */
  --font-display:   'Orbitron', sans-serif;
  --font-country:   'Playfair Display', serif;
  --font-body:      'Inter', sans-serif;

  /* Layout */
  --nav-h:          68px;
  --content-w:      1280px;
  --section-gap:    120px;
  --radius-sm:      6px;
  --radius-md:      14px;
  --radius-lg:      24px;

  /* Transitions */
  --ease:           cubic-bezier(.25,.46,.45,.94);
  --ease-spring:    cubic-bezier(.34,1.56,.64,1);
  --t-fast:         160ms;
  --t-mid:          320ms;
  --t-slow:         600ms;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cs-black);
  color: var(--cs-text);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
input, textarea, select { font: inherit; }
svg { display: block; }

/* ── Atmospheric Background ─────────────────────────────────────── */
.atm-bg {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.atm-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 35%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 20%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 45%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 70%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 80%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 55%, rgba(0,200,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 70%, rgba(255,255,255,.5) 0%, transparent 100%);
  animation: star-drift 60s linear infinite;
}
@keyframes star-drift {
  from { transform: translateY(0); }
  to   { transform: translateY(-60px); }
}
.atm-scan {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,200,255,.02) 50%,
    transparent 100%
  );
  animation: scan-line 8s ease-in-out infinite;
}
@keyframes scan-line {
  0%,100% { transform: translateY(-100%); opacity: 0; }
  50%      { transform: translateY(100%); opacity: 1; }
}
.atm-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
}

/* ── Navigation ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 900;
  transition: background var(--t-mid) var(--ease), backdrop-filter var(--t-mid) var(--ease);
}
.site-header.scrolled {
  background: rgba(8,10,14,.85);
  backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(0,200,255,.08);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.site-nav {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex; flex-direction: column;
  line-height: 1; flex-shrink: 0;
  gap: 1px;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: .15em;
  color: var(--cs-white);
}
.nav-logo-sub {
  font-family: var(--font-display);
  font-size: 8px; font-weight: 400;
  letter-spacing: .4em;
  color: var(--cs-cyan);
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em;
  color: var(--cs-text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 1px;
  background: var(--cs-cyan);
  transition: left var(--t-mid) var(--ease), right var(--t-mid) var(--ease);
  box-shadow: 0 0 8px var(--cs-cyan);
}
.nav-link:hover, .nav-link.active {
  color: var(--cs-white);
}
.nav-link:hover::after, .nav-link.active::after {
  left: 14px; right: 14px;
}
.nav-link.active { color: var(--cs-cyan); }
.nav-link-cta {
  background: var(--cs-cyan-dim);
  border: 1px solid rgba(0,200,255,.3);
  color: var(--cs-cyan) !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-link-cta:hover {
  background: rgba(0,200,255,.25);
  border-color: var(--cs-cyan);
  box-shadow: 0 0 20px var(--cs-cyan-glow);
}
.nav-link-cta::after { display: none; }

/* Toggle (mobile) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 7px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}
.nav-toggle-bar {
  display: block; width: 100%; height: 2px;
  background: var(--cs-text);
  transition: transform var(--t-mid) var(--ease), opacity var(--t-mid);
  border-radius: 2px;
}
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ─────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,10,14,.97);
  backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  color: var(--cs-text); font-size: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,.2);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.mobile-menu-close:hover { border-color: var(--cs-cyan); color: var(--cs-cyan); }
.mobile-menu-inner {
  text-align: center; position: relative;
}
.mm-orbit {
  position: absolute; top: 50%; left: 50%;
  width: 400px; height: 400px;
  margin: -200px 0 0 -200px;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,.06);
  animation: orbit-spin 20s linear infinite;
  pointer-events: none;
}
.mm-orbit-2 { width: 550px; height: 550px; margin: -275px 0 0 -275px; animation-duration: 35s; animation-direction: reverse; border-color: rgba(232,160,32,.04); }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.mobile-nav-links {
  display: flex; flex-direction: column; gap: 8px;
  position: relative; z-index: 2;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 900; letter-spacing: .15em;
  color: var(--cs-text-muted);
  padding: 10px 40px;
  transition: color var(--t-fast), text-shadow var(--t-fast);
  display: block;
}
.mobile-nav-link:hover { color: var(--cs-white); text-shadow: 0 0 30px rgba(0,200,255,.5); }
.mobile-nav-cta { color: var(--cs-cyan) !important; }
.mobile-social { margin-top: 32px; display: flex; gap: 20px; justify-content: center; }
.mobile-social-link { width: 40px; height: 40px; color: var(--cs-text-muted); transition: color var(--t-fast); }
.mobile-social-link:hover { color: var(--cs-cyan); }
.mobile-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.5);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-slow);
}
.mobile-overlay.show { opacity: 1; pointer-events: auto; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(60px, 8vh, 100px);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 20%;
  transform: scale(1.05);
  animation: hero-drift 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-drift {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.08) translateY(-20px); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,10,14,.75) 0%,
    rgba(8,10,14,.4) 40%,
    rgba(8,10,14,.8) 100%
  );
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--cs-black) 0%, transparent 100%);
}

/* HUD elements */
.hero-hud {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
}
.hud-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,.12);
  animation: orbit-spin 30s linear infinite;
}
.hud-orbit-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.hud-orbit-2 { width: 700px; height: 700px; top: -200px; right: -200px; animation-duration: 50s; animation-direction: reverse; border-color: rgba(232,160,32,.06); }
.hud-corner {
  position: absolute;
  width: 60px; height: 60px;
}
.hud-corner::before, .hud-corner::after {
  content: ''; position: absolute;
  background: var(--cs-cyan);
  opacity: .6;
}
.hud-corner-tl { top: calc(var(--nav-h) + 20px); left: 20px; }
.hud-corner-tl::before { top: 0; left: 0; width: 20px; height: 2px; }
.hud-corner-tl::after  { top: 0; left: 0; width: 2px; height: 20px; }
.hud-corner-br { bottom: 40px; right: 20px; }
.hud-corner-br::before { bottom: 0; right: 0; width: 20px; height: 2px; }
.hud-corner-br::after  { bottom: 0; right: 0; width: 2px; height: 20px; }
.hud-scanline {
  position: absolute; top: calc(var(--nav-h) + 10px); right: 30px;
  font-family: var(--font-display); font-size: 9px;
  color: rgba(0,200,255,.4); letter-spacing: .25em;
  writing-mode: vertical-rl;
}
.hud-waveform {
  position: absolute; bottom: 120px; right: 30px;
  display: flex; align-items: flex-end; gap: 3px;
  height: 40px; opacity: .3;
}
.hud-wave-bar {
  width: 3px; background: var(--cs-cyan);
  border-radius: 2px;
  animation: wave-idle 2.5s ease-in-out infinite;
}
.hud-wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.hud-wave-bar:nth-child(2) { height: 20px; animation-delay: .2s; }
.hud-wave-bar:nth-child(3) { height: 32px; animation-delay: .4s; }
.hud-wave-bar:nth-child(4) { height: 24px; animation-delay: .1s; }
.hud-wave-bar:nth-child(5) { height: 14px; animation-delay: .3s; }
.hud-wave-bar:nth-child(6) { height: 38px; animation-delay: .5s; }
.hud-wave-bar:nth-child(7) { height: 18px; animation-delay: .15s; }
.hud-wave-bar:nth-child(8) { height: 28px; animation-delay: .45s; }
@keyframes wave-idle {
  0%,100% { transform: scaleY(1); }
  50%      { transform: scaleY(.4); }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 3;
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 400;
  letter-spacing: .5em; color: var(--cs-cyan);
  margin-bottom: 16px;
  animation: fade-up .8s var(--ease) .2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: .95;
  color: var(--cs-white);
  text-transform: uppercase;
  animation: fade-up .8s var(--ease) .4s both;
}
.hero-title .line-1 {
  display: block;
  font-size: clamp(72px, 14vw, 180px);
  text-shadow: 0 0 80px rgba(0,200,255,.2);
}
.hero-title .line-2 {
  display: block;
  font-size: clamp(72px, 14vw, 180px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.6);
  text-stroke: 2px rgba(255,255,255,.6);
}
.hero-tagline {
  font-family: var(--font-country);
  font-style: italic; font-size: clamp(18px, 2.5vw, 28px);
  color: var(--cs-gold);
  margin-top: 20px;
  animation: fade-up .8s var(--ease) .6s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 40px;
  animation: fade-up .8s var(--ease) .8s both;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 11px;
  font-weight: 700; letter-spacing: .2em;
  padding: 16px 32px;
  position: relative; overflow: hidden;
  transition: all var(--t-mid) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--cs-cyan);
  color: var(--cs-black);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: #20d8ff;
  box-shadow: 0 0 40px var(--cs-cyan-glow), 0 8px 30px rgba(0,0,0,.4);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--cs-text);
  border: 1px solid rgba(255,255,255,.2);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.btn-secondary:hover {
  border-color: var(--cs-cyan);
  color: var(--cs-cyan);
  box-shadow: 0 0 20px var(--cs-cyan-dim);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--cs-cyan);
  border: 1px solid rgba(0,200,255,.3);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-ghost:hover { background: var(--cs-cyan-dim); border-color: var(--cs-cyan); }
.btn-amber {
  background: var(--cs-amber);
  color: var(--cs-white);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.btn-amber:hover { background: var(--cs-gold); box-shadow: 0 0 30px var(--cs-gold-glow); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm { padding: 10px 22px; font-size: 9px; }
.btn-lg { padding: 20px 44px; font-size: 12px; }

/* ── Section commons ─────────────────────────────────────────────── */
.section {
  position: relative; z-index: 1;
  padding: var(--section-gap) 0;
  overflow: hidden;
}
.section-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.section-header {
  margin-bottom: 60px;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: .5em;
  color: var(--cs-cyan); text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 16px;
}
.section-eyebrow::after {
  content: '';
  flex: 1; max-width: 80px;
  height: 1px; background: var(--cs-cyan);
  opacity: .4;
}
.section-title {
  font-family: var(--font-country);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1.1;
  color: var(--cs-white);
}
.section-title em { font-style: italic; color: var(--cs-gold); }
.section-body {
  font-size: 17px; color: var(--cs-text-muted);
  max-width: 640px; line-height: 1.75;
}

/* Diagonal section dividers */
.section-divider {
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px; overflow: hidden;
  line-height: 0;
}
.section-divider svg { display: block; width: 100%; height: 80px; }

/* ── Featured Song ───────────────────────────────────────────────── */
.featured-song {
  background: linear-gradient(135deg, rgba(13,15,20,.9), rgba(30,35,48,.8));
  border: 1px solid rgba(0,200,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.featured-song::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,200,255,.05) 0%, transparent 60%);
  pointer-events: none;
}
.featured-song-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 320px;
}
.featured-artwork-wrap {
  position: relative; flex-shrink: 0;
  width: clamp(240px, 30vw, 380px);
}
.featured-artwork {
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-artwork-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(13,15,20,.95) 100%);
}
.featured-label {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-size: 8px;
  letter-spacing: .4em; color: var(--cs-cyan);
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.3);
  padding: 6px 12px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.featured-info {
  padding: clamp(24px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 20px;
}
.featured-release-tag {
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .4em; color: var(--cs-gold);
  text-transform: uppercase;
}
.featured-title {
  font-family: var(--font-country);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700; color: var(--cs-white);
  line-height: 1.1;
}
.featured-desc {
  color: var(--cs-text-muted); font-size: 16px;
  line-height: 1.7; max-width: 440px;
}
.featured-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Music Player ────────────────────────────────────────────────── */
.cs-player {
  background: linear-gradient(135deg, rgba(19,22,28,.95), rgba(26,30,38,.95));
  border: 1px solid rgba(0,200,255,.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  position: relative; overflow: hidden;
}
.cs-player::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cs-cyan), transparent);
  opacity: .4;
}
.player-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.player-artwork {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0,200,255,.15);
}
.player-meta { flex: 1; min-width: 0; }
.player-title {
  font-family: var(--font-display); font-size: 11px;
  font-weight: 700; letter-spacing: .1em;
  color: var(--cs-white); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.player-artist {
  font-size: 11px; color: var(--cs-text-muted);
  margin-top: 2px; letter-spacing: .05em;
}
.player-controls {
  display: flex; align-items: center; gap: 20px;
}
.player-play-btn {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--cs-cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast) var(--ease);
  position: relative;
}
.player-play-btn::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,.3);
  transition: all var(--t-mid);
}
.player-play-btn:hover {
  background: #20d8ff;
  box-shadow: 0 0 30px var(--cs-cyan-glow);
  transform: scale(1.05);
}
.player-play-btn:hover::after { inset: -8px; opacity: 0; }
.player-play-btn svg { width: 20px; height: 20px; color: var(--cs-black); }
.player-play-btn.playing .icon-play { display: none; }
.player-play-btn:not(.playing) .icon-pause { display: none; }

.player-progress-wrap { flex: 1; }
.player-waveform {
  width: 100%; height: 32px;
  display: flex; align-items: center; gap: 2px;
  cursor: pointer; position: relative;
  margin-bottom: 6px;
}
.player-wave-bar {
  flex: 1; min-width: 2px;
  background: rgba(0,200,255,.15);
  border-radius: 2px;
  transition: background var(--t-fast), height var(--t-mid);
  position: relative;
}
.player-wave-bar.played { background: rgba(0,200,255,.6); }
.player-wave-bar.active { background: var(--cs-cyan); box-shadow: 0 0 8px var(--cs-cyan); }
.player-time-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-display); font-size: 9px;
  color: var(--cs-text-dim); letter-spacing: .1em;
}
.player-preview-badge {
  font-family: var(--font-display); font-size: 8px;
  letter-spacing: .3em; color: var(--cs-amber);
  background: rgba(200,120,10,.1);
  border: 1px solid rgba(200,120,10,.3);
  padding: 3px 8px; border-radius: var(--radius-sm);
}

/* Player streaming links */
.player-stream-links {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.player-stream-btn {
  font-family: var(--font-display); font-size: 8px;
  letter-spacing: .15em; padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); color: var(--cs-text-muted);
  transition: all var(--t-fast);
  display: flex; align-items: center; gap: 6px;
}
.player-stream-btn svg { width: 14px; height: 14px; }
.player-stream-btn:hover { border-color: var(--cs-cyan); color: var(--cs-cyan); }

/* ── Music Catalog ───────────────────────────────────────────────── */
.music-catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.song-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(19,22,28,.7), rgba(26,30,38,.5));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  transition: all var(--t-mid) var(--ease);
  cursor: pointer;
}
.song-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--cs-cyan);
  opacity: 0;
  transition: opacity var(--t-mid);
}
.song-card:hover {
  border-color: rgba(0,200,255,.2);
  box-shadow: 0 8px 60px rgba(0,0,0,.4), 0 0 40px rgba(0,200,255,.05);
  transform: translateY(-3px);
}
.song-card:hover::before { opacity: 1; }
.song-card.even { grid-template-columns: 1fr auto; }
.song-card.even .song-artwork-col { order: 2; }
.song-card.even .song-info { order: 1; }

.song-artwork-col {
  position: relative;
  width: clamp(160px, 22vw, 280px);
  overflow: hidden;
}
.song-artwork {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.song-card:hover .song-artwork { transform: scale(1.06); }
.song-artwork-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(13,15,20,.8) 100%);
}
.song-card.even .song-artwork-overlay {
  background: linear-gradient(270deg, transparent 50%, rgba(13,15,20,.8) 100%);
}
.song-num {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--font-display); font-size: 28px;
  font-weight: 900; color: rgba(255,255,255,.08);
  line-height: 1;
}
.song-card.even .song-num { left: auto; right: 12px; }

.song-info {
  padding: clamp(20px, 3vw, 36px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 12px;
}
.song-date {
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .4em; color: var(--cs-cyan); opacity: .7;
}
.song-title {
  font-family: var(--font-country);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700; color: var(--cs-white);
  line-height: 1.1;
}
.song-description {
  color: var(--cs-text-muted); font-size: 15px;
  line-height: 1.65; max-width: 480px;
}
.song-actions {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-top: 4px;
}
.song-play-btn {
  width: 44px; height: 44px;
  background: var(--cs-cyan-dim);
  border: 1px solid rgba(0,200,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.song-play-btn:hover, .song-play-btn.playing {
  background: var(--cs-cyan);
  box-shadow: 0 0 20px var(--cs-cyan-glow);
}
.song-play-btn:hover svg, .song-play-btn.playing svg { color: var(--cs-black); }
.song-play-btn svg { width: 18px; height: 18px; color: var(--cs-cyan); }
.song-stream-links { display: flex; gap: 8px; }
.song-stream-link {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cs-text-dim);
  transition: color var(--t-fast);
}
.song-stream-link svg { width: 18px; height: 18px; }
.song-stream-link:hover { color: var(--cs-white); }

/* ── Mini waveform in song card ──────────────────────────────────── */
.song-waveform {
  display: flex; align-items: flex-end; gap: 2px;
  height: 28px; margin-top: 4px;
  opacity: .3; transition: opacity var(--t-mid);
}
.song-card:hover .song-waveform, .song-card.active .song-waveform { opacity: 1; }
.song-waveform span {
  display: block; flex: 1;
  background: var(--cs-cyan); border-radius: 2px;
  transition: height var(--t-fast);
}
.song-card.active .song-waveform span {
  animation: wave-active 1s ease-in-out infinite;
}
@keyframes wave-active {
  0%,100% { transform: scaleY(.4); }
  50%      { transform: scaleY(1); }
}

/* ── About section ───────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,200,255,.05) 0%,
    transparent 50%,
    rgba(200,120,10,.08) 100%
  );
}
.about-frame-border {
  position: absolute; inset: 0;
  border: 1px solid rgba(0,200,255,.1);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  pointer-events: none;
}
.about-coord {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .2em; color: var(--cs-cyan);
  opacity: .6;
}
.about-hud-accent {
  position: absolute; top: -16px; right: -16px;
  width: 80px; height: 80px;
  border: 1px solid rgba(0,200,255,.15);
  border-radius: 50%;
}
.about-hud-accent::after {
  content: '';
  position: absolute; inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,.08);
}
.about-content {
  display: flex; flex-direction: column; gap: 28px;
}
.about-quote {
  font-family: var(--font-country);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--cs-gold);
  line-height: 1.4;
  padding-left: 24px;
  border-left: 3px solid var(--cs-amber);
}
.about-body {
  color: var(--cs-text-muted);
  font-size: 16px; line-height: 1.8;
}
.about-body p + p { margin-top: 16px; }
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.about-stat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.about-stat-label {
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .3em; color: var(--cs-text-dim);
  text-transform: uppercase; margin-bottom: 4px;
}
.about-stat-value {
  font-family: var(--font-display); font-size: 16px;
  font-weight: 700; color: var(--cs-white);
}

/* ── Gallery ─────────────────────────────────────────────────────── */
.gallery-masonry {
  columns: 3; column-gap: 20px;
}
.gallery-full { columns: 4; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-img {
  width: 100%; display: block;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t-mid);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 18px 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-inner { flex: 1; }
.gallery-caption {
  color: var(--cs-white); font-size: 13px;
  font-family: var(--font-display); letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-sub-caption {
  color: rgba(255,255,255,.65); font-size: 11px;
  margin-top: 2px; font-style: italic;
}
.gallery-zoom-icon {
  color: rgba(255,255,255,.7);
  flex-shrink: 0; margin-left: 8px;
  transition: color var(--t-fast);
}
.gallery-item:hover .gallery-zoom-icon { color: var(--cs-cyan); }

/* ── Lightbox ────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-mid);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-backdrop {
  position: absolute; inset: 0;
}
.lightbox-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  max-width: calc(100vw - 140px);
  max-height: 100vh;
}
.lightbox-img {
  max-width: 100%; max-height: calc(100vh - 110px);
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 80px rgba(0,0,0,.9);
  transition: opacity .2s;
  display: block;
}
.lightbox-img.loading { opacity: 0; }
.lightbox-meta {
  margin-top: 14px; text-align: center;
  min-height: 36px;
}
.lightbox-meta-title {
  color: var(--cs-white); font-family: var(--font-display);
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
}
.lightbox-meta-caption {
  color: var(--cs-text-muted); font-size: 12px;
  margin-top: 3px; font-style: italic;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 52px; height: 52px;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
  background: rgba(0,0,0,.4);
}
.lightbox-nav:hover { color: var(--cs-cyan); border-color: var(--cs-cyan); background: rgba(0,0,0,.7); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-toolbar {
  position: absolute; top: 16px; right: 16px;
  z-index: 3;
  display: flex; align-items: center; gap: 14px;
}
.lightbox-counter {
  color: rgba(255,255,255,.6);
  font-family: var(--font-display); font-size: 11px; letter-spacing: .15em;
}
.lightbox-close {
  width: 44px; height: 44px;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
  background: rgba(0,0,0,.4);
}
.lightbox-close:hover { border-color: var(--cs-cyan); color: var(--cs-cyan); }

/* ── Video Grid ──────────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.06);
  background: var(--cs-charcoal);
  transition: all var(--t-mid) var(--ease);
  cursor: pointer;
}
.video-card:hover {
  border-color: rgba(0,200,255,.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(0,0,0,.5);
}
.video-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3);
  transition: background var(--t-fast);
}
.video-card:hover .video-play-overlay { background: rgba(0,0,0,.1); }
.video-play-icon {
  width: 64px; height: 64px;
  background: rgba(0,200,255,.15);
  border: 2px solid rgba(0,200,255,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-mid);
  backdrop-filter: blur(4px);
}
.video-card:hover .video-play-icon {
  background: var(--cs-cyan);
  border-color: var(--cs-cyan);
  box-shadow: 0 0 30px var(--cs-cyan-glow);
}
.video-play-icon svg { width: 24px; height: 24px; color: var(--cs-white); margin-left: 4px; }
.video-card:hover .video-play-icon svg { color: var(--cs-black); }
.video-info { padding: 16px 20px; }
.video-title {
  font-family: var(--font-country); font-size: 18px;
  font-weight: 700; color: var(--cs-white);
  margin-bottom: 6px;
}
.video-date { font-size: 12px; color: var(--cs-text-dim); }

/* ── Contact Form ────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-block h3 {
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: .3em; color: var(--cs-cyan);
  margin-bottom: 8px;
}
.contact-info-block p { color: var(--cs-text-muted); font-size: 15px; }
.contact-category {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px;
}
.contact-cat-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  color: var(--cs-text-muted);
  font-size: 14px;
  transition: all var(--t-fast);
  cursor: pointer;
}
.contact-cat-btn:hover, .contact-cat-btn.active {
  border-color: rgba(0,200,255,.3);
  color: var(--cs-white);
  background: rgba(0,200,255,.05);
}
.contact-form-panel {
  background: linear-gradient(135deg, rgba(19,22,28,.8), rgba(26,30,38,.6));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .3em; color: var(--cs-text-muted);
  text-transform: uppercase; margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  color: var(--cs-white); font-size: 15px;
  padding: 14px 18px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(0,200,255,.4);
  box-shadow: 0 0 0 3px rgba(0,200,255,.08);
}
.form-select option { background: var(--cs-charcoal); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.honeypot { display: none !important; }
.form-captcha {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.form-captcha label {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .1em; color: var(--cs-text-muted);
  flex-shrink: 0;
}
.form-captcha .form-input {
  width: 80px; flex-shrink: 0;
  padding: 10px 14px;
}
.form-notice { font-size: 13px; color: var(--cs-text-dim); margin-top: 16px; }
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}
.form-msg.success { background: rgba(0,200,100,.1); border: 1px solid rgba(0,200,100,.3); color: #4dffa0; display: block; }
.form-msg.error   { background: rgba(200,34,17,.1);  border: 1px solid rgba(200,34,17,.3);  color: #ff8888; display: block; }

/* ── News ────────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.news-card {
  background: var(--cs-charcoal);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease);
}
.news-card:hover {
  border-color: rgba(0,200,255,.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(0,0,0,.4);
}
.news-card-img { aspect-ratio: 16/9; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 24px; }
.news-card-date {
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .3em; color: var(--cs-cyan); opacity: .7;
  margin-bottom: 10px;
}
.news-card-title {
  font-family: var(--font-country); font-size: 20px;
  font-weight: 700; color: var(--cs-white);
  line-height: 1.2; margin-bottom: 10px;
}
.news-card-excerpt { font-size: 14px; color: var(--cs-text-muted); line-height: 1.6; }
.news-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 12px; color: var(--cs-cyan); letter-spacing: .1em; font-family: var(--font-display); }

/* ── Section backgrounds ─────────────────────────────────────────── */
.section-dark {
  background: linear-gradient(180deg, var(--cs-charcoal) 0%, var(--cs-dark) 100%);
}
.section-deeper {
  background: var(--cs-black);
}
.section-panel {
  background: linear-gradient(135deg, rgba(19,22,28,.9), rgba(26,30,38,.8));
}
.section-bg-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.3) blur(2px);
  transform: scale(1.05);
  z-index: -1;
}

/* ── Follow / Stream section ─────────────────────────────────────── */
.stream-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  max-width: 800px;
}
.stream-platform-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 24px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  color: var(--cs-text-muted);
  transition: all var(--t-mid) var(--ease);
}
.stream-platform-btn svg { width: 36px; height: 36px; }
.stream-platform-btn span {
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .2em; text-transform: uppercase;
  text-align: center;
}
.stream-platform-btn:hover {
  background: rgba(0,200,255,.06);
  border-color: rgba(0,200,255,.25);
  color: var(--cs-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--cs-black);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 80px 0 0;
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px) 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 900;
  letter-spacing: .2em; color: var(--cs-white);
}
.footer-sub {
  font-family: var(--font-display);
  font-size: 9px; letter-spacing: .5em;
  color: var(--cs-cyan); margin-top: 2px;
}
.footer-tagline { color: var(--cs-text-muted); font-size: 13px; margin-top: 12px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  color: var(--cs-text-muted); font-size: 13px;
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--cs-white); }
.footer-stream-label {
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .4em; color: var(--cs-cyan);
  margin-bottom: 12px;
}
.footer-stream-links { display: flex; flex-direction: column; gap: 8px; }
.stream-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  color: var(--cs-text-muted); font-size: 12px;
  transition: all var(--t-fast);
}
.stream-btn svg { width: 18px; height: 18px; }
.stream-btn:hover { border-color: rgba(0,200,255,.2); color: var(--cs-white); }
.footer-social { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-social-link { width: 40px; height: 40px; color: var(--cs-text-muted); transition: color var(--t-fast); }
.footer-social-link:hover { color: var(--cs-cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 24px clamp(16px, 4vw, 48px);
  max-width: var(--content-w);
  margin: 0 auto;
}
.footer-bottom-inner {
  display: flex; align-items: center; gap: 24px;
}
.footer-copy { font-size: 12px; color: var(--cs-text-dim); }
.footer-legal { font-size: 12px; color: var(--cs-text-dim); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--t-fast); }
.footer-legal:hover { text-decoration-color: var(--cs-text-dim); }
.footer-hud-line {
  margin-top: 10px;
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .3em; color: var(--cs-text-dim);
  display: flex; gap: 12px; align-items: center;
}
.hud-sep { color: rgba(0,200,255,.3); }
.hud-coord, .hud-label { opacity: .5; }

/* ── Fade/reveal animations ──────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Utilities ───────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-cyan  { color: var(--cs-cyan); }
.text-gold  { color: var(--cs-gold); }
.text-white { color: var(--cs-white); }
.text-muted { color: var(--cs-text-muted); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.section-header.text-center .section-eyebrow::after { display: none; }
.section-header.text-center .section-eyebrow { justify-content: center; }

/* Panel / HUD card */
.hud-panel {
  background: linear-gradient(135deg, rgba(19,22,28,.8), rgba(26,30,38,.6));
  border: 1px solid rgba(0,200,255,.1);
  border-radius: var(--radius-md);
  position: relative; overflow: hidden;
}
.hud-panel::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,.3), transparent);
}

/* Loading spinner */
.spinner {
  width: 32px; height: 32px;
  border: 2px solid rgba(0,200,255,.2);
  border-top-color: var(--cs-cyan);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-img { animation: none; }
  .atm-stars { animation: none; }
  .atm-scan  { animation: none; }
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-gap: 90px; }
  .about-layout { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 480px; }
  .about-img-frame { aspect-ratio: 4/3; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 70px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .featured-song-inner { grid-template-columns: 1fr; }
  .featured-artwork-wrap { width: 100%; height: 220px; }
  .featured-artwork-overlay { background: linear-gradient(to top, rgba(13,15,20,.95) 0%, transparent 50%); }
  .song-card, .song-card.even {
    grid-template-columns: 1fr;
  }
  .song-card.even .song-artwork-col { order: 0; }
  .song-card.even .song-info { order: 1; }
  .song-artwork-col { width: 100%; height: 200px; }
  .gallery-masonry { columns: 2; }
  .gallery-full { columns: 2; }
  .lightbox-nav { display: none; }
  .lightbox-content { max-width: 96vw; }
  .lightbox-img { max-height: calc(100vh - 90px); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title .line-1, .hero-title .line-2 { font-size: clamp(56px, 18vw, 96px); }
  .stream-section-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .gallery-full { columns: 2; }
  .stream-section-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1400px) {
  .gallery-full { columns: 5; }
}
