/* ═══════════════════════════════════════════════════════════════
   LIFE IN NUMBERS — Design System
   Premium Fintech Aesthetic · Dark Mode · Glassmorphism
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  /* Color Palette */
  --navy-900: #0a0e1a;
  --navy-800: #0f1629;
  --navy-700: #151d37;
  --navy-600: #1b2545;
  --navy-500: #232f56;
  --navy-400: #2e3d6b;
  --navy-300: #3d5089;
  --navy-200: #5a72a8;
  --navy-100: #8a9cc7;

  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --emerald-300: #6ee7b7;
  --emerald-glow: rgba(16, 185, 129, 0.4);
  --emerald-glow-strong: rgba(16, 185, 129, 0.6);

  --coral-500: #ef4444;
  --coral-400: #f87171;
  --coral-300: #fca5a5;
  --coral-glow: rgba(239, 68, 68, 0.35);

  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --blue-glow: rgba(59, 130, 246, 0.4);
  --blue-glow-strong: rgba(59, 130, 246, 0.6);

  --gold-500: #f59e0b;
  --gold-400: #fbbf24;

  /* Neutral */
  --white: #ffffff;
  --gray-100: #e5e7eb;
  --gray-200: #d1d5db;
  --gray-300: #9ca3af;
  --gray-400: #6b7280;
  --gray-500: #4b5563;

  /* Surfaces */
  --bg-primary: var(--navy-900);
  --bg-secondary: var(--navy-800);
  --bg-card: rgba(15, 22, 41, 0.65);
  --bg-card-hover: rgba(21, 29, 55, 0.8);
  --bg-glass: rgba(15, 22, 41, 0.45);
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-glass-hover: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Size Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Borders */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow-emerald: 0 0 30px var(--emerald-glow), 0 0 60px rgba(16, 185, 129, 0.15);
  --shadow-glow-blue: 0 0 30px var(--blue-glow), 0 0 60px rgba(59, 130, 246, 0.15);
  --shadow-glow-coral: 0 0 20px var(--coral-glow);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy-900);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-400);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy-300);
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-lg {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.section {
  padding: var(--space-24) 0;
}

.section-sm {
  padding: var(--space-16) 0;
}

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-glass);
  padding: var(--space-3) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--emerald-500), var(--blue-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 800;
  color: white;
  box-shadow: 0 0 20px var(--emerald-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav-links a {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--emerald-500);
  border-radius: 1px;
}

.nav-cta {
  padding: var(--space-2) var(--space-5) !important;
  background: linear-gradient(135deg, var(--emerald-500), #059669) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: var(--text-sm) !important;
  box-shadow: var(--shadow-glow-emerald);
  transition: all var(--duration-normal) var(--ease-out) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px var(--emerald-glow-strong), 0 0 80px rgba(16, 185, 129, 0.2);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: var(--text-xl);
  padding: var(--space-2);
}

/* ── Glassmorphism Cards ────────────────────────────────────── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--duration-normal) var(--ease-out);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.glass-card-sm {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--duration-normal) var(--ease-out);
}

.glass-card-sm:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  border: none;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-500), #059669);
  color: white;
  box-shadow: var(--shadow-glow-emerald);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--emerald-glow-strong), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glass-hover);
  transform: translateY(-1px);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-xl {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
}

/* ── Typography ─────────────────────────────────────────────── */
.heading-1 {
  font-size: clamp(2.5rem, 6vw, var(--text-7xl));
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.heading-2 {
  font-size: clamp(1.8rem, 4vw, var(--text-5xl));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.heading-3 {
  font-size: clamp(1.3rem, 3vw, var(--text-3xl));
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.heading-4 {
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--emerald-400), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-warm {
  background: linear-gradient(135deg, var(--gold-400), var(--coral-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.label-emerald {
  color: var(--emerald-400);
}

.label-blue {
  color: var(--blue-400);
}

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-400);
  border-color: rgba(59, 130, 246, 0.2);
}

/* ── Custom Range Slider ────────────────────────────────────── */
.slider-group {
  margin-bottom: var(--space-6);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}

.slider-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.slider-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.slider-value.positive {
  color: var(--emerald-400);
}

.slider-value.negative {
  color: var(--coral-400);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--navy-600);
  outline: none;
  transition: all var(--duration-fast);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--emerald-500);
  cursor: pointer;
  box-shadow: 0 0 15px var(--emerald-glow), 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--navy-800);
  transition: all var(--duration-fast) var(--ease-spring);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 25px var(--emerald-glow-strong), 0 2px 12px rgba(0, 0, 0, 0.4);
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--emerald-500);
  cursor: pointer;
  box-shadow: 0 0 15px var(--emerald-glow), 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--navy-800);
}

/* ── KPI Stat Cards ─────────────────────────────────────────── */
.kpi-card {
  text-align: center;
  padding: var(--space-6);
}

.kpi-value {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-1);
}

.kpi-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
}

.kpi-change {
  font-size: var(--text-xs);
  font-weight: 600;
  margin-top: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.kpi-change.up {
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.1);
}

.kpi-change.down {
  color: var(--coral-400);
  background: rgba(239, 68, 68, 0.1);
}

/* ── Tooltip ────────────────────────────────────────────────── */
.tooltip-trigger {
  position: relative;
  cursor: help;
  border-bottom: 1px dashed var(--text-muted);
}

.tooltip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy-600);
  color: var(--text-primary);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  border: 1px solid var(--border-glass);
}

.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy-600);
}

.tooltip-trigger:hover .tooltip-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer-col a:hover {
  color: var(--emerald-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-glass);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px var(--emerald-glow);
  }

  50% {
    box-shadow: 0 0 40px var(--emerald-glow-strong), 0 0 80px rgba(16, 185, 129, 0.15);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-fade-in {
  animation: fadeIn var(--duration-slow) var(--ease-out) forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease-out) forwards;
}

.animate-slide-left {
  opacity: 0;
  animation: slideInLeft 0.7s var(--ease-out) forwards;
}

.animate-slide-right {
  opacity: 0;
  animation: slideInRight 0.7s var(--ease-out) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

.delay-8 {
  animation-delay: 0.8s;
}

.delay-10 {
  animation-delay: 1s;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Grid Helpers ───────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* ── Canvas Chart Container ─────────────────────────────────── */
.chart-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(10, 14, 26, 0.4);
  border: 1px solid var(--border-glass);
}

.chart-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Page Header ────────────────────────────────────────────── */
.page-header {
  padding: calc(80px + var(--space-16)) 0 var(--space-12);
  text-align: center;
}

.page-header .subtitle {
  margin: var(--space-4) auto 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .glass-card {
    padding: var(--space-6);
  }
}

@media (max-width: 480px) {
  .heading-1 {
    font-size: 2rem;
  }

  .heading-2 {
    font-size: 1.5rem;
  }

  .btn-xl {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
  }
}

/* ── Global Motion System (200–600ms, ease-in-out) ──────────── */
*,
*::before,
*::after {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interactive elevation on focus-visible */
:focus-visible {
  outline: 2px solid var(--emerald-500);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

/* Consistent hover lift for interactive glass elements */
.glass-card-sm:hover {
  box-shadow: var(--shadow-md);
}

/* Subtle shadow elevation on button active */
.btn:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Smooth focus ring for sliders */
input[type="range"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  border-radius: 3px;
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Gold variable used by stress warning ────────────────────── */
:root {
  --gold-500: #f59e0b;
}