/* ================================================================
   Signal Club — style.css
   Dark broadcast dial aesthetic · 5-token palette · channel guide
   Bold typography · tactile cards · grain · sticky tuner strip
   ================================================================ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --void:    #0D0A1A;
  --deep:    #08060F;
  --signal:  #E8612A;
  --signal-hi:  #FF7A3D;
  --signal-deep:#C84D1E;
  --static:  #7ECEC4;
  --static-dark: #5AADA3;
  --cream:   #FDF8F0;

  --surface: #F0E8D8;
  --card:    #FFFFFF;
  --warm:    #F5E6D0;
  --border:    rgba(13,10,26,0.06);
  --border-hi: rgba(232,97,42,0.3);
  --text:    #1A1A1A;
  --text-mid:#4A4640;
  --text-dim:#8A8478;

  --spotify: #1DB954;
  --apple:   #FC3C44;

  --shadow-xs:  0 1px 2px rgba(13,10,26,0.04);
  --shadow-sm:  0 2px 8px rgba(13,10,26,0.05), 0 6px 16px rgba(13,10,26,0.04);
  --shadow-md:  0 4px 16px rgba(13,10,26,0.06), 0 20px 48px rgba(13,10,26,0.08);
  --shadow-lg:  0 8px 24px rgba(13,10,26,0.08), 0 32px 64px rgba(13,10,26,0.12);
  --shadow-xl:  0 16px 40px rgba(13,10,26,0.10), 0 48px 96px rgba(13,10,26,0.16);
  --shadow-glow-signal: 0 4px 24px rgba(232,97,42,0.20), 0 12px 48px rgba(232,97,42,0.12);
  --shadow-glow-static: 0 4px 20px rgba(126,206,196,0.16);
  --shadow-inset: inset 0 2px 4px rgba(13,10,26,0.05);

  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill: 100px;

  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in:       cubic-bezier(0.4, 0.0, 1, 1);
  --ease-in-out:   cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-bounce:   cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  touch-action: manipulation;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
}

/* ── Grain Texture Overlay ─────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 400px 400px;
  mix-blend-mode: multiply;
}

/* ── Atmospheric Background ──────────────────────────────────── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(232,97,42,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(126,206,196,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 90% 40% at 50% 50%, rgba(196,101,74,0.025) 0%, transparent 60%),
    var(--cream);
}

/* ── Base ──────────────────────────────────────────────────────── */
a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input { font: inherit; }

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

/* ── Scroll-Triggered Animations ──────────────────────────────── */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
}
[data-animate="fade-up"].is-visible {
  animation: anim-fade-up 0.8s var(--ease-out) forwards;
}

[data-animate="fade-in"] {
  opacity: 0;
}
[data-animate="fade-in"].is-visible {
  animation: anim-fade-in 0.7s var(--ease-out) forwards;
}

[data-animate="scale-in"] {
  opacity: 0;
  transform: scale(0.88);
}
[data-animate="scale-in"].is-visible {
  animation: anim-scale-in 0.6s var(--ease-spring) forwards;
}

@keyframes anim-fade-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes anim-fade-in {
  to { opacity: 1; }
}
@keyframes anim-scale-in {
  to { opacity: 1; transform: scale(1); }
}

/* ── Shared Nav / Brand ───────────────────────────────────────── */
.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: color 0.2s var(--ease-out);
}
@media (hover: hover) {
  .lp-brand:hover { color: var(--signal); }
}

.lp-nav-dot,
.lp-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
  animation: dot-pulse 2.4s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,97,42,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(232,97,42,0); }
}

.lp-nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.3s var(--ease-spring);
}
@media (hover: hover) {
  .lp-nav-link:hover {
    color: #fff;
    background: var(--text);
    border-color: var(--text);
    transform: scale(1.04);
  }
}

/* ================================================================
   HERO BANNER — full-bleed, dramatic, cinematic
   ================================================================ */
.hero-banner {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--void);
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.85) contrast(1.05);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(175deg,
      rgba(13,10,26,0.55) 0%,
      rgba(13,10,26,0.05) 35%,
      rgba(13,10,26,0.0) 55%,
      rgba(232,97,42,0.08) 75%,
      rgba(13,10,26,0.70) 100%
    );
}

.hero-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-nav .lp-brand { color: #fff; }
@media (hover: hover) {
  .hero-nav .lp-brand:hover { color: var(--signal); }
}

.hero-nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 10px 22px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.3s var(--ease-spring);
}
@media (hover: hover) {
  .hero-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.04);
  }
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 24px 64px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 28px;
  padding: 7px 18px;
  border: 1px solid rgba(232,97,42,0.35);
  border-radius: var(--radius-pill);
  background: rgba(232,97,42,0.10);
  width: fit-content;
  animation: label-glow 4s ease-in-out infinite alternate;
}

