/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

/* ============================================
   DESIGN TOKENS (fallback for standalone use)
   ============================================ */
:root {
  --bg-base:        #0B0F14;
  --bg-surface:     #101826;
  --bg-raised:      #162033;

  --brand-red:      #c0392b;
  --brand-red-lite: #e74c3c;

  --gold:           #c9952a;
  --gold-lite:      #f0b84a;
  --gold-dim:       rgba(201,149,42,0.15);
  --gold-glow:      rgba(240,184,74,0.3);

  --cyan:           #00D9FF;
  --cyan-dim:       rgba(0,217,255,0.12);
  --cyan-glow:      rgba(0,217,255,0.25);

  --text-primary:   #E6EDF3;
  --text-secondary: #9DA7B3;
  --text-muted:     #6B7684;
  --border:         rgba(255,255,255,0.07);
  --border-gold:    rgba(201,149,42,0.25);

  --font-display:   'Inter', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  --ease-smooth:    cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================
   AMBIENT LAYERS
   ============================================ */
#dust-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none; opacity: 0.5;
}
.grid-drift {
  position: fixed; inset: -100px; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,149,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,149,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 35s linear infinite; opacity: 0.5;
}
@keyframes gridDrift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(60px,60px); }
}
.gradient-drift {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(201,149,42,0.05) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 60%, rgba(0,217,255,0.03) 0%, transparent 60%);
  animation: gradientDrift 30s ease-in-out infinite alternate;
}
@keyframes gradientDrift {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.1) translate(2%,3%); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 12px var(--gold-glow); }
  50%      { box-shadow: 0 0 24px var(--gold-glow), 0 0 48px rgba(201,149,42,0.15); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes characterFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes haloBreath {
  0%,100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  50%      { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

/* ============================================
   PAGE CONTENT Z-INDEX
   ============================================ */
.page-content { position: relative; z-index: 10; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 7rem 0; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Shared section labels */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-eyebrow::after {
  content: ''; flex: 1; max-width: 60px;
  height: 1px; background: var(--gold);
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--text-secondary); font-size: 1rem;
  max-width: 520px; line-height: 1.7;
}
.section-header { margin-bottom: 3.5rem; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lite) 100%); color: var(--bg-base);
  padding: 1rem 1.8rem; border-radius: 14px;
  min-height: 54px;
  font-family: var(--font-body); font-weight: 800; font-size: 0.98rem;
  border: 1px solid rgba(240,184,74,0.55); cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  animation: glowPulse 3.2s ease-in-out infinite;
  box-shadow: 0 18px 42px rgba(201,149,42,0.24), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.btn-primary:hover {
  filter: brightness(1.06); transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(201,149,42,0.32), 0 0 28px var(--gold-glow);
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: rgba(255,255,255,0.03); color: var(--text-primary);
  padding: 1rem 1.6rem; border-radius: 14px;
  min-height: 54px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.96rem;
  border: 1px solid rgba(0,217,255,0.3); cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}
.btn-secondary:hover {
  background: rgba(0,217,255,0.12); border-color: var(--cyan);
  transform: translateY(-3px); box-shadow: 0 0 20px var(--cyan-glow);
}
.btn-arrow { display: inline-block; transition: transform 0.2s ease; }
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(3px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(11,15,20,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center;
  gap: 0.75rem; text-decoration: none;
}
.nav-logo-img {
  height: 44px; width: auto;
  mix-blend-mode: screen; filter: brightness(1.1);
}
.nav-logo-fallback { display: none; align-items: center; gap: 0.75rem; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 800; color: var(--brand-red); letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s ease; position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--gold-lite); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: linear-gradient(135deg, rgba(201,149,42,0.18), rgba(240,184,74,0.08)); border: 1px solid rgba(240,184,74,0.45);
  color: var(--gold-lite); padding: 0.78rem 1.35rem; border-radius: 999px;
  font-size: 0.92rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 14px 32px rgba(0,0,0,0.24);
}
.nav-cta:hover {
  background: linear-gradient(135deg, rgba(240,184,74,0.22), rgba(201,149,42,0.14)); box-shadow: 0 18px 42px rgba(0,0,0,0.3), 0 0 22px rgba(240,184,74,0.16);
  transform: translateY(-2px);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s ease; }

/* ============================================
   SCENE 1 — SHOWROOM HERO
   ============================================ */
.showroom-hero {
  position: relative; min-height: 75vh;
  display: flex; align-items: center; overflow: hidden;
}
.showroom-hero-bg {
  position: absolute; inset: 0;
  background: url('Images/bg-workshop.png') center center / cover no-repeat;
  filter: blur(2px) brightness(0.2); transform: scale(1.05); z-index: 0;
}
.showroom-hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, transparent 30%, rgba(11,15,20,0.6) 100%),
    linear-gradient(to bottom, rgba(11,15,20,0.3) 0%, transparent 30%, transparent 70%, rgba(11,15,20,0.9) 100%);
  z-index: 1;
}
.showroom-hero-content {
  position: relative; z-index: 10; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  padding-top: 6rem;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem; min-height: 75vh;
}
.showroom-text { }
.showroom-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--gold-lite); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0; animation: fadeSlideUp 0.6s var(--ease-smooth) 0.3s forwards;
}
.showroom-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.showroom-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.25rem;
  opacity: 0; animation: fadeSlideUp 0.6s var(--ease-smooth) 0.5s forwards;
}
.showroom-headline .accent { color: var(--gold-lite); }
.showroom-sub {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 2rem; max-width: 440px;
  opacity: 0; animation: fadeSlideUp 0.6s var(--ease-smooth) 0.7s forwards;
}
.showroom-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  opacity: 0; animation: fadeSlideUp 0.6s var(--ease-smooth) 0.9s forwards;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 800; color: var(--gold-lite); line-height: 1;
}
.stat-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--text-muted); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 0.25rem;
}
/* Character side */
.showroom-character { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.showroom-character-halo {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,149,42,0.15) 0%, transparent 70%);
  border-radius: 50%; animation: haloBreath 5s ease-in-out infinite;
}
.showroom-character-img {
  position: relative; z-index: 2;
  width: 400px; max-width: 100%;
  animation: characterFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
  opacity: 0; animation: characterEnter 0.8s var(--ease-smooth) 0.6s forwards, characterFloat 5s ease-in-out 1.4s infinite;
}
@keyframes characterEnter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Filter bar */
.filter-bar {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  padding: 2rem 0 0;
}
.filter-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase;
  margin-right: 0.5rem;
}
.filter-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-secondary); padding: 0.4rem 1rem;
  border-radius: 100px; font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--border-gold); color: var(--gold-lite); }
