/* ============================================
   BOLDMINDS by Boldstream
   Design System: "Data Theater"
   Aesthetic: Editorial meets Data Studio
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   CSS Variables - Boldstream Palette
   ======================================== */
:root {
  /* Core Colors */
  --bs-black: #0f0f0f;
  --bs-white: #fcfcfc;
  --bs-lilac: #9999ff;
  --bs-lilac-hover: #8080ff;
  --bs-lilac-light: rgba(153, 153, 255, 0.12);
  --bs-lilac-glow: rgba(153, 153, 255, 0.5);
  --bs-dark-grey: #404040;
  --bs-light-grey: #d1d1d1;
  --bs-light-grey-50: rgba(209, 209, 209, 0.5);

  /* Semantic Colors */
  --bs-success: #404040;
  --bs-success-light: rgba(64, 64, 64, 0.1);
  --bs-error: #ef4444;
  --bs-error-light: rgba(239, 68, 68, 0.1);
  --bs-warning: #f59e0b;
  --bs-warning-light: rgba(245, 158, 11, 0.1);
  --bs-info: #3b82f6;
  --bs-info-light: rgba(59, 130, 246, 0.1);

  /* Typography */
  --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'SF Mono', 'Monaco', 'Consolas', monospace;

  /* Spacing */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-2xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 15, 15, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 15, 15, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 15, 15, 0.1);
  --shadow-glow: 0 0 40px var(--bs-lilac-glow);
  --shadow-dramatic: 0 25px 80px -20px rgba(15, 15, 15, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: linear-gradient(180deg, #f5f5f7 0%, #eeeef0 100%);
  min-height: 100vh;
  color: var(--bs-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography - Editorial Style
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bs-black);
  line-height: 1.1;
}

.text-muted { color: var(--bs-dark-grey); }
.font-mono { font-family: var(--font-mono); }

/* Giant Display Numbers */
.display-number {
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--bs-light-grey);
  opacity: 0.3;
  user-select: none;
}

/* Dramatic Headlines */
.headline-xl {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.headline-lg {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--bs-light-grey);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bs-dark-grey);
}

/* ========================================
   Header - Minimal Black Bar
   ======================================== */
.bs-header {
  background: var(--bs-black);
  position: sticky;
  top: 0;
  z-index: 100;
}

