:root {
  /* Colors */
  --color-bg: hsl(0 0% 99%);
  --color-surface: hsl(0 0% 100%);
  --color-surface-2: hsl(0 0% 97%);
  --color-text: hsl(225 15% 10%);
  --color-muted: hsl(225 8% 36%);
  --color-border: hsl(225 12% 88%);
  --color-accent: hsl(228 85% 52%);
  --color-accent-2: hsl(160 85% 35%);
  --color-accent-soft: hsl(228 85% 52% / 0.35);
  --color-danger: hsl(6 80% 52%);
  --color-focus: hsl(228 85% 52%);
  --color-glass: hsl(0 0% 100% / 0.62);
  --color-glass-border: hsl(225 12% 82% / 0.7);
  --color-shadow: hsl(225 40% 10% / 0.12);
  --color-glint: hsl(0 0% 100% / 0.85);
  --color-ink-wash: hsl(225 40% 10% / 0.06);
  --color-selection: hsl(228 85% 52% / 0.18);

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-s: 0.75rem;
  --space-m: 1rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Typography */
  --font-family-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --font-weight-regular: 450;
  --font-weight-medium: 560;
  --font-weight-bold: 720;

  --font-size-xs: 0.875rem;
  --font-size-s: 1rem;
  --font-size-m: 1.125rem;
  --font-size-l: 1.25rem;
  --font-size-xl: 1.75rem;
  --font-size-2xl: 2.25rem;
  --font-size-3xl: 3rem;
  --font-size-4xl: 3.75rem;

  --line-height-tight: 1.12;
  --line-height-snug: 1.28;
  --line-height-normal: 1.55;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: -0.01em;

  /* Radius */
  --radius-s: 0.75rem;
  --radius-m: 1.1rem;
  --radius-l: 1.6rem;
  --radius-xl: 2.2rem;

  /* Shadows */
  --shadow-s: 0 1px 1px var(--color-shadow);
  --shadow-m: 0 10px 25px var(--color-shadow);
  --shadow-l: 0 25px 60px var(--color-shadow);
  --shadow-inset-soft: inset 0 1px 0 var(--color-glint);
  --shadow-inset-deep: inset 0 -10px 25px var(--color-ink-wash);

  /* Blur */
  --blur-s: 6px;
  --blur-m: 12px;
  --blur-l: 18px;
  --blur-xl: 24px;

  /* Z-Index */
  --z-base: 0;
  --z-header: 10;
  --z-overlay: 20;
  --z-toast: 30;

  /* Transition Durations */
  --dur-instant: 120ms;
  --dur-fast: 180ms;
  --dur-normal: 260ms;
  --dur-slow: 420ms;

  /* Breakpoints */
  --bp-s: 36rem;
  --bp-m: 56rem;
  --bp-l: 72rem;

  /* Layout tokens */
  --container-max: 72rem;
  --container-pad: var(--space-l);

  /* Motion tokens */
  --motion-distance-xs: 0.35rem;
  --motion-distance-s: 0.6rem;
  --motion-distance-m: 1rem;

  /* Borders */
  --border-1: 1px solid var(--color-border);
  --border-glass: 1px solid var(--color-glass-border);

  /* Focus */
  --focus-ring: 0 0 0 3px hsl(228 85% 52% / 0.35);

  /* Gradients / Textures */
  --gradient-hero: radial-gradient(900px 450px at 15% 0%, hsl(228 85% 52% / 0.18), transparent 60%),
    radial-gradient(900px 450px at 85% 10%, hsl(160 85% 35% / 0.14), transparent 60%),
    radial-gradient(900px 600px at 50% 100%, hsl(225 40% 10% / 0.10), transparent 65%);

  --texture-noise: repeating-linear-gradient(
    45deg,
    hsl(0 0% 0% / 0.02) 0,
    hsl(0 0% 0% / 0.02) 1px,
    transparent 1px,
    transparent 3px
  );

  /* Component tokens */
  --btn-height: 2.75rem;
  --btn-pad-x: var(--space-l);
  --btn-gap: var(--space-xs);
  --card-pad: var(--space-xl);
  --glass-pad: var(--space-xl);

  /* Readability */
  --measure: 68ch;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: hsl(225 18% 7%);
    --color-surface: hsl(225 18% 9%);
    --color-surface-2: hsl(225 18% 11%);
    --color-text: hsl(0 0% 96%);
    --color-muted: hsl(225 12% 68%);
    --color-border: hsl(225 14% 22%);
    --color-glass: hsl(225 18% 12% / 0.62);
    --color-glass-border: hsl(225 14% 32% / 0.6);
    --color-shadow: hsl(0 0% 0% / 0.35);
    --color-ink-wash: hsl(0 0% 0% / 0.18);
    --focus-ring: 0 0 0 3px hsl(228 85% 52% / 0.5);
    --gradient-hero: radial-gradient(900px 450px at 15% 0%, hsl(228 85% 52% / 0.22), transparent 60%),
      radial-gradient(900px 450px at 85% 10%, hsl(160 85% 35% / 0.18), transparent 60%),
      radial-gradient(900px 600px at 50% 100%, hsl(0 0% 0% / 0.35), transparent 65%);
    --texture-noise: repeating-linear-gradient(
      45deg,
      hsl(0 0% 100% / 0.02) 0,
      hsl(0 0% 100% / 0.02) 1px,
      transparent 1px,
      transparent 3px
    );
  }
}


