/* Euro Parts Lab — Public Homepage */
:root {
  --toxic: #39FF14;
  --toxic-dim: #2bcc10;
  --toxic-glow: rgba(57, 255, 20, 0.25);
  --ember: #FF4500;
  --ember-glow: rgba(255, 69, 0, 0.2);
  --steel: #1a1a1e;
  --steel-light: #242428;
  --steel-mid: #2e2e33;
  --chrome: #b0b0b8;
  --bone: #e8e6e1;
  --white: #f5f5f0;
  --black: #0d0d0f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--bone);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--toxic-dim); border-radius: 4px; }

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(57,255,20,0.08);
  transition: all 0.3s;
}
nav.scrolled { background: rgba(13,13,15,0.97); border-bottom-color: rgba(57,255,20,0.18); }

/* --- NAV LOGO LOCKUP --- */
.nav-brand {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
}
.nav-logo-frame {
  position: relative;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  transition: all 0.35s;
}
.nav-brand:hover .nav-logo-frame {
  background: transparent;
}
.nav-logo-frame img {
  width: 30px; height: auto;
  filter: brightness(0) invert(0.94) sepia(0.06) saturate(0.5) hue-rotate(20deg) drop-shadow(0 0 4px rgba(57,255,20,0.1));
  transition: filter 0.35s;
}
.nav-brand:hover .nav-logo-frame img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(80%) saturate(800%) hue-rotate(75deg) brightness(0.85) drop-shadow(0 0 8px rgba(43,204,16,0.4));
}
.nav-logo-frame svg {
  width: 24px; height: 24px; color: var(--toxic);
}
.nav-wordmark {
  display: flex; flex-direction: column; gap: 0; line-height: 1;
  margin-top: 4px;
}
.nav-wordmark .top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 6px; line-height: 1; color: var(--white);
  white-space: nowrap;
  transition: color 0.35s, text-shadow 0.35s;
}
.nav-brand:hover .nav-wordmark .top {
  color: var(--toxic);
  text-shadow: 0 0 8px rgba(57,255,20,0.15);
}
.nav-wordmark .bot {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--toxic); margin-top: 1px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--chrome);
  text-decoration: none; position: relative;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--toxic); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--toxic);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active { color: var(--toxic); }
.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid var(--toxic) !important;
  color: var(--toxic) !important;
  font-size: 13px !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--toxic) !important;
  color: var(--black) !important;
  box-shadow: 0 0 20px var(--toxic-glow);
}
.nav-cta::after { display: none !important; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--bone); margin: 5px 0;
  transition: all 0.3s;
}

/* ============ FLOATING DASHBOARD BUTTON ============ */
.ws-fab {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,13,15,0.9); color: var(--toxic);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 50%; text-decoration: none;
  box-shadow: 0 0 16px rgba(57,255,20,0.1);
  transition: all 0.3s;
}
.ws-fab:hover {
  background: var(--toxic); color: var(--black);
  border-color: var(--toxic);
  box-shadow: 0 0 24px rgba(57,255,20,0.3);
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(57,255,20,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 60%, rgba(255,69,0,0.03) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, var(--steel) 50%, var(--black) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
}
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--toxic);
  opacity: 0;
}
/* Logo bubbles - rise from center with slight wobble */
.particle.logo-bubble {
  bottom: 30%;
  animation: bubbleUp ease-out infinite;
}
@keyframes bubbleUp {
  0% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }
  8% {
    transform: translateY(-5vh) translateX(3px) scale(0.6);
    opacity: var(--bubble-opacity, 0.5);
  }
  25% {
    transform: translateY(-15vh) translateX(-4px) scale(0.85);
    opacity: var(--bubble-opacity, 0.5);
  }
  50% {
    transform: translateY(-30vh) translateX(5px) scale(1);
    opacity: calc(var(--bubble-opacity, 0.5) * 0.7);
  }
  75% {
    transform: translateY(-45vh) translateX(-3px) scale(1.05);
    opacity: calc(var(--bubble-opacity, 0.5) * 0.35);
  }
  100% {
    transform: translateY(-65vh) translateX(2px) scale(0.8);
    opacity: 0;
  }
}
/* Ambient scattered bubbles - slow drift */
.particle.ambient-bubble {
  bottom: 10%;
  animation: ambientFloat linear infinite;
}
@keyframes ambientFloat {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: var(--bubble-opacity, 0.15); }
  50% { transform: translateY(-45vh) scale(1); opacity: var(--bubble-opacity, 0.15); }
  90% { opacity: calc(var(--bubble-opacity, 0.15) * 0.5); }
  100% { transform: translateY(-85vh) scale(0.6); opacity: 0; }
}
/* Pink bubbles - accent color scattered from logo */
.particle.pink-bubble {
  bottom: 30%;
  background: #ff3c8e;
  animation: bubbleUp ease-out infinite;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- HERO LOGO VESSEL --- */
.hero-vessel {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(160px, 20vw, 230px);
  height: clamp(160px, 20vw, 230px);
  margin-bottom: 12px;
  animation: fadeUp 1.2s ease-out 0.2s both;
}



/* Glow core */
.hero-vessel .glow-core {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.06) 0%, rgba(57,255,20,0.015) 50%, transparent 70%);
  animation: coreBreath 4s ease-in-out infinite;
}
@keyframes coreBreath {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Corner ticks on a virtual square frame */
.hero-vessel .tick {
  position: absolute;
  width: 14px; height: 14px;
  border-color: rgba(57,255,20,0.18);
  border-style: solid;
  border-width: 0;
}
.tick-tl { top: 20px; left: 20px; border-top-width: 1px; border-left-width: 1px; }
.tick-tr { top: 20px; right: 20px; border-top-width: 1px; border-right-width: 1px; }
.tick-bl { bottom: 20px; left: 20px; border-bottom-width: 1px; border-left-width: 1px; }
.tick-br { bottom: 20px; right: 20px; border-bottom-width: 1px; border-right-width: 1px; }

/* The actual logo */
.hero-vessel .hero-logo {
  position: relative; z-index: 3;
  width: clamp(80px, 11vw, 130px); height: auto;
  filter:
    drop-shadow(0 0 30px rgba(57,255,20,0.18))
    drop-shadow(0 0 60px rgba(57,255,20,0.06));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Vessel label */


/* pulse used by vehicle status dots */
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--toxic-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px transparent; }
}

/* Title lockup below vessel */
.hero-tagline {
  display: flex; align-items: center; gap: 16px;
  justify-content: center;
  margin: 6px 0 2px;
  animation: fadeUp 1s ease-out 0.55s both;
}
.hero-tagline .tl-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--toxic));
}
.hero-tagline .tl-line:last-child {
  background: linear-gradient(90deg, var(--toxic), transparent);
}
.hero-tagline .tl-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--toxic);
}
.hero-title-group { animation: fadeUp 1s ease-out 0.5s both; }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 90px);
  line-height: 1; letter-spacing: 6px;
  color: var(--white);
  white-space: nowrap;
}
.hero h1 .accent { color: var(--toxic); }
.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300; color: var(--chrome);
  max-width: 680px; margin: 8px auto 0;
  line-height: 1.5;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 18px; flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.65s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--toxic); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
}
.btn-primary:hover {
  background: #4dff33;
  box-shadow: 0 0 30px var(--toxic-glow);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: transparent; color: var(--bone);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--toxic);
  color: var(--toxic);
  transform: translateY(-2px);
}

/* Specimen button */
.btn-specimen {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: transparent; color: var(--toxic);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(57,255,20,0.3);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
  position: relative;
  flex-direction: column;
  gap: 6px;
}
.btn-specimen:hover {
  background: rgba(57,255,20,0.06);
  border-color: var(--toxic);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(57,255,20,0.12);
}
.btn-specimen .specimen-count {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 600;
  letter-spacing: 3px;
  color: rgba(57,255,20,0.6);
}
.btn-specimen .specimen-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--toxic);
  box-shadow: 0 0 6px rgba(57,255,20,0.4);
  animation: pulse 2s infinite;
}
.btn-specimen .specimen-dot:nth-child(2) { animation-delay: 0.3s; }
.btn-specimen .specimen-dot:nth-child(3) { animation-delay: 0.6s; }
.btn-specimen .specimen-dot.dim {
  background: rgba(57,255,20,0.25);
  box-shadow: none;
  animation: none;
}

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1s ease-out 1s both;
}
.scroll-indicator span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--chrome);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--toxic), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 28px; }
}

/* ============ SECTIONS SHARED ============ */
section { padding: 120px 48px; position: relative; }
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--toxic); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: ''; width: 30px; height: 1px;
  background: var(--toxic);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 3px; color: var(--white);
  line-height: 1;
}
.section-desc {
  font-size: 16px; color: var(--chrome);
  font-weight: 300; max-width: 500px;
  line-height: 1.7; margin-top: 12px;
}

/* ============ WHAT WE DO ============ */
.what-we-do { background: var(--steel); }
.what-we-do .section-header { text-align: center; margin-bottom: 72px; }
.what-we-do .section-desc { margin: 12px auto 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  position: relative; padding: 48px 36px;
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s; cursor: default;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--toxic);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: var(--steel-mid);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-icon {
  width: 52px; height: 52px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(57,255,20,0.2);
  color: var(--toxic);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 2px;
  color: var(--white); margin-bottom: 12px;
}
.service-card p {
  font-size: 14px; color: var(--chrome);
  line-height: 1.7; font-weight: 300;
}
.service-card .card-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: rgba(255,255,255,0.03);
  line-height: 1;
}

/* ============ CONTENT / MEDIA ============ */
.content-section { background: var(--black); }
.content-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.content-text { padding-right: 24px; }
.content-gallery {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer; transition: all 0.3s;
}
.gallery-item:first-child { grid-row: 1 / -1; }
.gallery-item:hover {
  border-color: var(--toxic);
  box-shadow: 0 0 20px var(--toxic-glow);
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--chrome);
  background: linear-gradient(135deg, rgba(57,255,20,0.03) 0%, transparent 50%), var(--steel-light);
}
.gallery-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }
.gallery-placeholder span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.4; }
.play-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px; background: linear-gradient(135deg, #ea580c, #c2410c);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.02em; color: #fff; text-transform: uppercase;
  border-radius: 20px; box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.content-stats {
  display: flex; gap: 40px; margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--toxic); }
.stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--chrome); margin-top: 4px; }

