/* /styles/typography.css */
/* Dark Theme Typography */
body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--bg-primary);
}

h1, .h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
}

h2, .h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--text-primary);
}

h3, .h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h4, .h4 {
    font-size: var(--text-xl);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-mono {
    font-family: var(--font-mono);
}

.text-neon {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}