.filter-btn.active {
  background: var(--gold-dim); border-color: var(--gold);
  color: var(--gold-lite);
}
.filter-btn[data-filter="flagship"].active { background: var(--gold-dim); border-color: var(--gold); color: var(--gold-lite); }
.filter-btn[data-filter="paid"].active { background: var(--brand-red-dim); border-color: var(--brand-red); color: var(--brand-red-lite); }
.filter-btn[data-filter="free"].active { background: var(--cyan-dim); border-color: var(--cyan); color: var(--cyan); }

/* ============================================
   SCENE 2 — PRODUCT SHOWROOM CARDS
   ============================================ */
.showroom-section { background: var(--bg-surface); border-top: 1px solid var(--border); }

/* Full-width featured card */
.product-featured {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
}
.product-featured::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.product-featured:hover {
  border-color: var(--border-gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px var(--gold-glow);
  transform: translateY(-4px);
}
.product-featured:hover::before { opacity: 1; }

.product-featured-img-wrap {
  position: relative; overflow: hidden; min-height: 320px;
}
.product-featured-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.product-featured:hover .product-featured-img { transform: scale(1.05); }
.product-featured-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg-raised) 100%);
  pointer-events: none;
}

.product-featured-body {
  padding: 2.5rem; display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.product-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--border-gold); border-radius: 4px;
  padding: 0.25rem 0.6rem; margin-bottom: 1rem; width: fit-content;
}
.product-featured-name {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.product-featured-desc {
  color: var(--text-secondary); font-size: 0.975rem; line-height: 1.7;
  margin-bottom: 1.5rem; max-width: 380px;
}
.product-feature-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.5rem; margin-bottom: 2rem;
}
.product-feature-list li {
  font-size: 0.875rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 0.6rem;
}
.product-feature-list li::before {
  content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0;
}
.product-featured-footer {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.product-price {
  font-family: var(--font-mono); font-size: 1.4rem;
  color: var(--gold-lite); font-weight: 700;
}
.product-price-note {
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem;
}

/* Standard product grid — 3 col */
.product-grid-standard {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem;
}
.product-card-std {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all 0.3s var(--ease-smooth); position: relative;
  display: flex; flex-direction: column;
}
.product-card-std::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.product-card-std:hover {
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 24px var(--gold-glow);
}
.product-card-std:hover::before { opacity: 1; }

.product-card-img-wrap {
  position: relative; height: 176px; overflow: hidden;
}
.product-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}
.product-card-screenshot {
  background: linear-gradient(180deg, rgba(7,12,20,0.98), rgba(12,20,32,0.94));
}
.product-card-std:hover .product-card-img { transform: scale(1.08); }
.product-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--bg-raised) 100%);
  pointer-events: none;
}
/* Hover badge on image */
.product-card-hover-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--bg-base); border: 1px solid var(--border-gold);
  border-radius: 6px; padding: 0.25rem 0.6rem;
  font-family: var(--font-mono); font-size: 0.6rem;
  color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0; transform: translateY(-4px);
  transition: all 0.2s ease;
}
.product-card-std:hover .product-card-hover-badge { opacity: 1; transform: translateY(0); }

