/* ====================================================================
   RESUMECRAFT — DESIGN TOKENS
   Extends the original single-page site's palette/type into a formal
   system so every new page (landing, builder, final, legal) stays
   visually identical to the original. Do not introduce new colors
   outside this file without a reason.
   ==================================================================== */

:root {
  /* ---- Core palette (from original site) ---- */
  --ink: #252a3a;
  --ink-soft: #31374b;
  --muted: #68728a;
  --muted-soft: #8790a8;
  --panel: #f8f9fd;
  --panel-strong: #eef2fb;
  --accent: #6484e8;
  --accent-dark: #4568d6;
  --accent-soft: #eef3ff;
  --paper: #fffdf9;
  --border-soft: rgba(110, 123, 168, 0.16);
  --border-softer: rgba(110, 123, 168, 0.12);

  /* ---- Semantic additions (new, but kept inside the same family) ---- */
  --success: #63b978;
  --success-deep: #4a9c5e;
  --warn: #d09b64;
  --danger: #b8453d;
  --gold: #f0c78f;

  /* ---- Surfaces ---- */
  --bg: #ffffff;
  --bg-tint: #f6f8fe;

  /* ---- Shadows ---- */
  --shadow-sm: 0 8px 20px rgba(42, 54, 92, 0.08);
  --shadow: 0 18px 55px rgba(42, 54, 92, 0.12);
  --shadow-lg: 0 24px 70px rgba(42, 54, 92, 0.16);

  /* ---- Radius ---- */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;

  /* ---- Type ---- */
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 160ms;
  --t-med: 280ms;
  --t-slow: 420ms;

  /* ---- Layout ---- */
  --container: 1100px;
  --header-h: 64px;

  color-scheme: light;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --t-fast: 0ms;
    --t-med: 0ms;
    --t-slow: 0ms;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
