/* ==========================================================================
   STREAMSNAP AI — AWWWARDS-TIER CYBER-CINEMATIC DESIGN SYSTEM
   Aesthetic: Studio Telemetry / Cyber-Brutalism / Optical Precision
   ========================================================================== */

:root {
  --bg-obsidian: #04060A;
  --bg-surface: #090D15;
  --bg-card: #0E131E;
  --bg-card-hover: #141A28;
  
  --primary-gold: #FF9900;
  --gold-glow: rgba(255, 153, 0, 0.5);
  --gold-tint: rgba(255, 153, 0, 0.12);
  
  --laser-cyan: #00F0FF;
  --cyan-glow: rgba(0, 240, 255, 0.4);
  
  --live-red: #FF334B;
  --verified-green: #10B981;
  
  --text-white: #FFFFFF;
  --text-lead: #E2E8F0;
  --text-dim: #94A3B8;
  --text-muted: #64748B;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(255, 153, 0, 0.45);
  --border-cyan: rgba(0, 240, 255, 0.4);
  
  --font-display: 'Syne', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-lead);
  font-family: var(--font-body);
}

body.studio-dark {
  background-color: var(--bg-obsidian);
  color: var(--text-lead);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Film Grain Noise Texture */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
}

/* Custom Interactive Cursor Follower */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
  z-index: 10000;
  mix-blend-mode: screen;
  display: none;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10001;
  display: none;
}