.product-card-body {
  padding: 1.25rem; flex: 1;
  display: flex; flex-direction: column; position: relative; z-index: 1;
}
.product-card-tag {
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.product-card-name {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.01em;
}
.product-card-desc {
  font-size: 0.83rem; color: var(--text-secondary);
  line-height: 1.6; flex: 1; margin-bottom: 1rem;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; border-top: 1px solid var(--border); margin-top: auto;
}
.product-card-price {
  font-family: var(--font-mono); font-size: 1.1rem;
  color: var(--gold-lite); font-weight: 600;
}
.product-card-price-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.product-card-price.free { color: var(--cyan); }
.product-card-link {
  font-size: 0.8rem; color: var(--cyan); font-weight: 600;
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s ease;
}
.product-card-std:hover .product-card-link { gap: 0.6rem; }

/* Manual placeholder styling */
.product-card-img-wrap.manual {
  background: linear-gradient(135deg, rgba(99,102,241,0.2) 0%, var(--bg-raised) 100%);
}

.product-card-img-wrap-tool {
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  isolation: isolate;
}

.product-card-img-wrap-tool::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent 55%),
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(180deg, rgba(11,15,20,0.05), rgba(11,15,20,0.55));
  z-index: 0;
}

.stickyvault-art {
  background:
    radial-gradient(circle at 82% 24%, rgba(0,217,255,0.22), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(0,217,255,0.12), transparent 28%),
    linear-gradient(145deg, rgba(8,24,34,0.98), rgba(14,42,54,0.92));
}

.noobiaudit-art {
  background:
    radial-gradient(circle at 80% 20%, rgba(240,184,74,0.24), transparent 30%),
    radial-gradient(circle at 20% 76%, rgba(201,149,42,0.16), transparent 30%),
    linear-gradient(145deg, rgba(27,20,10,0.98), rgba(47,34,15,0.92));
}

.product-card-orb {
  position: absolute;
  border-radius: 999px;
  opacity: 0.9;
  z-index: 0;
}

.product-card-orb-a {
  width: 110px;
  height: 110px;
  top: 18px;
  right: 18px;
}

.product-card-orb-b {
  width: 72px;
  height: 72px;
  bottom: 22px;
  left: 22px;
}

.stickyvault-art .product-card-orb-a,
.stickyvault-art .product-card-orb-b {
  background: radial-gradient(circle, rgba(0,217,255,0.28), rgba(0,217,255,0.04) 68%, transparent 72%);
}

.noobiaudit-art .product-card-orb-a,
.noobiaudit-art .product-card-orb-b {
  background: radial-gradient(circle, rgba(240,184,74,0.3), rgba(240,184,74,0.05) 68%, transparent 72%);
}
.noobiaudit-art .product-card-orb-a, .noobiaudit-art .product-card-orb-b { display: none; }
.stickyvault-art .product-card-orb-a, .stickyvault-art .product-card-orb-b { display: none; }

.product-card-emblem {
  position: relative;
  z-index: 1;
  width: 116px;
  height: 116px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.34);
  transform: translateY(0);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.product-card-emblem svg {
  width: 58px;
  height: 58px;
}

.stickyvault-art .product-card-emblem {
  color: var(--cyan);
  background: linear-gradient(180deg, rgba(6,18,26,0.92), rgba(11,32,43,0.72));
  box-shadow: 0 24px 50px rgba(0,0,0,0.34), 0 0 30px rgba(0,217,255,0.12);
}

.noobiaudit-art .product-card-emblem {
  color: var(--gold-lite);
  background: linear-gradient(180deg, rgba(29,20,8,0.94), rgba(58,42,15,0.76));
  box-shadow: 0 24px 50px rgba(0,0,0,0.34), 0 0 30px rgba(240,184,74,0.14);
}

