/* GuardianX — design tokens
   Original minimalist dark SaaS visual system. */
:root {
  /* Palette */
  --color-canvas: #070707;
  --color-surface: #0D0D0E;
  --color-elevated: #141416;
  --color-border: #28282B;
  --color-text: #F5F5F3;
  --color-muted: #99999F;
  --color-red: #D51E2B;
  --color-red-hover: #F02A38;
  --color-red-deep: #6F0F18;

  /* Typography */
  --font-display: "Inter Tight", "Geist Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --container-max: 1200px;
  --gutter: 24px;
  --radius-sm: 10px;
  --radius-lg: 14px;
  --border-w: 1px;

  /* Vertical rhythm */
  --space-section: 120px;
  --space-section-mobile: 72px;

  /* Motion */
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-reveal: 480ms;
  --dur-stagger: 50ms;
  --dur-hover: 180ms;
}

@media (max-width: 768px) {
  :root {
    --space-section: var(--space-section-mobile);
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-reveal: 0ms;
    --dur-stagger: 0ms;
    --dur-hover: 0ms;
  }
}