/* Manual theme override (set via JS on <html> as data-theme) */
:root[data-theme="light"] {
  color-scheme: light;
  /* Colors */
  --color-bg: hsl(0 0% 99%);
  --color-surface: hsl(0 0% 100%);
  --color-surface-2: hsl(0 0% 97%);
  --color-text: hsl(225 15% 10%);
  --color-muted: hsl(225 8% 36%);
  --color-border: hsl(225 12% 88%);
  --color-accent: hsl(228 85% 52%);
  --color-accent-2: hsl(160 85% 35%);
  --color-accent-soft: hsl(228 85% 52% / 0.35);
  --color-danger: hsl(6 80% 52%);
  --color-focus: hsl(228 85% 52%);
  --color-glass: hsl(0 0% 100% / 0.62);
  --color-glass-border: hsl(225 12% 82% / 0.7);
  --color-shadow: hsl(225 40% 10% / 0.12);
  --color-glint: hsl(0 0% 100% / 0.85);
  --color-ink-wash: hsl(225 40% 10% / 0.06);
  --color-selection: hsl(228 85% 52% / 0.18);

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-s: 0.75rem;
  --space-m: 1rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Typography */
  --font-family-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --font-weight-regular: 450;
  --font-weight-medium: 560;
  --font-weight-bold: 720;

  --font-size-xs: 0.875rem;
  --font-size-s: 1rem;
  --font-size-m: 1.125rem;
  --font-size-l: 1.25rem;
  --font-size-xl: 1.75rem;
  --font-size-2xl: 2.25rem;
  --font-size-3xl: 3rem;
  --font-size-4xl: 3.75rem;

  --line-height-tight: 1.12;
  --line-height-snug: 1.28;
  --line-height-normal: 1.55;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: -0.01em;

  /* Radius */
  --radius-s: 0.75rem;
  --radius-m: 1.1rem;
  --radius-l: 1.6rem;
  --radius-xl: 2.2rem;

  /* Shadows */
  --shadow-s: 0 1px 1px var(--color-shadow);
  --shadow-m: 0 10px 25px var(--color-shadow);
  --shadow-l: 0 25px 60px var(--color-shadow);
  --shadow-inset-soft: inset 0 1px 0 var(--color-glint);
  --shadow-inset-deep: inset 0 -10px 25px var(--color-ink-wash);

  /* Blur */
  --blur-s: 6px;
  --blur-m: 12px;
  --blur-l: 18px;

  /* Z-Index */
  --z-base: 0;
  --z-header: 10;
  --z-overlay: 20;
  --z-toast: 30;

  /* Transition Durations */
  --dur-instant: 120ms;
  --dur-fast: 180ms;
  --dur-normal: 260ms;
  --dur-slow: 420ms;

  /* Breakpoints */
  --bp-s: 36rem;
  --bp-m: 56rem;
  --bp-l: 72rem;

  /* Layout tokens */
  --container-max: 72rem;
  --container-pad: var(--space-l);

  /* Motion tokens */
  --motion-distance-xs: 0.35rem;
  --motion-distance-s: 0.6rem;
  --motion-distance-m: 1rem;

  /* Borders */
  --border-1: 1px solid var(--color-border);
  --border-glass: 1px solid var(--color-glass-border);

  /* Focus */
  --focus-ring: 0 0 0 3px hsl(228 85% 52% / 0.35);

  /* Gradients / Textures */
  --gradient-hero: radial-gradient(900px 450px at 15% 0%, hsl(228 85% 52% / 0.18), transparent 60%),
  radial-gradient(900px 450px at 85% 10%, hsl(160 85% 35% / 0.14), transparent 60%),
  radial-gradient(900px 600px at 50% 100%, hsl(225 40% 10% / 0.10), transparent 65%);

  --texture-noise: repeating-linear-gradient(
  45deg,
  hsl(0 0% 0% / 0.02) 0,
  hsl(0 0% 0% / 0.02) 1px,
  transparent 1px,
  transparent 3px
  );

  /* Component tokens */
  --btn-height: 2.75rem;
  --btn-pad-x: var(--space-l);
  --btn-gap: var(--space-xs);
  --card-pad: var(--space-xl);
  --glass-pad: var(--space-xl);

  /* Readability */
  --measure: 68ch;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --color-bg: hsl(225 18% 7%);
  --color-surface: hsl(225 18% 9%);
  --color-surface-2: hsl(225 18% 11%);
  --color-text: hsl(0 0% 96%);
  --color-muted: hsl(225 12% 68%);
  --color-border: hsl(225 14% 22%);
  --color-glass: hsl(225 18% 12% / 0.62);
  --color-glass-border: hsl(225 14% 32% / 0.6);
  --color-shadow: hsl(0 0% 0% / 0.35);
  --color-ink-wash: hsl(0 0% 0% / 0.18);
  --focus-ring: 0 0 0 3px hsl(228 85% 52% / 0.5);
  --gradient-hero: radial-gradient(900px 450px at 15% 0%, hsl(228 85% 52% / 0.22), transparent 60%),
  radial-gradient(900px 450px at 85% 10%, hsl(160 85% 35% / 0.18), transparent 60%),
  radial-gradient(900px 600px at 50% 100%, hsl(0 0% 0% / 0.35), transparent 65%);
  --texture-noise: repeating-linear-gradient(
  45deg,
  hsl(0 0% 100% / 0.02) 0,
  hsl(0 0% 100% / 0.02) 1px,
  transparent 1px,
  transparent 3px
  );
}