.product-card-std:hover .product-card-emblem {
  transform: translateY(-6px);
}

.product-card-scene-label {
  position: absolute;
  left: 1.25rem;
  bottom: 1.15rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(230,237,243,0.82);
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(11,15,20,0.44);
  backdrop-filter: blur(8px);
}

/* ============================================
   SCENE 2 — V3 WORKSHOP SHELF
   ============================================ */

/* Hero trust chips (inside showroom hero) */
.showroom-trust-strip {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-smooth) 1.1s forwards;
}
.trust-chip {
  font-family: var(--font-mono); font-size: 0.63rem;
  color: var(--text-muted); letter-spacing: 0.05em;
  padding: 0.26rem 0.7rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* ── FEATURED SPOTLIGHT ── */
.product-spotlight {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 55% 45%;
  margin-bottom: 2rem;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-spotlight:hover {
  border-color: rgba(201,149,42,0.45);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,149,42,0.06) inset;
}
.product-spotlight.spotlight-flagship::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(201,149,42,0.08) 0%, transparent 55%);
}
.product-spotlight.spotlight-paid::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(192,57,43,0.06) 0%, transparent 55%);
}
.spotlight-media {
  position: relative; overflow: hidden; min-height: 420px;
}
.spotlight-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.product-spotlight:hover .spotlight-media img { transform: scale(1.04); }
.spotlight-media-tint {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 30%, var(--bg-raised) 100%);
  pointer-events: none;
}
.spotlight-number {
  position: absolute; top: 1.25rem; left: 1.25rem;
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.12em; color: rgba(240,184,74,0.65);
  background: rgba(11,15,20,0.78); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,149,42,0.18);
  padding: 0.25rem 0.6rem; border-radius: 100px;
}
.spotlight-body {
  padding: 3rem 2.75rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.spotlight-type {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.spotlight-type::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
  animation: statusPulse 2s ease-in-out infinite;
}
.spotlight-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.05;
  margin-bottom: 0.9rem;
}
.spotlight-outcome {
  font-size: 1.02rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 1.5rem; max-width: 360px;
}
.spotlight-pills {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-bottom: 2rem;
}
.spotlight-pill {
  font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.06em;
  padding: 0.28rem 0.7rem;
  border: 1px solid rgba(201,149,42,0.25); border-radius: 100px;
  color: rgba(201,149,42,0.72); white-space: nowrap;
}
.spotlight-price-row { margin-bottom: 1.75rem; }
.spotlight-price {
  font-family: var(--font-mono); font-size: 1.5rem;
  font-weight: 700; color: var(--gold-lite);
}
.spotlight-price-note {
  font-size: 0.72rem; color: var(--text-muted); margin-top: 0.2rem;
}
.spotlight-actions {
  display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap;
}

/* ── WORKSHOP SHELF GRID ── */
.shelf-section-label {
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.shelf-section-label::before,
.shelf-section-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}
.shelf-section-label::before {
  background: linear-gradient(to left, var(--border), transparent);
  max-width: 40px;
}
.shelf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.shelf-card {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition:
    transform 0.28s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.shelf-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 18px 40px rgba(0,0,0,0.38);
}
.shelf-card--fitness:hover {
  border-color: rgba(192,57,43,0.4);
  box-shadow: 0 18px 40px rgba(0,0,0,0.38), 0 0 22px rgba(192,57,43,0.1);
}
.shelf-card--free:hover {
  border-color: rgba(0,217,255,0.25);
  box-shadow: 0 18px 40px rgba(0,0,0,0.38), 0 0 22px rgba(0,217,255,0.07);
}
.shelf-card--audit:hover,
.shelf-card--learning:hover {
  border-color: rgba(201,149,42,0.32);
  box-shadow: 0 18px 40px rgba(0,0,0,0.38), 0 0 22px rgba(201,149,42,0.09);
}
/* Image area */
.shelf-card-image {
  position: relative; height: 180px; overflow: hidden;
  background: var(--bg-surface); flex-shrink: 0;
}
.shelf-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}
.shelf-card:hover .shelf-card-image img { transform: scale(1.06); }
.shelf-card-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg-raised) 100%);
  pointer-events: none;
}
.shelf-card-number {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2;
  font-family: var(--font-mono); font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.14em; color: rgba(230,237,243,0.38);
  background: rgba(11,15,20,0.6); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.2rem 0.5rem; border-radius: 4px;
}
/* Card body */
.shelf-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
  flex: 1; display: flex; flex-direction: column;
}
.shelf-card-type {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.shelf-card[data-tier="free"] .shelf-card-type { color: var(--cyan); }
.shelf-card[data-tier="paid"] .shelf-card-type { color: var(--brand-red-lite); }
.shelf-card[data-tier="flagship"] .shelf-card-type { color: var(--gold); }
.shelf-card-name {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 800; letter-spacing: -0.015em;
  margin-bottom: 0.5rem; line-height: 1.2;
}
.shelf-card-outcome {
  font-size: 0.875rem; color: var(--text-secondary);
  line-height: 1.6; flex: 1; margin-bottom: 1.1rem;
}
.shelf-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; padding-top: 0.9rem;
  border-top: 1px solid var(--border); margin-top: auto;
}
.shelf-card-state {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-mono); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.04em; white-space: nowrap;
}
.shelf-card-state-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: currentColor; opacity: 0.7;
}
.shelf-card-state.state-free  { color: var(--cyan); }
.shelf-card-state.state-paid  { color: var(--gold-lite); }
.shelf-card-cta {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 0.85rem; border-radius: 8px;
  border: 1px solid var(--border); color: var(--text-secondary);
  transition: all 0.2s ease; white-space: nowrap;
  background: transparent; text-decoration: none;
}
.shelf-card-cta:hover {
  border-color: rgba(255,255,255,0.2); color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}
