:root {
  /* Palette — edit these to recolor the whole site */
  --primary: #64becc;
  --primary-2: #098191;

  /* Typography */
  --font-sans:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  --font-display: "Space Grotesk", var(--font-sans);
  --font-title: "Zen Dots", var(--font-display);

  /* Neutrals */
  --bg: #060a0e;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.12);

  /* Effects */
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 14px;
  --maxw: 1120px;
}

/* Optional light theme */
html[data-theme="light"] {
  --bg: #f7fbfc;
  --surface: rgba(0, 0, 0, 0.04);
  --surface-2: rgba(0, 0, 0, 0.06);
  --text: rgba(0, 0, 0, 0.9);
  --muted: rgba(0, 0, 0, 0.65);
  --border: rgba(0, 0, 0, 0.12);
  --shadow: 0 18px 50px rgba(0, 30, 40, 0.12);
}
