/* ═══════════════════════════════════════════
   KLØS — Rave Culture Wear
   Complete Stylesheet — SS26
   ═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --grey: #1a1a1a;
  --light-grey: #2a2a2a;
  --mid-grey: #3a3a3a;
  --white: #e8e8e8;
  --pure-white: #ffffff;
  --neon-green: #39ff14;
  --acid-yellow: #d4ff00;
  --electric-pink: #ff006e;
  --uv-purple: #b026ff;
  --deep-purple: #1a0a25;
  --transition-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-green) var(--black);
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  overflow-x: hidden;
  cursor: crosshair;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--neon-green); color: var(--black); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── NOISE + SCANLINES (injected via JS to avoid pointer-events issues) ── */
.klos-noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.5;
}
.klos-scanlines {
  position: fixed;
  inset: 0;
  z-index: 98;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px);
}

/* ══════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════ */

@keyframes glitch1 {
  0%, 100% { clip-path: inset(0 0 95% 0); transform: translate(0); }
  10% { clip-path: inset(20% 0 60% 0); transform: translate(-6px, 3px); }
  20% { clip-path: inset(50% 0 20% 0); transform: translate(5px, -2px); }
  30% { clip-path: inset(10% 0 70% 0); transform: translate(-3px, 1px); }
  40% { clip-path: inset(80% 0 5% 0); transform: translate(6px, -3px); }
  50% { clip-path: inset(30% 0 50% 0); transform: translate(-4px, 0); }
}

@keyframes glitch2 {
  0%, 100% { clip-path: inset(95% 0 0 0); transform: translate(0); }
  15% { clip-path: inset(60% 0 20% 0); transform: translate(7px, -3px); }
  25% { clip-path: inset(10% 0 70% 0); transform: translate(-4px, 2px); }
  35% { clip-path: inset(40% 0 40% 0); transform: translate(3px, -4px); }
  45% { clip-path: inset(70% 0 10% 0); transform: translate(-5px, 3px); }
}

@keyframes flicker {
  0%, 19.9%, 22%, 62.9%, 64%, 64.9%, 70%, 100% { opacity: 1; }
  20%, 21.9%, 63%, 63.9%, 65%, 69.9% { opacity: 0.4; }
}

@keyframes pulseGlow {
  0%, 100% { filter: invert(1) brightness(1) drop-shadow(0 0 8px var(--neon-green)) drop-shadow(0 0 20px var(--neon-green)); }
  50% { filter: invert(1) brightness(1) drop-shadow(0 0 4px var(--neon-green)) drop-shadow(0 0 10px var(--neon-green)); }
}

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

@keyframes slideIn {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes bpmPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes borderGlow {
  0%, 100% { border-color: var(--neon-green); box-shadow: 0 0 15px rgba(57,255,20,0.3); }
  50% { border-color: var(--acid-yellow); box-shadow: 0 0 25px rgba(212,255,0,0.3); }
}

@keyframes heroLogoPulse {
  0%, 100% { filter: invert(1) brightness(1.1) drop-shadow(0 0 20px var(--neon-green)) drop-shadow(0 0 50px rgba(57,255,20,0.4)); transform: scale(1); }
  50% { filter: invert(1) brightness(1) drop-shadow(0 0 10px var(--neon-green)) drop-shadow(0 0 30px rgba(57,255,20,0.3)); transform: scale(0.98); }
}

@keyframes heroGlitch {
  0%, 92%, 100% { opacity: 0; }
  93% { opacity: 0.7; transform: translate(-5px, 2px); filter: invert(1) brightness(1) hue-rotate(90deg); }
  94% { opacity: 0; }
  96% { opacity: 0.5; transform: translate(4px, -3px); filter: invert(1) brightness(1) hue-rotate(180deg); }
  97% { opacity: 0; }
}

@keyframes textGlowPulse {
  0%, 100% { text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green), 0 0 40px var(--neon-green); }
  50% { text-shadow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green); }
}

@keyframes lineScan {
  0% { top: -2px; }
  100% { top: 100%; }
}

