/* 
  ViperHarmonics: Typography
*/

body {
    font-family: var(--font-ui);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.25rem, 5vw, 2rem);
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 { font-size: clamp(1.1rem, 4vw, 1.5rem); }
h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }

p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

kbd {
    font-family: var(--font-mono);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
