/* SONIC WAN — artist landing page
   Dark + neon, single stylesheet, no build step. Tweak the CSS variables
   in :root to retheme. */

:root {
  --bg: #0a0a0f;
  --bg-elev: #12121a;
  --bg-elev-2: #1a1a25;
  --fg: #f2f2f5;
  --fg-muted: #9090a8;
  --neon: #c8ff00;
  --neon-2: #00e5ff;
  --border: #2a2a38;
  --radius: 14px;
  --max: 1100px;
  --font: "Inter", "Helvetica Neue", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: var(--neon); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--neon);
  color: #000;
  padding: 8px 12px;
  border-radius: 6px;
}
.skip:focus { left: 12px; top: 12px; z-index: 10; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 0;
  display: block;
  object-fit: contain;
  background: transparent;
}
.brand-name { font-size: 1.05rem; }
.site-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.site-nav a:hover { color: var(--fg); }

main { max-width: var(--max); margin: 0 auto; padding: 0 24px 80px; }

/* HERO */
.hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--neon);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.hero-title {
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.95;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
}
.hero-accent {
  color: var(--neon);
  text-shadow: 0 0 28px rgba(200, 255, 0, 0.35);
}
.hero-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 50ch;
  margin: 0 0 28px;
}
.hero-sub em { color: var(--fg); font-style: normal; font-weight: 600; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stats strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neon);
  letter-spacing: 0.02em;
}
.hero-stats span {
  color: var(--fg-muted);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}
.hero-art-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse at center,
    rgba(200, 255, 0, 0.22),
    transparent 65%
  );
  z-index: 0;
  filter: blur(24px);
  pointer-events: none;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--neon); color: #000; }
.btn-primary:hover { background: #d6ff33; }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); }

/* SECTIONS */
.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.section:last-of-type { border-bottom: none; }

.section-eyebrow {
  color: var(--neon);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0 0 8px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg);
  position: relative;
  padding-left: 14px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--neon);
  border-radius: 2px;
}
.section-title-offset { margin-top: 56px; }

/* FEATURED ALBUM */
.section-featured { padding-top: 80px; }
.featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.featured-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.featured-embed iframe { display: block; width: 100%; }

/* RELEASES GRID */
.releases {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.release {
  display: block;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.15s ease, transform 0.08s ease;
}
.release:hover {
  border-color: var(--neon);
  transform: translateY(-3px);
  text-decoration: none;
}
.release img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.release-meta { padding: 12px 14px 16px; }
.release-meta h3 {
  font-size: 1rem;
  margin: 0 0 4px;
  font-weight: 700;
}
.release-meta p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* SINGLES */
.singles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.singles a {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9rem;
  background: var(--bg-elev);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.singles a:hover {
  border-color: var(--neon);
  color: var(--neon);
  text-decoration: none;
}

/* VIDEO */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.muted { color: var(--fg-muted); }
.more { margin-top: 20px; }

/* CARD */
.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.about-card p { margin: 0 0 12px; }
.about-card p:last-child { margin-bottom: 0; }

/* CONTACT */
.contact p { margin: 0 0 16px; }
.socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.socials a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.socials a:hover {
  border-color: var(--neon);
  color: #000;
  background: var(--neon);
  text-decoration: none;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 24px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .hero-art { order: -1; }
  .hero-art { max-width: 280px; }
  .featured { grid-template-columns: 1fr; }
  .featured-cover { max-width: 280px; }
}
@media (max-width: 540px) {
  .site-header { padding: 12px 16px; }
  .site-nav { gap: 12px; font-size: 0.85rem; }
  main { padding: 0 16px 60px; }
  .hero { padding: 48px 0 40px; }
  .hero-stats { gap: 20px; }
  .section { padding: 48px 0; }
}