/* ============ VEHICLES ============ */
.vehicles-section { background: var(--steel); overflow: hidden; }
.vehicles-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; max-width: 1200px;
  margin: 0 auto 56px;
}
.vehicles-scroll {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.vehicles-scroll::-webkit-scrollbar { display: none; }
.vehicles-scroll::-webkit-scrollbar-thumb { display: none; }
.vehicles-scroll::-webkit-scrollbar { height: 4px; }
.vehicles-scroll::-webkit-scrollbar-thumb { background: var(--toxic-dim); border-radius: 2px; }
.vehicle-card {
  min-width: 0;
  width: 100%;
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden; transition: all 0.35s; cursor: pointer;
}
.vehicle-card:hover {
  border-color: rgba(57,255,20,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.vehicle-img {
  height: 200px;
  background: linear-gradient(135deg, var(--steel-mid), var(--steel-light));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.vehicle-img svg { width: 48px; height: 48px; color: var(--chrome); opacity: 0.2; }
.vehicle-status {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}
.status-active { background: var(--toxic); color: var(--black); }
.status-coming { background: var(--ember); color: white; }
.status-sold { background: rgba(255,255,255,0.15); color: var(--chrome); }
.vehicle-info { padding: 20px 24px; }
.vehicle-info h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 1px;
  color: var(--white); margin-bottom: 4px;
}
.vehicle-meta { font-size: 13px; color: var(--chrome); font-weight: 300; }
.vehicle-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.vehicle-tag {
  padding: 4px 10px;
  font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600;
  background: rgba(57,255,20,0.08);
  color: var(--toxic-dim);
  border: 1px solid rgba(57,255,20,0.12);
}

/* ============ PARTS ============ */
.parts-section { background: var(--black); }
.parts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 1200px; margin: 0 auto; margin-top: 56px;
}
.part-card {
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden; transition: all 0.3s; cursor: pointer;
}
.part-card:hover {
  border-color: rgba(57,255,20,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.part-img {
  height: 180px; background: var(--steel-mid);
  display: flex; align-items: center; justify-content: center;
}
.part-img svg { width: 36px; height: 36px; color: var(--chrome); opacity: 0.2; }
.part-img img { width: 100%; height: 100%; object-fit: cover; display: block; image-orientation: from-image; }
.part-details { padding: 18px 20px; }
.part-details h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); margin-bottom: 4px;
}
.part-details .part-compat { font-size: 12px; color: var(--chrome); font-weight: 300; }
.part-footer {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.part-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--toxic); }
.part-btn {
  padding: 6px 14px; background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--bone);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s;
}
.part-btn:hover {
  border-color: var(--toxic); color: var(--toxic);
  background: rgba(57,255,20,0.05);
}

/* ============ EBAY + MERCH ============ */
.dual-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.strip-panel {
  position: relative; padding: 72px 60px;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
}
.strip-ebay { background: linear-gradient(135deg, #0064d2 0%, #003580 100%); }
.strip-ebay::before {
  content: 'eBay'; position: absolute;
  right: -20px; bottom: -30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px; color: rgba(255,255,255,0.04); line-height: 1;
}
.strip-merch {
  background: linear-gradient(135deg, var(--steel-mid) 0%, var(--steel) 100%);
}
.strip-merch::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(57,255,20,0.015) 20px, rgba(57,255,20,0.015) 21px);
}
.strip-panel .section-tag { margin-bottom: 16px; }
.strip-panel h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; letter-spacing: 3px;
  color: var(--white); line-height: 1; margin-bottom: 16px;
}
.strip-panel p {
  font-size: 15px; color: rgba(255,255,255,0.7);
  font-weight: 300; max-width: 380px;
  line-height: 1.7; margin-bottom: 28px;
}
.strip-ebay .section-tag { color: rgba(255,255,255,0.6); }
.strip-ebay .section-tag::before { background: rgba(255,255,255,0.4); }
.btn-ebay {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: #f5af02; color: #003580;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; width: fit-content;
}
.btn-ebay:hover { background: #ffc832; transform: translateY(-2px); }
.merch-preview { display: flex; gap: 16px; margin-bottom: 28px; }
.merch-item {
  width: 100px; height: 100px;
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.merch-item svg { width: 28px; height: 28px; color: var(--chrome); opacity: 0.3; }

/* ── Merch Page Cards ── */
.ws-merch-img { height: 180px; position: relative; }
.ws-merch-img img { width: 100%; height: 100%; object-fit: cover; }
.ws-merch-status {
  position: absolute; top: 8px; left: 8px;
  font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 5px;
  letter-spacing: 0.6px; text-transform: uppercase;
}
.ws-merch-status--published { background: rgba(16,185,129,0.15); color: #10b981; }
.ws-merch-status--draft { background: rgba(148,163,184,0.15); color: #94a3b8; }
.ws-merch-status--out-of-stock { background: rgba(239,68,68,0.15); color: #ef4444; }
.ws-merch-status--archived { background: rgba(107,114,128,0.15); color: #6b7280; }
.ws-merch-sale-badge {
  position: absolute; top: 8px; right: 8px;
  background: #dc2626; color: #fff;
  font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 5px;
}
.ws-card-price--sale { color: #ef4444 !important; }
.ws-card-price--orig {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--chrome); text-decoration: line-through; opacity: 0.5;
}
.ws-merch-stock { font-size: 10px; font-weight: 600; white-space: nowrap; }
.ws-merch-stock--out { color: #ef4444; }
.ws-merch-stock--low { color: #d97706; }
.ws-merch-stock--ok { color: var(--chrome); opacity: 0.5; }

/* ============ PARENT BRAND ============ */
.parent-brand {
  background: var(--black); text-align: center;
  padding: 100px 48px; position: relative;
}
.parent-brand::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,69,0,0.04) 0%, transparent 70%);
}
.parent-content { position: relative; z-index: 1; }
.parent-brand .section-tag { justify-content: center; margin-bottom: 20px; }
.parent-brand .section-tag::before { display: none; }
.parent-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  letter-spacing: 6px; color: var(--white); line-height: 1;
}
.parent-logo-text .monsters { color: var(--ember); }
.parent-desc {
  font-size: 16px; color: var(--chrome);
  font-weight: 300; max-width: 540px;
  margin: 20px auto 0; line-height: 1.7;
}
.parent-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; padding: 14px 32px;
  border: 1px solid var(--ember); color: var(--ember);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
}
.parent-link:hover {
  background: var(--ember); color: white;
  box-shadow: 0 0 30px var(--ember-glow);
}

/* ============ FOOTER ============ */
footer {
  background: var(--steel);
  padding: 72px 48px 36px;
  border-top: 1px solid rgba(57,255,20,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto;
}
.footer-brand-lockup {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; text-decoration: none;
}
.footer-logo-frame {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(57,255,20,0.12);
  background: rgba(57,255,20,0.02);
  clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px);
}
.footer-logo-frame img { width: 24px; height: auto; }
.footer-logo-frame svg { width: 20px; height: 20px; color: var(--toxic); }
.footer-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 6px; line-height: 1; color: var(--white);
  white-space: nowrap;
}
.footer-wordmark .flab { color: var(--toxic); }
.footer-brand p {
  font-size: 14px; color: var(--chrome);
  font-weight: 300; line-height: 1.7; max-width: 300px;
}
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: var(--chrome); text-decoration: none;
  margin-bottom: 12px; font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--toxic); }
.footer-bottom {
  max-width: 1200px; margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--chrome); text-decoration: none; transition: all 0.25s;
}
.footer-socials a:hover { border-color: var(--toxic); color: var(--toxic); }
.footer-socials a svg { width: 16px; height: 16px; }