.shelf-card[data-tier="paid"] .shelf-card-cta:hover { border-color: rgba(192,57,43,0.4);  color: var(--brand-red-lite); }
.shelf-card[data-tier="free"] .shelf-card-cta:hover { border-color: rgba(0,217,255,0.3);   color: var(--cyan); }
.shelf-card[data-tier="flagship"] .shelf-card-cta:hover { border-color: rgba(201,149,42,0.4);  color: var(--gold-lite); }
.shelf-card-cta-arrow {
  display: inline-block; transition: transform 0.2s ease; font-style: normal;
}
.shelf-card-cta:hover .shelf-card-cta-arrow { transform: translateX(3px); }

/* Wide card — NoobiManual, spans 2 cols, horizontal */
.shelf-card--wide { grid-column: span 2; flex-direction: row; }
.shelf-card--wide .shelf-card-image {
  width: 240px; height: auto; flex-shrink: 0;
}
.shelf-card--wide .shelf-card-image-overlay {
  background: linear-gradient(to right, transparent 30%, var(--bg-raised) 100%);
}

/* Learning art — NoobiManual card visual */
.learning-art {
  background:
    radial-gradient(circle at 75% 22%, rgba(201,149,42,0.22), transparent 32%),
    radial-gradient(circle at 22% 78%, rgba(0,217,255,0.14), transparent 28%),
    linear-gradient(145deg, rgba(25,18,8,0.98), rgba(50,35,14,0.92));
}

/* ── TRUST RAIL ── */
.trust-rail {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.trust-rail-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--text-muted); letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem;
}
.trust-rail-item-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0.55; flex-shrink: 0;
}
.trust-rail-sep {
  width: 1px; height: 14px;
  background: var(--border); flex-shrink: 0;
}

/* ── REC 1: IMAGE DISPLAY IMPROVEMENTS ── */
.shelf-card-image img,
.spotlight-media img { object-position: top center; }

.shelf-card-image.img-failed {
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  display: flex; align-items: center; justify-content: center;
}
.shelf-img-initials {
  font-family: var(--font-mono); font-size: 1.75rem; font-weight: 700;
  color: rgba(255,255,255,0.12); letter-spacing: 0.1em; display: none;
}
.shelf-card-image.img-failed .shelf-img-initials { display: block; }