@keyframes label-glow {
  0%   { box-shadow: 0 0 0 0 rgba(232,97,42,0); }
  100% { box-shadow: 0 0 32px rgba(232,97,42,0.15); }
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  animation: dot-pulse 2.4s ease-in-out infinite;
}

.hero-banner-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 16vw, 140px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: #fff;
  margin-bottom: 28px;
  hyphens: none;
}

.hero-banner-title .accent-orange {
  color: var(--signal);
  text-shadow: 0 0 80px rgba(232,97,42,0.3);
}

.hero-banner-desc {
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 38ch;
  margin-bottom: 40px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-banner-fm {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.12);
}

@media (min-width: 768px) {
  .hero-nav { padding: 36px 64px; }
  .hero-banner-content { padding: 60px 64px 100px; }
  .hero-banner-fm { bottom: 44px; right: 64px; font-size: 14px; }
}

/* ================================================================
   TUNER STRIP — sticky frequency dial
   ================================================================ */
.tuner-strip {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--void);
  border-bottom: 1px solid rgba(126,206,196,0.12);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tuner-strip-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.tuner-strip-freq {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--static);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s var(--ease-out);
  min-width: 3.5ch;
  text-align: right;
}

.tuner-strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  animation: dot-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.tuner-strip-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease-out);
}

.tuner-strip-mint {
  width: 20px;
  height: 2px;
  background: var(--static);
  border-radius: 1px;
  opacity: 0.3;
  margin-left: auto;
}

@media (min-width: 768px) {
  .tuner-strip { padding: 10px 64px; gap: 16px; }
  .tuner-strip-freq { font-size: 16px; }
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  min-height: 48px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out), background 0.2s var(--ease-out);
  will-change: transform;
}
@media (hover: hover) {
  .btn:hover {
    transform: translateY(-3px) scale(1.03);
  }
}
.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.08s;
}

.btn--orange {
  background: var(--signal);
  color: #fff;
  box-shadow: var(--shadow-glow-signal);
}
@media (hover: hover) {
  .btn--orange:hover {
    background: var(--signal-hi);
    box-shadow: 0 8px 32px rgba(232,97,42,0.30), 0 20px 56px rgba(232,97,42,0.14);
  }
}

.btn--glass {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (hover: hover) {
  .btn--glass:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.4);
    box-shadow: var(--shadow-md);
  }
}

.btn--mint {
  background: transparent;
  color: var(--void);
  border: 1.5px solid var(--void);
}
@media (hover: hover) {
  .btn--mint:hover {
    background: var(--void);
    color: #fff;
    box-shadow: var(--shadow-md);
  }
}

.btn--ghost {
  background: var(--card);
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
}
@media (hover: hover) {
  .btn--ghost:hover {
    border-color: var(--text);
    box-shadow: var(--shadow-md);
  }
}

/* ================================================================
   MARQUEE — editorial ticker strip
   ================================================================ */
.marquee {
  overflow: hidden;
  background: var(--signal);
  padding: 14px 0;
  white-space: nowrap;
  position: relative;
  border-top: 2px solid var(--signal-deep);
  border-bottom: 2px solid var(--signal-deep);
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

@media (hover: hover) {
  .marquee:hover .marquee-track {
    animation-play-state: paused;
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.35;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee--mint {
  background: var(--static);
  border-top-color: var(--static-dark);
  border-bottom-color: var(--static-dark);
}
.marquee--mint .marquee-item { color: var(--void); }
.marquee--mint .marquee-dot { background: var(--void); opacity: 0.25; }

/* ================================================================
   NOMI SVG
   ================================================================ */
.nomi-character { display: block; }
.nomi-character--float {
  animation: nomi-float 6s ease-in-out infinite;
}
@keyframes nomi-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1.5deg); }
  66% { transform: translateY(-6px) rotate(-1deg); }
}

/* ================================================================
   SECTIONS — generous spacing, editorial feel
   ================================================================ */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--text);
  padding-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 80px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.88;
  hyphens: none;
}

.section-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  padding: 6px 16px;
  border: 1.5px solid var(--signal);
  border-radius: var(--radius-pill);
  background: rgba(232,97,42,0.06);
}

.section-badge--static {
  color: var(--static);
  border-color: var(--static);
  background: rgba(126,206,196,0.06);
}

