@font-face {
  font-family: 'CommitMonoIndustrial';
  src: url('/fonts/CommitMono VariableFont.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  font-feature-settings: "ss01", "ss02", "ss03", "ss04", "ss05", "cv06", "cv09", "cv10", "cv11";
}

body {
  font-family: 'CommitMonoIndustrial', monospace;
}

/* Gradient classes for specific use cases */
.blue-gradient {
  background: -webkit-linear-gradient(top left, var(--blue-900), var(--blue-400));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.red-gradient {
  background: -webkit-linear-gradient(top left, var(--red-700), var(--red-500));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Typography utilities */
.text-subtle { color: var(--color-text-subtle); }

/* Component-specific typography */
.panel-header {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: var(--font-family-mono);
}

.panel-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  margin-bottom: 0.5rem;
}

/* Semantic color utilities */
.trend-positive {
  color: var(--color-success);
}

.trend-negative {
  color: var(--color-danger);
}

.trend-neutral {
  color: var(--color-text-subtle);
}

/* Screen reader utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
} 