@font-face {
  font-family: 'Inter';
  src: local('Inter');
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: local('Outfit');
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: local('JetBrains Mono');
  font-display: swap;
}

html { background: var(--bg-void); color: var(--text-primary); overflow-x: clip; }
body {
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: clip;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 { font-size: 32px; line-height: 1.2; font-weight: 700; }
h2 { font-size: 20px; line-height: 1.3; font-weight: 600; }
h3 { font-size: 16px; line-height: 1.4; font-weight: 600; }
p { margin: 0; color: var(--text-secondary); }
input, select, textarea {
  min-height: 44px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  font-size: 16px;
}
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.caption { color: var(--text-tertiary); font-size: 13px; }
.help-hint { font-style: italic; }
.eyebrow {
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.amount { font-family: var(--font-mono); text-align: right; white-space: nowrap; }
.icon { width: 18px; height: 18px; flex: 0 0 auto; }