.section-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--signal);
  padding: 10px 22px;
  border: 1.5px solid var(--signal);
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), transform 0.3s var(--ease-spring);
}
@media (hover: hover) {
  .section-link:hover {
    background: var(--signal);
    color: #fff;
    transform: scale(1.04);
  }
}

@media (min-width: 768px) {
  .section { padding: 120px 64px; }
}

/* ── Featured Card — vinyl sleeve feel ───────────────────────── */
.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--void);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out);
}
.featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 3;
}
@media (hover: hover) {
  .featured-card:hover {
    transform: translateY(-10px) rotate(-0.3deg);
    box-shadow: 0 24px 64px rgba(13,10,26,0.25), 0 48px 96px rgba(13,10,26,0.15);
  }
}

.featured-card-img {
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.featured-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,97,42,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: saturate(0.9) contrast(1.08);
}
@media (hover: hover) {
  .featured-card:hover .featured-card-img img {
    transform: scale(1.06);
  }
}

.featured-card-body {
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.featured-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--signal);
  margin-bottom: 18px;
  position: relative;
  padding-left: 16px;
}
.featured-card-num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  animation: dot-pulse 2.4s ease-in-out infinite;
}

.featured-card-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.90;
  margin-bottom: 20px;
  color: #fff;
  hyphens: none;
}

.featured-card-desc {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  color: rgba(255,255,255,0.50);
  margin-bottom: 20px;
  max-width: 44ch;
  font-style: italic;
}

.featured-card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.featured-card-meta .meta-static {
  color: var(--static);
}

.featured-card-btn {
  align-self: flex-start;
}

@media (min-width: 700px) {
  .featured-card {
    grid-template-columns: 1fr 1fr;
  }
  .featured-card-img { aspect-ratio: auto; }
  .featured-card-body { padding: 60px 56px; }
}

/* ================================================================
   CHANNEL GUIDE — Ambient banner + 7 uniform tiles
   ================================================================ */

/* ── Guide Featured Banner (Ambient) ──────────────────────────── */
.guide-banner {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--void);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out);
  box-shadow: var(--shadow-lg);
}
.guide-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(126,206,196,0.10);
  pointer-events: none;
  z-index: 3;
}
@media (hover: hover) {
  .guide-banner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
  }
}

.guide-banner-img {
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.guide-banner-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,10,26,0.7) 0%, rgba(13,10,26,0.1) 60%, transparent 100%);
  pointer-events: none;
}
.guide-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: saturate(0.85) contrast(1.05);
}
@media (hover: hover) {
  .guide-banner:hover .guide-banner-img img {
    transform: scale(1.04);
  }
}

.guide-banner-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--static);
  width: fit-content;
}

.guide-banner-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--static);
}

.guide-banner-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: #fff;
}

.guide-banner-desc {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 40ch;
  font-style: italic;
}

.guide-banner-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-banner-meta .meta-static {
  color: var(--static);
}

@media (min-width: 700px) {
  .guide-banner { grid-template-columns: 1fr 1fr; }
  .guide-banner-img { aspect-ratio: auto; min-height: 280px; }
  .guide-banner-body { padding: 48px 44px; justify-content: center; gap: 16px; }
}

/* ── Guide Grid (7 tiles) ────────────────────────────────────── */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 480px) {
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .guide-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 1000px) {
  .guide-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ── Playlist Cards (shared between guide + listen) ───────────── */
.playlist-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1.5px solid rgba(13,10,26,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s var(--ease-out), border-color 0.3s var(--ease-out);
}
.playlist-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-spring);
}
@media (hover: hover) {
  .playlist-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,97,42,0.15);
  }
  .playlist-card:hover::after {
    transform: scaleX(1);
  }
}

.playlist-card-num {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: rgba(13,10,26,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
  letter-spacing: 0.10em;
}

.playlist-card-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface);
  transition: transform 0.7s var(--ease-out), filter 0.4s var(--ease-out);
  filter: saturate(0.9);
}
@media (hover: hover) {
  .playlist-card:hover .playlist-card-cover {
    transform: scale(1.08);
    filter: saturate(1.1) contrast(1.05);
  }
}

.playlist-card-cover-wrap {
  overflow: hidden;
  position: relative;
}

.playlist-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,10,26,0.25);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.playlist-card:hover .playlist-card-play { opacity: 1; }

.playlist-card-play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-signal);
  transform: scale(0.7) translateY(8px);
  transition: transform 0.4s var(--ease-spring);
}
@media (hover: hover) {
  .playlist-card:hover .playlist-card-play-icon {
    transform: scale(1) translateY(0);
  }
}

