/* =====================================================================
   SOUNDWAVE — Premium Musician / DJ / Producer Portfolio Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks. Offline-ready.
   NO external image files — every visual is a CSS gradient, inline SVG,
   Unicode/emoji, or a pure-CSS shape (album tiles, waveform motif).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the look by editing the CSS variables in :root
   below. Swap --accent / --accent2 for your own neon pair, adjust --bg
   and --surface to taste, and update the Google Fonts <link> in each
   HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:       #0a0712;            /* deep purple-black page background     */
  --surface:  #140e1f;            /* card / panel surface                  */
  --ink:      #f3eefb;            /* near-white text on dark               */
  --muted:    #9a90ad;            /* muted secondary text                  */
  --accent:   #b14bff;            /* neon purple (primary)                 */
  --accent2:  #ff3d81;            /* neon pink (secondary)                 */
  --line:     rgba(255,255,255,.09); /* hairline borders / dividers       */

  /* Convenience gradients */
  --grad:     linear-gradient(135deg, var(--accent), var(--accent2));
  --grad-soft:linear-gradient(135deg, rgba(177,75,255,.22), rgba(255,61,129,.22));

  /* --- Fonts --- */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 14px 40px rgba(0,0,0,.45);
  --glow:      0 10px 34px rgba(177,75,255,.45);
  --glow2:     0 10px 34px rgba(255,61,129,.4);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent2); }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 96px 0; }
.section--soft { background: linear-gradient(180deg, var(--surface), var(--bg)); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--split { display:flex; align-items:flex-end; justify-content:space-between; max-width:none; text-align:left; gap:24px; flex-wrap:wrap; }
.section-head--split p { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(177,75,255,.12);
  border: 1px solid rgba(177,75,255,.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.12rem; color: var(--ink); }
.muted { color: var(--muted); }

/* Gradient text accent */
.gtext {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover { color: #fff; box-shadow: 0 16px 44px rgba(255,61,129,.5); }

.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--ink); background: rgba(177,75,255,.1); }

.btn-light {
  background: #fff;
  color: #1b0e2b;
}
.btn-light:hover { color: #1b0e2b; box-shadow: 0 14px 34px rgba(255,255,255,.25); }

.btn-sm { padding: 9px 18px; font-size: .86rem; }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,7,18,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.24rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: var(--glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active::after {
  content: ""; display:block; height:2px; width:18px; margin:3px auto 0;
  background: var(--grad); border-radius: 2px;
}

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 520px at 85% -5%, rgba(255,61,129,.25), transparent 60%),
    radial-gradient(760px 540px at 5% 110%, rgba(177,75,255,.28), transparent 55%),
    var(--bg);
  padding: 96px 0 104px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero .lead { max-width: 520px; margin-bottom: 30px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-role {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .9rem;
  color: var(--accent2);
  margin-bottom: 12px;
}
.hero-meta { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--ink);
  display: block; line-height: 1;
}
.hero-meta div span { font-size: .88rem; color: var(--muted); }

/* Hero visual — pure-CSS album disc + waveform */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}
.disc {
  position: relative;
  width: clamp(240px, 32vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.05) 0 2px, transparent 2px 9px),
    conic-gradient(from 0deg, var(--accent), var(--accent2), var(--accent));
  box-shadow: var(--glow), 0 30px 70px rgba(0,0,0,.6);
  display: grid; place-items: center;
  animation: spin 14s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .disc { animation: none; } }
.disc::before {
  content: ""; position: absolute; inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #2a1838, #0a0712);
  border: 1px solid rgba(255,255,255,.12);
}
.disc::after {
  content: ""; position: absolute; width: 16%; aspect-ratio: 1;
  border-radius: 50%; background: var(--bg);
  border: 1px solid rgba(255,255,255,.16);
  z-index: 1;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-visual .play-fab {
  position: absolute; z-index: 2;
  width: 74px; height: 74px; border-radius: 50%;
  background: #fff; color: var(--accent);
  display: grid; place-items: center;
  font-size: 1.6rem; padding-left: 5px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}

/* Reusable CSS waveform motif */
.waveform { display: flex; align-items: flex-end; gap: 4px; height: 46px; }
.waveform i {
  flex: 1; min-width: 3px;
  background: var(--grad);
  border-radius: 3px;
  animation: wv 1.1s ease-in-out infinite;
}
.waveform i:nth-child(2n)  { animation-delay: .15s; }
.waveform i:nth-child(3n)  { animation-delay: .3s; }
.waveform i:nth-child(4n)  { animation-delay: .45s; }
.waveform i:nth-child(5n)  { animation-delay: .6s; }
@keyframes wv { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .waveform i { animation: none; transform: scaleY(.6); } }
.hero-wave { position: absolute; bottom: 0; left: 6%; right: 6%; height: 60px; opacity: .9; }

/* ---------------------------------------------------------------------
   STREAMING STRIP
   --------------------------------------------------------------------- */
.platforms { padding: 36px 0; border-bottom: 1px solid var(--line); }
.platforms p { text-align: center; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.platform-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 16px 40px;
}
.platform-strip span {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--muted); display: inline-flex; align-items: center; gap: 9px;
  transition: color var(--ease);
}
.platform-strip span:hover { color: var(--ink); }
.platform-strip .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--grad); }