@keyframes revealLeft {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-bounce), transform 0.8s var(--transition-bounce);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(57,255,20,0.15);
  transition: all 0.4s;
}

.nav.scrolled {
  padding: 10px 40px;
  background: rgba(10,10,10,0.95);
}

.nav-logo {
  display: block;
  height: 42px;
  width: auto;
  filter: invert(1) brightness(1);
  animation: pulseGlow 3s ease-in-out infinite;
  transition: transform 0.3s;
}

.nav-logo:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-green);
  transition: width 0.4s var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active { color: var(--neon-green); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-bpm-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--electric-pink);
  letter-spacing: 2px;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(255,0,110,0.3);
  transition: all 0.3s;
  white-space: nowrap;
  animation: flicker 4s infinite;
}

.nav-bpm-link:hover {
  border-color: var(--electric-pink);
  background: rgba(255,0,110,0.08);
  color: var(--electric-pink);
  box-shadow: 0 0 20px rgba(255,0,110,0.15);
}

.nav-bpm-dot {
  font-size: 8px;
  animation: bpmPulse 1s ease-in-out infinite;
}

/* Group right-side icons tightly */
.nav-cart-btn { margin-left: 0; margin-right: 0; }

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--neon-green);
  transition: all 0.4s;
}

.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,10,10,0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 8px;
  transition: color 0.3s;
}

.nav-mobile a:hover { color: var(--neon-green); }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */

.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(176,38,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(57,255,20,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,0,110,0.05) 0%, transparent 60%),
    var(--black);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  perspective: 500px;
  transform: rotateX(40deg);
  transform-origin: center top;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  animation: slideUp 1.2s var(--transition-bounce) both;
  margin-top: 40px;
}

.hero-logo {
  width: clamp(140px, 20vw, 280px);
  max-width: 55vw;
  max-height: 30vh;
  height: auto;
  object-fit: contain;
  filter: invert(1) brightness(1.1);
  animation: heroLogoPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-logo-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(140px, 20vw, 280px);
  max-width: 55vw;
  max-height: 30vh;
  height: auto;
  object-fit: contain;
  animation: heroGlitch 4s infinite linear;
  pointer-events: none;
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: rgba(232,232,232,0.5);
  margin-top: 30px;
  z-index: 2;
  text-align: center;
  animation: slideUp 1.2s var(--transition-bounce) 0.3s both;
}

.hero-sub span { color: var(--neon-green); }

.hero-cta {
  margin-top: 50px;
  z-index: 2;
  animation: slideUp 1.2s var(--transition-bounce) 0.5s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: slideUp 1.2s var(--transition-bounce) 0.8s both;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(232,232,232,0.3);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-green), transparent);
  animation: bpmPulse 1.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */

.btn-primary {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 16px 48px;
  background: transparent;
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon-green);
  transform: translateX(-101%);
  transition: transform 0.4s var(--transition-smooth);
}

.btn-primary:hover { color: var(--black); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--light-grey);
  transition: all 0.4s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.btn-icon:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════ */

.marquee-wrap {
  padding: 20px 0;
  border-top: 1px solid rgba(57,255,20,0.15);
  border-bottom: 1px solid rgba(57,255,20,0.15);
  overflow: hidden;
  background: var(--dark);
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 6px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 30px;
  color: rgba(232,232,232,0.25);
}

.marquee-item .sep { color: var(--neon-green); margin: 0 20px; }

/* ══════════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════════ */

.section { padding: 140px 40px; }
.section--dark { background: var(--dark); }

.section--line-top::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  margin-bottom: 0;
  position: relative;
  top: -140px;
}

.section-header { text-align: center; margin-bottom: 80px; }

.section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--electric-pink);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: 6px;
}

.section-subtitle {
  font-size: 13px;
  color: rgba(232,232,232,0.4);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.9;
  letter-spacing: 1px;
}

.container { max-width: 1300px; margin: 0 auto; }

.tag-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--electric-pink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tag-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--electric-pink);
}

/* ══════════════════════════════════════════
   MANIFESTO
   ══════════════════════════════════════════ */

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.manifesto-left { }

