/* ═══════════════════════════════════════
   RESOLUTE — Design Tokens
   ═══════════════════════════════════════ */

:root {
  /* Brand Colors */
  --navy:        #0B1F3A;
  --navy-light:  #0E2847;
  --navy-deep:   #060F1D;
  --red:         #C41C1C;
  --red-bright:  #E02020;
  --white:       #FFFFFF;
  --gray:        #8899AA;
  --gray-light:  #C8D4E0;

  /* Surfaces */
  --surface-1:   rgba(255,255,255,0.03);
  --surface-2:   rgba(255,255,255,0.06);
  --border:      rgba(255,255,255,0.08);
  --border-red:  rgba(196,28,28,0.3);

  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Raleway', sans-serif;

  /* Spacing */
  --section-pad:  5rem 1.5rem;
  --section-pad-sm: 3.5rem 1.25rem;

  /* Layout */
  --max-width: 1100px;
  --nav-height: 60px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition: 0.22s ease;
}
