/* ===================================================================
   SEDA — Demo Site (v2 — Eric's feedback round 1)
   =================================================================== */

:root {
  --bg: #050a14;
  --bg-2: #0a1530;
  --bg-3: #1e3a6b;
  --primary: #3b7fd9;
  --primary-light: #4fa3e8;
  --violet: #5b4f8a;
  --text: #d9eeff;
  --text-frost: #f0faff;
  --text-muted: #6b8aa8;
  --border-line: rgba(217, 238, 255, 0.12);

  --font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont,
                  'Helvetica Neue', 'Segoe UI', sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI',
                  Inter, system-ui, sans-serif;

  --max-content: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: default;
  position: relative;
}

/* ====== AMBIENT GLOBAL DARK-ICE BACKGROUND ====== */
/* Sits behind everything, fixed in viewport, large tile, low opacity.
   NO mix-blend-mode — that breaks position:fixed on iOS Safari + causes scroll bug. */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background-image: url('../assets/img/textures/dark-ice-texture.png');
  background-size: 1800px 1800px;
  background-repeat: repeat;
  background-position: center center;
  opacity: 0.18;
  pointer-events: none;
  /* Promote to its own GPU layer so iOS keeps it locked */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

/* All page content sits above the global texture */
nav.top, main, footer.bottom, .float-cta, .modal-backdrop {
  position: relative;
  z-index: 1;
}

/* ====== Navigation ====== */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: rgba(5, 10, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-line);
  transition: padding 0.3s ease, background 0.3s ease;
}
nav.top.scrolled { padding: 0.7rem 2rem; background: rgba(5, 10, 20, 0.9); }
nav.top .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
nav.top .brand img {
  height: 42px; /* was 28 — bigger logo */
  width: auto;
  filter: invert(1) drop-shadow(0 0 12px rgba(75, 163, 232, 0.4));
  transition: filter 0.3s ease;
  display: block;
  vertical-align: middle;
}
nav.top.scrolled .brand img { height: 34px; }
nav.top .brand:hover img { filter: invert(1) drop-shadow(0 0 20px rgba(75, 163, 232, 0.7)); }

/* DEMO badge — red pill in the nav */
.demo-badge {
  background: #ff3344;
  color: white;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  vertical-align: middle;
  user-select: none;
  box-shadow: 0 0 16px rgba(255, 51, 68, 0.45);
}
.demo-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  animation: demoBlink 1.4s infinite;
}
@keyframes demoBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@media (max-width: 720px) {
  nav.top .brand img { height: 34px; }
  nav.top.scrolled .brand img { height: 28px; }
  .demo-badge { font-size: 0.5rem; padding: 0.25rem 0.5rem; }
}

nav.top .links {
  display: flex; gap: 2.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
nav.top .links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
nav.top .links a:hover { color: var(--text-frost); }
nav.top .links a::after {
  content: ''; position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px; background: var(--primary-light);
  transition: width 0.3s ease;
}
nav.top .links a:hover::after { width: 100%; }

.cta-mini {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  padding: 0.6rem 1.3rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(75, 163, 232, 0.35);
  font-family: inherit;
}
.cta-mini:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(75, 163, 232, 0.55);
}

@media (max-width: 720px) {
  nav.top { padding: 0.9rem 1.2rem; }
  nav.top .links { display: none; }
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 6rem;
}

/* Hero photo — Ice3 (Reza on the right, rocky cliff on the left) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/press/hero-falls.jpg');
  background-size: cover;
  background-position: 65% 22%; /* push focal point UP so head/face don't crop on wide viewports */
  z-index: 1;
  /* Feather hero photo at the bottom — bleeds into global dark-ice texture */
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
}
@media (max-width: 720px) {
  .hero-bg { background-position: 70% 30%; }
}

/* Dark gradient on the LEFT side for text legibility */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    /* Strong left-side darkening for text */
    linear-gradient(to right, rgba(5, 10, 20, 0.85) 0%, rgba(5, 10, 20, 0.55) 35%, rgba(5, 10, 20, 0.15) 60%, transparent 80%),
    /* Bottom fade */
    linear-gradient(to bottom, transparent 50%, rgba(5, 10, 20, 0.65) 90%, var(--bg) 100%);
}

