/* DigitalZap Design Tokens
   Palette: graphite/navy base, electric cyan accent, warm rand-gold accent (sparingly).
   Light & Dark mode via [data-theme]. Defaults to dark — premium tech consultancy feel.
*/

:root,
[data-theme="dark"] {
  /* Surfaces */
  --bg: #0a0e14;            /* deep graphite */
  --bg-elev: #0f1520;       /* elevated panel */
  --surface: #131a26;       /* cards */
  --surface-2: #18202d;     /* tabs / inputs */
  --surface-3: #1f2937;     /* hover */
  --border: #1f2a3a;
  --border-strong: #2a3a52;

  /* Text */
  --text: #e6edf6;
  --text-muted: #9aa7bb;
  --text-faint: #5f6b80;

  /* Brand */
  --accent: #22e1c4;        /* electric mint-cyan — primary CTA */
  --accent-2: #3aa9ff;      /* electric blue — secondary highlights */
  --accent-rand: #f5b842;   /* warm gold = rand-tracked accent */
  --accent-glow: rgba(34, 225, 196, 0.45);

  /* Semantic */
  --success: #4ade80;
  --warn: #f5b842;
  --danger: #f87171;

  /* Type */
  --font-display: 'Boldonse', 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-sans: 'Satoshi', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 4rem;
  --text-hero: clamp(2.6rem, 6.5vw, 5.5rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4.5rem;
  --sp-9: 6.5rem;
  --sp-10: 9rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
  --shadow-glow: 0 0 0 1px rgba(34,225,196,.3), 0 12px 60px rgba(34,225,196,.18);

  /* Layout */
  --max-w: 1240px;
  --nav-h: 72px;
}

[data-theme="light"] {
  --bg: #f5f6f8;
  --bg-elev: #ffffff;
  --surface: #ffffff;
  --surface-2: #f0f3f7;
  --surface-3: #e6ebf2;
  --border: #e1e6ee;
  --border-strong: #c9d1dd;

  --text: #0a0e14;
  --text-muted: #475569;
  --text-faint: #94a3b8;

  --accent: #0d9488;        /* deeper teal for AA contrast on light */
  --accent-2: #1d6bc4;
  --accent-rand: #b88216;
  --accent-glow: rgba(13, 148, 136, .25);

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow-md: 0 8px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.12);
  --shadow-glow: 0 0 0 1px rgba(13,148,136,.25), 0 12px 60px rgba(13,148,136,.18);
}
