/**
 * Design tokens — AllSugar landing (light, 2026)
 * Reference mood: warm, confident, human (Bumble-like clarity without copying assets)
 */
:root {
  --color-bg: #ffffff;
  --color-bg-subtle: #f7f7f8;
  --color-bg-elevated: #ffffff;
  --color-ink: #121212;
  --color-ink-muted: #5c5c5f;
  --color-ink-soft: #8e8e93;
  --color-line: rgba(18, 18, 18, 0.08);
  --color-line-strong: rgba(18, 18, 18, 0.12);

  /* Accent — honey / optimism (distinct from Bumble’s exact yellow) */
  --color-accent: #f4b400;
  --color-accent-soft: rgba(244, 180, 0, 0.14);
  --color-accent-deep: #c58900;

  --color-mesh-1: #fff8e8;
  --color-mesh-2: #ffeef5;
  --color-mesh-3: #eef6ff;

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Outfit", var(--font-sans);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(18, 18, 18, 0.06);
  --shadow-md: 0 12px 40px rgba(18, 18, 18, 0.08);
  --shadow-lg: 0 24px 80px rgba(18, 18, 18, 0.1);

  --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;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-h: 72px;
  --content-max: 1120px;
  --safe-bottom: env(safe-area-inset-bottom, 0);
}

@media (prefers-color-scheme: dark) {
  /* Keep marketing landing light per product spec */
  :root {
    color-scheme: light;
  }
}