/* Frost atmosphere — extends below the hero so it bleeds into next section.
   Mask only renders the lower half + bleed (top half stays clear over Reza's face). */
.hero-atmosphere {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 118vh;
  pointer-events: none;
  z-index: 2;
  background-image: url('../assets/img/textures/blue-ice-crystals.png');
  background-size: 1800px 1800px;
  background-repeat: repeat;
  background-position: center 0;
  mix-blend-mode: screen;
  opacity: 0.45;
  will-change: background-position;
  /* Top half clear, mid section visible, bleed below hero fades out */
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%, transparent 38%,
    black 55%, black 75%,
    transparent 100%);
  mask-image: linear-gradient(to bottom,
    transparent 0%, transparent 38%,
    black 55%, black 75%,
    transparent 100%);
}
@media (max-width: 720px) {
  .hero-atmosphere {
    background-size: 1200px 1200px;
    opacity: 0.55;
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 720px;
  width: 100%;
  text-align: left;
}
.hero-logo {
  width: clamp(260px, 42vw, 560px);
  height: auto;
  filter: invert(1) drop-shadow(0 0 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 80px rgba(75, 163, 232, 0.45));
  margin-bottom: 1.8rem;
  user-select: none;
  -webkit-user-drag: none;
  display: block;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-frost);
  font-weight: 400;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 0 30px rgba(75, 163, 232, 0.4);
}
.hero-sub {
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(217, 238, 255, 0.75);
  margin-bottom: 2.6rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
  max-width: 28em;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  padding: 1.1rem 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(75, 163, 232, 0.4), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(75, 163, 232, 0.6), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.hero-cta .arrow { transition: transform 0.3s ease; }
.hero-cta:hover .arrow { transform: translateX(4px); }

.scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); }
}

/* ====== Generic content sections ====== */
section.content {
  position: relative;
  padding: 8rem 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
}
section.content > h2,
section.content > .reveal > h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text-frost);
  margin-bottom: 0.5rem;
  line-height: 1;
}
section.content .eyebrow,
section.content .reveal .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1rem;
  font-weight: 500;
}
.lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 42rem;
  margin-top: 1.5rem;
}

/* ====== About section ====== */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about .text { padding-right: 1rem; }
.about .photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background-image: url('../assets/img/press/icicles.jpg');
  background-size: cover;
  background-position: center;
  /* Tight edge fade — blends photo into surrounding dark texture */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  /* drop-shadow follows the masked alpha — soft glow instead of hard rectangle */
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.5));
}
/* Subtle frost crystal overlay — no parallax, just static texture */
.about .photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/img/textures/blue-ice-crystals.png');
  background-size: 700px 700px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.20;
  pointer-events: none;
}
.about .photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(5, 10, 20, 0.45) 100%);
  pointer-events: none;
}
.about ul.accolades {
  list-style: none;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-line);
}
.about ul.accolades li { margin-bottom: 0.4rem; color: var(--text-muted); font-size: 0.95rem; }
.about ul.accolades li strong { color: var(--text-frost); font-weight: 500; }
.about .accolades-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.8rem;
}

