/* Typography System */

:root {
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
}

/* Headings */
h1, .heading-1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-wrap: balance;
}

h2, .heading-2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    text-wrap: balance;
}

h3, .heading-3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

h4, .heading-4 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

/* Paragraphs */
p, .body-text {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-light-gray);
    margin-bottom: var(--spacing-sm);
}

.small-text {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--color-text-secondary);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

/* Special Typography */
.hero-subheadline {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-light-gray);
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-description {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--color-text-secondary);
    margin-top: var(--spacing-sm);
}
