/* variables.css — Trevent design tokens ("Electric Dusk").
   Single source of truth for color, type, spacing, motion. */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:wght@400..600&display=swap');

:root {
  /* Palette: indigo night, rose energy, violet travel */
  --ink: #1a1730;
  --ink-soft: #2a2547;
  --bg: #f4f5f8;
  --surface: #ffffff;
  --surface-alt: #eef0f6;
  --primary: #f5365c;
  --primary-strong: #d11e44;
  --secondary: #5b53ff;
  --gold: #ffb020;
  --text: #1d1b2e;
  --muted: #6b6880;
  --line: #e6e6ee;
  --success: #1aa179;
  --danger: #d11e44;

  /* Typography */
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  /* Type scale (1.25 ratio) */
  --step--1: 0.8rem;
  --step-0: 1rem;
  --step-1: 1.25rem;
  --step-2: 1.563rem;
  --step-3: 1.953rem;
  --step-4: 2.441rem;
  --step-5: 3.052rem;

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

  /* Radius / shadow / layout */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(26,23,48,.06), 0 1px 3px rgba(26,23,48,.08);
  --shadow: 0 6px 24px rgba(26,23,48,.10);
  --shadow-lg: 0 18px 50px rgba(26,23,48,.18);
  --container: 1080px;
  --header-h: 64px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --dur: 180ms;
}