@media (pointer: fine) {
  .custom-cursor, .custom-cursor-dot {
    display: block;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container.narrow {
  max-width: 900px;
}

.text-gold {
  color: var(--primary-gold);
}

.hide-mobile {
  display: flex;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  .container {
    padding: 0 18px;
  }
}

/* ==========================================================================
   TELEMETRY HEADER BAR
   ========================================================================== */
.telemetry-bar {
  background: #020305;
  border-bottom: 1px solid var(--border-subtle);
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.telemetry-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.telemetry-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.telemetry-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.telemetry-dot.pulse-red {
  background: var(--live-red);
  box-shadow: 0 0 8px var(--live-red);
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   STUDIO NAVBAR
   ========================================================================== */
.navbar-studio {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-vector-logo {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links-mono {
  display: flex;
  gap: 32px;
}

@media (max-width: 900px) {
  .nav-links-mono {
    display: none;
  }
}

.nav-mono-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-mono-link span {
  color: var(--primary-gold);
  opacity: 0.6;
}

.nav-mono-link:hover {
  color: var(--text-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Laser & Ghost Buttons */
.btn-ghost-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.btn-ghost-mono:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.btn-laser {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #04060A;
  background: transparent;
  border: none;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-laser-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFB800 0%, #FF9900 60%, #FF5500 100%);
  z-index: 1;
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-laser-text {
  position: relative;
  z-index: 2;
}

.btn-laser:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--gold-glow);
}

/* ==========================================================================
   MONUMENTAL HERO SECTION
   ========================================================================== */
.hero-monumental {
  position: relative;
  padding: 90px 0 100px 0;
  overflow: hidden;
}

.ambient-glow-amber {
  position: absolute;
  top: 5%;
  left: 20%;
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.16) 0%, transparent 65%);
  filter: blur(100px);
  pointer-events: none;
}

.ambient-glow-cyan {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 600px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 65%);
  filter: blur(120px);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-top-telemetry {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1060px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

.sys-badge {
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.sys-coordinates {
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.coord-sep {
  margin: 0 6px;
  color: var(--primary-gold);
}

.hero-giant-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7.5vw, 92px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-white);
  margin-bottom: 26px;
  max-width: 1100px;
  text-transform: uppercase;
}

.title-shimmer {
  background: linear-gradient(135deg, #FFF0D4 0%, #FFB800 50%, #FF6600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 153, 0, 0.35);
}

.hero-editorial-lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 820px;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta-cluster {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-monumental {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #FFB800 0%, #FF9900 60%, #FF5500 100%);
  color: #04060A;
  border: none;
  padding: 16px 30px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 0 35px var(--gold-glow), 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-monumental:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px var(--gold-glow);
}

.btn-copy-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-main-copy {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.btn-sub-copy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
}

.btn-telemetry-explore {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-lead);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 18px 26px;
  border-radius: var(--radius-md);
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.btn-telemetry-explore:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background: rgba(255, 153, 0, 0.05);
}

.hero-meta-strip {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   WIDESCREEN LIVE STREAM TERMINAL STAGE
   ========================================================================== */
.stage-terminal-wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.terminal-frame {
  background: #030508;
  border: 1px solid rgba(255, 153, 0, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 153, 0, 0.15);
}

.terminal-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #080C14;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
}

.terminal-status-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.terminal-dot.red-live {
  width: 8px;
  height: 8px;
  background: var(--live-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--live-red);
  animation: pulse-red 1.5s infinite;
}

.terminal-stream-title {
  color: var(--text-white);
  font-weight: 700;
}

.terminal-telemetry-readout {
  display: flex;
  gap: 12px;
  color: var(--text-dim);
}

.stat-div {
  opacity: 0.3;
}

.terminal-viewport {
  position: relative;
  height: 480px;
  background: linear-gradient(180deg, rgba(3, 5, 8, 0.2) 0%, rgba(3, 5, 8, 0.85) 100%),
              url("assets/streamsnap_live_youtube.png") center center / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

@media (max-width: 768px) {
  .terminal-viewport {
    height: 340px;
    padding: 14px;
  }
}

.viewport-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.6;
}

.laser-radar-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #FF9900 50%, #00F0FF 80%, transparent 100%);
  box-shadow: 0 0 15px #FF9900;
  animation: radar-vertical 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes radar-vertical {
  0% { top: 2%; opacity: 0.3; }
  50% { opacity: 0.9; }
  100% { top: 96%; opacity: 0.3; }
}

/* Optical Bounding Box */
.optical-bounding-box {
  position: absolute;
  border: 1px solid var(--primary-gold);
  background: rgba(255, 153, 0, 0.08);
  pointer-events: none;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.corner-tick {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--primary-gold);
}

.corner-tick.top-left { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.corner-tick.top-right { top: -1px; right: -1px; border-top: 2px solid; border-right: 2px solid; }
.corner-tick.bottom-left { bottom: -1px; left: -1px; border-bottom: 2px solid; border-left: 2px solid; }
.corner-tick.bottom-right { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

.box-target-label {
  position: absolute;
  top: -20px;
  left: 0;
  background: var(--primary-gold);
  color: #04060A;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  display: flex;
  gap: 6px;
}

/* Interactive Stage Hotspots */
.interactive-stage-spot {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.interactive-stage-spot:hover,
.interactive-stage-spot.active {
  transform: translate(-50%, -50%) scale(1.1);
}

.spot-optic-ring {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-gold);
  box-shadow: 0 0 16px var(--primary-gold);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.8); }
  70% { box-shadow: 0 0 0 14px rgba(255, 153, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0); }
}

.spot-badge-mono {
  background: rgba(4, 6, 10, 0.9);
  border: 1px solid var(--border-active);
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
}

.terminal-hud-toolbar {
  display: flex;
  gap: 10px;
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  z-index: 10;
}

.hud-pill-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}

.hud-pill-btn.active {
  background: var(--gold-tint);
  border-color: var(--border-active);
  color: var(--primary-gold);
}

/* Terminal Resolved Drawer */
.terminal-resolved-drawer {
  display: grid;
  grid-template-columns: 80px 1fr 240px;
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
  background: #080C14;
  border-top: 1px solid rgba(255, 153, 0, 0.3);
  text-align: left;
}

@media (max-width: 840px) {
  .terminal-resolved-drawer {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .drawer-actions-col {
    grid-column: 1 / -1;
  }
}

.drawer-thumb-col {
  position: relative;
  width: 76px;
  height: 76px;
  background: #04060A;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.drawer-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drawer-verified-stamp {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--verified-green);
  color: #04060A;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 2px;
  white-space: nowrap;
}

.drawer-meta-header {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  margin-bottom: 4px;
}

.drawer-asin-tag {
  color: var(--primary-gold);
  font-weight: 700;
}

.drawer-match-rate {
  color: var(--verified-green);
}

.drawer-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.drawer-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
}

.drawer-price-main {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-gold);
}

.drawer-prime-tag {
  color: #00A8E1;
  font-weight: 900;
  font-style: italic;
  font-size: 13px;
}

.drawer-in-stock {
  font-size: 10px;
  color: var(--text-muted);
}

.btn-drawer-buy {
  background: linear-gradient(135deg, #FFB800 0%, #FF9900 60%, #FF5500 100%);
  color: #04060A;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--gold-glow);
  transition: transform 0.15s ease;
  white-space: nowrap;
}

.btn-drawer-buy:hover {
  transform: translateY(-2px);
}

.drawer-hint {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
}

/* ==========================================================================
   KINETIC MARQUEE STRIP
   ========================================================================== */
.marquee-strip-section {
  padding: 24px 0;
  background: #020305;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
}

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

.marquee-content {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 2px;
  padding-right: 30px;
}

.marquee-star {
  color: var(--primary-gold);
  font-size: 11px;
}

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

/* ==========================================================================
   3D SCROLL TRANSFORMATION STAGE (SCROLL-EXPERIENCE)
   ========================================================================== */
.scroll-transformation-section {
  position: relative;
  background: #020407;
  border-bottom: 1px solid var(--border-subtle);
}

.scroll-track-container {
  height: 280vh;
  position: relative;
}

.sticky-viewport-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.transformation-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1140px;
}

.scroll-milestones-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.milestone-item {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.milestone-item.active {
  color: var(--primary-gold);
  font-weight: 800;
  text-shadow: 0 0 15px rgba(255, 153, 0, 0.4);
}

.ms-num {
  font-size: 10px;
  opacity: 0.6;
}

.milestone-divider {
  width: 32px;
  height: 1px;
  background: var(--border-subtle);
}

.scroll-3d-box-wrapper {
  perspective: 1400px;
  width: 100%;
  max-width: 1060px;
}

.scroll-3d-terminal {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  background: #060910;
  border: 1px solid rgba(255, 153, 0, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 153, 0, 0.15);
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.2s ease;
}

.scroll-video-frame {
  height: 440px;
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.2) 0%, rgba(4, 6, 10, 0.9) 100%),
              url("assets/streamsnap_live_youtube.png") center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .scroll-video-frame {
    height: 320px;
  }
}

.scroll-scanline-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0px, rgba(0, 0, 0, 0.18) 2px, transparent 2px, transparent 4px);
  pointer-events: none;
}

.scroll-laser-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #FF9900 35%, #00F0FF 65%, transparent 100%);
  box-shadow: 0 0 20px #00F0FF, 0 0 10px #FF9900;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.2s ease;
}

/* Target Bounding Boxes */
.scroll-target-box {
  position: absolute;
  border: 1px solid var(--laser-cyan);
  background: rgba(0, 240, 255, 0.08);
  border-radius: 2px;
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 12;
}

.scroll-target-box.box-mic {
  top: 44%;
  left: 48%;
  width: 140px;
  height: 180px;
}

.scroll-target-box.box-light {
  top: 24%;
  left: 62%;
  width: 100px;
  height: 90px;
}

.scroll-target-box.box-hoodie {
  top: 42%;
  left: 36%;
  width: 110px;
  height: 140px;
}

.scroll-target-box span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--laser-cyan);
}

