/* West-Com brand tokens — mirrors westComTheme.ts for use outside FluentProvider */
:root {
  /* Colors */
  --wc-navy-deep:     #062840;
  --wc-navy:          #0B3D60;
  --wc-blue-signal:   #2E7BB8;
  --wc-blue-sky:      #4FB3D9;
  --wc-paper:         #FAFBFC;
  --wc-ink:           #0F1B26;
  --wc-teal:          #1B9E8F;
  --wc-amber:         #E8A22B;
  --wc-coral:         #D9534F;
  --wc-slate-700:     #334155;
  --wc-slate-300:     #CBD5E1;
  --wc-slate-100:     #F1F5F9;

  /* Spacing scale (8pt) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-ui:      'Manrope', 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Cascadia Code', 'Courier New', monospace;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--wc-paper);
  color: var(--wc-ink);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
}

ul {
  margin: 0;
  padding: 0;
}

b {
  font-weight: 600;
}

/* Display/headline class for Fraunces moments (section titles, empty-state heads) */
.wc-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--wc-navy);
}

/* Eyebrow / metadata labels — JetBrains Mono */
.wc-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wc-slate-700);
}