/* ---------------------------------------------------------------------
   GRIDS / CARDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(177,75,255,.4); }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--grad-soft); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   RELEASE / ALBUM CARDS (gradient cover + play overlay)
   --------------------------------------------------------------------- */
.release-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.release {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.release:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,61,129,.4); }

.cover {
  position: relative;
  aspect-ratio: 1;
  display: grid; place-items: center;
  overflow: hidden;
}
.cover::after { /* subtle vinyl sheen */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120px 120px at 70% 25%, rgba(255,255,255,.22), transparent 60%);
  mix-blend-mode: screen;
}
.cover .emoji { font-size: 2.6rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); z-index: 1; }
.cover .play {
  position: absolute; z-index: 2;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: #1b0e2b;
  display: grid; place-items: center; font-size: 1.15rem; padding-left: 4px;
  opacity: 0; transform: scale(.8);
  transition: opacity var(--ease), transform var(--ease);
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.release:hover .cover .play { opacity: 1; transform: scale(1); }

/* Cover gradient variants — swap to rebrand */
.cv-1 { background: linear-gradient(135deg,#b14bff,#ff3d81); }
.cv-2 { background: linear-gradient(135deg,#7b2ff7,#f107a3); }
.cv-3 { background: linear-gradient(135deg,#ff3d81,#ff8a4b); }
.cv-4 { background: linear-gradient(135deg,#4b6bff,#b14bff); }
.cv-5 { background: linear-gradient(135deg,#00d4ff,#b14bff); }
.cv-6 { background: linear-gradient(135deg,#ff3d81,#b14bff); }
.cv-7 { background: linear-gradient(135deg,#23c552,#00d4ff); }
.cv-8 { background: linear-gradient(135deg,#ffcf4b,#ff3d81); }
.cv-9 { background: linear-gradient(135deg,#8a4bff,#3d6bff); }
.cv-10{ background: linear-gradient(135deg,#ff4b6b,#7b2ff7); }

.release-body { padding: 16px 18px 20px; }
.release-body h3 { font-size: 1.08rem; margin-bottom: 4px; }
.release-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--muted); font-family: var(--font-head);
}
.tag {
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent); background: rgba(177,75,255,.12);
  border: 1px solid rgba(177,75,255,.28);
  padding: 3px 9px; border-radius: 999px;
}

/* ---------------------------------------------------------------------
   FILTER BAR
   --------------------------------------------------------------------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 40px;
}
.chip {
  font-family: var(--font-head); font-weight: 500; font-size: .9rem;
  color: var(--muted); background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  padding: 9px 20px; border-radius: 999px; cursor: pointer;
  transition: all var(--ease);
}
.chip:hover { color: var(--ink); border-color: var(--accent); }
.chip.is-active { color: #fff; background: var(--grad); border-color: transparent; box-shadow: var(--glow); }

/* ---------------------------------------------------------------------
   NOW-PLAYING BAR
   --------------------------------------------------------------------- */
.now-playing {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px; align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 44px;
  box-shadow: var(--shadow);
}
.np-cover {
  width: 66px; height: 66px; border-radius: 12px;
  background: linear-gradient(135deg,#b14bff,#ff3d81);
  display: grid; place-items: center; font-size: 1.6rem;
  box-shadow: var(--glow);
}
.np-info .np-label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent2); font-family: var(--font-head); }
.np-info h3 { font-size: 1.18rem; margin: 2px 0 6px; }
.np-info .np-bar { height: 5px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; max-width: 420px; }
.np-info .np-bar i { display: block; height: 100%; width: 42%; background: var(--grad); border-radius: 999px; }
.np-controls { display: flex; align-items: center; gap: 14px; }
.np-controls .np-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid var(--line);
  color: var(--ink); display: grid; place-items: center; font-size: 1rem; cursor: pointer;
  transition: all var(--ease);
}
.np-controls .np-btn.main { background: var(--grad); border-color: transparent; box-shadow: var(--glow); padding-left: 3px; }
.np-controls .np-btn:hover { transform: scale(1.06); }
.np-controls .np-wave { width: 70px; }

/* ---------------------------------------------------------------------
   SPLIT (teaser / about media block)
   --------------------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 22px; min-height: 360px;
  background: radial-gradient(360px 280px at 70% 25%, rgba(255,61,129,.4), transparent 60%),
              linear-gradient(150deg, #2a1140, #120a1e);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  display: grid; place-items: center; color: #fff; padding: 32px; text-align: center;
}
.split-media .waveform { height: 70px; width: 70%; }

.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  font-weight: 700; box-shadow: var(--glow);
}
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(700px 400px at 50% -20%, rgba(177,75,255,.3), transparent 60%),
    linear-gradient(135deg, #1a0e2e, #0a0712);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat strong {
  font-family: var(--font-head); font-size: clamp(2.2rem, 4.5vw, 3.1rem);
  display: block; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { color: var(--muted); font-size: .95rem; }

/* ---------------------------------------------------------------------
   TOUR DATES
   --------------------------------------------------------------------- */
.tour-list { display: grid; gap: 14px; }
.tour-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 22px; align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.tour-row:hover { transform: translateX(6px); border-color: rgba(177,75,255,.4); box-shadow: var(--shadow); }
.tour-date { text-align: center; }
.tour-date .d { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; line-height: 1; }
.tour-date .m { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent2); }
.tour-venue h3 { font-size: 1.15rem; margin-bottom: 2px; }
.tour-venue p { margin: 0; color: var(--muted); font-size: .94rem; }
.tour-row.is-past { opacity: .62; }
.tour-row.is-past:hover { transform: none; }
.sold-out {
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  color: var(--muted); border: 1px solid var(--line); padding: 9px 18px; border-radius: 999px;
}

/* ---------------------------------------------------------------------
   TIMELINE (about milestones)
   --------------------------------------------------------------------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 30px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, var(--accent), var(--accent2));
}
.tl-item { position: relative; padding: 0 0 34px 30px; }
.tl-item::before {
  content: ""; position: absolute; left: -29px; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grad); box-shadow: var(--glow);
  border: 3px solid var(--bg);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-year { font-family: var(--font-head); font-weight: 700; color: var(--accent2); font-size: .95rem; }
.tl-item h3 { font-size: 1.15rem; margin: 2px 0 4px; }
.tl-item p { color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------------
   PRESS QUOTES
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 30px;
}
.quote-card blockquote {
  margin: 0 0 18px; font-size: 1.1rem; color: var(--ink);
  font-family: var(--font-head); font-weight: 500; line-height: 1.5;
}
.quote-card .src { font-family: var(--font-head); font-weight: 600; color: var(--accent2); font-size: .92rem; }
.quote-card .stars { color: var(--accent2); margin-bottom: 14px; letter-spacing: 2px; }

/* Skill / genre tags */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags li {
  font-family: var(--font-head); font-weight: 500; font-size: .9rem;
  color: var(--ink); background: rgba(255,255,255,.04);
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px;
}

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(500px 360px at 88% 12%, rgba(255,61,129,.45), transparent 60%),
    linear-gradient(135deg, #2a1140, #150a24);
  border: 1px solid var(--line);
  border-radius: 28px; padding: 60px 48px; text-align: center;
  box-shadow: var(--shadow);
}
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(620px 360px at 85% -25%, rgba(255,61,129,.28), transparent 60%),
    radial-gradient(560px 360px at 0% 120%, rgba(177,75,255,.28), transparent 55%),
    var(--bg);
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 10px; }
.page-banner p { max-width: 640px; color: var(--muted); margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head); font-size: .85rem; font-weight: 500;
  color: var(--muted); margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-head); font-weight: 500;
  font-size: .9rem; color: var(--ink); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #6f6582; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(177,75,255,.18);
}
.field select option { background: var(--surface); color: var(--ink); }
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #ff6b8a; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b8a; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none; margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm);
  background: rgba(35,197,82,.12); border: 1px solid rgba(35,197,82,.45);
  color: #6ef0a0; font-weight: 500;
}
.form-status.show { display: block; }

.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; margin-bottom: 22px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px;
  background: var(--grad-soft); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.25rem;
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: var(--muted); }

.link-list { display: grid; gap: 10px; }
.link-list a {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 18px; color: var(--ink); font-family: var(--font-head); font-weight: 500;
  transition: border-color var(--ease), transform var(--ease);
}
.link-list a:hover { border-color: var(--accent); transform: translateX(4px); }
.link-list .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--grad); }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #07040d;
  color: var(--muted);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: var(--muted); max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1rem; color: var(--ink);
  transition: background var(--ease), border-color var(--ease);
}
.social a:hover { background: var(--grad); border-color: transparent; color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .88rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: #fff; }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 300px; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(10,7,18,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .release-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media { order: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 26px; }
  .now-playing { grid-template-columns: auto 1fr; }
  .np-controls { grid-column: 1 / -1; justify-content: center; }
  .section-head--split { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .release-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tour-row { grid-template-columns: 64px 1fr; gap: 16px; padding: 18px; }
  .tour-row .btn, .tour-row .sold-out { grid-column: 1 / -1; justify-content: center; text-align: center; }
  .np-controls .np-wave { display: none; }
}