.bracket-t-l { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.bracket-t-r { top: -1px; right: -1px; border-top: 2px solid; border-right: 2px solid; }
.bracket-b-l { bottom: -1px; left: -1px; border-bottom: 2px solid; border-left: 2px solid; }
.bracket-b-r { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

.target-tag {
  position: absolute;
  top: -22px;
  left: 0;
  background: var(--laser-cyan);
  color: #04060A;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  white-space: nowrap;
}

/* 3D Floating Product Cards (Phase 3 Extraction) */
.scroll-extracted-cards-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  pointer-events: none;
  transform-style: preserve-3d;
  z-index: 20;
}

@media (max-width: 840px) {
  .scroll-extracted-cards-container {
    flex-direction: column;
    gap: 10px;
  }
}

.extracted-3d-card {
  background: rgba(14, 19, 30, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 153, 0, 0.45);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 153, 0, 0.2);
  opacity: 0;
  transform: translateY(60px) translateZ(80px) scale(0.85);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
}

@media (max-width: 840px) {
  .extracted-3d-card {
    width: 280px;
    padding: 10px;
  }
  .extracted-3d-card.card-2, .extracted-3d-card.card-3 {
    display: none;
  }
}

.extracted-3d-card.card-1 {
  transform: translateY(60px) translateZ(80px) rotateY(-8deg) scale(0.85);
}

