/* Demand Radar — ThreeUI Aesthetic Engine */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Default Mono Dark Palette */
  --bg-base: #09090b;
  --bg-surface: #111115;
  --bg-card: rgba(19, 19, 25, 0.75);
  --bg-card-hover: rgba(26, 26, 35, 0.9);
  --bg-active: rgba(35, 35, 48, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-hover: rgba(255, 255, 255, 0.28);
  
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  --accent: #f4f4f5;
  --accent-rgb: 244, 244, 245;
  --accent-glow: rgba(255, 255, 255, 0.15);
  --accent-light: rgba(255, 255, 255, 0.08);

  --color-high: #10b981;
  --color-high-rgb: 16, 185, 129;
  --color-high-bg: rgba(16, 185, 129, 0.12);
  --color-high-border: rgba(16, 185, 129, 0.35);

  --color-moderate: #f59e0b;
  --color-moderate-rgb: 245, 158, 11;
  --color-moderate-bg: rgba(245, 158, 11, 0.12);
  --color-moderate-border: rgba(245, 158, 11, 0.35);

  --color-killed: #ef4444;
  --color-killed-rgb: 239, 68, 68;
  --color-killed-bg: rgba(239, 68, 68, 0.12);
  --color-killed-border: rgba(239, 68, 68, 0.35);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* Palette: Azure (Electric Blue) */
html[data-palette="azure"] {
  --bg-base: #060913;
  --bg-surface: #0a1122;
  --bg-card: rgba(12, 20, 38, 0.75);
  --bg-card-hover: rgba(17, 28, 52, 0.9);
  --bg-active: rgba(24, 40, 72, 0.85);
  --border-subtle: rgba(56, 189, 248, 0.12);
  --border-card: rgba(56, 189, 248, 0.18);
  --border-hover: rgba(56, 189, 248, 0.45);
  --accent: #38bdf8;
  --accent-rgb: 56, 189, 248;
  --accent-glow: rgba(56, 189, 248, 0.25);
  --accent-light: rgba(56, 189, 248, 0.12);
}

/* Palette: Moss (Cyber Green / Emerald) */
html[data-palette="moss"] {
  --bg-base: #060d09;
  --bg-surface: #0a1711;
  --bg-card: rgba(11, 25, 18, 0.75);
  --bg-card-hover: rgba(15, 36, 25, 0.9);
  --bg-active: rgba(20, 48, 33, 0.85);
  --border-subtle: rgba(52, 211, 153, 0.12);
  --border-card: rgba(52, 211, 153, 0.18);
  --border-hover: rgba(52, 211, 153, 0.45);
  --accent: #34d399;
  --accent-rgb: 52, 211, 153;
  --accent-glow: rgba(52, 211, 153, 0.25);
  --accent-light: rgba(52, 211, 153, 0.12);
}

/* Palette: Amber (Warm Gold / Solar) */
html[data-palette="amber"] {
  --bg-base: #0a0805;
  --bg-surface: #141009;
  --bg-card: rgba(24, 18, 11, 0.75);
  --bg-card-hover: rgba(34, 25, 14, 0.9);
  --bg-active: rgba(48, 35, 18, 0.85);
  --border-subtle: rgba(251, 191, 36, 0.12);
  --border-card: rgba(251, 191, 36, 0.18);
  --border-hover: rgba(251, 191, 36, 0.45);
  --accent: #fbbf24;
  --accent-rgb: 251, 191, 36;
  --accent-glow: rgba(251, 191, 36, 0.25);
  --accent-light: rgba(251, 191, 36, 0.12);
}

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

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Atmosphere & Grid */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}

.bg-radial-glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.35;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  transition: background 0.6s ease;
}

/* Radar Canvas Header */
#radar-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 180px;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

/* Layout Containers */
.app-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}

/* Top Navigation Bar */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

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

.brand-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  border: 1px solid var(--border-card);
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
}

.brand-title {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--color-high);
  margin-left: 8px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-high);
  box-shadow: 0 0 8px var(--color-high);
  animation: pulse-ring 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

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

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