@media (max-width: 920px) {
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about .photo { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ====== Mid-page parallax band — restructured ====== */
/* No dark-ice base layer (global bg already covers that).
   Uses crystals + psyche overlay with stronger edge feathering. */
.band {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  contain: paint;
  margin: 4rem 0;
}
.band .layer {
  position: absolute;
  pointer-events: none;
  background-repeat: repeat;
  background-position: center 0;
  will-change: background-position;
}
/* Layer A — fills the band, stronger feathering so it fades into global dark-ice.
   Slight horizontal extension to overflow band edges. */
.band .layer-a {
  inset: 0 -3%;
  background-image: url('../assets/img/textures/blue-ice-crystals.png');
  background-size: 1280px 1280px;
  --fx: 16%; --fy: 22%;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black var(--fx), black calc(100% - var(--fx)), transparent 100%),
    linear-gradient(to bottom, transparent 0%, black var(--fy), black calc(100% - var(--fy)), transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black var(--fx), black calc(100% - var(--fx)), transparent 100%),
    linear-gradient(to bottom, transparent 0%, black var(--fy), black calc(100% - var(--fy)), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  opacity: 0.65;
  mix-blend-mode: screen;
}
/* Layer B — extended outward (especially mobile) for more presence */
.band .layer-b {
  inset: 50px 6%;
  background-image: url('../assets/img/textures/psyche-overlay.png');
  background-size: 1100px 1100px;
  --fx: 18%; --fy: 26%;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black var(--fx), black calc(100% - var(--fx)), transparent 100%),
    linear-gradient(to bottom, transparent 0%, black var(--fy), black calc(100% - var(--fy)), transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black var(--fx), black calc(100% - var(--fx)), transparent 100%),
    linear-gradient(to bottom, transparent 0%, black var(--fy), black calc(100% - var(--fy)), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  opacity: 0.50;
  mix-blend-mode: screen;
}
@media (max-width: 720px) {
  .band .layer-b { inset: 30px 2%; --fx: 12%; --fy: 20%; }
}

/* Borders — significantly bigger on both mobile + desktop */
.band .border {
  position: absolute;
  top: 8%; bottom: 8%;
  width: clamp(280px, 34vw, 600px); /* mobile 280 → desktop 600 (was 220→460) */
  background-image: url('../assets/img/borders/border-2-r.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  will-change: background-position;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  pointer-events: none;
  opacity: 0.85;
}
.band .border-l { left: -20px; transform: scaleX(-1); }
.band .border-r { right: -20px; }
/* Static frost crystal texture overlay on borders — no parallax */
.band .border::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/textures/blue-ice-crystals.png');
  background-size: 600px 600px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.18;
  pointer-events: none;
}

/* Quote inside the band — properly capitalized + visible SEDA wordmark */
.band .quote {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
  z-index: 5;
}
.band .quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  letter-spacing: -0.005em;
  font-weight: 300;
  font-style: italic;
  color: var(--text-frost);
  max-width: 36rem;
  line-height: 1.35;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.95), 0 0 60px rgba(0, 0, 0, 0.6);
}
.band .quote-attr {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.band .quote-attr .dash {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-light), transparent);
}
.band .quote-attr img {
  height: clamp(28px, 5vw, 44px);
  width: auto;
  filter: invert(1) drop-shadow(0 2px 20px rgba(0, 0, 0, 0.9));
}

