/* Frontier Six — Design tokens (mirrors /brand/palette.css) */
:root {
  --ink: #0B0F19;
  --ink-2: #1A1F2E;
  --ink-3: #2A2F3E;
  --paper: #F5F2EA;
  --paper-2: #EAE5D6;
  --paper-3: #DDD8C7;
  --electric: #3D5AFE;
  --electric-2: #6678FF;
  --electric-3: #99A8FF;
  --warm: #FF6B35;
  --warm-2: #FF8E5C;
  --mint: #00D4A0;
  --mint-2: #4DE5BC;
  --danger: #FF3B5C;
  --gold: #FFB800;

  --gray-100: #E8E8EC;
  --gray-200: #D0D0D8;
  --gray-300: #B0B0BC;
  --gray-400: #888894;
  --gray-500: #606070;
  --gray-600: #404048;
  --gray-700: #28282E;

  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --max-width: 1200px;
  --max-width-narrow: 720px;
  --gutter: clamp(1rem, 4vw, 2rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration: 400ms;
  --duration-slow: 800ms;
}