.extracted-3d-card.card-2 {
  transform: translateY(60px) translateZ(100px) scale(0.85);
}

.extracted-3d-card.card-3 {
  transform: translateY(60px) translateZ(80px) rotateY(8deg) scale(0.85);
}

.card-thumb {
  width: 100%;
  height: 110px;
  object-fit: contain;
  background: #04060A;
  border-radius: var(--radius-sm);
  padding: 4px;
}

.verified-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  color: var(--verified-green);
}

.card-info h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin-top: 2px;
}

.card-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.card-add-btn {
  background: linear-gradient(135deg, #FFB800 0%, #FF9900 100%);
  color: #04060A;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.4);
}

.scroll-phase-caption {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}

.phase-badge {
  color: var(--primary-gold);
  font-weight: 800;
}
.section-contrast {
  padding: 120px 0;
  position: relative;
}

.section-head-mono {
  margin-bottom: 50px;
}

.mono-section-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.editorial-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.1;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 840px) {
  .contrast-grid {
    grid-template-columns: 1fr;
  }
}

.contrast-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.contrast-card.card-streamsnap {
  border-color: rgba(255, 153, 0, 0.4);
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.05) 0%, rgba(14, 19, 30, 0.9) 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 153, 0, 0.08);
}

.card-corner-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contrast-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 24px;
}

.contrast-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contrast-steps li {
  font-size: 15px;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.step-cross {
  color: var(--live-red);
  font-family: var(--font-mono);
  font-weight: 900;
}

.step-check {
  color: var(--verified-green);
  font-family: var(--font-mono);
  font-weight: 900;
}

.card-result-bad {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--live-red);
  background: rgba(255, 51, 75, 0.1);
  border: 1px solid rgba(255, 51, 75, 0.25);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.card-result-good {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-gold);
  background: rgba(255, 153, 0, 0.1);
  border: 1px solid rgba(255, 153, 0, 0.35);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.15);
}

/* ==========================================================================
   MULTI-CHANNEL SIMULATOR ARENA
   ========================================================================== */
.section-simulator {
  padding: 120px 0;
  background: #020305;
  border-top: 1px solid var(--border-subtle);
}

.section-editorial-desc {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 680px;
  line-height: 1.6;
  margin-top: 14px;
}

/* ==========================================================================
   LIVE YOUTUBE STREAM RADAR BAR
   ========================================================================== */
.custom-stream-radar-bar {
  background: #060910;
  border: 1px solid rgba(255, 153, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 32px 0 20px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.radar-bar-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radar-ping-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--laser-cyan);
  box-shadow: 0 0 10px var(--laser-cyan);
  animation: pulse-ring 1.8s infinite;
}

.radar-mono-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--laser-cyan);
  letter-spacing: 1px;
}

.radar-input-group {
  display: flex;
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

@media (max-width: 860px) {
  .radar-input-group {
    flex-direction: column;
  }
}

.input-url-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #020407;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  transition: all 0.2s;
  min-height: 48px;
}

.input-url-wrapper:focus-within {
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.25);
  background: #04070D;
}

.url-yt-icon {
  color: #FF0000;
  flex-shrink: 0;
}

.stream-url-input {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 0;
  outline: none;
}

.radar-input-group .btn-laser {
  flex-shrink: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  white-space: nowrap;
}

.radar-quota-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.quota-pill {
  color: var(--primary-gold);
  background: var(--gold-tint);
  border: 1px solid var(--border-active);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.quota-sub {
  color: var(--text-muted);
  font-size: 11px;
}

.sim-yt-iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
}