/* ====== Music section ====== */
.music .release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.release {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  border: 1px solid var(--border-line);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.release:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: 0 18px 40px rgba(75, 163, 232, 0.25);
}
.release-art {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
}
/* Placeholder gradient for releases without real cover art */
.release-art.placeholder {
  background:
    radial-gradient(circle at 50% 30%, rgba(75, 163, 232, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #0a1530 0%, #1e3a6b 50%, #5b4f8a 100%);
}
.release-art.placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/img/textures/dark-ice-texture.png');
  background-size: 250px 250px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.55;
}
.release-info {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(5, 10, 20, 0.92) 0%, rgba(5, 10, 20, 0.4) 35%, transparent 60%);
  z-index: 2;
}
.release-info .title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-frost);
  letter-spacing: -0.01em;
}
.release-info .year {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.release-info .play-cue {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(5, 10, 20, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-frost);
  border: 1px solid rgba(217, 238, 255, 0.18);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.release:hover .play-cue {
  opacity: 1;
  transform: scale(1);
  background: rgba(75, 163, 232, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}

.platforms {
  display: flex; flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-line);
}
.platform-link {
  padding: 0.9rem 1.6rem;
  background: var(--bg-2);
  border: 1px solid var(--border-line);
  border-radius: 2px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.platform-link:hover {
  border-color: var(--primary-light);
  color: var(--text-frost);
  background: var(--bg-3);
}

/* ====== Shows section — empty state ====== */
.shows-section {
  position: relative;
  padding: 8rem 2rem;
  background: var(--bg);
  overflow: hidden;
}
.shows-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/img/live/live-wide.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.50;
  z-index: 0;
  /* Soft fade on all four edges so it blends into the dark texture */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.shows-section::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(5, 10, 20, 0.6) 65%, var(--bg) 100%),
    linear-gradient(to bottom, rgba(5, 10, 20, 0.45) 0%, transparent 25%, transparent 75%, rgba(5, 10, 20, 0.7) 100%);
  z-index: 1;
}
/* Side accent borders running along the shows section */
.shows-section .accent-border {
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(150px, 18vw, 320px);
  background-image: url('../assets/img/borders/border-1-r.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}
.shows-section .accent-border.left  { left: -20px; transform: scaleX(-1); }
.shows-section .accent-border.right { right: -20px; }
/* Static frost crystal texture overlay on shows-section borders — no parallax.
   Strong on the OUTER edge (touching screen edge), drops off quickly inward.
   Single mask works for both sides because scaleX(-1) on left flips it correctly. */
.shows-section .accent-border::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/textures/blue-ice-crystals.png');
  background-size: 420px 420px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 40%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 40%, black 100%);
}
.shows-inner {
  position: relative; z-index: 2;
  max-width: var(--max-content);
  margin: 0 auto;
}

/* Empty-state card for "no upcoming shows yet" — styled like a glass panel */
.shows-empty {
  margin-top: 3rem;
  padding: 4rem 2.5rem;
  border: 1px solid rgba(75, 163, 232, 0.25);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(10, 21, 48, 0.75) 0%, rgba(30, 58, 107, 0.45) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(217, 238, 255, 0.04);
}
.shows-empty::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/img/textures/blue-ice-crystals.png');
  background-size: 600px 600px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.10;
  pointer-events: none;
}
.shows-empty > * { position: relative; z-index: 1; }
.shows-empty .pulse-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--primary-light);
  border-radius: 50%;
  margin-right: 0.6rem;
  vertical-align: middle;
  animation: pulse 2s infinite;
  box-shadow: 0 0 12px var(--primary-light);
}
.shows-empty h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text-frost);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.shows-empty p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.shows-empty .cta-mini {
  font-size: 0.7rem;
  padding: 0.95rem 1.8rem;
}

/* Past highlights below empty state */
.shows-highlights {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-line);
}
.shows-highlights h4 {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}
.highlight-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.highlight {
  padding: 1.2rem 1.4rem;
  background: rgba(10, 21, 48, 0.35);
  border: 1px solid var(--border-line);
  border-radius: 2px;
}
.highlight .role {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.4rem;
}
.highlight .name { font-size: 0.95rem; color: var(--text-frost); font-weight: 500; }
.highlight .meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ====== Contact section — REDESIGNED with clear cards ====== */
.contact-section {
  position: relative;
  padding: 8rem 2rem;
  max-width: var(--max-content);
  margin: 0 auto;
}
.contact-section .header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.contact-section .header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--text-frost);
  letter-spacing: -0.02em;
  line-height: 1;
}
.contact-section .header .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1rem;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.contact-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(10, 21, 48, 0.55);
  border: 1px solid var(--border-line);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-card:hover { border-color: var(--primary-light); transform: translateY(-2px); }
.contact-card .label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-frost);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.contact-card .desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.contact-card .email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}
.contact-card .email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(75, 163, 232, 0.45);
}
.contact-card .email-btn .arrow { transition: transform 0.3s ease; }
.contact-card .email-btn:hover .arrow { transform: translateX(4px); }
.contact-card .email-display {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: monospace;
  letter-spacing: 0.02em;
}

