/* ============================================================
   BassWar & CaoX – Liquid Glass Darkmode Design System v2.0
   Complete Redesign: Side-nav, Cinematic Hero, Card Stack,
   Premium Glass, Corner Releases, Contact Forms
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---- CSS VARIABLES ---- */
:root {
  /* Primary */
  --pink: #FF0090;
  --pink-glow: rgba(255, 0, 144, 0.4);
  --pink-dim: rgba(255, 0, 144, 0.15);
  --pink-glass: rgba(255, 0, 144, 0.08);
  --black: #050507;

  /* Surfaces (Glass – upgraded) */
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-mid: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-bright: rgba(255, 255, 255, 0.22);
  --glass-highlight: rgba(255, 255, 255, 0.08);
  --glass-blur: 24px;

  /* Text */
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.35);

  /* Spotify */
  --spotify-green: #1DB954;

  /* Feedback */
  --success: #1DB954;
  --error: #ff4466;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- BASE ---- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dim);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Body left padding for side-nav on desktop */
@media (min-width: 901px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  body {
    padding-left: 70px;
  }
}

/* ---- SECTION ---- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pink);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 40px;
}

/* ---- AMBIENT ORBS ---- */
.ambient-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--pink);
  opacity: 0.07;
  top: -10%;
  right: -10%;
  animation: orbFloat 20s ease-in-out infinite alternate;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: #ff0033;
  opacity: 0.06;
  bottom: 20%;
  left: -15%;
  animation: orbFloat 25s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: #ff0055;
  opacity: 0.06;
  top: 50%;
  right: 20%;
  animation: orbFloat 18s ease-in-out infinite alternate;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
  100% { transform: translate(50px, -20px) scale(1.02); }
}

/* ============================================================
   PREMIUM GLASS PANEL SYSTEM
   Multi-layered realistic liquid glass
   ============================================================ */
.glass-panel {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.8) brightness(1.05);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.8) brightness(1.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

/* Specular highlight edge */
.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  border-radius: 1px;
  pointer-events: none;
  z-index: 1;
}

.glass-panel:hover {
  border-color: var(--glass-border-bright);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.glass-panel-hover:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--pink-dim);
}

/* ============================================================
   SIDE NAVIGATION (Left-side glass strip)
   ============================================================ */
.side-nav {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  pointer-events: auto;
}

.side-nav-glass {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(28px) saturate(1.8) brightness(1.05);
  -webkit-backdrop-filter: blur(28px) saturate(1.8) brightness(1.05);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Specular highlight on glass strip */
.side-nav-glass::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  border-radius: 1px;
  pointer-events: none;
}

.side-nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-bottom: 4px;
}

.side-nav-logo img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 10px rgba(255, 0, 144, 0.35));
  transition: filter var(--transition);
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 0, 144, 0.3)); }
  50% { filter: drop-shadow(0 0 18px rgba(255, 0, 144, 0.6)); }
}

.side-nav-logo:hover img {
  filter: drop-shadow(0 0 20px rgba(255, 0, 144, 0.7));
}

.side-nav-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.side-nav-dot {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--transition);
  cursor: pointer;
  overflow: visible;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

.side-nav-dot:hover {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.side-nav-dot.active {
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink-glow);
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
}

/* Tooltip on hover */
.side-nav-tooltip {
  position: absolute;
  left: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  padding: 6px 14px;
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  /* Override parent text-indent */
  text-indent: 0;
  line-height: 1;
  display: block;
}

.side-nav-dot:hover .side-nav-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============================================================
   HERO SECTION
   Full-screen with cinematic tagline animation
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Liquid Glass Layer – visible magenta tint */
.hero-glass-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  backdrop-filter: blur(3px) saturate(1.8) brightness(0.85);
  -webkit-backdrop-filter: blur(3px) saturate(1.8) brightness(0.85);
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(255, 0, 144, 0.12) 0%,
    rgba(255, 0, 144, 0.05) 35%,
    rgba(255, 0, 144, 0.02) 60%,
    transparent 80%
  );
  /* NO mask-image – glass is visible across the full hero */
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 7, 0.2) 0%,
    rgba(5, 5, 7, 0.35) 40%,
    rgba(5, 5, 7, 0.8) 80%,
    var(--black) 100%
  );
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  perspective: 800px;
}