/* ── REC 2: SPOTLIGHT TOGGLE ── */
.spotlight-toggle {
  display: flex; gap: 0.5rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.spotlight-toggle-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1.15rem; border-radius: 12px;
  border: 1px solid var(--border); background: transparent; cursor: pointer;
  transition: all 0.22s ease; text-align: left; flex: 1; min-width: 180px;
}
.spotlight-toggle-btn:hover:not(.active) {
  border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.03);
}
.spotlight-toggle-btn.active { cursor: default; }
.spotlight-toggle-btn.active.spotlight-flagship {
  border-color: rgba(201,149,42,0.45); background: rgba(201,149,42,0.07);
}
.spotlight-toggle-btn.active.spotlight-paid {
  border-color: rgba(192,57,43,0.45); background: rgba(192,57,43,0.07);
}
.spotlight-toggle-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.spotlight-flagship .spotlight-toggle-dot { background: var(--gold); }
.spotlight-paid .spotlight-toggle-dot { background: var(--brand-red-lite); }
.spotlight-toggle-label { display: flex; flex-direction: column; gap: 0.1rem; flex: 1; }
.spotlight-toggle-tag {
  font-family: var(--font-mono); font-size: 0.57rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.spotlight-toggle-name {
  font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 700; color: var(--text-primary); line-height: 1.2;
}
.spotlight-toggle-price {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600; flex-shrink: 0;
}
.spotlight-flagship .spotlight-toggle-price { color: var(--gold-lite); }
.spotlight-paid .spotlight-toggle-price { color: var(--brand-red-lite); }

/* Spotlight variants */
.spotlight-flagship .spotlight-type { color: var(--gold); }
.spotlight-flagship .spotlight-type::before { background: var(--gold); }
.spotlight-flagship .spotlight-pill { border-color: rgba(201,149,42,0.25); color: rgba(201,149,42,0.72); }
.spotlight-flagship .spotlight-price { color: var(--gold-lite); }
.spotlight-flagship .spotlight-number { color: rgba(240,184,74,0.65); border-color: rgba(201,149,42,0.18); }

.spotlight-paid:hover {
  border-color: rgba(192,57,43,0.45);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.spotlight-paid .spotlight-type { color: var(--brand-red-lite); }
.spotlight-paid .spotlight-type::before { background: var(--brand-red-lite); }
.spotlight-paid .spotlight-pill {
  border-color: rgba(192,57,43,0.25); color: rgba(231,76,60,0.7);
}
.spotlight-paid .spotlight-price { color: var(--brand-red-lite); }
.spotlight-paid .spotlight-number {
  color: rgba(231,76,60,0.65); border-color: rgba(192,57,43,0.2);
}

/* ── REC 3: WORKSHOP MANIFEST (hero widget) ── */
.workshop-manifest {
  background: rgba(11,15,20,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
  opacity: 0; animation: fadeSlideUp 0.7s var(--ease-smooth) 0.8s forwards;
  max-width: 440px; width: 100%;
}
.manifest-chrome {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.manifest-chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.manifest-dot-red   { background: #e74c3c; }
.manifest-dot-gold  { background: var(--gold); }
.manifest-dot-green { background: #2ecc71; }
.manifest-chrome-title {
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--text-muted); letter-spacing: 0.08em; margin-left: 0.4rem;
}
.manifest-table { padding: 0.4rem 0; }
.manifest-row-header {
  display: grid; grid-template-columns: 3.5rem 1fr 4.5rem 3.5rem;
  gap: 0.5rem; padding: 0.28rem 1.25rem 0.45rem;
  font-family: var(--font-mono); font-size: 0.55rem;
  color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 0.2rem;
}
.manifest-row {
  display: grid; grid-template-columns: 3.5rem 1fr 4.5rem 3.5rem;
  gap: 0.5rem; padding: 0.48rem 1.25rem;
  transition: background 0.15s ease;
  text-decoration: none; color: inherit;
}
a.manifest-row:hover { background: rgba(255,255,255,0.04); }
a.manifest-row:hover .mf-name { color: var(--text-primary); }
.mf-id {
  font-family: var(--font-mono); font-size: 0.6rem;
  color: var(--text-muted); letter-spacing: 0.08em; align-self: center;
}
.mf-name {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500;
  color: rgba(230,237,243,0.82); letter-spacing: 0.01em;
  align-self: center; transition: color 0.15s ease;
}
.mf-type {
  font-family: var(--font-mono); font-size: 0.6rem;
  color: var(--text-muted); letter-spacing: 0.05em; align-self: center;
}
.mf-status {
  font-family: var(--font-mono); font-size: 0.67rem;
  font-weight: 600; text-align: right; align-self: center;
}
.mf-status--paid { color: var(--gold-lite); }
.mf-status--free { color: var(--cyan); }
.manifest-footer {
  padding: 0.6rem 1.25rem 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.18);
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.67rem;
}
.manifest-prompt { color: var(--gold); }
.manifest-cmd { color: var(--text-muted); }
.manifest-cursor {
  display: inline-block; width: 7px; height: 12px; background: var(--cyan);
  vertical-align: middle; animation: cursorBlink 1s step-end infinite;
}

/* ── REC 4: FILTER SMOOTH TRANSITIONS ── */
.product-spotlight {
  transition: border-color 0.3s ease, box-shadow 0.3s ease,
              opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}
.shelf-card {
  transition: transform 0.3s var(--ease-smooth),
              border-color 0.3s ease, box-shadow 0.3s ease,
              opacity 0.35s ease;
}
.shelf-filtered-out {
  opacity: 0.13 !important;
  transform: scale(0.97) !important;
  pointer-events: none;
}
.product-spotlight.shelf-filtered-out { transform: scale(0.995) !important; }

/* ============================================
   SCENE 3 — THE LAB BENCH (Coming Soon)
   ============================================ */
.lab-bench { background: var(--bg-base); border-top: 1px solid var(--border); }

.lab-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.lab-card {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; position: relative; overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}
.lab-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.lab-card:hover {
  border-color: var(--border-gold); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px var(--gold-glow);
}
.lab-card:hover::after { opacity: 1; }

/* Scan line animation on hover */
.lab-card::before {
  content: ''; position: absolute; top: -100%; left: 0; right: 0; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,149,42,0.04), transparent);
  transition: top 0.5s ease; pointer-events: none;
}
.lab-card:hover::before { top: 100%; }

.lab-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; padding: 0.2rem 0.6rem;
  margin-bottom: 1.25rem; width: fit-content;
}
.lab-status.building { background: rgba(201,149,42,0.12); border: 1px solid var(--border-gold); color: var(--gold); }
.lab-status.coming   { background: rgba(0,217,255,0.08);  border: 1px solid rgba(0,217,255,0.2); color: var(--cyan); }
.lab-status.planned  { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-muted); }