.sim-interactive-scene.yt-live-mode {
  position: relative;
  background: #000;
}

.channel-selector-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.channel-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-family: var(--font-mono);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.channel-tab .ch-num {
  font-size: 10px;
  opacity: 0.6;
}

.channel-tab .ch-label {
  font-size: 12px;
  font-weight: 700;
}

.channel-tab:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  transform: translateY(-1px);
}

.channel-tab.active {
  background: var(--gold-tint);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.25);
}

.simulator-console-grid {
  display: grid;
  grid-template-columns: 2fr 1.15fr;
  gap: 24px;
}

@media (max-width: 960px) {
  .simulator-console-grid {
    grid-template-columns: 1fr;
  }
}

.sim-screen-box {
  background: #000000;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
  position: relative;
}

.sim-top-hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(4, 6, 10, 0.9);
  font-family: var(--font-mono);
  font-size: 11px;
  border-bottom: 1px solid var(--border-subtle);
}

.sim-live-flag {
  color: var(--live-red);
  font-weight: 800;
}

.sim-stream-title-text {
  color: var(--text-dim);
}

.sim-interactive-scene {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.sim-scene-studio {
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.15) 0%, rgba(4, 6, 10, 0.85) 100%),
              url("https://images.unsplash.com/photo-1590602847861-f357a9332bbc?auto=format&fit=crop&w=1600&q=85") center center / cover no-repeat;
}

.sim-scene-fashion {
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.15) 0%, rgba(4, 6, 10, 0.85) 100%),
              url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1600&q=85") center center / cover no-repeat;
}

.sim-scene-fitness {
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.15) 0%, rgba(4, 6, 10, 0.85) 100%),
              url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1600&q=85") center center / cover no-repeat;
}

.sim-scene-gaming {
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.15) 0%, rgba(4, 6, 10, 0.85) 100%),
              url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1600&q=85") center center / cover no-repeat;
}

.sim-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sim-hotspot:hover,
.sim-hotspot.active {
  transform: translate(-50%, -50%) scale(1.15);
}

.hotspot-ping {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-gold);
  box-shadow: 0 0 16px var(--primary-gold);
  animation: pulse-ring 1.8s infinite;
}

.hotspot-lbl {
  background: rgba(4, 6, 10, 0.9);
  border: 1px solid var(--border-active);
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.sim-bottom-hud {
  padding: 10px 16px;
  background: rgba(4, 6, 10, 0.85);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary-gold);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

/* Simulator Sidepanel Console */
.sim-sidepanel-console {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.panel-console-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
}

.console-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-gold);
  font-weight: 800;
}

.console-ver {
  color: var(--text-muted);
}

.panel-console-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sim-crop-readout {
  background: #04060A;
  border: 1px dashed var(--border-active);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
}

.sim-resolved-card {
  background: #080C14;
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.sim-thumb-frame {
  width: 70px;
  height: 70px;
  background: #04060A;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px;
  flex-shrink: 0;
}

.sim-thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sim-info-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sim-verified-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  color: var(--verified-green);
}

.sim-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.sim-pricing-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sim-price-val {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-gold);
}

.sim-prime-pill {
  color: #00A8E1;
  font-weight: 900;
  font-style: italic;
  font-size: 11px;
}