.bs-header .logo {
  font-weight: 800;
  font-size: 1rem;
  color: var(--bs-white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bs-header .logo .accent {
  color: var(--bs-lilac);
}

.bs-nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

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

.bs-nav-link.active {
  color: var(--bs-lilac);
}

/* ========================================
   Progress Steps - Horizontal Timeline
   ======================================== */
.bs-progress-bar {
  background: var(--bs-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0.75rem 0;
}

.bs-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bs-light-grey);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.bs-step:hover {
  color: var(--bs-dark-grey);
}

.bs-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.bs-step.completed {
  color: var(--bs-lilac);
}

.bs-step.completed .bs-step-number {
  background: var(--bs-lilac);
  border-color: var(--bs-lilac);
  color: var(--bs-white);
}

.bs-step.active {
  color: var(--bs-black);
}

.bs-step.active .bs-step-number {
  border-color: var(--bs-black);
  background: var(--bs-black);
  color: var(--bs-white);
}

.bs-step-connector {
  width: 40px;
  height: 2px;
  background: var(--bs-light-grey);
  margin: 0 0.25rem;
  border-radius: 1px;
}

.bs-step-connector.completed {
  background: var(--bs-lilac);
}

/* ========================================
   Page Layout - Theatrical Scenes
   ======================================== */
.scene {
  position: relative;
  padding: 3rem 0;
}

.scene-header {
  position: relative;
  margin-bottom: 2rem;
}

.scene-watermark {
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-size: 10rem;
  font-weight: 800;
  color: var(--bs-black);
  opacity: 0.03;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

/* ========================================
   Cards - Glass Morphism + Depth
   ======================================== */
.bs-card {
  background: var(--bs-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs-card-elevated {
  box-shadow: var(--shadow-md);
}

.bs-card-dramatic {
  box-shadow: var(--shadow-dramatic);
  border: none;
}

.bs-card-interactive {
  cursor: pointer;
}

.bs-card-interactive:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.bs-card-glow:hover {
  border-color: var(--bs-lilac);
  box-shadow: var(--shadow-glow);
}

/* ========================================
   Collapsible Sections
   ======================================== */
.collapsible {
  overflow: hidden;
}

.collapsible-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.2s ease;
}

.collapsible-trigger:hover {
  background: rgba(0, 0, 0, 0.02);
}

.collapsible-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapsible.open .collapsible-icon {
  transform: rotate(180deg);
}

.collapsible-content {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1rem;
}

.collapsible.open .collapsible-content {
  max-height: 2000px;
  opacity: 1;
  padding: 0 1rem 1rem;
}

/* Quick collapse for code/details */
.collapse-section {
  border-top: 1px solid var(--bs-light-grey);
  margin-top: 1rem;
  padding-top: 1rem;
}

/* ========================================
   Buttons - Bold & Purposeful
   ======================================== */
.bs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.bs-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.bs-btn-primary {
  background: var(--bs-lilac);
  color: var(--bs-black);
}

.bs-btn-primary:hover:not(:disabled) {
  background: var(--bs-lilac-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.bs-btn-secondary {
  background: var(--bs-black);
  color: var(--bs-white);
}

.bs-btn-secondary:hover:not(:disabled) {
  background: var(--bs-dark-grey);
  transform: translateY(-1px);
}

.bs-btn-outline {
  background: transparent;
  color: var(--bs-black);
  border: 1px solid var(--bs-light-grey);
}

.bs-btn-outline:hover:not(:disabled) {
  border-color: var(--bs-black);
  background: var(--bs-black);
  color: var(--bs-white);
}

.bs-btn-ghost {
  background: transparent;
  color: var(--bs-dark-grey);
  padding: 0.5rem 0.75rem;
}

.bs-btn-ghost:hover:not(:disabled) {
  color: var(--bs-lilac);
  background: var(--bs-lilac-light);
}

.bs-btn-success {
  background: var(--bs-success);
  color: var(--bs-white);
}

.bs-btn-success:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.bs-btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.bs-btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
}

/* ========================================
   Form Elements - Clean & Modern
   ======================================== */
.bs-input,
.bs-textarea,
.bs-select {
  font-family: var(--font-family);
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  border: 2px solid var(--bs-light-grey);
  border-radius: var(--radius-md);
  background: var(--bs-white);
  color: var(--bs-black);
  transition: all 0.2s ease;
  width: 100%;
}

.bs-input:focus,
.bs-textarea:focus,
.bs-select:focus {
  outline: none;
  border-color: var(--bs-black);
}

.bs-input::placeholder,
.bs-textarea::placeholder {
  color: var(--bs-light-grey);
}

.bs-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bs-dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.bs-hint {
  font-size: 0.8125rem;
  color: var(--bs-dark-grey);
  margin-top: 0.5rem;
}

/* File Input */
.bs-file-drop {
  border: 2px dashed var(--bs-light-grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.bs-file-drop:hover,
.bs-file-drop.dragover {
  border-color: var(--bs-lilac);
  background: var(--bs-lilac-light);
}

.bs-file-input input[type="file"] {
  font-family: var(--font-family);
}

.bs-file-input input[type="file"]::file-selector-button {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--bs-black);
  color: var(--bs-white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.bs-file-input input[type="file"]::file-selector-button:hover {
  background: var(--bs-dark-grey);
}

/* ========================================
   Tabs - Pill Style
   ======================================== */
.bs-tabs {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  padding: 4px;
  gap: 2px;
}

.bs-tab {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: transparent;
  color: var(--bs-dark-grey);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.bs-tab:hover {
  color: var(--bs-black);
}

.bs-tab.active {
  background: var(--bs-white);
  color: var(--bs-black);
  box-shadow: var(--shadow-sm);
}

/* ========================================
   Badges
   ======================================== */
.bs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 100px;
}

.bs-badge-success {
  background: var(--bs-success-light);
  color: var(--bs-success);
}

.bs-badge-error {
  background: var(--bs-error-light);
  color: var(--bs-error);
}

.bs-badge-warning {
  background: var(--bs-warning-light);
  color: var(--bs-warning);
}

.bs-badge-info {
  background: var(--bs-info-light);
  color: var(--bs-info);
}

.bs-badge-lilac {
  background: var(--bs-lilac-light);
  color: var(--bs-lilac);
}

.bs-badge-dark {
  background: var(--bs-black);
  color: var(--bs-white);
}

/* ========================================
   Stats - Big Bold Numbers
   ======================================== */
.bs-stat {
  text-align: center;
}

.bs-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bs-black);
}

.bs-stat-value.lilac { color: var(--bs-lilac); }
.bs-stat-value.success { color: var(--bs-success); }
.bs-stat-value.error { color: var(--bs-error); }

.bs-stat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--bs-dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Stat Card */
.bs-stat-card {
  background: var(--bs-white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
}

.bs-stat-card.accent-left {
  border-left: 3px solid var(--bs-lilac);
  text-align: left;
}

.bs-stat-card.success { border-left-color: var(--bs-success); }
.bs-stat-card.error { border-left-color: var(--bs-error); }
.bs-stat-card.lilac { border-left-color: var(--bs-lilac); }
.bs-stat-card.info { border-left-color: var(--bs-info); }

/* ========================================
   Alerts
   ======================================== */
.bs-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bs-alert-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.bs-alert-success {
  background: var(--bs-success-light);
  color: #1a1a1a;
}

.bs-alert-error {
  background: var(--bs-error-light);
  color: #991b1b;
}

.bs-alert-warning {
  background: var(--bs-warning-light);
  color: #92400e;
}

.bs-alert-info {
  background: var(--bs-lilac-light);
  color: var(--bs-black);
}

/* ========================================
   Code Blocks
   ======================================== */
.bs-code {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  background: var(--bs-black);
  color: #e5e5e5;
  border-radius: var(--radius-md);
  padding: 1rem;
  overflow-x: auto;
}

pre.bs-code {
  white-space: pre;
}

.bs-code-inline {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-sm);
}

/* ========================================
   Progress Indicators
   ======================================== */
.bs-progress {
  height: 4px;
  background: var(--bs-light-grey-50);
  border-radius: 2px;
  overflow: hidden;
}

.bs-progress-fill {
  height: 100%;
  background: var(--bs-lilac);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Spinner
   ======================================== */
@keyframes bs-spin {
  to { transform: rotate(360deg); }
}

.bs-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--bs-light-grey);
  border-top-color: var(--bs-lilac);
  border-radius: 50%;
  animation: bs-spin 0.8s linear infinite;
}

.bs-spinner-lg {
  width: 32px;
  height: 32px;
  border-width: 3px;
}

/* ========================================
   Persona Cards - Identity Focus
   ======================================== */
.bs-persona-card {
  background: var(--bs-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs-persona-card:hover {
  box-shadow: var(--shadow-md);
}

.bs-persona-header {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bs-persona-header:hover {
  background: rgba(0, 0, 0, 0.01);
}

.bs-persona-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bs-lilac-light) 0%, rgba(153, 153, 255, 0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--bs-lilac);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.bs-persona-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.bs-persona-body {
  padding: 0 1.25rem 1.25rem;
}

/* ========================================
   Big Five Traits - Minimalist Bars
   ======================================== */
.bs-traits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.bs-trait {
  text-align: center;
}

.bs-trait-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bs-dark-grey);
  margin-bottom: 0.25rem;
}

.bs-trait-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--bs-black);
  margin-bottom: 0.375rem;
}

.bs-trait-bar {
  height: 3px;
  background: var(--bs-light-grey-50);
  border-radius: 2px;
  overflow: hidden;
}

.bs-trait-fill {
  height: 100%;
  background: var(--bs-lilac);
  border-radius: 2px;
}

/* ========================================
   Option Indicators (A/B Testing)
   ======================================== */
.bs-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--bs-light-grey);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  cursor: pointer;
}

.bs-option:hover {
  border-color: var(--bs-dark-grey);
}

.bs-option.selected {
  border-color: var(--bs-lilac);
  background: var(--bs-lilac-light);
}

.bs-option-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--bs-white);
  flex-shrink: 0;
}