/* Pulse dot on status */
.lab-status.building::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold);
  animation: statusPulse 1.5s ease-in-out infinite;
}
@keyframes statusPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.lab-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lab-name {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 800; margin-bottom: 0.5rem;
}
.lab-desc {
  font-size: 0.83rem; color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 1.25rem;
}
.lab-progress { margin-top: auto; }
.lab-progress-bar {
  height: 3px; background: var(--border); border-radius: 2px;
  overflow: hidden; margin-bottom: 0.4rem;
}
.lab-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-lite));
  border-radius: 2px;
  animation: progressLoad 1.2s var(--ease-smooth) forwards;
  transform-origin: left; transform: scaleX(0);
}
@keyframes progressLoad {
  to { transform: scaleX(1); }
}
.lab-progress-label {
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--text-muted); letter-spacing: 0.06em;
}

/* ============================================
   SCENE 4 — FAQ CONSOLE
   ============================================ */
.faq-section {
  background: var(--bg-surface); border-top: 1px solid var(--border);
}
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start;
}
.faq-sidebar { position: sticky; top: 8rem; }
.faq-sidebar-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; line-height: 1.15;
}
.faq-sidebar-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.faq-contact-nudge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold);
  letter-spacing: 0.06em; border: 1px solid var(--border-gold);
  border-radius: 8px; padding: 0.75rem 1rem;
  transition: all 0.2s ease; cursor: pointer; background: transparent;
}
.faq-contact-nudge:hover {
  background: var(--gold-dim); box-shadow: 0 0 16px var(--gold-glow);
}

/* Accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: var(--border-gold); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; text-align: left;
}
.faq-question-text {
  font-weight: 600; font-size: 0.95rem; color: var(--text-primary);
  font-family: var(--font-body); line-height: 1.4;
}
.faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.3s ease;
  font-size: 0.7rem;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  border-color: var(--gold); color: var(--gold);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease-smooth), padding 0.2s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================
   SCENE 5 — BUILDER INVITATION CTA
   ============================================ */
