html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', 'Nunito', sans-serif;
}

.gov-topbar {
    background: #1351B4;
    padding: 0.35rem 0;
}

.hero-grid {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-headline {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hero-headline-accent {
    position: relative;
    display: inline-block;
}

.hero-headline-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: #FFCD07;
    border-radius: 2px;
}

.dashboard-mockup {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-mockup-bar {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}

.stats-band {
    background: #1351B4;
}

.stat-number {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
    color: #FFCD07;
}

.feature-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #DFE3E8;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(19, 81, 180, 0.10);
    border-color: #1351B4;
}

.timeline-connector {
    position: absolute;
    top: 20px;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    height: 2px;
    background: linear-gradient(90deg, #FFCD07, #1351B4);
}

.cta-texture {
    background-color: #1351B4;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 8px,
        rgba(255,255,255,0.025) 8px,
        rgba(255,255,255,0.025) 16px
    );
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255,205,7,0.15);
    border: 1px solid rgba(255,205,7,0.3);
    color: #FFCD07;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up   { animation: fadeUp 0.65s ease-out both; }
.animate-fade-up-1 { animation: fadeUp 0.65s 0.15s ease-out both; }
.animate-fade-up-2 { animation: fadeUp 0.65s 0.30s ease-out both; }
.animate-fade-up-3 { animation: fadeUp 0.65s 0.45s ease-out both; }