.playlist-card-body {
  padding: 16px 16px 20px;
}

.playlist-card-mood {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--signal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.playlist-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.playlist-card-sub {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic;
}

.playlist-card-tracks {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.playlist-card-tracks .tracks-static {
  color: var(--static-dark);
}

/* ── Old playlist-grid (kept for listen page / backward compat) ── */
.playlist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 600px) {
  .playlist-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 900px) {
  .playlist-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ── Divider ──────────────────────────────────────────────────── */
.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-divider hr {
  border: none;
  height: 1px;
  background: var(--border);
}
@media (min-width: 768px) {
  .section-divider { padding: 0 64px; }
}

/* ── Nomi Section — character bio with dark panel ─────────────── */
.nomi-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 72px 24px;
  text-align: center;
  background: var(--void);
  position: relative;
  overflow: hidden;
}
.nomi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(232,97,42,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(126,206,196,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.nomi-section-visual {
  position: relative;
  z-index: 1;
}

.nomi-section-text {
  position: relative;
  z-index: 1;
}

.nomi-section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 72px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.88;
  color: #fff;
  hyphens: none;
}

.nomi-section-bio {
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.8;
  color: rgba(255,255,255,0.50);
  max-width: 40ch;
  font-style: italic;
  margin-top: 16px;
}

.nomi-section-specs {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(126,206,196,0.12);
}

.nomi-spec { text-align: center; }

.nomi-spec-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 800;
  color: var(--signal);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.nomi-spec-value--static {
  color: var(--static);
}

.nomi-spec-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .nomi-section {
    flex-direction: row;
    text-align: left;
    padding: 100px 64px;
    gap: 72px;
    max-width: none;
  }
  .nomi-section-specs { justify-content: flex-start; }
}

/* ── Newsletter — cream panel with mint accents ──────────────── */
.newsletter {
  padding: 64px 24px;
  margin: 0 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: var(--warm);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(126,206,196,0.15);
}
.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--static);
  border-radius: 0 0 4px 4px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
  line-height: 0.90;
  hyphens: none;
}

.newsletter-sub {
  font-size: clamp(14px, 2.2vw, 16px);
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .newsletter-form { flex-direction: row; }
}

.newsletter-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 22px;
  border: 1.5px solid rgba(13,10,26,0.10);
  border-radius: var(--radius-pill);
  background: var(--card);
  color: var(--text);
  font-size: 16px;
  box-shadow: var(--shadow-inset);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-input:focus-visible {
  border-color: var(--static);
  box-shadow: 0 0 0 4px rgba(126,206,196,0.15), var(--shadow-inset);
  outline: none;
}

.newsletter-btn {
  padding: 14px 30px;
  background: var(--signal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out), background 0.2s var(--ease-out);
  white-space: nowrap;
}
@media (hover: hover) {
  .newsletter-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-glow-signal);
    background: var(--signal-hi);
  }
}
.newsletter-btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.08s;
}
.newsletter-btn:disabled {
  opacity: 0.5;
  cursor: default;
  transform: none;
}

.newsletter-fine {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 16px;
  letter-spacing: 0.06em;
}

/* ── Site Footer — deep background ─────────────────────────────── */
.site-footer {
  background: var(--deep);
  margin-top: 80px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--signal) 0%, var(--static) 50%, var(--signal) 100%);
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}

.site-footer .lp-brand { color: rgba(255,255,255,0.8); }
@media (hover: hover) {
  .site-footer .lp-brand:hover { color: var(--signal); }
}
.site-footer .lp-brand-dot { background: var(--signal); }

.site-footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 6px;
  letter-spacing: 0.10em;
  font-style: italic;
}

.site-footer-links {
  display: flex;
  gap: 32px;
}

.site-footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--static);
  letter-spacing: 0.06em;
  transition: color 0.2s var(--ease-out);
  text-transform: uppercase;
}
@media (hover: hover) {
  .site-footer-links a:hover { color: var(--signal-hi); }
}

.site-footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .site-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 56px 64px;
  }
}

/* ── Shared Page Footer (landing/listen) ──────────────────────── */
.lp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px;
  margin-top: 64px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.lp-footer a,
.lp-footer-link {
  color: var(--signal);
  font-weight: 700;
  transition: color 0.2s var(--ease-out);
}
@media (hover: hover) {
  .lp-footer a:hover { color: var(--signal-hi); }
}

/* ================================================================
   LANDING PAGE (playlist pages)
   ================================================================ */
