/* YES Funnel typography system. Loaded after each page's own stylesheet so
   these font/color rules win. Inter for UI, JetBrains Mono for code/badges. */

:root {
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Monaco', 'Menlo', 'Courier New', monospace;

  --text-primary: rgb(25, 25, 25);
  --text-secondary: rgb(75, 85, 99);
  --text-muted: rgb(161, 164, 165);
  --text-inverse: rgb(240, 240, 240);
}

body,
input,
textarea,
select,
button {
  font-family: var(--font-ui);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code,
pre,
kbd,
samp {
  font-family: var(--font-mono);
  font-feature-settings: 'calt' 0, 'liga' 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-ui);
  letter-spacing: -0.02em;
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.plan-badge,
.status-badge,
.tag {
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