.manifesto h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 4px;
  line-height: 1;
  margin: 30px 0 40px;
}

.manifesto h2 em {
  font-style: normal;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(57,255,20,0.4);
}

.manifesto-text {
  font-size: 14px;
  line-height: 2;
  color: rgba(232,232,232,0.6);
  max-width: 480px;
}

.manifesto-text strong { color: var(--white); font-weight: 500; }

.manifesto-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 60px;
}

.stat-card {
  border: 1px solid var(--light-grey);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.stat-card:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 30px rgba(57,255,20,0.1);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--neon-green);
  transform: scaleY(0);
  transition: transform 0.4s;
  transform-origin: bottom;
}

.stat-card:hover::before { transform: scaleY(1); }

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--neon-green);
  letter-spacing: 2px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,232,232,0.4);
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   COLLECTION GRID
   ══════════════════════════════════════════ */

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

.collection-item {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--grey);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: all 0.5s;
}

.collection-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.5s;
  opacity: 0;
}

.collection-item:nth-child(6n+1)::before { background: linear-gradient(135deg, rgba(57,255,20,0.2), transparent 70%); }
.collection-item:nth-child(6n+2)::before { background: linear-gradient(135deg, rgba(255,0,110,0.2), transparent 70%); }
.collection-item:nth-child(6n+3)::before { background: linear-gradient(135deg, rgba(176,38,255,0.2), transparent 70%); }
.collection-item:nth-child(6n+4)::before { background: linear-gradient(135deg, rgba(212,255,0,0.2), transparent 70%); }
.collection-item:nth-child(6n+5)::before { background: linear-gradient(135deg, rgba(57,255,20,0.15), rgba(255,0,110,0.15)); }
.collection-item:nth-child(6n+6)::before { background: linear-gradient(135deg, rgba(176,38,255,0.15), rgba(212,255,0,0.15)); }
.collection-item:hover::before { opacity: 1; }

.item-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  opacity: 0.08;
  transition: all 0.5s;
  z-index: 0;
}

.collection-item:hover .item-icon { opacity: 0.2; transform: translate(-50%, -50%) scale(1.2); }

.item-content { z-index: 2; transition: transform 0.4s; }
.collection-item:hover .item-content { transform: translateY(-8px); }

.item-number {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--neon-green);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 6px;
}

.item-desc { font-size: 11px; color: rgba(232,232,232,0.4); letter-spacing: 1px; }

.item-price {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--acid-yellow);
  margin-top: 12px;
  letter-spacing: 2px;
}

.collection-item:hover .item-price { color: var(--neon-green); }

/* Product detail card */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--light-grey);
}

.product-visual {
  aspect-ratio: 3/4;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-visual .item-icon { font-size: 100px; opacity: 0.08; }

.product-info { display: flex; flex-direction: column; justify-content: center; gap: 20px; }

.product-info .item-number { margin-bottom: 0; }

.product-info .item-name { font-size: 42px; letter-spacing: 6px; margin-bottom: 0; }

.product-info .item-desc {
  font-size: 13px;
  line-height: 2;
  color: rgba(232,232,232,0.5);
  max-width: 400px;
}

.product-info .item-price { font-size: 24px; margin-top: 8px; }

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.product-tag {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--light-grey);
  color: rgba(232,232,232,0.5);
}

.size-selector {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.size-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-grey);
  background: transparent;
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.size-btn:hover,
.size-btn.active {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

/* ══════════════════════════════════════════
   LOOKBOOK
   ══════════════════════════════════════════ */

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 3px;
}

.lookbook-card {
  position: relative;
  overflow: hidden;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  cursor: crosshair;
}

.lookbook-card:first-child { grid-row: span 2; min-height: 700px; }

.lookbook-card-inner { text-align: center; padding: 40px; z-index: 2; }

.lookbook-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--electric-pink);
  margin-bottom: 16px;
}

.lookbook-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 6px;
}

.lookbook-card:first-child .lookbook-heading { font-size: 56px; }