.page-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 0 env(safe-area-inset-bottom, 0);
}

.lp-hero { padding: 0 24px; }

.lp-cover-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
}

.lp-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
@media (hover: hover) {
  .lp-cover-wrap:hover img {
    transform: scale(1.04);
  }
}

.lp-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,10,26,0.18));
  pointer-events: none;
}

.lp-cover-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: var(--signal);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

/* ── Info ──────────────────────────────────────────────────────── */
.lp-info { padding: 28px 24px 0; }

.lp-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 9vw, 48px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 14px;
  hyphens: none;
}

.lp-comparable {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.lp-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 18px;
  max-width: 52ch;
}

.lp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

/* ── Spotify Embed ────────────────────────────────────────────── */
.lp-embed { padding: 28px 24px; }
.lp-embed iframe { border-radius: var(--radius) !important; }

/* ── Stream Buttons ───────────────────────────────────────────── */
.lp-cta { padding: 0 24px 8px; }

.lp-cta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.lp-stream-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 24px;
  margin-bottom: 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: white;
  min-height: 48px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out);
}
@media (hover: hover) {
  .lp-stream-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
  }
}
.lp-stream-btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.08s;
}
.lp-stream-btn svg { flex-shrink: 0; }

.lp-btn-spotify  { background: var(--spotify); }
@media (hover: hover) {
  .lp-btn-spotify:hover { box-shadow: 0 4px 24px rgba(29,185,84,0.25); }
}
.lp-btn-apple    { background: var(--apple); }
@media (hover: hover) {
  .lp-btn-apple:hover { box-shadow: 0 4px 24px rgba(252,60,68,0.25); }
}
.lp-btn-youtube  {
  background: var(--card);
  color: var(--text);
  border: 1.5px solid rgba(13,10,26,0.08);
}
@media (hover: hover) {
  .lp-btn-youtube:hover {
    border-color: var(--text);
    box-shadow: var(--shadow-md);
  }
}

/* ── Nomi Signature (landing page) ────────────────────────────── */
.lp-nomi {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  margin: 16px 24px 0;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
@media (hover: hover) {
  .lp-nomi:hover {
    border-color: rgba(232,97,42,0.15);
    box-shadow: var(--shadow-sm);
  }
}

.lp-nomi-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.lp-nomi-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
}
.lp-nomi-text strong { color: var(--signal); }

.lp-marquee { margin: 28px 0 0; }

/* ================================================================
   LISTEN PAGE
   ================================================================ */
.listen-wrap {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.listen-head { padding: 40px 24px 32px; }

.listen-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 84px);
  font-weight: 800;
  letter-spacing: -0.055em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 0.90;
  hyphens: none;
}

.listen-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .listen-head { padding: 56px 64px 40px; }
}

.listen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 24px;
}
@media (min-width: 600px) {
  .listen-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 900px) {
  .listen-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 0 64px; }
}

.listen-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1.5px solid rgba(13,10,26,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s var(--ease-out), border-color 0.3s var(--ease-out);
}
.listen-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-spring);
}
@media (hover: hover) {
  .listen-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,97,42,0.15);
  }
  .listen-card:hover::after {
    transform: scaleX(1);
  }
}

.listen-card-num {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: white;
  background: rgba(13,10,26,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
  letter-spacing: 0.10em;
}

.listen-card-cover-wrap {
  overflow: hidden;
  position: relative;
}

.listen-card-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface);
  transition: transform 0.7s var(--ease-out), filter 0.4s var(--ease-out);
  filter: saturate(0.9);
}
@media (hover: hover) {
  .listen-card:hover .listen-card-cover {
    transform: scale(1.08);
    filter: saturate(1.1) contrast(1.05);
  }
}

.listen-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,10,26,0.25);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.listen-card:hover .listen-card-play { opacity: 1; }

.listen-card-play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-signal);
  transform: scale(0.7) translateY(8px);
  transition: transform 0.4s var(--ease-spring);
}
@media (hover: hover) {
  .listen-card:hover .listen-card-play-icon {
    transform: scale(1) translateY(0);
  }
}

.listen-card-body { padding: 16px 16px 20px; }

.listen-card-mood {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--signal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.listen-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.listen-card-tracks {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ── Legacy ────────────────────────────────────────────────────── */
.hero { display: none; }
.hero-bg { display: none; }
.hero-content { display: none; }
.hero-nomi { display: none; }
.crt-overlay { display: none; }

/* ── Utility ───────────────────────────────────────────────────── */
.hidden { display: none !important; }
.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;
}
