/* Homepage-specific styles */
.hero-title {
    font-family: 'Moara Demo', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    font-weight: 700;
    font-size: 5rem;
    text-align: center;
    margin: 0 0 10px 0;
}

.hero-subtitle {
    font-family: 'Stack Sans Text', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
    margin: -10px 0 0;
    line-height: 1.2;
    text-align: center;
}

.benchmarks {
    margin-top: 24px;
}

.benchmarks-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0 -12px 4px;
    font-size: 1.6rem;
    color: var(--text);
    font-family: 'Moara Demo', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.benchmarks-subtitle {
    font-family: 'Stack Sans Text', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    color: var(--muted);
    font-size: 0.85rem;
    margin: 20px 0 0;
    line-height: 1.2;
    text-align: center;
}

.benchmarks-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
    justify-content: center;
}

@media (min-width: 1100px) {
    .benchmarks-grid {
        grid-template-columns: repeat(5, 220px);
        justify-content: center;
    }
}