.lookbook-note {
  font-size: 12px;
  color: rgba(232,232,232,0.4);
  margin-top: 12px;
  line-height: 1.8;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.lookbook-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s;
}

.lookbook-card:hover::after { border-color: var(--neon-green); }

/* ══════════════════════════════════════════
   EVENTS
   ══════════════════════════════════════════ */

.events-list {
  max-width: 900px;
  margin: 0 auto;
}

.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
  cursor: pointer;
}

.event-row:hover {
  padding-left: 16px;
  border-bottom-color: var(--neon-green);
}

.event-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--neon-green);
}

.event-info { display: flex; flex-direction: column; gap: 4px; }

.event-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
}

.event-location {
  font-size: 11px;
  color: rgba(232,232,232,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.event-desc {
  font-size: 12px;
  color: rgba(232,232,232,0.35);
  line-height: 1.8;
  margin-top: 4px;
}

.event-status {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid;
}

.event-status.live { color: var(--neon-green); border-color: var(--neon-green); animation: borderGlow 2s ease-in-out infinite; }
.event-status.soon { color: var(--acid-yellow); border-color: var(--acid-yellow); }
.event-status.sold { color: var(--electric-pink); border-color: var(--electric-pink); }

/* ══════════════════════════════════════════
   NEWSLETTER / CONTACT
   ══════════════════════════════════════════ */

.newsletter { text-align: center; position: relative; overflow: hidden; }

.newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(57,255,20,0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,0,110,0.06) 0%, transparent 50%);
}

.newsletter-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }

.newsletter h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.newsletter p {
  font-size: 13px;
  color: rgba(232,232,232,0.5);
  line-height: 1.8;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.input-group { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }

.input-group input,
.form-input {
  flex: 1;
  padding: 16px 20px;
  background: var(--grey);
  border: 1px solid var(--light-grey);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  outline: none;
  transition: border-color 0.3s;
}

.input-group input { border-right: none; }
.input-group input::placeholder,
.form-input::placeholder { color: rgba(232,232,232,0.25); }
.input-group input:focus,
.form-input:focus { border-color: var(--neon-green); }

.input-group button {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--neon-green);
  color: var(--black);
  border: 1px solid var(--neon-green);
  transition: all 0.3s;
  white-space: nowrap;
}

.input-group button:hover { background: var(--acid-yellow); border-color: var(--acid-yellow); }

.newsletter-note {
  font-size: 10px;
  color: rgba(232,232,232,0.2);
  margin-top: 16px;
  letter-spacing: 2px;
}

/* Contact form full */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row { display: flex; gap: 16px; }
.form-row .form-input { flex: 1; }

.form-textarea {
  padding: 16px 20px;
  background: var(--grey);
  border: 1px solid var(--light-grey);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  outline: none;
  resize: vertical;
  min-height: 160px;
  transition: border-color 0.3s;
}

.form-textarea::placeholder { color: rgba(232,232,232,0.25); }
.form-textarea:focus { border-color: var(--neon-green); }

/* ══════════════════════════════════════════
   PAGE HERO (subpages)
   ══════════════════════════════════════════ */

.page-hero {
  padding: 180px 40px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(176,38,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(57,255,20,0.06) 0%, transparent 50%),
    var(--black);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero .section-title {
  font-size: clamp(56px, 8vw, 120px);
  letter-spacing: 10px;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   ABOUT / MANIFESTO PAGE
   ══════════════════════════════════════════ */

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--light-grey);
  align-items: center;
}

.about-block:last-child { border-bottom: none; }

.about-block.reverse { direction: rtl; }
.about-block.reverse > * { direction: ltr; }