.builder-invite {
  background: var(--bg-base); border-top: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.builder-invite-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,149,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.builder-invite-inner { position: relative; z-index: 2; }

/* Workshop console block */
.console-block {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; text-align: left;
  margin: 2.5rem auto 0; max-width: 560px;
  font-family: var(--font-mono); font-size: 0.78rem;
  position: relative; overflow: hidden;
}
.console-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold));
  animation: consoleScan 3s linear infinite;
}
@keyframes consoleScan {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.console-title-bar {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.console-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.console-dot.red    { background: #e74c3c; }
.console-dot.gold   { background: var(--gold); }
.console-dot.green  { background: #2ecc71; }
.console-title-text {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--text-muted); letter-spacing: 0.06em; margin-left: 0.5rem;
}
.console-line { margin-bottom: 0.4rem; color: var(--text-secondary); }
.console-line .prompt { color: var(--gold); }
.console-line .output { color: var(--text-primary); }
.console-line .comment { color: var(--text-muted); }
.console-line .success { color: #2ecc71; }
.console-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: var(--cyan); vertical-align: middle;
  animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-base); border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo-link { display: inline-block; margin-bottom: 1rem; }
.footer-logo-img { height: 60px; width: auto; mix-blend-mode: screen; filter: brightness(1.1); }
.footer-logo-fallback { }
.footer-brand-name {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 800; color: var(--brand-red); margin-bottom: 0.75rem;
}
.footer-brand-tagline {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-muted); letter-spacing: 0.06em; margin-bottom: 1rem;
}
.footer-brand-tagline .arrow { color: var(--brand-red); }
.footer-brand-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 1rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-lite); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom-badge {
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-bottom-badge::before { content: '◆'; color: var(--gold); font-size: 0.4rem; }

/* additional helpers for style migrations */
.product-feature-list { margin-bottom: 0.85rem; gap: 0.45rem; }
.product-grid-standard .product-feature-list li { font-size: 0.8rem; gap: 0.5rem; }
.product-grid-standard .product-feature-list li::before { font-size: 0.8rem; }
.product-card-link.cyan { color: var(--cyan); }
.product-card-link.gold { color: var(--gold); }
.placeholder { background: var(--bg-raised); display: flex; align-items: center; justify-content: center; }
.placeholder-icon { font-size: 4rem; animation: characterFloat 4s ease-in-out infinite; }
.gradient-bg { background: linear-gradient(to bottom, transparent 40%, var(--bg-raised) 100%); }
.product-card-tag.cyan { color: var(--cyan); }
.product-card-price.small { color: var(--cyan); font-size: 0.85rem; }
.gold-link { color: var(--gold); }
.section-eyebrow.centered { justify-content: center; margin-bottom: 0.75rem; }
.gold-badge { color: var(--gold); letter-spacing: 0.15em; font-size: 0.7rem; }
.section-headline.centered { text-align: center; max-width: 560px; margin: 0 auto 1rem; }
.section-sub.centered { text-align: center; margin: 0 auto 2.5rem; }
.center-flex { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.console-line { margin-top: 0.5rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .product-grid-standard { grid-template-columns: repeat(2, 1fr); }
  .lab-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-sidebar { position: static; }
  /* V3 shelf — 2 cols on tablet */
  .shelf-grid { grid-template-columns: repeat(2, 1fr); }
  /* Wide card still spans 2 at tablet = full row */
  .shelf-card--wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  /* V3 spotlight stacks on narrow screens */
  .product-spotlight { grid-template-columns: 1fr; }
  .spotlight-media { min-height: 240px; }
  .spotlight-media-tint {
    background: linear-gradient(to bottom, transparent 40%, var(--bg-raised) 100%);
  }
  .spotlight-body { padding: 2rem 2rem; }
  .spotlight-toggle {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .showroom-hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 6rem; gap: 2rem; min-height: 65vh; }
  .workshop-manifest { display: none; } /* hide manifest on mobile — hero is single column */
  .showroom-stats { justify-content: center; }
  .showroom-trust-strip { justify-content: center; }
  .spotlight-toggle { flex-direction: column; }
  .spotlight-toggle-btn { min-width: unset; }
  .product-featured { grid-template-columns: 1fr; }
  .product-featured-img-wrap { min-height: 200px; }
  .product-featured-img-overlay { background: linear-gradient(to bottom, transparent 60%, var(--bg-raised) 100%); }
  .product-grid-standard { grid-template-columns: 1fr; }
  .lab-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-padding { padding: 4rem 0; }
}
@media (max-width: 640px) {
  /* V3 shelf — single column */
  .shelf-grid { grid-template-columns: 1fr; }
  /* Wide card collapses to normal vertical card */
  .shelf-card--wide { grid-column: span 1; flex-direction: column; }
  .shelf-card--wide .shelf-card-image {
    width: 100%; height: 160px;
  }
  .shelf-card--wide .shelf-card-image-overlay {
    background: linear-gradient(to bottom, transparent 40%, var(--bg-raised) 100%);
  }
  .spotlight-body { padding: 1.75rem 1.5rem; }
  /* Trust rail: hide separators, let items wrap */
  .trust-rail-sep { display: none; }
  .trust-rail-item { padding: 0.4rem 0.75rem; }
}
