﻿:root {
  color-scheme: dark;

  /* Color Tokens */
  --color-midnight-blue: #0f172a;
  --color-deep-navy: #020617;
  --color-electric-blue: #2563eb;
  --color-cyan-tech: #38bdf8;
  --color-mint: #38bdf8;
  --color-ice: #f8fafc;
  --color-slate: #94a3b8;

  --color-bg: var(--color-deep-navy);
  --color-surface: var(--color-midnight-blue);
  --color-surface-alt: #0b1328;
  --color-border: rgba(148, 163, 184, 0.24);
  --color-text-primary: var(--color-ice);
  --color-text-secondary: #cbd5e1;
  --color-accent: var(--color-electric-blue);
  --color-accent-soft: rgba(56, 189, 248, 0.15);

  /* Typography Tokens */
  --font-heading: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: clamp(1.75rem, 4vw, 2.625rem);

  --line-tight: 1.2;
  --line-base: 1.6;

  /* Spacing Tokens */
  --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;

  /* Radius Tokens */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 999px;

  /* Shadow Tokens */
  --shadow-sm: 0 2px 14px rgba(2, 6, 23, 0.3);
  --shadow-md: 0 10px 30px rgba(2, 6, 23, 0.45);
  --shadow-glow: 0 0 0 1px rgba(56, 189, 248, 0.35), 0 16px 40px rgba(37, 99, 235, 0.22);

  /* Layout Tokens */
  --container-max: 72rem;
  --container-gutter: 1rem;
  --section-space: var(--space-12);
}

@media (min-width: 48rem) {
  :root {
    --container-gutter: 1.5rem;
    --section-space: var(--space-16);
  }
}