.hero-logo-wordmark {
  width: clamp(280px, 55vw, 520px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Cinematic tagline – fades in/out through glass depth */
.hero-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.3em;
  color: rgba(255, 0, 144, 0.75);
  animation: taglineCinematic 8s ease-in-out infinite;
  will-change: opacity, filter, transform;
}

@keyframes taglineCinematic {
  0%   { opacity: 0;   filter: blur(8px); transform: translateZ(-40px) scale(0.98); }
  15%  { opacity: 0.5; filter: blur(3px); transform: translateZ(-15px) scale(0.99); }
  30%  { opacity: 1;   filter: blur(0);   transform: translateZ(10px) scale(1.01); }
  50%  { opacity: 1;   filter: blur(0);   transform: translateZ(5px) scale(1); }
  70%  { opacity: 0.6; filter: blur(2px); transform: translateZ(-10px) scale(0.99); }
  85%  { opacity: 0.2; filter: blur(5px); transform: translateZ(-30px) scale(0.98); }
  100% { opacity: 0;   filter: blur(8px); transform: translateZ(-40px) scale(0.98); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  padding: 14px 32px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--pink);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 8px 30px var(--pink-glow);
}

.btn-outline {
  border: 1px solid var(--glass-border-bright);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--pink);
  background: var(--pink-dim);
  box-shadow: 0 6px 20px rgba(255, 0, 144, 0.15);
}

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
}

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--glass-border-bright);
  color: var(--text);
}

.btn-ticket {
  border: 1px solid var(--pink);
  color: var(--pink);
  background: transparent;
  font-size: 0.8rem;
  padding: 10px 24px;
}

.btn-ticket:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 6px 20px var(--pink-glow);
}

/* ============================================================
   ABOUT SECTION – Card Stack + Cutout
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-visual {
  position: relative;
  min-height: 500px;
}

/* Card Stack – 3 scattered event photos */
.about-card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.about-card {
  position: absolute;
  width: 62%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--glass-border);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-card-1 {
  top: 18%;
  left: 2%;
  transform: rotate(-7deg);
  z-index: 1;
}

.about-card-2 {
  top: 5%;
  left: 22%;
  transform: rotate(5deg);
  z-index: 2;
}

.about-card-3 {
  top: 22%;
  left: 14%;
  transform: rotate(-2deg);
  z-index: 3;
}

/* Hover: cards fan out */
.about-visual:hover .about-card-1 {
  transform: rotate(-10deg) translate(-8px, -4px);
}

.about-visual:hover .about-card-2 {
  transform: rotate(8deg) translate(8px, -6px);
}

.about-visual:hover .about-card-3 {
  transform: rotate(1deg) translate(2px, 4px);
}

/* Artist cutout floating on top */
.about-cutout {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 65%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

/* Text */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text p {
  color: var(--text-dim);
  line-height: 1.8;
}

/* ============================================================
   PERFORMANCE STATS – Premium Glass
   ============================================================ */
.stats-section {
  padding-top: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
}

/* Animated gradient sweep on stat cards */
.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 0, 144, 0.04) 50%,
    transparent 100%
  );
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.stat-card:hover::after {
  left: 100%;
}

.stat-card:hover {
  transform: perspective(600px) rotateY(2deg) rotateX(-1deg) translateY(-4px);
  box-shadow:
    inset 0 0 20px rgba(255, 0, 144, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 48px rgba(0, 0, 0, 0.4);
}

.stat-value {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffffff 20%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(255, 0, 144, 0.15);
}

.stat-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-top: 8px;
}