/* Footer Newsletter Signup */
.footer-newsletter {
  max-width: 1200px; margin: 40px auto 0;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-newsletter__inner {
  display: flex; align-items: flex-start; gap: 40px;
  justify-content: space-between;
}
.footer-newsletter__text { flex: 0 0 320px; }
.footer-newsletter__text h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--bone, #e8e6e1);
  margin: 0 0 8px;
}
.footer-newsletter__text p {
  font-size: 13px; color: var(--chrome, #b0b0b8);
  line-height: 1.6; margin: 0; font-weight: 300;
}
.footer-newsletter__form { flex: 1; max-width: 480px; }
.footer-newsletter__row { display: flex; gap: 0; }
.footer-newsletter__input {
  flex: 1; padding: 12px 16px;
  background: #2e2e33;
  border: 1px solid rgba(255,255,255,0.08);
  border-right: none;
  color: var(--bone, #e8e6e1);
  font-family: 'Barlow', sans-serif; font-size: 14px;
  outline: none;
}
.footer-newsletter__input::placeholder { color: rgba(176,176,184,0.4); }
.footer-newsletter__input:focus { border-color: var(--toxic, #39FF14); }
.footer-newsletter__btn {
  padding: 12px 24px;
  background: var(--toxic, #39FF14); color: #0d0d0f;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.footer-newsletter__btn:hover { filter: brightness(1.1); }
.footer-newsletter__sub {
  display: flex; align-items: center; gap: 12px; margin-top: 10px; flex-wrap: wrap;
}
.footer-newsletter__sub-text {
  font-size: 11px; color: rgba(176,176,184,0.5); font-weight: 300;
}
.footer-newsletter__manage-link {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
  color: var(--toxic, #39FF14); text-decoration: none; opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-newsletter__manage-link:hover { opacity: 1; }
.footer-newsletter__msg {
  margin-top: 10px; font-size: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
}
.footer-newsletter__msg--ok { color: var(--toxic, #39FF14); }
.footer-newsletter__msg--err { color: var(--ember, #FF4500); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .parts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  section { padding: 80px 24px; }
  nav { padding: 0 24px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(13,13,15,0.97);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 16px 24px;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav-links.show { display: flex; }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 15px;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 8px; text-align: center; justify-content: center; }
  .mobile-toggle { display: block; }
  .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .services-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; gap: 32px; }
  .content-gallery { grid-template-rows: 160px 160px; }
  .dual-strip { grid-template-columns: 1fr; }
  .strip-panel { padding: 56px 32px; }
  .vehicles-scroll { grid-template-columns: 1fr; }
  .vehicle-card { width: 100%; }
  .parts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-newsletter__inner { flex-direction: column; gap: 20px; }
  .footer-newsletter__text { flex: none; }
  .footer-newsletter__form { max-width: 100%; }
  .footer-newsletter__row { flex-direction: column; }
  .footer-newsletter__input { border-right: 1px solid rgba(255,255,255,0.08); }
  .vehicles-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-vessel { width: clamp(130px, 38vw, 180px); height: clamp(130px, 38vw, 180px); margin-bottom: 8px; }
  .ws-container { padding: 24px 16px 20px; }
  .ws-page-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .ws-page-count { margin-bottom: 4px; }

  .ws-featured-banner { grid-template-columns: 1fr; }
  .ws-contact-grid { grid-template-columns: 1fr; }
  .ws-form-2col { grid-template-columns: 1fr; }
  .ws-builds-grid { grid-template-columns: 1fr; }
  .ws-list-item { flex-direction: column; align-items: flex-start; }
}

/* ═══ WEBSITE SUBPAGES ═══ */
.ws-page { min-height: 100vh; background: var(--bk, #0d0d0f); padding-top: 72px; position: relative; overflow: hidden; }
.ws-container { padding: 32px 20px 20px; max-width: 1200px; margin: 0 auto; }
.ws-atmosphere {
  position: absolute; inset: 0; pointer-events: none;
}
.ws-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(57,255,20,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(57,255,20,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
}

/* Section tag */
.ws-section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--toxic, #39FF14); margin-bottom: 10px;
}
.ws-tag-line {
  display: inline-block; width: 24px; height: 1px;
  background: var(--toxic, #39FF14);
}

/* Page header */
.ws-page-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 20px;
}
.ws-page-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 3px; color: #f5f5f0; line-height: 1; margin: 0;
}
.ws-page-title span { color: var(--toxic, #39FF14); }
.ws-page-count {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  letter-spacing: 2px; color: #b0b0b8;
}
.ws-page-count strong {
  font-family: 'Bebas Neue', sans-serif; font-size: 24px;
  color: var(--toxic, #39FF14); margin-right: 4px;
}

/* Filter bar */
.ws-filter-bar {
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.04);
  padding: 14px 18px; margin-bottom: 16px;
}
.ws-filter-bar__top {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.ws-filter-bar__groups {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin-top: 14px;
}
.ws-filter-sep {
  width: 1px; height: 28px; background: rgba(255,255,255,0.06); flex-shrink: 0;
}
.ws-filter-toggle {
  display: none; /* visible on mobile only */
  align-items: center; gap: 6px;
  padding: 6px 12px; background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #b0b0b8; cursor: pointer; transition: all 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.ws-filter-toggle:hover { color: #f5f5f0; border-color: rgba(255,255,255,0.2); }
.ws-filter-toggle.open { color: var(--toxic, #39FF14); border-color: rgba(57,255,20,0.3); }
.ws-filter-toggle svg { width: 14px; height: 14px; }
.ws-filter-group {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.ws-filter-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: #b0b0b8;
}
.ws-filter-btn {
  padding: 4px 10px; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  background: transparent; color: #b0b0b8;
  border: 1px solid rgba(255,255,255,0.1); cursor: pointer;
  transition: all 0.15s;
}
.ws-filter-btn:hover { color: #f5f5f0; }
.ws-filter-btn.active {
  background: var(--toxic, #39FF14); color: #0d0d0f; border-color: transparent;
}

/* Search input */
.ws-search {
  position: relative; flex: 1 1 200px; min-width: 0;
}
.ws-search svg {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: #b0b0b8; transition: color 0.3s;
}
.ws-search input {
  width: 100%; padding: 8px 12px 8px 32px; font-size: 13px;
  background: #2e2e33; border: 1px solid rgba(255,255,255,0.06);
  color: #e8e6e1; font-family: 'Barlow', sans-serif; outline: none;
  transition: all 0.3s;
}
.ws-search input:focus {
  border-color: rgba(57,255,20,0.3);
  background: rgba(57,255,20,0.02);
}
.ws-search input:focus + svg, .ws-search input:focus ~ svg { color: var(--toxic, #39FF14); }

/* Toolbar */
.ws-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; margin-bottom: 20px;
}
.ws-active-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ws-active-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; background: rgba(57,255,20,0.08);
  border: 1px solid rgba(57,255,20,0.12);
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--toxic-dim, #2bcc10);
}
.ws-active-tag .dismiss { cursor: pointer; font-size: 13px; line-height: 1; opacity: 0.6; }
.ws-clear-all {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: #b0b0b8; cursor: pointer; text-decoration: underline;
}
.ws-clear-all:hover { color: #f5f5f0; }
.ws-sort-select {
  padding: 6px 10px; font-size: 11px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px;
  background: #2e2e33; border: 1px solid rgba(255,255,255,0.06);
  color: #e8e6e1; outline: none;
}
.ws-view-toggle { display: flex; border: 1px solid rgba(255,255,255,0.06); }
.ws-view-toggle button {
  padding: 6px 10px; background: transparent; border: none;
  cursor: pointer; display: flex; align-items: center;
}
.ws-view-toggle button.active { background: var(--toxic, #39FF14); }
.ws-view-toggle button svg { color: #b0b0b8; }
.ws-view-toggle button.active svg { color: #0d0d0f; }

/* Card grids */
.ws-parts-grid, .ws-media-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px;
}
.ws-vehicles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px;
}
.ws-builds-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px;
}

/* Generic card */
.ws-card {
  background: #242428; border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden; transition: all 0.3s;
}
.ws-card:hover {
  background: rgba(57,255,20,0.02);
  border-color: rgba(57,255,20,0.1);
}
.ws-card-img {
  height: 140px; display: flex; align-items: center; justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(57,255,20,0.03) 0%, #2e2e33 100%);
}
.ws-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  image-orientation: from-image;
}
.ws-card-img svg { opacity: 0.12; transition: opacity 0.3s; }
.ws-card:hover .ws-card-img svg { opacity: 0.35; }
.ws-card-badge {
  position: absolute; top: 8px; right: 8px; padding: 4px 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--toxic-dim, #2bcc10); background: rgba(57,255,20,0.08);
  border: 1px solid rgba(57,255,20,0.12);
}
.ws-card-body { padding: 12px 14px; }
.ws-card-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #f5f5f0; margin-bottom: 2px;
}
.ws-card-desc { font-size: 11px; color: #b0b0b8; font-weight: 300; }
.ws-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ws-card-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  color: var(--toxic, #39FF14);
}
.ws-card-action {
  padding: 5px 12px; background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #e8e6e1; font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.ws-card:hover .ws-card-action {
  background: var(--toxic, #39FF14); color: #0d0d0f; border-color: transparent;
}

/* Vehicle card specifics */
.ws-vehicle-img { height: 180px; }
.ws-vehicle-status {
  position: absolute; top: 10px; left: 10px; padding: 4px 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.ws-status-pulse {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.ws-vehicle-status--active {
  background: var(--toxic, #39FF14); color: var(--black, #0d0d0f);
  border: none;
}
.ws-vehicle-status--active .ws-status-pulse {
  background: var(--black, #0d0d0f); box-shadow: none;
}
.ws-vehicle-status--coming {
  background: var(--ember, #FF4500); color: #fff;
  border: none;
}
.ws-vehicle-status--coming .ws-status-pulse {
  background: rgba(255,255,255,0.6); box-shadow: none;
}
.ws-vehicle-status--sold {
  background: rgba(255,255,255,0.15); color: var(--chrome, #b0b0b8);
  border: none;
}
.ws-vehicle-status--sold .ws-status-pulse {
  background: var(--chrome, #b0b0b8); box-shadow: none;
}
.ws-vehicle-body { padding: 16px 20px; }
.ws-vehicle-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  letter-spacing: 1px; color: #f5f5f0; margin-bottom: 3px;
}
.ws-vehicle-spec { font-size: 12px; color: #b0b0b8; font-weight: 300; margin-bottom: 12px; }
.ws-vehicle-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ws-vehicle-tag {
  padding: 4px 10px; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600;
  background: rgba(57,255,20,0.08); color: var(--toxic-dim, #2bcc10);
  border: 1px solid rgba(57,255,20,0.12);
}

/* Status dots in filter buttons */
.ws-status-dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  margin-right: 2px; vertical-align: middle;
}
.ws-status-dot--active { background: #39FF14; box-shadow: 0 0 5px #39FF14; }
.ws-status-dot--incoming { background: #FF4500; box-shadow: 0 0 5px #FF4500; }
.ws-status-dot--sold { background: #b0b0b8; box-shadow: 0 0 5px #b0b0b8; }
.ws-filter-btn.active .ws-status-dot { background: #0d0d0f; box-shadow: none; }
@keyframes statusPulse { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.08)} }
.ws-status-dot--active { animation: statusPulse 2s ease-in-out infinite; }
.ws-filter-btn.active .ws-status-dot--active { animation: none; }

/* Vehicle image gradients by status */
.ws-vehicle-img--active { background: linear-gradient(135deg, rgba(57,255,20,0.04) 0%, #2e2e33 100%); }
.ws-vehicle-img--coming { background: linear-gradient(135deg, rgba(255,69,0,0.04) 0%, #2e2e33 100%); }
.ws-vehicle-img--sold { background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, #2e2e33 100%); }
.ws-card[data-status="active"] .ws-vehicle-img svg { stroke: #39FF14; }
.ws-card[data-status="incoming"] .ws-vehicle-img svg { stroke: #FF4500; }
.ws-card[data-status="sold"] .ws-vehicle-img svg { stroke: #b0b0b8; }

/* Clear all link */
.ws-clear-all {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: #b0b0b8;
  cursor: pointer; text-decoration: underline; background: none; border: none;
}

/* Empty state */
.ws-empty-state {
  padding: 40px; background: #242428;
  border: 1px solid rgba(255,255,255,0.04);
  text-align: center; margin-top: 16px;
}
.ws-empty-state p { color: #b0b0b8; font-size: 14px; }

/* Clickable card link */
a.ws-card-link { text-decoration: none; color: inherit; cursor: pointer; }
a.ws-card-link:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(57,255,20,0.08); }

/* Hidden cards */
.ws-card.ws-hidden { display: none; }

/* List view */
.ws-list { display: flex; flex-direction: column; }
.ws-list-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
}
.ws-list-thumb {
  width: 48px; height: 48px; flex-shrink: 0; background: #2e2e33;
  display: flex; align-items: center; justify-content: center;
}
.ws-list-info { flex: 1 1 200px; min-width: 0; }

/* Featured banner (merch, media) */
.ws-featured-banner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  overflow: hidden; margin-bottom: 48px;
}
.ws-featured-img {
  height: 280px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ws-featured-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: center;
}
.ws-featured-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 8px;
}

/* Section heading */
.ws-section-heading {
  font-family: 'Bebas Neue', sans-serif; font-size: 24px;
  letter-spacing: 2px; color: #f5f5f0; margin-bottom: 4px;
}
.ws-section-bar { width: 40px; height: 2px; background: var(--toxic, #39FF14); margin-bottom: 24px; }

/* Contact page */
.ws-contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px; align-items: start;
}
.ws-channel {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ws-channel-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(57,255,20,0.15); background: rgba(57,255,20,0.03);
}
.ws-form-box {
  background: rgba(255,255,255,0.015); border: 1px solid rgba(57,255,20,0.06);
  padding: clamp(24px, 4vw, 40px); position: relative; overflow: hidden;
}
.ws-form-corner {
  position: absolute; width: 20px; height: 20px;
}
.ws-form-corner--tl { top: 0; left: 0; border-top: 1px solid rgba(57,255,20,0.2); border-left: 1px solid rgba(57,255,20,0.2); }
.ws-form-corner--tr { top: 0; right: 0; border-top: 1px solid rgba(57,255,20,0.2); border-right: 1px solid rgba(57,255,20,0.2); }
.ws-form-corner--bl { bottom: 0; left: 0; border-bottom: 1px solid rgba(57,255,20,0.2); border-left: 1px solid rgba(57,255,20,0.2); }
.ws-form-corner--br { bottom: 0; right: 0; border-bottom: 1px solid rgba(57,255,20,0.2); border-right: 1px solid rgba(57,255,20,0.2); }
.ws-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ws-input-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #b0b0b8; display: block; margin-bottom: 6px;
}
.ws-input {
  width: 100%; padding: 12px 16px; background: #2e2e33;
  border: 1px solid rgba(255,255,255,0.08); color: #e8e6e1;
  font-family: 'Barlow', sans-serif; font-size: 14px;
  outline: none; border-radius: 0; transition: all 0.3s;
}
.ws-input:focus {
  border-color: rgba(57,255,20,0.5);
  box-shadow: 0 0 20px rgba(57,255,20,0.08), inset 0 0 20px rgba(57,255,20,0.03);
  background: rgba(57,255,20,0.03);
}
textarea.ws-input { min-height: 110px; resize: vertical; }

/* Buttons */
.ws-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--toxic, #39FF14); color: #0d0d0f;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
}
.ws-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: transparent; color: var(--toxic, #39FF14);
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(57,255,20,0.3); cursor: pointer; text-decoration: none;
}

/* Progress bar */
.ws-progress { height: 3px; background: rgba(255,255,255,0.06); }
.ws-progress-bar { height: 100%; transition: width 1s ease; }

/* Empty state */
.ws-empty {
  padding: 40px; background: #242428;
  border: 1px solid rgba(255,255,255,0.04);
  text-align: center; margin-top: 16px;
}
.ws-empty p { color: #b0b0b8; font-size: 14px; }

/* Contact social links */
.ws-contact-social {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03); color: #b0b0b8;
}
.ws-contact-social:hover { background: rgba(255,255,255,0.08); }
.ws-contact-social--youtube { background: rgba(255,0,0,0.1); color: #FF0000; border-color: rgba(255,0,0,0.3); }
.ws-contact-social--youtube:hover { background: rgba(255,0,0,0.2); }
.ws-contact-social--instagram { background: rgba(225,48,108,0.1); color: #E1306C; border-color: rgba(225,48,108,0.3); }
.ws-contact-social--instagram:hover { background: rgba(225,48,108,0.2); }
.ws-contact-social--ebay { background: rgba(54,101,243,0.1); color: #3665F3; border-color: rgba(54,101,243,0.3); }
.ws-contact-social--ebay:hover { background: rgba(54,101,243,0.2); }
.ws-contact-social--facebook { background: rgba(24,119,242,0.1); color: #1877F2; border-color: rgba(24,119,242,0.3); }
.ws-contact-social--facebook:hover { background: rgba(24,119,242,0.2); }
.ws-contact-social--tiktok { background: rgba(255,0,80,0.1); color: #FF0050; border-color: rgba(255,0,80,0.3); }
.ws-contact-social--tiktok:hover { background: rgba(255,0,80,0.2); }

/* Lab status */
.ws-lab-status {
  margin-top: 32px; padding: 20px;
  background: rgba(57,255,20,0.02); border: 1px solid rgba(57,255,20,0.08);
}
.ws-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--toxic, #39FF14);
  box-shadow: 0 0 10px rgba(57,255,20,0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Social row */
.ws-socials { display: flex; gap: 10px; }
.ws-social-link {
  padding: 10px 18px; border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: #b0b0b8; cursor: pointer; text-decoration: none;
}

/* Success state */
.ws-success { text-align: center; padding: 40px 0; }
.ws-success-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; border: 2px solid var(--toxic, #39FF14);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(57,255,20,0.15);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Stats row */
.ws-stats {
  display: flex; gap: 40px; padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; justify-content: center;
}
.ws-stat { text-align: center; }
.ws-stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--toxic, #39FF14); }
.ws-stat-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #b0b0b8; margin-top: 4px; }

/* Nav active state */
.nav-active { color: var(--toxic, #39FF14) !important; }

/* ── Subpage mobile overrides (MUST come after base subpage styles) ── */
@media (max-width: 768px) {
  .ws-container { padding: 16px 14px 16px; }
  .ws-page-header {
    flex-direction: row; align-items: baseline; justify-content: space-between;
    margin-bottom: 8px; gap: 8px;
  }
  .ws-section-tag { display: none; }
  .ws-page-title { font-size: 22px; letter-spacing: 1px; margin: 0; }
  .ws-page-count { font-size: 11px; white-space: nowrap; }
  .ws-page-count strong { font-size: 16px; }

  /* Filter bar — compact single row, collapsible groups */
  .ws-filter-bar { padding: 8px 10px; margin-bottom: 8px; }
  .ws-filter-bar__top { gap: 6px; flex-wrap: nowrap; }
  .ws-filter-toggle { display: flex; }
  .ws-view-toggle { display: none; }
  .ws-filter-bar__groups {
    display: none !important; flex-direction: column; gap: 8px;
    margin-top: 8px; padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .ws-filter-bar__groups.open { display: flex !important; }
  .ws-filter-sep { display: none; }
  .ws-search { flex: 1 1 0; min-width: 60px; }
  .ws-search input { padding: 7px 8px 7px 28px; font-size: 12px; }
  .ws-search svg { left: 8px; width: 12px; height: 12px; }
  .ws-sort-select { flex: 0 0 auto; font-size: 10px; padding: 7px 8px; }
  .ws-filter-group { gap: 5px; }
  .ws-filter-btn { padding: 5px 9px; font-size: 10px; }
  .ws-filter-label { font-size: 10px; }

  /* Toolbar */
  .ws-toolbar { gap: 4px; margin-bottom: 6px; min-height: 0; }
  .ws-toolbar:empty { display: none; }
  .ws-active-tags:empty { display: none; }

  /* Card grid — single column, full width */
  .ws-parts-grid, .ws-vehicles-grid, .ws-media-grid { grid-template-columns: 1fr; gap: 8px; }
  .ws-card-img { height: 180px; }
  .ws-card-body { padding: 10px 14px; }
  .ws-card-name { font-size: 14px; letter-spacing: 1px; }
  .ws-card-desc { font-size: 11px; }
  .ws-card-price { font-size: 20px; }
  .ws-card-footer { margin-top: 6px; padding-top: 6px; }
  .ws-card-action { padding: 5px 12px; font-size: 10px; letter-spacing: 1px; }

  /* Vehicle cards */
  .ws-vehicle-img { height: 180px; }
  .ws-vehicle-body { padding: 12px 14px; }
  .ws-vehicle-name { font-size: 16px; margin-bottom: 2px; }
  .ws-vehicle-spec { font-size: 11px; margin-bottom: 8px; }
  .ws-vehicle-tags { gap: 5px; }
  .ws-vehicle-tag { padding: 3px 8px; font-size: 10px; }
  .ws-vehicle-status { padding: 3px 8px; font-size: 9px; letter-spacing: 1px; gap: 4px; }
  .ws-status-pulse { width: 4px; height: 4px; }

  .ws-list-item { flex-direction: column; align-items: flex-start; }
}

/* ============ VEHICLE DETAIL ============ */
.ws-vd-page { position: relative; overflow: hidden; }

/* Atmosphere */
.ws-vd-atmosphere {
  position: absolute; inset: 0; pointer-events: none;
}
.ws-vd-atmosphere--active {
  background: radial-gradient(ellipse 60% 40% at 50% 15%, rgba(57,255,20,0.05) 0%, transparent 70%),
              linear-gradient(180deg, var(--steel) 0%, var(--black) 40%);
}
.ws-vd-atmosphere--other {
  background: radial-gradient(ellipse 60% 40% at 50% 15%, rgba(255,69,0,0.04) 0%, transparent 70%),
              linear-gradient(180deg, var(--steel) 0%, var(--black) 40%);
}
.ws-vd-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(57,255,20,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(57,255,20,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 40% at 50% 20%, black 20%, transparent 80%);
}

/* Breadcrumb */
.ws-vd-breadcrumb {
  padding: 20px 0 0;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
}
.ws-vd-breadcrumb a {
  color: var(--chrome); text-decoration: none; cursor: pointer;
  transition: color 0.25s;
}
.ws-vd-breadcrumb a:hover { color: var(--toxic); }
.ws-vd-bc-sep { color: rgba(255,255,255,0.15); }
.ws-vd-bc-current { color: var(--toxic); }

/* Hero grid */
.ws-vd-hero {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; padding: 24px 0;
}

/* Photo area */
.ws-vd-photo-area { display: flex; flex-direction: column; gap: 6px; }
.ws-vd-main-photo {
  position: relative;
  height: clamp(260px, 40vw, 400px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.04); overflow: hidden;
}
.ws-vd-main-photo--toxic {
  background: linear-gradient(135deg, rgba(57,255,20,0.06) 0%, var(--steel-mid) 40%, var(--steel-light) 100%);
}
.ws-vd-main-photo--ember {
  background: linear-gradient(135deg, rgba(255,69,0,0.06) 0%, var(--steel-mid) 40%, var(--steel-light) 100%);
}
.ws-vd-main-photo--chrome {
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, var(--steel-mid) 40%, var(--steel-light) 100%);
}
.ws-vd-main-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.ws-vd-photo-label {
  position: absolute; bottom: 14px; right: 14px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  letter-spacing: 2px; color: rgba(255,255,255,0.25); text-transform: uppercase;
}

/* Status badge */
.ws-vd-status {
  position: absolute; top: 14px; left: 14px;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px;
}
.ws-vd-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.ws-vd-status--active {
  background: var(--toxic, #39FF14); color: var(--black, #0d0d0f);
  border: none;
}
.ws-vd-status--active .ws-vd-status-dot {
  background: var(--black, #0d0d0f); box-shadow: none;
}
.ws-vd-status--coming {
  background: var(--ember, #FF4500); color: #fff;
  border: none;
}
.ws-vd-status--coming .ws-vd-status-dot {
  background: rgba(255,255,255,0.6); box-shadow: none;
}
.ws-vd-status--sold {
  background: rgba(255,255,255,0.15); color: var(--chrome, #b0b0b8);
  border: none;
}
.ws-vd-status--sold .ws-vd-status-dot {
  background: var(--chrome, #b0b0b8); box-shadow: none;
}

/* Thumbnail strip */
.ws-vd-thumbstrip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.ws-vd-thumb {
  height: 60px; padding: 0;
  background: var(--steel-mid); border: 1px solid rgba(255,255,255,0.04);
  cursor: pointer; overflow: hidden; transition: border-color 0.25s;
}
.ws-vd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ws-vd-thumb.active,
.ws-vd-thumb:hover { border-color: var(--toxic); }
.ws-vd-thumbstrip-placeholder {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.ws-vd-thumb-empty {
  height: 60px; background: var(--steel-mid);
  border: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
}

/* Info panel */
.ws-vd-info { display: flex; flex-direction: column; gap: 16px; }

/* Specimen plate */
.ws-vd-specimen-plate {
  position: relative; padding: 16px 20px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
}
.ws-vd-corner {
  position: absolute; width: 14px; height: 14px;
}
.ws-vd-corner--tl { top: 0; left: 0; border-top: 1px solid var(--toxic); border-left: 1px solid var(--toxic); }
.ws-vd-corner--tr { top: 0; right: 0; border-top: 1px solid var(--toxic); border-right: 1px solid var(--toxic); }
.ws-vd-corner--bl { bottom: 0; left: 0; border-bottom: 1px solid var(--toxic); border-left: 1px solid var(--toxic); }
.ws-vd-corner--br { bottom: 0; right: 0; border-bottom: 1px solid var(--toxic); border-right: 1px solid var(--toxic); }
.ws-vd-specimen-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--chrome); margin-bottom: 6px;
}
.ws-vd-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 2px; color: var(--white); line-height: 1;
}
.ws-vd-spec {
  font-size: 14px; color: var(--chrome); font-weight: 300; margin-top: 6px;
}

/* DNA specs */
.ws-vd-dna {
  background: rgba(57,255,20,0.01); border: 1px solid rgba(57,255,20,0.06);
  padding: 16px 20px;
}
.ws-vd-dna-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
}
.ws-vd-dna-header span {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--toxic);
}
.ws-vd-dna-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.ws-vd-dna-row--last { border-bottom: none; }
.ws-vd-dna-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--chrome); flex-shrink: 0;
}
.ws-vd-dna-value {
  font-size: 12px; color: var(--bone); font-weight: 300; text-align: right;
}

/* Teardown Progress */
.ws-vd-teardown {
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.04);
  padding: 16px 20px;
}
.ws-vd-teardown-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.ws-vd-teardown-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--chrome);
}
.ws-vd-teardown-pct {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  color: var(--toxic);
}
.ws-vd-progress-bar {
  height: 4px; background: rgba(255,255,255,0.06); margin-bottom: 16px;
  overflow: hidden;
}
.ws-vd-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--toxic), var(--ember));
  transition: width 0.8s ease;
}
.ws-vd-teardown-checklist {
  display: flex; flex-direction: column; gap: 0;
}
.ws-vd-step {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.02);
}
.ws-vd-step:last-child { border-bottom: none; }
.ws-vd-step-circle {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ws-vd-step--done .ws-vd-step-circle {
  border-color: var(--toxic);
}
.ws-vd-step span {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--chrome); opacity: 0.5;
}
.ws-vd-step--done span {
  color: var(--toxic); opacity: 1;
}

/* Parts section */
.ws-vd-parts-section {
  padding: 32px 0 60px;
}
.ws-vd-parts-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.ws-vd-parts-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 24px;
  letter-spacing: 2px; color: var(--white); flex-shrink: 0;
}
.ws-vd-parts-line {
  flex: 1; height: 1px; background: rgba(57,255,20,0.08);
}
.ws-vd-parts-count {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 2px; color: var(--chrome); flex-shrink: 0;
}

/* CTA box */
.ws-vd-cta {
  margin-top: 32px; padding: clamp(24px, 4vw, 40px);
  background: rgba(57,255,20,0.02); border: 1px solid rgba(57,255,20,0.08);
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
}
.ws-vd-cta-text { flex: 1; min-width: 200px; }
.ws-vd-cta-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 24px;
  letter-spacing: 2px; color: var(--white); margin-bottom: 4px;
}
.ws-vd-cta p {
  font-size: 13px; color: var(--chrome); font-weight: 300;
  max-width: 400px; line-height: 1.5; margin: 0;
}
.ws-vd-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--toxic); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 0 20px rgba(57,255,20,0.1);
  transition: all 0.3s;
}
.ws-vd-cta-btn:hover {
  box-shadow: 0 0 30px rgba(57,255,20,0.3);
}

/* Vehicle detail responsive */
@media (max-width: 768px) {
  .ws-vd-hero { grid-template-columns: 1fr; }
  .ws-vd-cta { flex-direction: column; text-align: center; }
  .ws-vd-cta-text { text-align: center; }
  .ws-vd-cta p { margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════
   MERCH PAGE — 1:1 React translation
   ═══════════════════════════════════════════════════════════ */

/* ── Scope ── */
.mc-page { min-height: 100vh; background: #f8f8f6; color: #1a1a1a; font-family: 'DM Sans', sans-serif; }
.mc-page *,
.mc-page *::before,
.mc-page *::after { box-sizing: border-box; }
@keyframes mcFadeUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
@keyframes mcSlideIn { from { opacity:0; transform:translateX(-8px); } to { opacity:1; transform:translateX(0); } }

/* ── Wrapper ── */
.mc-wrap { max-width: 1320px; margin: 0 auto; padding: 32px 36px; }

/* ── Header ── */
.mc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 14px; }
.mc-header__title { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: #111; letter-spacing: -0.03em; margin: 0; }
.mc-header__sub { font-size: 13px; color: #999; margin: 4px 0 0; }

/* ── Filters row ── */
.mc-filters { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; align-items: center; }

.mc-search { position: relative; flex: 0 0 240px; }
.mc-search__icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #ccc; pointer-events: none; }
.mc-search__input {
  width: 100%; padding: 9px 14px 9px 34px; border-radius: 12px;
  border: 1px solid #e8e8e5; background: #fff; color: #333;
  font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none;
}
.mc-search__input::placeholder { color: #bbb; }
.mc-search__input:focus { border-color: #2563eb; }

.mc-cat-select,
.mc-sort-select {
  padding: 9px 32px 9px 14px; border-radius: 12px;
  border: 1px solid #e8e8e5; background: #fff; color: #555;
  font-size: 12px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer; outline: none;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}

.mc-view-toggle {
  display: flex; background: #fff; border-radius: 10px;
  border: 1px solid #e8e8e5; overflow: hidden;
}
.mc-view-btn {
  padding: 8px 12px; background: transparent; border: none;
  cursor: pointer; display: flex; align-items: center;
  transition: background 0.15s;
}
.mc-view-btn svg { color: #bbb; }
.mc-view-btn--active { background: #f0f0ed; }
.mc-view-btn--active svg { color: #333; }

/* ── Grid ── */
.mc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Card ── */
.mc-card {
  background: #fff; border-radius: 18px; border: 1px solid #eee;
  overflow: hidden; cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  animation: mcFadeUp 0.3s ease both;
}
.mc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Card image */
.mc-card__img {
  height: 170px; position: relative; overflow: hidden;
  background: #f0f0ed;
}
.mc-card__img img { width: 100%; height: 100%; object-fit: cover; }

.mc-card__sale {
  position: absolute; top: 8px; right: 8px;
  background: #dc2626; color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 2px 7px; border-radius: 5px;
}

/* Card body */
.mc-card__body { padding: 12px 14px 14px; }

.mc-card__cat {
  display: flex; align-items: center; gap: 5px; margin-bottom: 4px;
}
.mc-card__cat-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.mc-card__cat span {
  font-size: 9px; font-weight: 600; color: #aaa; letter-spacing: 0.4px;
}

.mc-card__name {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  color: #111; margin: 0 0 1px; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.mc-card__sku {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: #bbb; margin: 0 0 8px;
}

.mc-card__price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.mc-card__price {
  font-family: 'JetBrains Mono', monospace; font-size: 16px;
  font-weight: 700; color: #111;
}
.mc-card__price--sale { color: #dc2626; }
.mc-card__price--orig {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: #bbb; text-decoration: line-through;
}

.mc-card__stock { font-size: 10px; font-weight: 600; color: #888; display: block; }
.mc-card__stock--out { color: #dc2626; }
.mc-card__stock--low { color: #d97706; }

/* Card actions */
.mc-card__actions {
  display: flex; gap: 6px; margin-top: 10px;
  border-top: 1px solid #f0efed; padding-top: 10px;
}
.mc-card__act {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 7px 0; border-radius: 8px; font-size: 11px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.15s;
}
.mc-card__act--buy { background: #eff6ff; color: #2563eb; }
.mc-card__act--buy:hover { filter: brightness(0.95); }
.mc-card__act--soldout {
  background: #fef2f2; color: #dc2626; cursor: default;
}

/* ── List view ── */
.mc-list {
  border-radius: 16px; border: 1px solid #eee; overflow: hidden;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.mc-list__head {
  display: grid;
  grid-template-columns: 48px 2fr 0.8fr 0.8fr 0.7fr auto;
  padding: 12px 20px; background: #fafaf8;
  border-bottom: 1px solid #f0efed;
}
.mc-list__head span {
  font-size: 9px; color: #aaa; font-weight: 800;
  letter-spacing: 1.4px; text-transform: uppercase;
}

.mc-list__row {
  display: grid;
  grid-template-columns: 48px 2fr 0.8fr 0.8fr 0.7fr auto;
  padding: 12px 20px; align-items: center;
  border-top: 1px solid #f0efed;
  transition: background 0.12s ease;
  animation: mcSlideIn 0.25s ease both;
}
.mc-list__row:first-of-type { border-top: none; }
.mc-list__row:hover { background: #fafaf8; }

.mc-list__thumb {
  width: 36px; height: 36px; border-radius: 8px;
  overflow: hidden; border: 1px solid #eee;
}
.mc-list__thumb img { width: 100%; height: 100%; object-fit: cover; }

.mc-list__product { overflow: hidden; }
.mc-list__name {
  font-size: 13px; font-weight: 600; color: #111; display: block;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mc-list__sku {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: #bbb; display: block;
}

.mc-list__cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.4px;
  padding: 3px 10px; border-radius: 6px;
  display: inline-block; width: fit-content;
}

.mc-list__price-col {}
.mc-list__price {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  font-weight: 600; color: #111;
}
.mc-list__price--sale { color: #dc2626; }
.mc-list__price--orig {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: #bbb; text-decoration: line-through; display: block;
}

.mc-list__stock {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  font-weight: 600; color: #333;
}
.mc-list__stock--out { color: #dc2626; }
.mc-list__stock--low { color: #d97706; }

.mc-list__act {
  padding: 6px 14px; border-radius: 8px; font-size: 11px;
  font-weight: 700; text-decoration: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  background: #eff6ff; color: #2563eb;
  transition: filter 0.15s;
}
.mc-list__act:hover { filter: brightness(0.95); }
.mc-list__act--disabled {
  background: #fef2f2; color: #dc2626; cursor: default;
}

/* ── Empty state ── */
.mc-empty {
  padding: 48px 24px; text-align: center; color: #ccc; font-size: 14px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .mc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .mc-wrap { padding: 16px 12px; }
  .mc-header__title { font-size: 24px; }
  .mc-header { flex-direction: column; align-items: flex-start; }
  .mc-filters { flex-direction: column; }
  .mc-search { flex: 1 1 100%; }
  .mc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mc-card__img { height: 130px; }
  .mc-card__name { font-size: 13px; }
  .mc-card__body { padding: 10px 10px 12px; }
  .mc-list__head { display: none; }
  .mc-list__row {
    grid-template-columns: 1fr;
    gap: 4px; padding: 14px 16px;
  }
  .mc-list__thumb { display: none; }
}
@media (max-width: 480px) {
  .mc-grid { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   MEDIA PAGE
   ═══════════════════════════════════════════════════════════ */

.ws-media-page { min-height: 100vh; position: relative; overflow: hidden; }

/* Atmosphere */
.ws-media-atmo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 60% 20%, rgba(255,69,0,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 30% 70%, rgba(57,255,20,0.04) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, var(--steel) 40%, var(--black) 100%);
}
.ws-media-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 20%, transparent 80%);
}
.ws-media-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.ws-media-particle {
  position: absolute; border-radius: 50%; bottom: 10%; opacity: 0;
  animation: bu ease-out infinite;
}
@keyframes bu {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 0.6; }
  100% { transform: translateY(-80vh); opacity: 0; }
}

/* Header */
.ws-media-header {
  padding-top: 60px; text-align: center;
}
.ws-media-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 72px);
  letter-spacing: 4px; color: var(--white);
  line-height: 1; margin: 0 0 8px;
}
.ws-media-title span { color: var(--toxic); }
.ws-media-desc {
  font-size: 15px; font-weight: 300; color: var(--chrome);
  line-height: 1.7; max-width: 440px; margin: 0 auto 28px;
}

/* Social buttons */
.ws-media-socials {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.ws-media-social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border: none; cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.ws-media-social--yt {
  background: #FF0000; color: white;
}
.ws-media-social--ig {
  background: transparent; color: var(--pink);
  border: 1px solid rgba(255,60,142,0.4);
}
.ws-media-social--fb {
  background: transparent; color: #4267B2;
  border: 1px solid rgba(66,103,178,0.4);
}

/* Featured video */
.ws-media-featured {
  max-width: 1100px; margin: 0 auto 48px; padding: 0 20px;
}
.ws-media-featured-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(255,69,0,0.06) 0%, #2e2e33 40%, rgba(57,255,20,0.04) 100%);
  border: 1px solid rgba(255,69,0,0.12);
  overflow: hidden; cursor: pointer;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.ws-media-featured-video {
  height: 280px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ws-media-play-circle {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,69,0,0.1);
}
.ws-media-featured-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 4px 10px; background: linear-gradient(135deg, #ea580c, #c2410c);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  text-transform: uppercase; color: #fff;
  border-radius: 20px; box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.ws-media-featured-duration {
  position: absolute; bottom: 16px; right: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}
.ws-media-featured-info {
  padding: clamp(24px, 4vw, 40px);
  display: flex; flex-direction: column; justify-content: center;
}
.ws-media-featured-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ember); margin-bottom: 8px;
}
.ws-media-featured-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 2px;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.ws-media-featured-info p {
  font-size: 14px; color: var(--chrome); font-weight: 300;
  line-height: 1.7; margin: 0 0 16px;
}
.ws-media-featured-stats {
  display: flex; gap: 20px;
}
.ws-stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: var(--toxic);
}
.ws-stat-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--chrome);
}

/* Featured Builds */
.ws-media-builds {
  max-width: 1100px; margin: 0 auto 48px; padding: 0 20px;
}
.ws-media-builds-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.ws-media-builds-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 2px; color: var(--white);
}
.ws-media-builds-line {
  flex: 1; height: 1px; background: rgba(57,255,20,0.08);
}
.ws-media-builds-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

/* Build card */
.ws-media-build-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(57,255,20,0.06);
  overflow: hidden;
}
.ws-media-build-banner {
  height: 160px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ws-media-build-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ws-media-build-photo-label {
  position: absolute; bottom: 10px; left: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.ws-media-build-status {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.ws-media-build-status--complete {
  background: rgba(57,255,20,0.12); color: var(--toxic);
  border: 1px solid rgba(57,255,20,0.2);
}
.ws-media-build-status--progress {
  background: rgba(255,69,0,0.12); color: var(--ember);
  border: 1px solid rgba(255,69,0,0.2);
}
.ws-media-build-header {
  padding: 16px 22px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ws-media-build-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1px;
  color: var(--white); line-height: 1;
}
.ws-media-build-car {
  font-size: 12px; color: var(--chrome); font-weight: 300; margin-top: 3px;
}
.ws-media-build-progress {
  height: 3px; background: rgba(255,255,255,0.06); margin-top: 12px;
  overflow: hidden;
}
.ws-media-build-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--toxic), var(--ember));
  transition: width 1s ease;
}
.ws-media-build-progress--done {
  background: var(--toxic);
}
.ws-media-build-pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px;
  color: var(--chrome); margin-top: 6px; text-align: right;
}

/* Build DNA */
.ws-media-build-dna {
  padding: 12px 22px 18px;
}
.ws-media-build-dna-label {
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.ws-media-build-dna-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--toxic);
}
.ws-media-build-dna-row {
  display: flex; justify-content: space-between;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.ws-media-build-dna-row--last { border-bottom: none; }

/* Content section */
.ws-media-content {
  max-width: 1100px; margin: 0 auto; padding: 0 20px 48px;
}
.ws-media-content-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.ws-media-content-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 2px; color: var(--white);
}
.ws-media-filter-group {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.ws-media-filter {
  padding: 5px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent; color: #b0b0b8;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer; transition: all 0.15s;
}
.ws-media-filter:hover { color: #f5f5f0; }
.ws-media-filter.active {
  background: var(--toxic); color: #0d0d0f; border-color: transparent;
}
.ws-media-content-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; color: var(--chrome);
}

/* Media grid items */
.ws-media-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.ws-media-item {
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden; position: relative;
  transition: all 0.3s; cursor: pointer;
}
.ws-media-item:hover {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.08);
}
.ws-media-item-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ws-media-item-img--video {
  background: linear-gradient(135deg, rgba(255,69,0,0.04) 0%, #2e2e33 100%);
}
.ws-media-item-img--photo {
  background: linear-gradient(135deg, rgba(57,255,20,0.03) 0%, #2e2e33 100%);
}
.ws-media-play-sm {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,69,0,0.08);
}
.ws-media-type-badge {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  text-transform: uppercase; color: #fff;
  border-radius: 20px; box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.ws-media-type-badge--video {
  background: linear-gradient(135deg, #ea580c, #c2410c);
}
.ws-media-type-badge--photo {
  background: linear-gradient(135deg, #059669, #047857);
}
.ws-media-item-body { padding: 14px 16px; }
.ws-media-item-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 1px;
}
.ws-media-item-desc {
  font-size: 12px; color: var(--chrome); font-weight: 300; margin-top: 3px;
}

/* Stats bar */
.ws-stats {
  max-width: 1100px; margin: 0 auto; padding: 0 20px 60px;
}
.ws-stats > div,
.ws-stats {
  display: flex; gap: 40px; padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; justify-content: center;
}
.ws-stats > div { border-top: none; padding: 0; }
.ws-stat { text-align: center; }
.ws-stat .ws-stat-value { font-size: 28px; }
.ws-stat .ws-stat-label { margin-top: 4px; }

/* Media responsive */
@media (max-width: 768px) {
  .ws-media-featured-inner { grid-template-columns: 1fr; }
  .ws-media-featured-video { height: 200px; }
  .ws-media-builds-grid { grid-template-columns: 1fr; }
}

/* ═══ PART DETAIL PAGE ═══ */
.ws-pd-page { position: relative; overflow: hidden; }
.ws-pd-atmosphere {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 40% 15%, rgba(57,255,20,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(255,60,142,0.03) 0%, transparent 70%),
    linear-gradient(180deg, #1a1a1e 0%, #0d0d0f 40%);
}
.ws-pd-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(57,255,20,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(57,255,20,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 40% at 40% 20%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 40% at 40% 20%, black 20%, transparent 80%);
}

/* Breadcrumb */
.ws-pd-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 20px 0 0;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
}
.ws-pd-breadcrumb a { color: #b0b0b8; text-decoration: none; }
.ws-pd-breadcrumb a:hover { color: var(--toxic); }
.ws-pd-breadcrumb span { color: #b0b0b8; }
.ws-pd-bc-sep { color: rgba(255,255,255,0.15); }
.ws-pd-bc-current { color: var(--toxic); }

/* Main grid */
.ws-pd-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; padding: 24px 0;
}

/* Main photo */
.ws-pd-main-photo {
  height: clamp(280px, 40vw, 420px);
  background: linear-gradient(135deg, rgba(57,255,20,0.06) 0%, #2e2e33 40%, rgba(255,60,142,0.03) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; border: 1px solid rgba(255,255,255,0.04);
}
.ws-pd-main-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  image-orientation: from-image;
}
.ws-pd-badge {
  position: absolute; top: 14px; padding: 4px 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase;
  color: #fff; border: none; border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.ws-pd-badge--left {
  left: 14px; background: linear-gradient(135deg, #059669, #047857);
}
.ws-pd-badge--right {
  right: 14px; background: linear-gradient(135deg, #6b7280, #4b5563);
}

/* Thumbstrip */
.ws-pd-thumbstrip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 6px; margin-top: 6px;
}
.ws-pd-thumb {
  height: 64px; border: 1px solid rgba(255,255,255,0.04);
  background: #2e2e33; cursor: pointer; padding: 0; overflow: hidden;
}
.ws-pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ws-pd-thumb.active { border-color: rgba(57,255,20,0.1); background: rgba(57,255,20,0.03); }

.ws-pd-thumbstrip-placeholder {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 6px; margin-top: 6px;
}
.ws-pd-thumb-empty {
  height: 64px; background: #2e2e33; border: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
}
.ws-pd-thumb-empty--first {
  background: rgba(57,255,20,0.03); border-color: rgba(57,255,20,0.1);
}

/* Condition panel */
.ws-pd-condition-panel {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
  padding: 18px 20px; margin-top: 16px;
}
.ws-pd-condition-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--toxic);
}
.ws-pd-condition-row {
  display: flex; justify-content: space-between; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03); gap: 12px;
}
.ws-pd-condition-row--last { border-bottom: none; }
.ws-pd-condition-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #b0b0b8; flex-shrink: 0;
}
.ws-pd-condition-value {
  font-size: 12px; color: #e8e6e1; font-weight: 300; text-align: right;
}

/* Title plate */
.ws-pd-title-plate {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px; margin-bottom: 16px; position: relative;
}
.ws-pd-corner {
  position: absolute; width: 16px; height: 16px;
}
.ws-pd-corner--tl { top: 0; left: 0; border-top: 1px solid var(--toxic); border-left: 1px solid var(--toxic); }
.ws-pd-corner--tr { top: 0; right: 0; border-top: 1px solid var(--toxic); border-right: 1px solid var(--toxic); }
.ws-pd-title-sub {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #b0b0b8; margin-bottom: 6px;
}
.ws-pd-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 2px; color: #f5f5f0; line-height: 1; margin-bottom: 6px;
}
.ws-pd-compat { font-size: 14px; color: #b0b0b8; font-weight: 300; }

/* Price panel */
.ws-pd-price-panel {
  background: rgba(57,255,20,0.02); border: 1px solid rgba(57,255,20,0.08);
  padding: 20px 24px; margin-bottom: 16px;
}
.ws-pd-price-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px; margin-bottom: 16px;
}
.ws-pd-price-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #b0b0b8; margin-bottom: 4px;
}
.ws-pd-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 44px;
  color: var(--toxic); line-height: 1;
}
.ws-pd-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px 28px;
  background: var(--toxic); color: #0d0d0f; border: none;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  box-shadow: 0 0 24px rgba(57,255,20,0.12);
}
.ws-pd-cta:hover { background: var(--toxic-dim); box-shadow: 0 0 32px rgba(57,255,20,0.2); }
.ws-pd-shipping-note {
  display: flex; align-items: center; gap: 8px; margin-top: 10px;
  font-size: 11px; color: var(--toxic); font-weight: 600;
}

/* Specs panel */
.ws-pd-specs-panel {
  background: rgba(57,255,20,0.01); border: 1px solid rgba(57,255,20,0.06);
  padding: 18px 24px; margin-bottom: 16px;
}
.ws-pd-specs-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--toxic);
}
.ws-pd-spec-row {
  display: flex; justify-content: space-between; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03); gap: 12px;
}
.ws-pd-spec-row--last { border-bottom: none; }
.ws-pd-spec-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #b0b0b8; flex-shrink: 0;
}
.ws-pd-spec-value {
  font-size: 12px; color: #e8e6e1; font-weight: 300; text-align: right;
}

/* Lab notes */
.ws-pd-notes-panel {
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.04);
  padding: 18px 24px;
}
.ws-pd-notes-header {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #b0b0b8; margin-bottom: 10px;
}
.ws-pd-notes-text {
  font-size: 14px; color: #e8e6e1; font-weight: 300; line-height: 1.8;
}

/* Related parts */
.ws-pd-related { padding: 32px 0 60px; }
.ws-pd-related-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.ws-pd-related-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 24px;
  letter-spacing: 2px; color: #f5f5f0;
}
.ws-pd-related-line { flex: 1; height: 1px; background: rgba(57,255,20,0.08); }

/* Donor vehicle section */
.ws-pd-donor { padding: 0 0 32px; }
.ws-pd-donor-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.ws-pd-donor-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 24px;
  letter-spacing: 2px; color: #f5f5f0;
}
.ws-pd-donor-line { flex: 1; height: 1px; background: rgba(57,255,20,0.08); }
.ws-pd-donor-card {
  display: block; text-decoration: none; color: inherit;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(57,255,20,0.06);
  overflow: hidden; transition: all 0.3s;
}
.ws-pd-donor-card:hover {
  border-color: rgba(57,255,20,0.15);
  background: rgba(57,255,20,0.02);
}
.ws-pd-donor-card__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.ws-pd-donor-photo {
  height: 220px;
  background: linear-gradient(135deg, rgba(57,255,20,0.06) 0%, #2e2e33 40%, #242428 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ws-pd-donor-photo__icon { color: var(--toxic); opacity: 0.15; }
.ws-pd-donor-photo__label {
  position: absolute; bottom: 14px; right: 14px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  letter-spacing: 2px; color: rgba(255,255,255,0.25); text-transform: uppercase;
}
.ws-pd-donor-status {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.ws-pd-donor-status__dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.ws-pd-donor-status--active {
  background: rgba(57,255,20,0.08); color: var(--toxic);
  border: 1px solid rgba(57,255,20,0.15);
}
.ws-pd-donor-status--active .ws-pd-donor-status__dot {
  background: var(--toxic); box-shadow: 0 0 8px var(--toxic);
  animation: team-pulse 2s ease-in-out infinite;
}
.ws-pd-donor-status--coming {
  background: rgba(255,69,0,0.08); color: #FF4500;
  border: 1px solid rgba(255,69,0,0.15);
}
.ws-pd-donor-status--coming .ws-pd-donor-status__dot {
  background: #FF4500; box-shadow: 0 0 8px rgba(255,69,0,0.4);
}
.ws-pd-donor-status--sold {
  background: #333338; color: #999;
  border: 1px solid #555;
}
.ws-pd-donor-status--sold .ws-pd-donor-status__dot {
  background: #999; opacity: 0.5;
}
.ws-pd-donor-info {
  padding: clamp(20px, 3vw, 32px);
  display: flex; flex-direction: column; justify-content: center;
}
.ws-pd-donor-info__sub {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--toxic); margin-bottom: 6px;
}
.ws-pd-donor-info__name {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 2px; color: #f5f5f0; line-height: 1; margin-bottom: 6px;
}
.ws-pd-donor-info__spec {
  font-size: 13px; color: #b0b0b8; font-weight: 300; margin-bottom: 14px;
}
.ws-pd-donor-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px;
}
.ws-pd-donor-spec {
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.ws-pd-donor-spec__label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #b0b0b8;
}
.ws-pd-donor-spec__value {
  font-size: 11px; color: #e8e6e1; font-weight: 300; margin-top: 1px;
}
.ws-pd-donor-link {
  margin-top: 14px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--toxic);
}

/* Part detail responsive */
@media (max-width: 768px) {
  .ws-pd-grid { grid-template-columns: 1fr; }
  .ws-pd-price { font-size: 36px; }
  .ws-pd-title { font-size: 28px; }
  .ws-pd-donor-card__grid { grid-template-columns: 1fr; }
  .ws-pd-donor-photo { height: 180px; }
}

/* ═══ PLACEHOLDER PAGES (Coming Soon / 404) ═══ */
.ws-ph-page { min-height: 100vh; position: relative; overflow: hidden; }

/* Atmosphere — Coming Soon (toxic green) */
.ws-ph-atmo {
  position: absolute; inset: 0; pointer-events: none;
}
.ws-ph-atmo--soon {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(57,255,20,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(255,60,142,0.04) 0%, transparent 70%),
    linear-gradient(180deg, #0d0d0f 0%, #1a1a1e 50%, #0d0d0f 100%);
}
.ws-ph-atmo--404 {
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(255,69,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(255,69,0,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 30% 60%, rgba(255,60,142,0.04) 0%, transparent 70%),
    linear-gradient(180deg, #111113 0%, #1a1a1e 40%, #0d0d0f 100%);
}

/* Grid lines */
.ws-ph-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(57,255,20,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
}
.ws-ph-grid-lines--ember {
  background-image:
    linear-gradient(rgba(255,69,0,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,69,0,0.018) 1px, transparent 1px);
}

/* Floating particles (coming soon) */
.ws-ph-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
@keyframes phFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.ws-ph-dot {
  position: absolute; bottom: -10px;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--toxic, #39FF14); opacity: 0;
  animation: phFloat ease-in-out infinite;
}

/* Scanline (404) */
@keyframes phScan {
  0% { top: -2px; }
  100% { top: 100%; }
}
.ws-ph-scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,69,0,0.08), transparent);
  pointer-events: none;
  animation: phScan 4s linear infinite;
}

/* Layout */
.ws-ph-layout {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 60px 20px 100px;
  min-height: 60vh; justify-content: center;
}

/* Hero block */
.ws-ph-hero {
  display: flex; flex-direction: column; align-items: center;
  max-width: 600px;
}

/* Icon with ring */
.ws-ph-icon-wrap {
  position: relative; width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.ws-ph-icon-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(57,255,20,0.12);
  animation: phRingPulse 3s ease-in-out infinite;
}
.ws-ph-icon-ring--404 {
  border-color: rgba(255,69,0,0.12);
}
@keyframes phRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 0.2; }
}

/* Badge */
.ws-ph-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 20px;
  padding: 6px 16px; border-radius: 20px;
}
.ws-ph-badge--soon {
  color: var(--toxic, #39FF14);
  background: rgba(57,255,20,0.06);
  border: 1px solid rgba(57,255,20,0.1);
}
.ws-ph-badge--404 {
  color: var(--ember, #FF4500);
  background: rgba(255,69,0,0.06);
  border: 1px solid rgba(255,69,0,0.1);
}
.ws-ph-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--toxic, #39FF14);
  animation: phDotBlink 2s ease-in-out infinite;
}
.ws-ph-badge-dot--ember { background: var(--ember, #FF4500); }
@keyframes phDotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Big 404 code */
.ws-ph-big-code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 20vw, 160px);
  color: rgba(255,69,0,0.06);
  line-height: 0.85; letter-spacing: 12px;
  margin-bottom: -10px;
  user-select: none;
}

/* Title */
.ws-ph-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 7vw, 64px);
  letter-spacing: 4px; line-height: 1;
  margin: 0 0 16px;
}
.ws-ph-title--soon { color: var(--toxic, #39FF14); }
.ws-ph-title--white { color: #f5f5f0; }
.ws-ph-title--404 { color: var(--ember, #FF4500); }
.ws-ph-title-accent { display: inline; color: #f5f5f0; }
.ws-ph-title-accent--toxic { color: var(--toxic, #39FF14); }

/* Description */
.ws-ph-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; color: var(--chrome, #b0b0b8); font-weight: 300;
  line-height: 1.75; max-width: 480px; margin: 0 0 28px;
}

/* Divider */
.ws-ph-divider {
  width: 60px; height: 1px; margin: 0 auto 28px;
}
.ws-ph-divider--soon { background: rgba(57,255,20,0.15); }
.ws-ph-divider--ember { background: rgba(255,69,0,0.15); }

/* Meta info cards */
.ws-ph-meta {
  display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap;
  justify-content: center;
}
.ws-ph-meta-card {
  padding: 14px 22px; border-radius: 12px;
  background: rgba(57,255,20,0.03);
  border: 1px solid rgba(57,255,20,0.06);
  min-width: 100px;
}
.ws-ph-meta-card--ember {
  background: rgba(255,69,0,0.03);
  border-color: rgba(255,69,0,0.06);
}
.ws-ph-meta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(176,176,184,0.5);
  margin-bottom: 4px;
}
.ws-ph-meta-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px; font-weight: 600; color: var(--bone, #e8e6e1);
}
.ws-ph-meta-value--soon { color: var(--toxic, #39FF14); }
.ws-ph-meta-value--ember { color: var(--ember, #FF4500); }

/* CTA buttons */
.ws-ph-actions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.ws-ph-actions--spaced {
  margin-top: 36px;
}
.ws-ph-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; cursor: pointer;
}
.ws-ph-btn--primary {
  border: none; color: #0d0d0f;
}
.ws-ph-btn--toxic {
  background: var(--toxic, #39FF14);
  box-shadow: 0 0 24px rgba(57,255,20,0.15);
}
.ws-ph-btn--toxic:hover {
  box-shadow: 0 0 36px rgba(57,255,20,0.3);
  filter: brightness(1.1);
}
.ws-ph-btn--ember {
  background: var(--ember, #FF4500);
  box-shadow: 0 0 24px rgba(255,69,0,0.15);
}
.ws-ph-btn--ember:hover {
  box-shadow: 0 0 36px rgba(255,69,0,0.3);
  filter: brightness(1.1);
}
.ws-ph-btn--ghost {
  background: transparent; color: var(--bone, #e8e6e1);
  border: 1px solid rgba(255,255,255,0.1);
}
.ws-ph-btn--ghost:hover {
  color: #fff; border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
}
.ws-ph-btn--ghost-ember {
  background: transparent;
  color: var(--ember, #FF4500);
  border: 1px solid rgba(255,69,0,0.3);
}
.ws-ph-btn--ghost-ember:hover {
  color: #ff6a33;
  border-color: rgba(255,69,0,0.5);
  background: rgba(255,69,0,0.05);
}
.ws-ph-btn--ghost-dim {
  background: transparent;
  color: var(--chrome, #b0b0b8);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px;
  font-size: 12px;
}
.ws-ph-btn--ghost-dim:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
}

/* Email notify form */
.ws-ph-notify-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.ws-ph-notify-input {
  flex: 1;
  padding: 12px 16px;
  background: #2e2e33;
  border: 1px solid rgba(255,255,255,0.08);
  border-right: none;
  color: var(--bone, #e8e6e1);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
}
.ws-ph-notify-input::placeholder {
  color: rgba(176,176,184,0.5);
}
.ws-ph-notify-success {
  background: #0d2b0a;
  border: 1px solid #1a4a14;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--toxic, #39FF14);
}
.ws-ph-btn--notify {
  padding: 12px 24px;
  flex-shrink: 0;
}

/* Ghost toxic button */
.ws-ph-btn--ghost-toxic {
  background: transparent;
  color: var(--toxic, #39FF14);
  border: 1px solid rgba(57,255,20,0.3);
  padding: 12px 24px;
  font-size: 12px;
}
.ws-ph-btn--ghost-toxic:hover {
  color: #4dff33;
  border-color: rgba(57,255,20,0.5);
  background: rgba(57,255,20,0.05);
}

/* Toxic divider lines */
.ws-ph-divider-line--toxic-left {
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.3));
}
.ws-ph-divider-line--toxic-right {
  background: linear-gradient(90deg, rgba(57,255,20,0.3), transparent);
}
.ws-ph-divider-label--toxic {
  color: var(--toxic, #39FF14);
}

/* Particle dot variants */
.ws-ph-dot--ember { background: var(--ember, #FF4500); }
.ws-ph-dot--pink { background: #ff3c8e; }
.ws-ph-dot--ambient { background: var(--toxic, #39FF14); width: 2px; height: 2px; }

/* Flask wrap */
.ws-ph-flask-wrap {
  margin-bottom: 24px;
}

/* 404 Title accent ember */
.ws-ph-title-accent--ember {
  color: var(--ember, #FF4500);
}

/* 404 Divider with text */
.ws-ph-divider-text {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 400px;
}
.ws-ph-divider-line {
  flex: 1;
  height: 1px;
}
.ws-ph-divider-line--ember-left {
  background: linear-gradient(90deg, transparent, rgba(255,69,0,0.3));
}
.ws-ph-divider-line--ember-right {
  background: linear-gradient(90deg, rgba(255,69,0,0.3), transparent);
}
.ws-ph-divider-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ws-ph-divider-label--ember {
  color: var(--ember, #FF4500);
}

/* 404 Error code */
.ws-ph-errcode {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 2px;
  margin: 0 0 32px;
}

/* Notify hint (coming soon page) */
.ws-ph-notify-hint {
  font-size: 12px; color: rgba(176,176,184,0.45); margin: 10px 0 0;
  font-weight: 300;
}
.ws-ph-notify-link {
  color: var(--toxic, #39FF14); text-decoration: none; opacity: 0.7;
  font-weight: 600; transition: opacity 0.2s;
}
.ws-ph-notify-link:hover { opacity: 1; }

/* Responsive */
@media (max-width: 600px) {
  .ws-ph-layout { padding: 40px 16px 80px; }
  .ws-ph-actions { flex-direction: column; align-items: center; }
  .ws-ph-btn { width: 100%; max-width: 240px; justify-content: center; }
  .ws-ph-notify-form { flex-direction: column; }
  .ws-ph-notify-input { border-right: 1px solid rgba(255,255,255,0.08); }
}

/* ═══ NEWSLETTER MANAGE PAGE ═══ */
.ws-nl-page { min-height: 100vh; background: var(--bk, #0d0d0f); padding-top: 72px; position: relative; overflow: hidden; }
.ws-nl-atmo {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% 10%, rgba(57,255,20,0.04) 0%, transparent 70%);
}
.ws-nl-layout {
  max-width: 560px; margin: 0 auto; padding: 48px 0 80px;
  position: relative; z-index: 2;
}

/* Header */
.ws-nl-header {
  text-align: center; margin-bottom: 40px;
}
.ws-nl-header svg { margin-bottom: 16px; opacity: 0.6; }
.ws-nl-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 6vw, 48px);
  letter-spacing: 3px; color: #f5f5f0; margin: 0 0 8px; line-height: 1;
}
.ws-nl-subtitle {
  font-size: 14px; color: var(--chrome, #b0b0b8); font-weight: 300;
  margin: 0; line-height: 1.6;
}

/* Alert */
.ws-nl-alert {
  padding: 14px 20px; margin-bottom: 24px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  text-align: center;
}
.ws-nl-alert--info {
  background: rgba(57,255,20,0.06); border: 1px solid rgba(57,255,20,0.15);
  color: var(--toxic, #39FF14);
}
.ws-nl-alert--error {
  background: rgba(255,69,0,0.06); border: 1px solid rgba(255,69,0,0.15);
  color: var(--ember, #FF4500);
}

/* Card */
.ws-nl-card {
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.06);
  padding: 32px 28px;
}
.ws-nl-card__email {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 14px;
  color: var(--bone, #e8e6e1); margin-bottom: 16px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ws-nl-card__email svg { color: var(--toxic, #39FF14); opacity: 0.5; flex-shrink: 0; }
.ws-nl-card__status {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--chrome, #b0b0b8); margin-bottom: 24px;
}
.ws-nl-badge {
  display: inline-block; padding: 3px 10px; font-size: 11px;
  letter-spacing: 1px; margin-left: 6px;
}
.ws-nl-badge--active {
  background: rgba(57,255,20,0.1); color: var(--toxic, #39FF14);
  border: 1px solid rgba(57,255,20,0.2);
}
.ws-nl-badge--unsubscribed {
  background: rgba(176,176,184,0.08); color: var(--chrome, #b0b0b8);
  border: 1px solid rgba(176,176,184,0.15);
}

/* Preferences */
.ws-nl-prefs { margin-bottom: 32px; }
.ws-nl-prefs__title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--bone, #e8e6e1); margin: 0 0 16px;
}
.ws-nl-prefs__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.ws-nl-pref-toggle {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px; padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--chrome, #b0b0b8);
  cursor: pointer; transition: all 0.25s;
  text-align: left; font-family: 'Barlow', sans-serif;
}
.ws-nl-pref-toggle svg {
  color: var(--chrome, #b0b0b8); margin-bottom: 4px;
  transition: color 0.25s;
}
.ws-nl-pref-toggle__label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--bone, #e8e6e1);
}
.ws-nl-pref-toggle__desc {
  font-size: 11px; color: rgba(176,176,184,0.5); font-weight: 300;
  line-height: 1.4;
}
.ws-nl-pref-toggle__indicator {
  position: absolute; top: 12px; right: 12px;
  width: 8px; height: 8px;
  background: rgba(176,176,184,0.2);
  transition: all 0.25s;
}
.ws-nl-pref-toggle:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

/* Active / on state */
.ws-nl-pref-toggle--on {
  border-color: rgba(57,255,20,0.2);
  background: rgba(57,255,20,0.03);
}
.ws-nl-pref-toggle--on svg { color: var(--toxic, #39FF14); }
.ws-nl-pref-toggle--on .ws-nl-pref-toggle__indicator {
  background: var(--toxic, #39FF14);
  box-shadow: 0 0 8px rgba(57,255,20,0.4);
}
.ws-nl-pref-toggle--on:hover {
  border-color: rgba(57,255,20,0.3);
  background: rgba(57,255,20,0.05);
}

/* Saved confirmation */
.ws-nl-prefs__saved {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--toxic, #39FF14); margin-top: 14px; opacity: 0.8;
}

/* Unsubscribe section */
.ws-nl-unsub-section {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.ws-nl-unsub-section p {
  font-size: 13px; color: rgba(176,176,184,0.5); margin: 0 0 12px;
}
.ws-nl-unsub-btn {
  display: inline-block; padding: 10px 24px;
  background: transparent; color: var(--ember, #FF4500);
  border: 1px solid rgba(255,69,0,0.25);
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.25s;
}
.ws-nl-unsub-btn:hover {
  background: rgba(255,69,0,0.08); border-color: rgba(255,69,0,0.4);
}

/* Resubscribe */
.ws-nl-resubscribe {
  text-align: center; padding: 24px 0;
}
.ws-nl-resubscribe p {
  font-size: 14px; color: var(--chrome, #b0b0b8); margin: 0 0 16px;
}
.ws-nl-resub-btn {
  padding: 12px 28px;
  background: var(--toxic, #39FF14); color: #0d0d0f;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.2s;
}
.ws-nl-resub-btn:hover { filter: brightness(1.1); }

/* Lookup form */
.ws-nl-lookup { text-align: center; }
.ws-nl-lookup__text {
  font-size: 14px; color: var(--chrome, #b0b0b8); margin: 0 0 24px;
  font-weight: 300; line-height: 1.6;
}
.ws-nl-lookup__form {
  display: flex; gap: 0; max-width: 440px; margin: 0 auto;
}
.ws-nl-lookup__input {
  flex: 1; padding: 12px 16px;
  background: #2e2e33; border: 1px solid rgba(255,255,255,0.08);
  border-right: none; color: var(--bone, #e8e6e1);
  font-family: 'Barlow', sans-serif; font-size: 14px; outline: none;
}
.ws-nl-lookup__input::placeholder { color: rgba(176,176,184,0.4); }
.ws-nl-lookup__input:focus { border-color: var(--toxic, #39FF14); }
.ws-nl-lookup__btn {
  padding: 12px 24px;
  background: var(--toxic, #39FF14); color: #0d0d0f;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.ws-nl-lookup__btn:hover { filter: brightness(1.1); }
.ws-nl-lookup__or {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(176,176,184,0.3); margin: 24px 0;
}

/* Signup (on manage page) */
.ws-nl-signup { max-width: 440px; margin: 0 auto; }
.ws-nl-signup__title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--bone, #e8e6e1); margin: 0 0 12px;
}
.ws-nl-signup__row { display: flex; gap: 0; }
.ws-nl-signup__btn {
  padding: 12px 24px;
  background: var(--toxic, #39FF14); color: #0d0d0f;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.ws-nl-signup__btn:hover { filter: brightness(1.1); }
.ws-nl-signup__msg {
  margin-top: 12px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 1px;
}
.ws-nl-signup__msg--ok { color: var(--toxic, #39FF14); }
.ws-nl-signup__msg--err { color: var(--ember, #FF4500); }

/* Back link */
.ws-nl-back {
  text-align: center; margin-top: 40px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04);
}
.ws-nl-back__link {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--chrome, #b0b0b8); text-decoration: none;
  transition: color 0.2s;
}
.ws-nl-back__link:hover { color: var(--toxic, #39FF14); }

/* Responsive newsletter manage */
@media (max-width: 600px) {
  .ws-nl-layout { padding: 32px 0 60px; }
  .ws-nl-card { padding: 24px 20px; }
  .ws-nl-prefs__grid { grid-template-columns: 1fr; }
  .ws-nl-lookup__form { flex-direction: column; }
  .ws-nl-lookup__input { border-right: 1px solid rgba(255,255,255,0.08); }
  .ws-nl-signup__row { flex-direction: column; }
  .ws-nl-signup__row .ws-nl-lookup__input { border-right: 1px solid rgba(255,255,255,0.08); }
}
