/* ─────────────────────────────────────────────────────────────
   Forsee Bridge — design tokens
   Palette sampled from the product app screenshots.
   Change a value here to re-skin the whole page.
   ───────────────────────────────────────────────────────────── */

:root {
  /* Surfaces (near-black navy) */
  --bg-900: #080d16;
  --bg-850: #0b0f19;
  --bg-800: #0e121b;
  --surface: #10161f;
  --surface-2: #141b26;
  --surface-hover: #18202c;

  /* Borders / lines */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(85, 152, 249, 0.35);

  /* Text */
  --text: #edf2f8;
  --text-soft: #c3ccd8;
  --text-muted: #8b95a5;
  --text-faint: #5b6472;

  /* Accent (azure CTA) */
  --accent: #5598f9;
  --accent-hover: #6ea6fb;
  --accent-press: #3f82e6;
  --accent-soft: rgba(85, 152, 249, 0.12);
  --accent-ring: rgba(85, 152, 249, 0.4);

  /* Brand violet (logo gradient) */
  --brand-violet-1: #6b40f4;
  --brand-violet-2: #6d31ef;
  --grad-brand: linear-gradient(135deg, #6b40f4, #6d31ef);
  --grad-accent: linear-gradient(135deg, #5598f9, #6b40f4);

  /* Status */
  --success: #34d399;
  --success-soft: rgba(52, 211, 153, 0.14);
  --danger: #f87171;
  --danger-soft: rgba(248, 113, 113, 0.12);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Spacing scale (4px base) */
  --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;

  /* Shadows / glows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --glow-accent: 0 0 0 1px var(--border-accent), 0 12px 40px rgba(85, 152, 249, 0.18);

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace;
  --tracking-eyebrow: 0.14em;

  /* Layout */
  --container-max: 1160px;
  --container-pad: clamp(1.1rem, 4vw, 2.5rem);
  --nav-h: 68px;

  /* Motion */
  --transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 320ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index layers */
  --z-hero-canvas: 0;
  --z-content: 1;
  --z-nav: 100;
  --z-toast: 200;
}