.stat-platforms {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stats-source {
  text-align: center;
  margin-top: 24px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.stats-source a {
  color: var(--pink);
  text-decoration: underline;
}

/* ============================================================
   RELEASES – Glass Corner Overlay (no text frame)
   ============================================================ */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.release-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}

.release-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.release-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.release-card:hover .release-cover img {
  transform: scale(1.06);
}

/* Glass corner overlay (top-right) */
.release-glass-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.08) 40%);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 6px 8px 0 0;
  gap: 4px;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.release-card:hover .release-glass-corner {
  opacity: 1;
}

.release-glass-corner svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  transition: transform var(--transition);
}

.release-glass-corner svg:hover {
  transform: scale(1.2);
}

/* ============================================================
   SHOWS SECTION
   ============================================================ */
.shows-bandsintown {
  min-height: 200px;
}

.shows-cta {
  margin-top: 24px;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  padding: 100px 0 60px;
}

.newsletter-box {
  position: relative;
  padding: 48px;
  text-align: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* Shimmer border */
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--pink) 10%,
    transparent 20%,
    transparent 80%,
    var(--pink) 90%,
    transparent 100%
  );
  animation: shimmerRotate 8s linear infinite;
  z-index: -1;
}

/* Override the glass-panel ::before for newsletter */
.newsletter-box.glass-panel::before {
  /* Keep shimmer, not specular highlight */
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  height: auto;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--pink) 10%,
    transparent 20%,
    transparent 80%,
    var(--pink) 90%,
    transparent 100%
  );
  animation: shimmerRotate 8s linear infinite;
}

.newsletter-box::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: calc(var(--radius-lg) - 1px);
  z-index: -1;
}

@keyframes shimmerRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.newsletter-desc {
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: var(--text);
  font-size: 0.85rem;
  transition: border-color var(--transition), background var(--transition);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  border-color: var(--pink);
}

.newsletter-submit {
  padding: 14px 28px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--pink-glow);
}

.newsletter-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 480px;
  margin: 16px auto 0;
  text-align: left;
}

.newsletter-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid var(--glass-border-bright);
  border-radius: 4px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
  margin-top: 2px;
}

.newsletter-consent input[type="checkbox"]:checked {
  background: var(--pink);
  border-color: var(--pink);
}

.newsletter-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.newsletter-consent label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.newsletter-consent a {
  color: var(--pink);
  text-decoration: underline;
}

.newsletter-message {
  margin-top: 16px;
  font-size: 0.85rem;
  min-height: 24px;
}

.newsletter-message.success {
  color: var(--success);
}

.newsletter-message.error {
  color: var(--error);
}

/* ============================================================
   CONTACT SECTION – Divider, Toggle Buttons, Forms
   ============================================================ */
.contact-section {
  padding: 0 0 100px;
}

/* Divider with B&C logo */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 0 48px;
}

.contact-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-bright), transparent);
}

.contact-divider-logo {
  width: 40px;
  height: 40px;
  opacity: 0.4;
  filter: drop-shadow(0 0 12px rgba(255, 0, 144, 0.2));
  transition: opacity var(--transition), filter var(--transition);
}

.contact-divider:hover .contact-divider-logo {
  opacity: 0.7;
  filter: drop-shadow(0 0 20px rgba(255, 0, 144, 0.4));
}

/* Toggle buttons */
.contact-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.contact-btn {
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--glass-border);
}

.contact-btn:hover {
  border-color: var(--glass-border-bright);
}

.contact-btn.active {
  border-color: var(--pink);
  background:
    linear-gradient(135deg, rgba(255,0,144,0.08) 0%, rgba(255,0,144,0.02) 100%);
  box-shadow:
    inset 0 0 20px rgba(255, 0, 144, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-btn-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.contact-btn-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Contact Forms */
.contact-form {
  display: none;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
  animation: formFadeIn 0.4s ease;
}

.contact-form.active {
  display: flex;
}

@keyframes formFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--pink);
  font-size: 0.9rem;
  transition: all 0.4s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

/* Magenta-to-white transition on focus */
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.4);
  color: #111;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.contact-form-message {
  font-size: 0.85rem;
  min-height: 24px;
}

