/* ============================================
   DESIGN TOKENS — Jessica Shrestha Portfolio
   Theme: "Secure by design" — SOC dashboard meets
   clean editorial. Light default, dark optional.
   ============================================ */

:root {
  /* -- Light mode (default) -- */
  --bg: #F5F8F9;
  --surface: #FFFFFF;
  --surface-alt: #ECF1F3;
  --ink: #101820;
  --ink-soft: #4A5560;
  --ink-faint: #7C8892;
  --accent: #0F7173;
  --accent-strong: #0A5254;
  --accent-soft: #DCEEEE;
  --warn: #B4790A;
  --warn-soft: #FBF0DA;
  --ok: #26773B;
  --ok-soft: #E1F2E4;
  --danger: #B3261E;
  --danger-soft: #FBE4E2;
  --border: #DCE3E6;
  --border-strong: #C2CCD1;
  --shadow: 0 1px 2px rgba(16, 24, 32, 0.04), 0 8px 24px rgba(16, 24, 32, 0.06);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;

  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #0A0F1A;
  --surface: #111A2B;
  --surface-alt: #16213500;
  --surface-alt: #16213A;
  --ink: #E9EEF4;
  --ink-soft: #A7B4C4;
  --ink-faint: #6E7C8E;
  --accent: #35D6C0;
  --accent-strong: #7EEFDD;
  --accent-soft: #12302E;
  --warn: #F2B705;
  --warn-soft: #2E2610;
  --ok: #4ADE80;
  --ok-soft: #12301D;
  --danger: #F87171;
  --danger-soft: #331616;
  --border: #223049;
  --border-strong: #2F4064;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 12px 32px rgba(0, 0, 0, 0.35);

  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