.bs-option-indicator.option-a,
.option-a { background: var(--bs-lilac); }
.bs-option-indicator.option-b,
.option-b { background: var(--bs-success); }
.bs-option-indicator.option-c,
.option-c { background: var(--bs-warning); }
.bs-option-indicator.option-d,
.option-d { background: var(--bs-error); }

/* ========================================
   Audio Section
   ======================================== */
.bs-audio-section {
  background: linear-gradient(135deg, var(--bs-lilac-light) 0%, rgba(153, 153, 255, 0.05) 100%);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
}

.bs-audio-section audio {
  width: 100%;
  height: 36px;
}

/* Prominent Audio Section - for auto-generated audio */
.bs-audio-section-prominent {
  background: linear-gradient(135deg, rgba(153, 153, 255, 0.15) 0%, rgba(153, 153, 255, 0.05) 100%);
  border: 1px solid rgba(153, 153, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: 1rem;
}

.bs-audio-section-prominent .audio-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.bs-audio-section-prominent .audio-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--bs-lilac);
  object-fit: cover;
  flex-shrink: 0;
}

.bs-audio-section-prominent .audio-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bs-black);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.bs-audio-section-prominent audio {
  width: 100%;
  height: 40px;
  margin-bottom: 0.75rem;
}

.bs-audio-section-prominent .audio-script {
  background: rgba(255, 255, 255, 0.6);
  border-left: 3px solid var(--bs-lilac);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--bs-dark-grey);
  font-style: italic;
  line-height: 1.5;
}