.sim-button-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.btn-sim-cart {
  flex: 1;
  background: linear-gradient(135deg, #FFB800 0%, #FF9900 100%);
  color: #04060A;
  border: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.btn-sim-cart:hover {
  transform: translateY(-1px);
}

.btn-sim-view {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-sim-view:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.sim-cart-alert {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--verified-green);
  color: var(--verified-green);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 8px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.sim-session-history {
  margin-top: 8px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

.history-label-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.history-tag-cloud {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hist-tag {
  background: #04060A;
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   TECHNICAL BENTO SPECIFICATIONS
   ========================================================================== */
.section-specs {
  padding: 120px 0;
  position: relative;
}

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

@media (max-width: 900px) {
  .bento-specs-grid {
    grid-template-columns: 1fr;
  }
}

.bento-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-large {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .bento-large {
    grid-column: span 1;
  }
}

.bento-wide {
  grid-column: span 3;
}

@media (max-width: 900px) {
  .bento-wide {
    grid-column: span 1;
  }
}

.bento-corner {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 20px;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.bento-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

.bento-platforms-row {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.plat-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: #04060A;
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-lead);
}

.bento-metric-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-gold);
  margin-top: 24px;
}

.bento-split-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .bento-split-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

.bento-action-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-gold);
  background: var(--gold-tint);
  border: 1px solid var(--border-active);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* ==========================================================================
   CREATOR REVENUE TERMINAL
   ========================================================================== */
.section-creators {
  padding: 120px 0;
  background: #020305;
  border-top: 1px solid var(--border-subtle);
}

.creator-terminal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .creator-terminal-grid {
    grid-template-columns: 1fr;
  }
}

.creator-lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.5;
  margin-bottom: 16px;
}

.creator-body {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 28px;
}

.creator-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feat-item {
  font-size: 14px;
  color: var(--text-lead);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-bullet {
  color: var(--verified-green);
  font-family: var(--font-mono);
  font-weight: 900;
}

/* Calculator Terminal Card */
.calc-terminal-card {
  background: #060910;
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 153, 0, 0.1);
}

.calc-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-gold);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.calc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-gold);
}

.calc-inputs-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-header-mono {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  margin-bottom: 8px;
  color: var(--text-dim);
}

.terminal-range {
  width: 100%;
  accent-color: var(--primary-gold);
  cursor: pointer;
}

.calc-output-box {
  background: #020305;
  border: 1px solid rgba(255, 153, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin-top: 10px;
}

.output-label-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.output-val-giant {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 900;
  color: var(--primary-gold);
}

.output-sub-annual {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.section-faq {
  padding: 120px 0;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-block:hover, .faq-block.active {
  border-color: rgba(255, 153, 0, 0.35);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
}

.faq-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary-gold);
  font-weight: 700;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  flex: 1;
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--text-dim);
  transition: transform 0.2s ease;
}

.faq-block.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-gold);
}

.faq-body {
  padding: 0 24px 22px 52px;
  display: none;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

.faq-block.active .faq-body {
  display: block;
}

/* ==========================================================================
   STUDIO MODALS
   ========================================================================== */
.modal-overlay-studio {
  position: fixed;
  inset: 0;
  background: rgba(2, 3, 5, 0.85);
  backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card-studio {
  background: #090D15;
  border: 1px solid rgba(255, 153, 0, 0.4);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 520px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 153, 0, 0.2);
  overflow: hidden;
  animation: modal-pop-in 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-pop-in {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-header-studio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #04060A;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-gold);
  letter-spacing: 1px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
}

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

.modal-body-studio {
  padding: 24px;
}

.store-hero-banner {
  background: #04060A;
  border: 1px solid rgba(255, 153, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 18px;
}

.store-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 8px;
}

.store-hero-banner h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 6px;
}

.store-hero-banner p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn-full {
  width: 100%;
}

.github-source-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.source-link-text {
  color: var(--primary-gold);
  text-decoration: none;
}

.modal-explanation-box {
  background: rgba(255, 153, 0, 0.08);
  border: 1px solid rgba(255, 153, 0, 0.25);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-lead);
  margin-bottom: 18px;
  line-height: 1.5;
}

.dim-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.studio-form-group {
  margin-bottom: 20px;
}

.studio-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  display: block;
  margin-bottom: 8px;
}

.studio-input {
  width: 100%;
  background: #04060A;
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
}

.studio-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.2);
}

.input-hint-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.modal-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   STUDIO FOOTER
   ========================================================================== */
.footer-studio {
  background: #020305;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px 0;
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-mission {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.5;
}

.footer-telemetry-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--verified-green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: 16px;
}

.footer-col-header {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-gold);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links-col a:hover {
  color: var(--text-white);
}

.footer-bottom-mono {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-disclosure-mono {
  font-size: 10px;
  opacity: 0.7;
}