.about-visual {
  aspect-ratio: 4/3;
  background: var(--grey);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-icon {
  font-size: 80px;
  opacity: 0.08;
}

.about-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.about-content h3 em {
  font-style: normal;
  color: var(--neon-green);
}

.about-content p {
  font-size: 13px;
  line-height: 2;
  color: rgba(232,232,232,0.55);
  margin-bottom: 16px;
}

.about-content p strong { color: var(--white); font-weight: 500; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 60px;
}

.value-card {
  background: var(--grey);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.value-card:hover { background: var(--light-grey); }

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.value-card:hover::before { transform: scaleX(1); }

.value-number {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--neon-green);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.value-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(232,232,232,0.4);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

.footer {
  padding: 80px 40px 40px;
  border-top: 1px solid var(--light-grey);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--light-grey);
  margin-bottom: 40px;
}

.footer-brand .footer-logo-img {
  height: 60px;
  width: auto;
  filter: invert(1) brightness(0.8);
  opacity: 0.6;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.footer-brand .footer-logo-img:hover {
  opacity: 1;
  filter: invert(1) brightness(1) drop-shadow(0 0 10px var(--neon-green));
}

.footer-brand p {
  font-size: 11px;
  color: rgba(232,232,232,0.3);
  line-height: 1.8;
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,232,232,0.4);
  padding: 6px 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--neon-green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 10px;
  color: rgba(232,232,232,0.25);
  letter-spacing: 2px;
}

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

.footer-socials a {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,232,232,0.4);
  transition: color 0.3s;
}

.footer-socials a:hover { color: var(--neon-green); }

/* ══════════════════════════════════════════
   FLOATING TAGS
   ══════════════════════════════════════════ */

.float-tag {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(57,255,20,0.2);
  z-index: 100;
  pointer-events: none;
}

.float-tag-left {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,0,110,0.15);
  z-index: 100;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav { padding: 12px 20px; }
  .nav-logo { height: 32px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-bpm-link { display: none; }
  .section { padding: 80px 24px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-card:first-child { min-height: 400px; grid-row: auto; }
  .event-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .event-status { display: none; }
  .about-block { grid-template-columns: 1fr; gap: 40px; }
  .about-block.reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-socials { justify-content: center; }
  .float-tag, .float-tag-left { display: none; }
  .page-hero { padding: 140px 24px 60px; }
}

@media (max-width: 600px) {
  .collection-grid { grid-template-columns: 1fr; }
  .input-group { flex-direction: column; }
  .input-group input { border-right: 1px solid var(--light-grey); border-bottom: none; }
  .form-row { flex-direction: column; }

  /* ── LOGO RESPONSIVE UNIQUEMENT ── */
  .hero-logo,
  .hero-logo-glitch {
    width: clamp(120px, 40vw, 220px);
    max-height: 25vh;
  }
}

/* ── TRÈS PETITS ÉCRANS ── */
@media (max-width: 380px) {
  .hero-logo,
  .hero-logo-glitch {
    width: clamp(100px, 35vw, 170px);
    max-height: 22vh;
  }
}

/* ── TABLETTE ── */
@media (min-width: 601px) and (max-width: 900px) {
  .hero-logo,
  .hero-logo-glitch {
    width: clamp(160px, 22vw, 250px);
    max-height: 28vh;
  }
}

/* ── PAYSAGE TEL ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-logo,
  .hero-logo-glitch {
    width: clamp(80px, 15vh, 130px);
    max-height: 22vh;
  }
}

/* ══════════════════════════════════════════
   CART ICON (NAV)
   ══════════════════════════════════════════ */

.nav-cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-cart-btn:hover { color: var(--neon-green); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--neon-green);
  color: var(--black);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

/* ══════════════════════════════════════════
   CART DRAWER
   ══════════════════════════════════════════ */

#cart-drawer { display: contents; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

#cart-drawer.open .cart-overlay {
  opacity: 1;
  pointer-events: all;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: var(--dark);
  border-left: 1px solid rgba(57,255,20,0.15);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#cart-drawer.open .cart-panel { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--light-grey);
}

.cart-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 6px;
}

.cart-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}

.cart-close:hover { color: var(--neon-green); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* Cart Items */
.cart-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
}

.cart-item-icon {
  font-size: 28px;
  opacity: 0.2;
  text-align: center;
}

.cart-item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
}

.cart-item-meta {
  font-size: 10px;
  color: rgba(232,232,232,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.cart-item-price {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--acid-yellow);
  margin-top: 4px;
  letter-spacing: 1px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--light-grey);
}

