/* Headings - bolder, tighter */
h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Body text */
.text-lg {
  font-size: 1.25rem;
  line-height: 1.7;
}

.text-base {
  font-size: 1rem;
  line-height: 1.6;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Colors */
.text-muted {
  color: var(--color-text-muted);
}

.text-secondary {
  color: var(--color-text-secondary);
}

.text-primary {
  color: var(--color-primary-light);
}

.text-fire {
  color: var(--color-fire);
}

/* Eyebrow / label - more punk */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  font-family: var(--font-mono);
}

/* Gradient text - electric */
.gradient-text {
  background: linear-gradient(135deg, var(--color-fire) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glitch effect for special text */
.glitch {
  position: relative;
}

/* Strikethrough accent */
.strike {
  text-decoration: line-through;
  text-decoration-color: var(--color-fire);
  text-decoration-thickness: 3px;
}
