/**
 * Axios AI Media - Audience Presentation View Styles (audience.css)
 * High-definition, cinema-grade slide presentation view for projectors & displays.
 * Supports 16:9 widescreen presentation visuals, hero plates, and client branding.
 */

.audience-viewport {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 0%, #0f172a 0%, #07090e 75%);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  user-select: none;
}

/* Ambient Background Light Orbs */
.ambient-glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.25;
  transition: all 1s ease;
  z-index: 0;
}

.orb-top-left {
  top: -200px;
  left: -150px;
  background: #0284c7;
}

.orb-bottom-right {
  bottom: -250px;
  right: -150px;
  background: #6366f1;
}

/* Slide Canvas Container */
.slide-canvas {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(14px, 2.5vh, 36px) clamp(20px, 3.5vw, 56px);
  box-sizing: border-box;
  overflow: hidden;
}

/* Top Branding Bar (Minimalistic for Audience) */
.audience-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(34px, 4.8vh, 48px);
  flex-shrink: 0;
}

.audience-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-logo-img {
  height: clamp(24px, 3.2vh, 32px);
  width: auto;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.4));
}

.audience-ecosystem-tag {
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #e2e8f0;
}

.audience-audience-tag {
  font-size: clamp(9.5px, 0.9vw, 11px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Slide Body Layouts */
.slide-content-stage {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin: clamp(4px, 1vh, 14px) 0;
  overflow: hidden;
}

/* 1. App Showcase Layout (Standard App Slide) */
.app-slide-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  height: 100%;
}

.app-slide-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-meta-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-slide-title-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-slide-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.35);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-glass);
  padding: 8px;
  object-fit: contain;
}

.app-slide-heading {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.app-slide-tagline {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Dynamic Audience Value Callout Box */
.audience-value-box {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.audience-value-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 6px;
}

.audience-value-text {
  font-size: 15px;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.45;
}

/* Key Capability Tags */
.capabilities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.capability-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid var(--border-glass);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
}

.capability-pill svg {
  color: var(--accent-cyan);
}

/* Slide Right: 16:9 Hero Visual / Interactive Mockup */
.app-slide-preview-card {
  height: 400px;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* 16:9 Hero Image Plate */
.slide-hero-plate-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.slide-hero-plate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slide-hero-plate-img:hover {
  transform: scale(1.02);
}

.hero-aspect-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
}

.preview-card-header {
  height: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid var(--border-subtle);
}

.preview-window-dots {
  display: flex;
  gap: 6px;
}

.preview-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot-red { background: #f43f5e; }
.dot-yellow { background: #fbbf24; }
.dot-green { background: #10b981; }

.preview-title-badge {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.preview-card-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  position: relative;
}

/* Combined Ecosystem Telemetry Grid Dashboard */
.telemetry-grid-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.telemetry-cluster-card {
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

.telemetry-cluster-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
}

.telemetry-cluster-card.emerald::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.telemetry-cluster-card.violet::before {
  background: linear-gradient(90deg, #8b5cf6, #c084fc);
}

.telemetry-cluster-card.amber::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.cluster-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cluster-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cluster-hero-stat {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}

.cluster-stat-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
}

.cluster-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #cbd5e1;
}

.stat-row-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-primary);
}

/* Interactive Interactive Live Demo Simulator */
.preview-sim-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sim-metric-box {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.sim-metric-val {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #f8fafc;
}

.sim-metric-lbl {
  font-size: 11px;
  color: var(--text-secondary);
}

.preview-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

/* Live Metrics Spotlight Overlay Banner */
.live-metrics-spotlight-banner {
  position: absolute;
  bottom: 70px;
  left: 56px;
  right: 56px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%);
  border: 1px solid var(--border-glow-cyan);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 30;
  backdrop-filter: blur(24px);
  animation: slideFadeIn var(--transition-smooth);
}

.live-metrics-spotlight-banner.active {
  display: flex;
}

.spotlight-banner-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spotlight-icon-pulse {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.spotlight-banner-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
}

.spotlight-banner-sub {
  font-size: 11px;
  color: var(--text-secondary);
}

.spotlight-cards-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
}