.cart-qty-btn {
  background: none;
  border: none;
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-qty-btn:hover { background: var(--light-grey); color: var(--neon-green); }

.cart-qty-value {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  width: 28px;
  text-align: center;
  border-left: 1px solid var(--light-grey);
  border-right: 1px solid var(--light-grey);
  line-height: 28px;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: rgba(232,232,232,0.3);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s;
}

.cart-remove-btn:hover { color: var(--electric-pink); }

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 28px;
  text-align: center;
  gap: 12px;
}

.cart-empty-icon {
  font-size: 48px;
  opacity: 0.15;
  margin-bottom: 8px;
}

.cart-empty p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
}

.cart-empty span {
  font-size: 11px;
  color: rgba(232,232,232,0.35);
  letter-spacing: 1px;
}

/* Footer */
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--light-grey);
  display: none;
}

.cart-shipping {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(232,232,232,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-total-row span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
}

.cart-total-value {
  font-family: 'Space Mono', monospace;
  font-size: 22px;
  color: var(--neon-green);
  letter-spacing: 2px;
}

.cart-checkout-btn {
  width: 100%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px;
  background: var(--neon-green);
  color: var(--black);
  border: 1px solid var(--neon-green);
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 12px;
}

.cart-checkout-btn:hover:not(:disabled) {
  background: var(--acid-yellow);
  border-color: var(--acid-yellow);
}

.cart-checkout-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cart-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 9px;
  color: rgba(232,232,232,0.25);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   CHECKOUT MODAL
   ══════════════════════════════════════════ */

.checkout-modal { display: contents; }

.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.4s;
}

.checkout-modal.open .checkout-modal-overlay { opacity: 1; }

.checkout-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 440px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--dark);
  border: 1px solid var(--light-grey);
  padding: 48px 36px;
  z-index: 3001;
  text-align: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal.open .checkout-modal-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.checkout-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(232,232,232,0.4);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}

.checkout-modal-close:hover { color: var(--white); }

.checkout-modal-icon { margin-bottom: 20px; }

.checkout-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 6px;
  margin-bottom: 24px;
}

.checkout-modal-items { text-align: left; margin-bottom: 24px; }

.checkout-modal-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 8px 0;
  color: rgba(232,232,232,0.6);
  letter-spacing: 1px;
}

.checkout-modal-divider {
  height: 1px;
  background: var(--light-grey);
  margin: 8px 0;
}

.checkout-modal-total {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  color: var(--neon-green) !important;
  font-weight: 700;
}

.checkout-modal-info {
  margin-bottom: 24px;
}

.checkout-modal-info p {
  font-size: 12px;
  color: rgba(232,232,232,0.5);
  line-height: 1.8;
}

.checkout-modal-info strong { color: var(--neon-green); }

.checkout-modal-ok { width: 100%; }

/* ══════════════════════════════════════════
   CULTURE PAGE — SPOTIFY INTEGRATION
   ══════════════════════════════════════════ */

.culture-hero-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: rgba(232,232,232,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 20px;
}

.spotify-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.spotify-player-wrap {
  position: sticky;
  top: 100px;
}

.spotify-embed-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--electric-pink);
  margin-bottom: 16px;
}

.spotify-embed-wrap {
  border: 1px solid var(--light-grey);
  padding: 3px;
  transition: border-color 0.4s;
}

.spotify-embed-wrap:hover { border-color: rgba(57,255,20,0.3); }

.spotify-embed-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}

.spotify-info {
  margin-top: 20px;
}

.spotify-info p {
  font-size: 12px;
  color: rgba(232,232,232,0.35);
  line-height: 1.8;
  letter-spacing: 1px;
}

