/* Foxtrot Mike — Design tokens. */

/* Inter and Oswald load from Google Fonts in wp_head. */

/* ========== Design tokens ========== */
:root {
  --fm-bg: #0a0a0a;
  --fm-bg-elevated: #111111;
  --fm-surface: #1a1a1a;
  --fm-surface-hover: #222222;
  --fm-border: #2a2a2a;
  --fm-text: #ffffff;
  --fm-muted: #a0a0a0;
  --fm-accent: #e31c23;
  --fm-accent-hover: #c8102e;
  --fm-success: #22c55e;
  --fm-warning: #f59e0b;
  --fm-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fm-font-display: "Oswald", "Inter", system-ui, sans-serif;
  --fm-max: 1280px;
  --fm-radius: 10px;
  --fm-radius-sm: 6px;
}