.contact-form-message.success {
  color: var(--success);
}

.contact-form-message.error {
  color: var(--error);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-star {
  height: 28px;
  width: 28px;
  opacity: 0.7;
}

.footer-logo-wordmark {
  height: 18px;
  width: auto;
  opacity: 0.7;
}

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

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.footer-socials a:hover {
  background: var(--surface-hover);
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-copyright {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p {
  margin-bottom: 12px;
  color: var(--text-dim);
}

.legal-page a {
  color: var(--pink);
  text-decoration: underline;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-page ul li {
  list-style: disc;
  margin-bottom: 4px;
  color: var(--text-dim);
}

/* ============================================================
   EPK PAGE
   ============================================================ */
.epk-hero {
  padding-top: 80px;
  text-align: center;
}

.epk-hero .section-title {
  margin-bottom: 16px;
}

.epk-hero p {
  max-width: 600px;
  margin: 0 auto;
}

.epk-video {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  cursor: pointer;
}

.epk-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.epk-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.epk-video:hover .epk-video-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 40px var(--pink-glow);
}

.epk-downloads {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.epk-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.epk-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}

.epk-check-icon {
  color: var(--pink);
  font-size: 1rem;
}

.epk-check-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text);
}

/* ============================================================
   LINKTREE PAGE
   ============================================================ */
.linktree {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.linktree-header {
  text-align: center;
  margin-bottom: 32px;
}

.linktree-logo {
  width: 100px;
  margin: 0 auto 12px;
}

.linktree-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  letter-spacing: 0.04em;
}

.linktree-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pink);
  margin-top: 4px;
}

.linktree-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}

.linktree-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.linktree-link:hover {
  border-color: var(--pink);
  background: var(--pink-dim);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.linktree-link svg {
  width: 22px;
  height: 22px;
  fill: var(--pink);
  flex-shrink: 0;
}

.linktree-footer {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.linktree-footer a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

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

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.page-404-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 10rem);
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 20%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-404 h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text);
  margin-top: 8px;
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--text-dim);
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- TABLET (max 900px) ---- */
@media (max-width: 900px) {
  /* Side nav becomes bottom bar on mobile */
  .side-nav {
    left: 50%;
    top: auto;
    bottom: 16px;
    transform: translateX(-50%) translateY(0);
  }

  .side-nav-glass {
    flex-direction: row;
    padding: 12px 20px;
    gap: 14px;
    border-radius: 25px;
  }

  .side-nav-glass::before {
    top: 6px;
    left: 15%;
    right: 15%;
    bottom: auto;
  }

  .side-nav-dots {
    flex-direction: row;
    gap: 14px;
  }

  .side-nav-logo {
    margin-bottom: 0;
    margin-right: 4px;
  }

  .side-nav-tooltip {
    left: 50%;
    top: auto;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(4px);
  }

  .side-nav-dot:hover .side-nav-tooltip {
    transform: translateX(-50%) translateY(0);
  }

  body {
    padding-left: 0;
    padding-bottom: 72px; /* space for bottom nav */
  }

  .section {
    padding: 70px 0;
  }

  .container {
    padding: 0 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-visual {
    max-width: 380px;
    margin: 0 auto;
    min-height: 400px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-box {
    padding: 32px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .contact-toggle {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---- MOBILE (max 600px) ---- */
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .releases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .release-glass-corner {
    width: 44px;
    height: 44px;
    padding: 4px 5px 0 0;
  }

  .release-glass-corner svg {
    width: 14px;
    height: 14px;
  }

  .hero-logo-wordmark {
    width: clamp(220px, 70vw, 320px);
  }

  .about-card {
    width: 58%;
  }

  .about-cutout {
    width: 55%;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .epk-checklist {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---- Utility ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-pink { color: var(--pink); }
.text-gradient {
  background: linear-gradient(180deg, #ffffff 30%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
