:root {
  /* Color */
  --color-bg: #0b0e13;
  --color-bg-elevated: #12171f;
  --color-bg-muted: #181e28;
  --color-surface: #1c2430;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.16);
  --color-text: #e8edf4;
  --color-text-muted: #9aa6b8;
  --color-text-dim: #6b7789;
  --color-accent: #4a8fb8;
  --color-accent-hover: #6aaad0;
  --color-accent-soft: rgba(74, 143, 184, 0.15);
  --color-white: #ffffff;
  --color-danger: #d45a5a;
  --color-success: #4caf7a;

  /* Typography */
  --font-sans: "Noto Sans TC", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Outfit", "Noto Sans TC", "Segoe UI", sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: clamp(2.25rem, 4vw, 3.25rem);
  --fs-hero: clamp(2.75rem, 6vw, 4.5rem);
  --lh-tight: 1.2;
  --lh-base: 1.65;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --container: 1120px;
  --container-wide: 1280px;
  --header-h: 72px;

  /* Radii & shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-header: 0 4px 20px rgba(0, 0, 0, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.35s;
  --duration-slow: 0.6s;

  /* Z-index */
  --z-header: 1000;
  --z-overlay: 1100;
  --z-backtop: 900;
  --z-lightbox: 1200;
}