.socials {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.social-link {
  padding: 0.7rem 1.1rem;
  background: rgba(5, 10, 20, 0.45);
  border: 1px solid var(--border-line);
  border-radius: 2px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.social-link:hover { border-color: var(--primary-light); color: var(--text-frost); background: var(--bg-3); }

@media (max-width: 720px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ====== Footer ====== */
footer.bottom {
  border-top: 1px solid var(--border-line);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
footer.bottom strong { color: var(--text); }
footer.bottom .footer-tagline {
  margin-top: 0.6rem;
  font-size: 0.65rem;
}
footer.bottom .footer-legal {
  margin-top: 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}
footer.bottom .footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.bottom .footer-legal a:hover { color: var(--primary-light); }
footer.bottom .footer-legal .sep {
  color: rgba(217, 238, 255, 0.2);
  margin: 0 0.6rem;
}

/* ====== Floating CTA ====== */
.float-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 40;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  font-family: inherit;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(75, 163, 232, 0.5);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.float-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(75, 163, 232, 0.7);
}
.float-cta::before {
  content: '';
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
@media (max-width: 720px) {
  .float-cta { bottom: 1.2rem; right: 1.2rem; padding: 0.85rem 1.2rem; font-size: 0.65rem; }
}

/* ====== Modals — base styles shared by signup + release ====== */
.modal-backdrop {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(5, 10, 20, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}
.modal-backdrop.open { display: flex; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

.modal {
  position: relative;
  background: rgba(10, 21, 48, 0.88);
  border: 1px solid rgba(217, 238, 255, 0.18);
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(75, 163, 232, 0.12);
  overflow: hidden;
  animation: slideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }

.modal::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/img/textures/blue-ice-crystals.png');
  background-size: 600px 600px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  opacity: 0.08;
  pointer-events: none;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 5;
  background: rgba(5, 10, 20, 0.5);
  border: 1px solid var(--border-line);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}
.modal-close:hover { color: var(--text-frost); border-color: var(--primary-light); }

/* Signup modal specifics */
.signup-modal { width: 100%; max-width: 480px; padding: 2.5rem; }
.signup-modal h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-frost);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.signup-modal .eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.8rem;
}
.signup-modal .pitch {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.signup-modal form .field { position: relative; margin-bottom: 0.9rem; }
.signup-modal form input {
  width: 100%;
  padding: 0.95rem 1rem;
  background: rgba(5, 10, 20, 0.5);
  border: 1px solid var(--border-line);
  border-radius: 2px;
  color: var(--text-frost);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.signup-modal form input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(5, 10, 20, 0.8);
}
.signup-modal form input::placeholder { color: var(--text-muted); letter-spacing: 0.05em; }
/* Custom-styled consent checkboxes — TCPA-compliant capture */
.signup-modal form .consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.6rem 0;
  cursor: pointer;
  user-select: none;
}
.signup-modal form .consent + .consent {
  border-top: 1px solid rgba(217, 238, 255, 0.06);
}
.signup-modal form .consent input[type="checkbox"] {
  position: absolute;
  width: 0; height: 0;
  opacity: 0;
}
.signup-modal form .consent .check-box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(217, 238, 255, 0.35);
  border-radius: 3px;
  background: rgba(5, 10, 20, 0.5);
  transition: background 0.18s ease, border-color 0.18s ease;
  display: flex; align-items: center; justify-content: center;
}
.signup-modal form .consent .check-box svg {
  width: 12px; height: 12px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.signup-modal form .consent input:checked + .check-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary-light);
}
.signup-modal form .consent input:checked + .check-box svg {
  opacity: 1;
  transform: scale(1);
}
.signup-modal form .consent input:focus-visible + .check-box {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}
.signup-modal form .consent .consent-text {
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: 0.02em;
}
.signup-modal form .consent .ch-label {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  margin-right: 0.5rem;
  background: rgba(75, 163, 232, 0.18);
  color: var(--primary-light);
  vertical-align: 1px;
}

.signup-modal form .submit {
  width: 100%;
  margin-top: 0.6rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}
.signup-modal form .submit:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(75, 163, 232, 0.5); }
.signup-modal .legal {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.55;
}
.signup-modal .legal a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.signup-modal .legal a:hover { color: var(--text-frost); }
.signup-modal .success { display: none; text-align: center; padding: 1rem 0; }
.signup-modal .success.show { display: block; }
.signup-modal .success .check {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--primary-light);
  animation: checkPop 0.5s cubic-bezier(0.2, 1.6, 0.5, 1);
}
@keyframes checkPop { from { transform: scale(0); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.signup-modal .success p { color: var(--text); font-size: 1rem; }

/* Release modal — smart link / per-track listen */
.release-modal { width: 100%; max-width: 560px; }
.release-modal-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}
.release-modal-content .cover {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  position: relative;
}
.release-modal-content .cover.placeholder {
  background:
    radial-gradient(circle at 50% 30%, rgba(75, 163, 232, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #0a1530 0%, #1e3a6b 50%, #5b4f8a 100%);
}
.release-modal-content .info { padding: 2rem 1.8rem; }
.release-modal-content .info .eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.6rem;
}
.release-modal-content .info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-frost);
  margin-bottom: 0.3rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.release-modal-content .info .meta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.release-modal-content .links {
  display: flex; flex-direction: column;
  gap: 0.5rem;
}
.release-modal-content .play-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  background: rgba(5, 10, 20, 0.55);
  border: 1px solid var(--border-line);
  border-radius: 2px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.release-modal-content .play-link:hover {
  border-color: var(--primary-light);
  color: var(--text-frost);
  background: var(--bg-3);
  transform: translateX(2px);
}
.release-modal-content .play-link .icon {
  font-size: 0.7rem;
  color: var(--primary-light);
  width: 12px; text-align: center;
}

@media (max-width: 600px) {
  .release-modal-content { grid-template-columns: 1fr; }
  .release-modal-content .cover { aspect-ratio: 16 / 10; }
}

/* ====== Click ice spike ====== */
.click-spike {
  position: fixed;
  pointer-events: none;
  z-index: 30;
  transform-origin: center;
  filter: drop-shadow(0 0 6px rgba(120, 200, 255, 0.45));
  animation: spike-form 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0.7; /* less prominent (was 1) */
}
@keyframes spike-form {
  0%   { opacity: 0; transform: translate(-50%, -50%) rotate(var(--rot)) scale(0); }
  18%  { opacity: 0.75; transform: translate(-50%, -50%) rotate(var(--rot)) scale(1.18); }
  35%  { opacity: 0.7; transform: translate(-50%, -50%) rotate(var(--rot)) scale(1.0); }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--rot)) scale(1.0); }
}