.spotify-info a {
  color: var(--neon-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.spotify-info a:hover { color: var(--acid-yellow); }

/* Artists grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.artist-card {
  background: var(--grey);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.artist-card:hover {
  background: var(--light-grey);
}

.artist-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.artist-card:hover::before { transform: scaleX(1); }

.artist-genre {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--electric-pink);
  margin-bottom: 12px;
}

.artist-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.artist-card:hover .artist-name { color: var(--neon-green); }

.artist-desc {
  font-size: 11px;
  color: rgba(232,232,232,0.4);
  line-height: 1.7;
  letter-spacing: 0.5px;
}

.artist-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,232,232,0.3);
  transition: color 0.3s;
}

.artist-card:hover .artist-link { color: var(--neon-green); }

.artist-link svg { width: 12px; height: 12px; }

/* Featured tracks */
.tracks-list {
  display: flex;
  flex-direction: column;
}

.track-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
}

.track-row:hover {
  padding-left: 12px;
  border-bottom-color: rgba(57,255,20,0.2);
}

.track-number {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--neon-green);
  letter-spacing: 2px;
  text-align: center;
}

.track-info { display: flex; flex-direction: column; gap: 2px; }

.track-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
}

.track-artist {
  font-size: 11px;
  color: rgba(232,232,232,0.4);
  letter-spacing: 1px;
}

.track-listen {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,232,232,0.3);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.track-row:hover .track-listen { color: var(--neon-green); }

.track-listen svg { width: 14px; height: 14px; }

/* Spotify green */
.spotify-green { color: #1DB954; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .spotify-main { grid-template-columns: 1fr; }
  .spotify-player-wrap { position: static; }
  .artists-grid { grid-template-columns: 1fr; }
  .cart-panel { width: 100%; max-width: 100vw; }
}

@media (max-width: 600px) {
  .track-row { grid-template-columns: 30px 1fr; gap: 12px; }
  .track-listen { display: none; }
}

/* ══════════════════════════════════════════
   COUNTDOWN DROP
   ══════════════════════════════════════════ */

.countdown-mini { text-align: center; }

.countdown-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--electric-pink);
  margin-bottom: 16px;
  animation: flicker 4s infinite;
}

.countdown-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}

.cd-unit span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: 4px;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(57,255,20,0.4);
  line-height: 1;
}

.cd-unit small {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(232,232,232,0.3);
  margin-top: 4px;
}

.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: rgba(232,232,232,0.15);
  padding: 0 4px;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   WAITLIST MODAL
   ══════════════════════════════════════════ */

.wl-modal { display: contents; }

.wl-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 3000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}

.wl-modal.open .wl-overlay { opacity: 1; pointer-events: all; }

.wl-content {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 420px; max-width: 90vw;
  background: var(--dark);
  border: 1px solid var(--light-grey);
  padding: 48px 36px;
  z-index: 3001;
  text-align: center;
  opacity: 0;
  transition: all 0.4s var(--transition-bounce);
}

.wl-modal.open .wl-content { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.wl-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  color: rgba(232,232,232,0.4);
  font-size: 16px; cursor: pointer; padding: 8px;
  transition: color 0.3s;
}

.wl-close:hover { color: var(--white); }

.wl-form { display: flex; flex-direction: column; }

/* ══════════════════════════════════════════
   LOOKBOOK IMMERSIVE
   ══════════════════════════════════════════ */

.lb-fullscreen {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}

.lb-fullscreen:hover .lb-bg { transform: scale(1.05); }

.lb-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.6);
}

.lb-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px;
}

.lb-chapter {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--electric-pink);
  margin-bottom: 20px;
}

.lb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 10vw, 120px);
  letter-spacing: 10px;
  line-height: 0.9;
  margin-bottom: 20px;
}

.lb-desc {
  font-size: 13px;
  color: rgba(232,232,232,0.5);
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: 1px;
}

.lb-hotspot {
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid var(--neon-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  animation: bpmPulse 2s ease-in-out infinite;
  transition: all 0.3s;
}

.lb-hotspot::before {
  content: '+';
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  color: var(--neon-green);
}

.lb-hotspot:hover {
  background: var(--neon-green);
  transform: scale(1.2);
}

.lb-hotspot:hover::before { color: var(--black); }

.lb-hotspot-label {
  position: absolute;
  bottom: -32px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-green);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}

.lb-hotspot:hover .lb-hotspot-label { opacity: 1; }

