/* =========================================
   TYPOGRAPHY UTILITIES
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.text-display {
    font-size: var(--text-display);
    font-weight: var(--weight-bold);
    letter-spacing: -0.05em;
    line-height: 1;
}

.text-h1 {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    letter-spacing: -0.04em;
}

.text-h2 {
    font-size: var(--text-3xl);
    font-weight: var(--weight-semibold);
    letter-spacing: -0.03em;
}

.text-h3 {
    font-size: var(--text-2xl);
    font-weight: var(--weight-medium);
}

.text-body-lg {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.text-body {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.text-small {
    font-size: var(--text-sm);
}

.font-mono {
    font-family: var(--font-mono);
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: var(--text-sm);
}

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

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

.grad-text {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
