:root {
  /* ── Colors ── */
  --bg-base:        #0a0c0f;
  --bg-surface:     #0f1217;
  --bg-raised:      #151820;
  --bg-border:      #1e2330;
  --bg-border-mid:  #252c3a;

  --text-primary:   #eef0f4;
  --text-secondary: #8b91a0;
  --text-muted:     #4e5565;

  --accent:         #3d7eff;
  --accent-dim:     rgba(61, 126, 255, 0.12);
  --accent-glow:    rgba(61, 126, 255, 0.25);

  --green:          #22c97a;
  --green-dim:      rgba(34, 201, 122, 0.10);

  --red:            #e05252;

  /* ── Typography ── */
  --font-display:   'DM Mono', 'Courier New', monospace;
  --font-body:      'Instrument Sans', 'Helvetica Neue', sans-serif;

  --text-xs:   0.6875rem;   /* 11px */
  --text-sm:   0.8125rem;   /* 13px */
  --text-base: 1rem;        /* 16px */
  --text-lg:   1.125rem;    /* 18px */
  --text-xl:   1.375rem;    /* 22px */
  --text-2xl:  1.75rem;     /* 28px */
  --text-3xl:  2.25rem;     /* 36px */
  --text-4xl:  3rem;        /* 48px */
  --text-5xl:  3.75rem;     /* 60px */

  --leading-tight:  1.15;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-loose:  1.75;

  --tracking-tight:  -0.03em;
  --tracking-normal:  0em;
  --tracking-wide:    0.06em;
  --tracking-wider:   0.12em;

  /* ── Spacing scale ── */
  --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;
  --space-32: 8rem;

  /* ── Layout ── */
  --max-width:        1100px;
  --max-width-narrow: 680px;
  --gutter:           clamp(1.25rem, 5vw, 2.5rem);

  /* ── Radius ── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   18px;
  --radius-full: 999px;

  /* ── Shadows ── */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.6);

  /* ── Transitions ── */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --dur-fast:   160ms;
  --dur-mid:    280ms;
  --dur-slow:   480ms;
}