.lb-parallax-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 15vw, 200px);
  letter-spacing: 20px;
  color: rgba(232,232,232,0.03);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

.lb-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--neon-green);
  z-index: 1001;
  width: 0;
  transition: width 0.1s;
}

/* ══════════════════════════════════════════
   GENERATOR
   ══════════════════════════════════════════ */

.gen-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 1;
  background: var(--grey);
  border: 1px solid var(--light-grey);
  overflow: hidden;
}

.gen-canvas-wrap canvas {
  width: 100%; height: 100%;
  display: block;
}

.gen-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 600px;
  margin: 24px auto 0;
}

.gen-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 20px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--light-grey);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.gen-btn:hover { border-color: var(--neon-green); color: var(--neon-green); }

.gen-btn.active { border-color: var(--neon-green); color: var(--black); background: var(--neon-green); }

.gen-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gen-slider-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,232,232,0.4);
}

.gen-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: var(--light-grey);
  outline: none;
}

.gen-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  background: var(--neon-green);
  cursor: pointer;
  border-radius: 0;
}

.gen-actions {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 24px auto 0;
}

.gen-actions .btn-primary, .gen-actions .btn-secondary { flex: 1; text-align: center; }

/* ══════════════════════════════════════════
   TOOLKIT
   ══════════════════════════════════════════ */

.bpm-tap-area {
  width: 280px; height: 280px;
  border: 2px solid var(--light-grey);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.bpm-tap-area:active {
  border-color: var(--neon-green);
  box-shadow: 0 0 40px rgba(57,255,20,0.2);
  transform: scale(0.97);
}

.bpm-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--neon-green);
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(57,255,20,0.4);
}

.bpm-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(232,232,232,0.4);
  margin-top: 8px;
}

.bpm-sub {
  font-size: 11px;
  color: rgba(232,232,232,0.25);
  letter-spacing: 2px;
  margin-top: 20px;
}

.bpm-ring {
  position: absolute; inset: -2px;
  border: 2px solid var(--neon-green);
  opacity: 0;
  transition: opacity 0.1s;
}

.bpm-tap-area:active .bpm-ring { opacity: 1; }

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

.guide-card {
  background: var(--grey);
  padding: 36px 28px;
  transition: all 0.4s;
}

.guide-card:hover { background: var(--light-grey); }

.guide-icon {
  font-size: 28px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.guide-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.guide-card-text {
  font-size: 11px;
  color: rgba(232,232,232,0.4);
  line-height: 1.8;
}

/* ══════════════════════════════════════════
   CREW SYSTEM
   ══════════════════════════════════════════ */

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

.crew-tier {
  background: var(--grey);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.crew-tier:hover { background: var(--light-grey); }

.crew-tier::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  transform: scaleX(0);
  transition: transform 0.5s;
  transform-origin: left;
}

.crew-tier:hover::before { transform: scaleX(1); }

.crew-tier:nth-child(1)::before { background: var(--white); }
.crew-tier:nth-child(2)::before { background: var(--neon-green); }
.crew-tier:nth-child(3)::before { background: var(--acid-yellow); }

.crew-tier-icon {
  font-size: 40px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.crew-tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.crew-tier-points {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--neon-green);
  margin-bottom: 20px;
}

.crew-tier-perks {
  text-align: left;
}

.crew-perk {
  font-size: 11px;
  color: rgba(232,232,232,0.5);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.crew-perk::before {
  content: '→';
  color: var(--neon-green);
  font-size: 10px;
}

.crew-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.crew-how-card {
  background: var(--grey);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s;
}

.crew-how-card:hover { background: var(--light-grey); }

.crew-how-pts {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--neon-green);
  letter-spacing: 2px;
}

.crew-how-action {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,232,232,0.5);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .crew-tiers { grid-template-columns: 1fr; }
  .crew-how-grid { grid-template-columns: 1fr 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .gen-controls { grid-template-columns: 1fr; }
  .cd-unit { min-width: 48px; }
  .cd-unit span { font-size: 32px; }
}