/* ========================================
   Charts
   ======================================== */
.bs-chart-container {
  background: var(--bs-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

/* ========================================
   List Items
   ======================================== */
.bs-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bs-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.bs-list-item:hover {
  border-color: var(--bs-light-grey);
  box-shadow: var(--shadow-sm);
}

/* ========================================
   Footer
   ======================================== */
.bs-footer {
  background: var(--bs-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem 0;
  margin-top: auto;
}

.bs-footer p {
  color: var(--bs-dark-grey);
  font-size: 0.75rem;
}

/* ========================================
   Utility Classes
   ======================================== */
.bs-divider {
  height: 1px;
  background: var(--bs-light-grey);
  margin: 1.5rem 0;
}

.bs-text-lilac { color: var(--bs-lilac); }
.bs-text-success { color: var(--bs-success); }
.bs-text-error { color: var(--bs-error); }
.bs-bg-lilac-light { background: var(--bs-lilac-light); }

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease forwards;
}

.animate-slideDown {
  animation: slideDown 0.3s ease forwards;
}

.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.1s; }
.stagger-3 { animation-delay: 0.15s; }
.stagger-4 { animation-delay: 0.2s; }
.stagger-5 { animation-delay: 0.25s; }

/* ========================================
   Focus States
   ======================================== */
:focus-visible {
  outline: 2px solid var(--bs-lilac);
  outline-offset: 2px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .scene-watermark {
    font-size: 6rem;
    top: -1rem;
  }

  .headline-xl {
    font-size: 1.75rem;
  }

  .bs-stat-value {
    font-size: 1.75rem;
  }
}