/* Palette Switcher */
.palette-picker {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 2px;
}

.palette-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
}

.palette-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.palette-btn.active {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
  border: 1px solid var(--border-card);
}

/* Standard Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-base);
  border-color: var(--accent);
  font-weight: 600;
}

.btn-primary:hover {
  box-shadow: 0 0 16px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-card);
}

.btn-secondary:hover {
  background: var(--bg-active);
  border-color: var(--border-hover);
}

.btn-sm {
  padding: 4px 10px;
  font-size: 11px;
}

/* Hero Telemetry Metrics Strip */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.metric-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  transition: border-color 0.2s ease;
}

.metric-card:hover {
  border-color: var(--border-hover);
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  margin-top: 6px;
  color: var(--text-primary);
}

.metric-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Controls & Filter Bar */
.control-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 400px;
}

.search-input {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 8px 36px 8px 12px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: var(--accent);
}

.search-shortcut {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 5px;
  background: var(--border-subtle);
  border-radius: 3px;
  color: var(--text-muted);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-pill {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-pill:hover {
  color: var(--text-primary);
  border-color: var(--border-card);
}

.filter-pill.active {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
}

/* Two-Column Explorer Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 24px;
  align-items: start;
}

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

/* Feed Column */
.cards-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 4px;
}

/* Pain Card Item */
.pain-card-item {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.pain-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.2s;
}

.pain-card-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pain-card-item.selected {
  background: var(--bg-active);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.pain-card-item.selected::before {
  background: var(--accent);
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
}

.channel-icon {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: -0.01em;
}

.status-high {
  background: var(--color-high-bg);
  border: 1px solid var(--color-high-border);
  color: var(--color-high);
}

.status-moderate {
  background: var(--color-moderate-bg);
  border: 1px solid var(--color-moderate-border);
  color: var(--color-moderate);
}

.status-killed {
  background: var(--color-killed-bg);
  border: 1px solid var(--color-killed-border);
  color: var(--color-killed);
}

.card-headline {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.card-audience {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
  margin-top: 8px;
}

.card-metric-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

/* Detail Inspection Panel (Sticky Right) */
.detail-column {
  position: sticky;
  top: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.detail-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.detail-nav-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  padding: 0 24px;
}

.detail-tab {
  background: transparent;
  border: none;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
}

.detail-tab:hover {
  color: var(--text-primary);
}

.detail-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  font-weight: 600;
}

.detail-body {
  padding: 24px;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
}

/* Tab Panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Fatal Flaw Alert Banner */
.fatal-flaw-banner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
}

.flaw-icon {
  font-size: 18px;
}

.flaw-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-killed);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.flaw-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* High Potential Qualified Banner */
.qualified-banner {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
}

.qualified-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-high);
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* 8-Dimension Radar Grid & Chart */
.radar-chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 16px 0 24px;
  position: relative;
}

.radar-svg {
  width: 100%;
  max-width: 440px;
  height: 340px;
}

.dimensions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.dimension-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}

.dim-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.dim-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
}

.dim-score {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  color: var(--text-primary);
}

.dim-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.dim-bar-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.4s ease;
}

.dim-evidence {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.3;
}

/* Section Blocks */
.info-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.quote-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--accent);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.workaround-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.4;
}

/* The Mom Test Tab */
.mom-test-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mom-stage-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.mom-stage-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mom-question-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mom-question-item {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.mom-question-item::before {
  content: '›';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: bold;
}

/* Outreach Template Card */
.template-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 14px;
}

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

.template-code {
  background: var(--bg-base);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  white-space: pre-wrap;
  line-height: 1.4;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

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

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

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

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}

.form-textarea {
  font-family: var(--font-sans);
  min-height: 80px;
  resize: vertical;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
}

/* Terminal Log View in Scan Modal */
.terminal-window {
  background: #050508;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #38bdf8;
  max-height: 220px;
  overflow-y: auto;
  line-height: 1.5;
  margin-top: 14px;
}

.terminal-line {
  margin-bottom: 4px;
  word-break: break-all;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  animation: slide-up 0.2s ease;
}

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