.spotlight-metric-item {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  min-width: 130px;
}

.spotlight-metric-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #38bdf8;
}

.spotlight-metric-label {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Slide Footer & Progress */
.audience-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.audience-progress-track {
  width: 160px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.audience-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  transition: width var(--transition-normal);
}

/* Floating Self-Guided Standalone Navigation Pill */
.standalone-nav-pill {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
  box-shadow: var(--shadow-md);
  opacity: 0.3;
  transition: opacity var(--transition-fast);
}

.standalone-nav-pill:hover {
  opacity: 1;
}

/* Blackout / Whiteout Blanking Curtains */
.curtain-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.curtain-overlay.blackout {
  background: #000000;
}

.curtain-overlay.whiteout {
  background: #ffffff;
}

.curtain-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
 * 22 APPS ECOSYSTEM MATRIX (CONSTELLATION GRID SLIDE)
 * ========================================================================== */
.all-apps-matrix-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.matrix-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.matrix-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

.matrix-pillar-column {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.matrix-pillar-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.matrix-pillar-column.content::before { background: linear-gradient(90deg, #38bdf8, #60a5fa); }
.matrix-pillar-column.creative::before { background: linear-gradient(90deg, #c084fc, #a855f7); }
.matrix-pillar-column.operations::before { background: linear-gradient(90deg, #34d399, #10b981); }
.matrix-pillar-column.security::before { background: linear-gradient(90deg, #fbbf24, #f59e0b); }

.matrix-pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.matrix-pillar-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.matrix-pillar-count {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
}

.matrix-apps-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.matrix-app-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.matrix-app-card:hover {
  background: rgba(51, 65, 85, 0.7);
  border-color: var(--accent-cyan);
  transform: translateX(2px);
}

.matrix-app-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px;
  object-fit: contain;
}

.matrix-app-info {
  flex: 1;
  min-width: 0;
}

.matrix-app-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.matrix-app-users {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #38bdf8;
}

/* ==========================================================================
 * ALL-APPS USER DISTRIBUTION BREAKDOWN (FOR TOTAL METRICS SLIDE)
 * ========================================================================== */
.telemetry-user-distrib-container {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.distrib-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-secondary);
}

.distrib-bars-row {
  display: flex;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  width: 100%;
}

.distrib-segment {
  height: 100%;
  transition: width 0.5s ease;
}

.distrib-chips-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.distrib-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--text-secondary);
  background: rgba(30, 41, 59, 0.6);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.distrib-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* ==========================================================================
 * FLOATING CINEMA SCOREBOARD HUD (ALL-APPS COMBINED TELEMETRY)
 * ========================================================================== */
.audience-scoreboard-hud {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 9990;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.audience-scoreboard-hud.active {
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.scoreboard-hud-inner {
  background: rgba(11, 15, 25, 0.92);
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.scoreboard-hud-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.scoreboard-hud-items {
  display: flex;
  align-items: center;
  gap: 16px;
}

.scoreboard-hud-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hud-item-val {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.hud-item-lbl {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.scoreboard-hud-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
 * CINEMA-GRADE SLIDE VISUAL ENGINE STYLES (NO MORE PLAIN BOXES AND TEXT)
 * ========================================================================== */

.visual-slide-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* --- 1. KEYNOTE HERO COVER LAYOUT --- */
.keynote-hero-layout {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
  height: 100%;
}

.keynote-left-col {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.3vh, 18px);
  justify-content: center;
}

.keynote-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.keynote-hero-title {
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.keynote-hero-subtitle {
  font-size: clamp(13px, 1.3vw, 20px);
  color: #94a3b8;
  line-height: 1.4;
  font-weight: 400;
}

.keynote-value-card {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 0 8px 8px 0;
  padding: clamp(8px, 1.2vh, 14px) clamp(12px, 1.5vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.keynote-value-card .value-card-header {
  font-size: clamp(9px, 0.8vw, 10px);
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.keynote-value-card .value-card-body {
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.38;
}

.keynote-client-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 700;
  color: #64748b;
}

.client-co-badge {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Concentric Ecosystem Core Visual */
.ecosystem-core-visual {
  position: relative;
  width: clamp(210px, 25vw, 360px);
  height: clamp(210px, 25vw, 360px);
  max-width: 46vh;
  max-height: 46vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-radial-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radial-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(56, 189, 248, 0.25);
}

.ring-outer {
  width: 100%;
  height: 100%;
  animation: spinSlow 40s linear infinite;
}

.ring-middle {
  width: 72%;
  height: 72%;
  border: 1px solid rgba(192, 132, 252, 0.25);
  animation: spinSlowReverse 30s linear infinite;
}

.ring-inner {
  width: 46%;
  height: 46%;
  border: 1.5px solid rgba(52, 211, 153, 0.35);
}

.core-center-shield {
  position: relative;
  z-index: 5;
  width: 32%;
  height: 32%;
  max-width: 110px;
  max-height: 110px;
  min-width: 68px;
  min-height: 68px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.4);
}

.core-shield-logo {
  height: clamp(16px, 2.5vh, 26px);
  width: auto;
  margin-bottom: 2px;
}

.core-shield-title {
  font-family: var(--font-heading);
  font-size: clamp(9px, 0.9vw, 12px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.core-shield-tag {
  font-size: clamp(6px, 0.6vw, 7.5px);
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.06em;
}

/* Orbiting Satellites */
.orbit-card {
  position: absolute;
  z-index: 10;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: clamp(4px, 0.8vh, 8px) clamp(7px, 0.9vw, 12px);
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.8vw, 10px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

.orbit-card-top { top: -6px; left: 50%; transform: translateX(-50%); }
.orbit-card-right { right: -16px; top: 50%; transform: translateY(-50%); }
.orbit-card-bottom { bottom: -6px; left: 50%; transform: translateX(-50%); }
.orbit-card-left { left: -16px; top: 50%; transform: translateY(-50%); }

.orbit-card-val {
  font-size: clamp(9px, 0.85vw, 12px);
  font-weight: 800;
  color: #f8fafc;
}

.orbit-card-lbl {
  font-size: clamp(7.5px, 0.7vw, 9.5px);
  color: var(--text-muted);
  font-weight: 600;
}

/* --- 2. PROBLEM & SILO CHAOS LAYOUT --- */
.problem-slide-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.problem-left-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.warning-badge-pill {
  font-size: 11px;
  font-weight: 800;
  color: #f87171;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
}

.problem-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f8fafc;
}

.problem-subtitle {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.45;
}

.problem-value-card {
  background: rgba(239, 68, 68, 0.08);
  border-left: 4px solid #ef4444;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
}

.problem-value-label {
  font-size: 10px;
  font-weight: 800;
  color: #f87171;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.problem-value-text {
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.4;
}

.pain-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

.pain-metric-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
}

.pain-metric-box.danger {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.06);
}

.pain-metric-box.warning {
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.06);
}

.pain-val {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.pain-lbl {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.3;
  margin-top: 4px;
}

/* Silo Chaos Infographic */
.silo-chaos-infographic {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(239, 68, 68, 0.1);
}

.chaos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.chaos-vendors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.vendor-silo-node {
  background: rgba(30, 41, 59, 0.6);
  border: 1px dashed rgba(239, 68, 68, 0.35);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.node-bullet.red {
  color: #ef4444;
  font-size: 10px;
  font-weight: 900;
}

.chaos-consequences-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.chaos-consequence-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #e2e8f0;
  line-height: 1.35;
}

/* --- 3. SOLUTION ARCHITECTURE LAYOUT --- */
.solution-slide-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.solution-left-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.solution-subtitle {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.45;
}

.solution-value-card {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(52, 211, 153, 0.08));
  border-left: 4px solid var(--accent-cyan);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
}

.solution-value-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.solution-value-text {
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.4;
}

.solution-pillars-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
}

.check-icon {
  color: #34d399;
  font-weight: 800;
}

/* Architecture Diagram Container */
.architecture-diagram-container {
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid rgba(56, 189, 248, 0.3);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.15);
}

.arch-hub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.arch-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  padding: 10px 0;
}

.arch-station-card {
  background: rgba(30, 41, 59, 0.7);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease;
}

.arch-station-card:hover {
  transform: scale(1.02);
}

.station-content { border-left: 3px solid #38bdf8; }
.station-creative { border-left: 3px solid #c084fc; }
.station-operations { border-left: 3px solid #34d399; }
.station-security { border-left: 3px solid #fbbf24; }

.station-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.station-title {
  font-size: 14px;
  font-weight: 800;
  color: #f8fafc;
}

.station-tag {
  font-size: 11px;
  color: #94a3b8;
}

.arch-event-core {
  grid-column: 1 / -1;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2), rgba(15, 23, 42, 0.9));
  border: 1.5px solid var(--accent-cyan);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
}

.core-name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #38bdf8;
  margin-top: 4px;
}

.core-sub {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
}

.arch-event-ticker {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  flex-shrink: 0;
}

/* --- 4. APP SHOWCASE WITH SIMULATED UI WORKSPACE --- */
.app-showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items: center;
  height: 100%;
}

.app-showcase-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-identity-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-showcase-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-glass);
  padding: 6px;
  object-fit: contain;
}

.app-showcase-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f8fafc;
}

.app-showcase-tagline {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.35;
}

.app-audience-value-card {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(99, 102, 241, 0.08));
  border-left: 4px solid var(--accent-cyan);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
}

.app-capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.capability-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 600;
}

.cap-check-icon {
  color: #38bdf8;
  font-weight: 800;
}

.app-telemetry-kpis {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.app-kpi-chip {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
}

.kpi-chip-val {
  font-size: 14px;
  font-weight: 800;
}

.kpi-chip-lbl {
  font-size: 9px;
  color: #94a3b8;
  text-transform: uppercase;
}

/* Browser Viewport Window */
.browser-viewport-window {
  background: rgba(11, 15, 25, 0.95);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(56, 189, 248, 0.2);
  display: flex;
  flex-direction: column;
  height: 420px;
}

.browser-window-header {
  height: 36px;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.window-traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.traffic-dot.red { background: #ef4444; }
.traffic-dot.yellow { background: #f59e0b; }
.traffic-dot.green { background: #10b981; }

.window-url-bar {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 3px 12px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 55%;
  justify-content: center;
}

.window-status-badge {
  font-size: 10px;
  font-weight: 700;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-workspace-canvas {
  flex: 1;
  background: #090d16;
  overflow: hidden;
  display: flex;
  position: relative;
}

/* Mockup: Document Editor (DocStudio / Wiki) */
.mockup-doc-editor {
  display: flex;
  width: 100%;
  height: 100%;
}

.doc-editor-sidebar {
  width: 32%;
  background: rgba(15, 23, 42, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-item {
  font-size: 10px;
  color: #94a3b8;
  padding: 6px 8px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-item.active {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-weight: 700;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 6px;
}

.doc-editor-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.doc-toolbar {
  height: 28px;
  background: rgba(15, 23, 42, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
  font-size: 10px;
  color: #94a3b8;
}

.tool-badge {
  color: #c084fc;
  font-weight: 700;
  font-size: 9px;
}

.tool-badge.right { margin-left: auto; }

.doc-sheet {
  flex: 1;
  background: rgba(15, 23, 42, 0.4);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doc-sheet-title {
  font-size: 12px;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 0.02em;
}

.doc-sheet-meta {
  font-size: 9px;
  color: #64748b;
  font-family: var(--font-mono);
}

.doc-sheet-para {
  font-size: 10px;
  color: #94a3b8;
  line-height: 1.4;
}

.doc-sheet-clause.highlighted {
  background: rgba(192, 132, 252, 0.1);
  border-left: 3px solid #c084fc;
  padding: 6px 8px;
  border-radius: 0 4px 4px 0;
  font-size: 10px;
  color: #e2e8f0;
}

.clause-tag {
  display: block;
  font-size: 8px;
  font-weight: 800;
  color: #c084fc;
  margin-bottom: 2px;
}

.doc-stamp-box {
  margin-top: auto;
  border: 1px dashed rgba(52, 211, 153, 0.4);
  border-radius: 6px;
  padding: 6px 10px;
  background: rgba(52, 211, 153, 0.05);
}

.stamp-seal {
  font-size: 9px;
  font-weight: 800;
  color: #34d399;
}

.stamp-meta {
  font-size: 8px;
  color: #64748b;
  font-family: var(--font-mono);
}

/* Mockup: Media Studio (VideoStudio / Audio / Novel) */
.mockup-media-studio {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.media-viewport-panel {
  flex: 1;
  padding: 10px;
  display: flex;
}

.media-video-screen {
  flex: 1;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.video-overlay-header, .video-overlay-footer {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #94a3b8;
  font-family: var(--font-mono);
}

.rec-badge {
  color: #ef4444;
  font-weight: 800;
}

.video-placeholder-art {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.art-text-caption {
  font-size: 15px;
  font-weight: 800;
  color: #f8fafc;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
}

.media-timeline-panel {
  height: 120px;
  background: rgba(15, 23, 42, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-track {
  display: flex;
  align-items: center;
  height: 26px;
  gap: 8px;
}

.track-label {
  font-size: 8px;
  font-weight: 800;
  color: #64748b;
  width: 50px;
}

.track-clips {
  flex: 1;
  height: 100%;
  background: rgba(30, 41, 59, 0.4);
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 2px;
  gap: 4px;
}

.track-clip {
  height: 100%;
  border-radius: 3px;
  font-size: 8px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
}

.v-clip { background: #0284c7; color: #fff; }
.a-clip { background: #059669; color: #fff; }
.s-clip { background: #7c3aed; color: #fff; }

.svg-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 100%;
  width: 100%;
}

.svg-waveform span {
  width: 3px;
  background: #34d399;
  border-radius: 2px;
}

/* Mockup: Operations Kanban (GrantPulse / Events) */
.mockup-ops-kanban {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 12px;
}

.ops-pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pipeline-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.06em;
}

.pipeline-meta {
  font-size: 10px;
  color: #94a3b8;
  margin-left: 8px;
}

.ops-kanban-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
}

.kanban-col {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.col-header {
  font-size: 9px;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 2px;
}

.kanban-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 6px 8px;
}

.kanban-card.won {
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.08);
}

.card-tag {
  font-size: 8px;
  font-weight: 800;
  margin-bottom: 2px;
}

.card-tag.gold { color: #fbbf24; }
.card-tag.cyan { color: #38bdf8; }
.card-tag.purple { color: #c084fc; }
.card-tag.green { color: #34d399; }

.card-val {
  font-size: 13px;
  font-weight: 800;
  color: #f8fafc;
}

.card-sub {
  font-size: 8px;
  color: #94a3b8;
}

/* Mockup: Security Dashboard (SecurityShield / Edge) */
.mockup-security-dashboard {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 12px;
  gap: 10px;
}

.security-topo-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 8px;
}

.topo-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.node-icon { font-size: 20px; }
.node-name { font-size: 10px; font-weight: 800; color: #f8fafc; }
.node-sub { font-size: 8px; color: #94a3b8; }
.topo-arrow { color: #38bdf8; font-size: 11px; font-weight: 900; }

.security-audit-ledger {
  background: #020617;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: #cbd5e1;
}

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

.ledger-ts { color: #64748b; }
.ledger-tag.allow {
  color: #34d399;
  background: rgba(52, 211, 153, 0.15);
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 800;
}

/* --- 5. TOTAL METRICS LAYOUT --- */
.total-metrics-layout {
  gap: 18px;
}

.metrics-slide-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.metrics-slide-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.metrics-slide-sub {
  font-size: 14px;
  color: #94a3b8;
}

.metrics-global-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
}

.telemetry-four-clusters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cluster-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cluster-card.cyan-theme { border-top: 3px solid #38bdf8; }
.cluster-card.purple-theme { border-top: 3px solid #c084fc; }
.cluster-card.green-theme { border-top: 3px solid #34d399; }
.cluster-card.amber-theme { border-top: 3px solid #fbbf24; }

.cluster-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cluster-title {
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.cluster-pill {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.cluster-big-stat {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.cluster-metric-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  color: #94a3b8;
}

.user-distribution-visual-bar {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-header {
  font-size: 11px;
  font-weight: 800;
  color: #e2e8f0;
  display: flex;
  justify-content: space-between;
}

.stacked-bar-container {
  height: 10px;
  width: 100%;
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  background: #1e293b;
}

.stacked-bar-segment {
  height: 100%;
  transition: opacity 0.2s ease;
}

.stacked-bar-segment:hover { opacity: 0.8; }

.bar-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bar-chip-pill {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 41, 59, 0.6);
  padding: 3px 8px;
  border-radius: 4px;
}

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

/* --- 6. ZERO TRUST SECURITY LAYOUT --- */
.security-slide-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.security-left-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.security-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.security-subtitle {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.45;
}

.security-value-box {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(52, 211, 153, 0.08));
  border-left: 4px solid #fbbf24;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
}

.security-badges-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #cbd5e1;
}

.sec-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
}

.security-concentric-shield {
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid rgba(251, 191, 36, 0.3);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.shield-layer {
  width: 100%;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.layer-4 { border: 1.5px dashed rgba(56, 189, 248, 0.4); background: rgba(56, 189, 248, 0.04); }
.layer-3 { border: 1.5px dashed rgba(192, 132, 252, 0.4); background: rgba(192, 132, 252, 0.06); }
.layer-2 { border: 1.5px solid rgba(52, 211, 153, 0.4); background: rgba(52, 211, 153, 0.08); }

.layer-1-core {
  background: #020617;
  border: 2px solid #34d399;
  border-radius: 6px;
  padding: 12px 24px;
  text-align: center;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

.core-lock-icon { font-size: 20px; }
.core-lock-title { font-size: 12px; font-weight: 900; color: #34d399; letter-spacing: 0.06em; }
.core-lock-sub { font-size: 9px; color: #94a3b8; }

.layer-tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.shield-footer-metrics {
  display: flex;
  justify-content: space-around;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  font-size: 11px;
  color: #94a3b8;
}

/* --- 7. PRICING & ROI LAYOUT --- */
.pricing-slide-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.pricing-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-subtitle {
  font-size: 15px;
  color: #94a3b8;
}

.payback-gauge-pill {
  background: rgba(52, 211, 153, 0.12);
  border: 1.5px solid #34d399;
  border-radius: 10px;
  padding: 8px 16px;
  text-align: right;
}

.payback-num {
  font-size: 18px;
  font-weight: 900;
  color: #34d399;
  letter-spacing: -0.01em;
}

.payback-lbl {
  font-size: 10px;
  color: #94a3b8;
}

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

.tier-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.tier-card.featured {
  border-color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
  transform: translateY(-4px);
}

.featured-ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-cyan);
  color: #020617;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 999px;
}

.tier-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.tier-price {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #f8fafc;
}

.tier-desc {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: #cbd5e1;
  margin-top: 4px;
}

.tier-footer-badge {
  margin-top: auto;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  padding: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

.pricing-footer-callout {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.6);
  padding: 8px 16px;
  border-radius: 6px;
}

/* --- 8. TRACTION ROADMAP LAYOUT --- */
.traction-slide-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.traction-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.milestones-roadmap-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 20px;
}

.roadmap-station {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.station-node-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1e293b;
  border: 2px solid #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: #94a3b8;
  z-index: 2;
}

.station-node-circle.active {
  background: var(--accent-cyan);
  border-color: #fff;
  color: #020617;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
}

.station-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.station-card.featured {
  border-color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.1);
}

.station-date {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.station-card .station-title {
  font-size: 13px;
  font-weight: 800;
  color: #f8fafc;
}

.station-card .station-body {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.35;
}

.traction-value-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #f8fafc;
  background: rgba(30, 41, 59, 0.5);
  padding: 10px 16px;
  border-radius: 8px;
}

/* --- 9. CALL TO ACTION & ONBOARDING LAYOUT --- */
.cta-slide-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.onboarding-stage-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.onboarding-stage-card.active {
  border-color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
}

.stage-step-badge {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

.stage-name {
  font-size: 16px;
  font-weight: 800;
  color: #f8fafc;
}

.stage-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.4;
}

.stage-checklist {
  font-size: 11px;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
}

.cta-action-banner {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(52, 211, 153, 0.12));
  border: 1.5px solid var(--accent-cyan);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.cta-action-title {
  font-size: 16px;
  font-weight: 800;
  color: #f8fafc;
}

.cta-action-sub {
  font-size: 12px;
  color: #94a3b8;
}

/* Animations */
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinSlowReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* ==========================================================================
   PROXIMITY RADAR & VISION INTERACTION AURA
   ========================================================================== */

.proximity-aura-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 15;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-viewport.proximity-mid .proximity-aura-layer {
  opacity: 0.6;
}

.audience-viewport.proximity-near .proximity-aura-layer {
  opacity: 1;
}

/* Radiant circular rings expanding when viewer approaches */
.aura-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.audience-viewport.proximity-mid .aura-pulse-ring,
.audience-viewport.proximity-near .aura-pulse-ring {
  animation: proximityRipple 4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.aura-pulse-ring.ring-1 {
  width: 400px;
  height: 400px;
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  animation-delay: 0s;
}

.aura-pulse-ring.ring-2 {
  width: 700px;
  height: 700px;
  border: 1.5px solid rgba(192, 132, 252, 0.3);
  animation-delay: 1.2s;
}

.aura-pulse-ring.ring-3 {
  width: 1000px;
  height: 1000px;
  border: 1px dashed rgba(52, 211, 153, 0.25);
  animation-delay: 2.4s;
}

@keyframes proximityRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.8;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* Dynamic Focus Beam following viewer centroid */
.proximity-focus-beam {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(192, 132, 252, 0.05) 50%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: blur(25px);
  opacity: 0;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1), top 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.audience-viewport.proximity-near .proximity-focus-beam {
  opacity: 1;
}

/* Border aura when person is right up against the screen */
.audience-viewport.proximity-near {
  box-shadow: inset 0 0 100px rgba(56, 189, 248, 0.25), inset 0 0 30px rgba(52, 211, 153, 0.2);
}

.audience-viewport.proximity-near .browser-viewport-window {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(56, 189, 248, 0.25);
  transform: translateY(-4px) scale(1.01);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}

/* Interactive Proximity Notice Banner */
.proximity-interactive-notice {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  z-index: 50;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(56, 189, 248, 0.45);
  border-radius: 9999px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(56, 189, 248, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.audience-viewport.proximity-near .proximity-interactive-notice {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.notice-icon-pulse {
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseGlow 2s ease-in-out infinite;
}

.notice-text-content {
  display: flex;
  flex-direction: column;
}

.notice-headline {
  font-size: 13px;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 0.02em;
}

.notice-sub {
  font-size: 11px;
  color: #94a3b8;
}

.notice-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 9999px;
  color: #0369a1;
  background: #38bdf8;
  white-space: nowrap;
}

/* Discreet Vision Sensor Status Badge */
.vision-sensor-badge {
  position: absolute;
  bottom: 16px;
  right: 180px;
  z-index: 60;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: #94a3b8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.vision-sensor-badge:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(56, 189, 248, 0.4);
  color: #f8fafc;
}

.sensor-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
}

.sensor-status-text {
  letter-spacing: 0.04em;
}

.sensor-pip-toggle {
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 2px;
  border-radius: 4px;
  transition: color 0.2s, transform 0.2s;
}

.sensor-pip-toggle:hover {
  color: #38bdf8;
  transform: scale(1.15);
}

/* Collapsible Camera PIP Mirror */
.camera-pip-container {
  position: absolute;
  bottom: 60px;
  right: 24px;
  width: 220px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(56, 189, 248, 0.15);
  z-index: 70;
  animation: slideUpFade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pip-header {
  padding: 8px 12px;
  background: rgba(2, 6, 23, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pip-title-lockup {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.pip-close-btn {
  background: none;
  border: none;
  color: #64748b;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.pip-close-btn:hover {
  color: #f8fafc;
}

.pip-video-wrapper {
  position: relative;
  width: 100%;
  height: 140px;
  background: #020617;
  overflow: hidden;
}

.pip-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1); /* Mirror view */
}

.pip-overlay-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pip-distance-tag {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(2, 6, 23, 0.85);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

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