/* ====== DEMO MODE controls (perf comparison) ====== */
.demo-controls {
  position: fixed;
  top: 84px; left: 1rem;
  z-index: 90;
  background: rgba(10, 21, 48, 0.92);
  border: 1px solid rgba(255, 51, 68, 0.4);
  border-radius: 4px;
  padding: 0.7rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  user-select: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.demo-controls .demo-header {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: #ff3344;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 51, 68, 0.25);
}
.demo-controls label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0;
  cursor: pointer;
  font-size: 0.7rem;
  color: var(--text);
}
.demo-controls input[type="checkbox"] {
  accent-color: #ff3344;
  width: 14px; height: 14px;
}
@media (max-width: 720px) {
  .demo-controls { top: 68px; font-size: 0.62rem; padding: 0.5rem 0.7rem; }
  .demo-controls label { font-size: 0.62rem; }
}

/* When parallax is disabled, ensure layers are static (transform/bg-pos already
   reset by JS; this just locks any will-change ghosts) */
body.no-parallax .layer,
body.no-parallax .hero-atmosphere {
  background-position-y: 0 !important;
}

/* When blend modes are disabled, force normal compositing everywhere.
   The textures have alpha so they should still stack visually. */
body.no-blends .hero-atmosphere,
body.no-blends .band .layer-a,
body.no-blends .band .layer-b,
body.no-blends .band .border::after,
body.no-blends .shows-section .accent-border::after,
body.no-blends .shows-empty::before,
body.no-blends .about .photo::before,
body.no-blends .modal::before,
body.no-blends .shimmer::after {
  mix-blend-mode: normal !important;
}

/* ====== Cursor-follow shimmer ====== */
/* Soft radial highlight that tracks the cursor over surfaces.
   --shx and --shy CSS variables are set by JS on mousemove. */
.shimmer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 280px at var(--shx, 50%) var(--shy, 50%),
    rgba(120, 200, 255, 0.22) 0%,
    rgba(75, 163, 232, 0.10) 25%,
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 5;
  mix-blend-mode: screen;
}
.shimmer:hover::after { opacity: 1; }
@media (hover: none) and (pointer: coarse) {
  /* Touch devices — disable shimmer (no hover) */
  .shimmer::after { display: none; }
}

/* ====== Reveal-on-scroll ====== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
