/* ===== RESET & TOKENS ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --forest: #1a2e1a;
    --pine: #2d4a2d;
    --sage: #6b8f6b;
    --clay: #c4a882;
    --sand: #e8dcc8;
    --cream: #f5f0e8;
    --bark: #3d2b1f;
    --gold: #c9a84c;
    --white: #fefdfb;
    --slate: #4a5568;
    --red: #c0392b;
    --green: #27ae60;
    --amber: #d4a017;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--forest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(254, 253, 251, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 46, 26, 0.06);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--forest);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo span {
    color: var(--sage);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--slate);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--forest);
}

.nav-cta {
    background: var(--forest);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--pine);
}

.nav-tag {
    font-size: 0.75rem;
    color: var(--sage);
    background: rgba(107, 143, 107, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 4rem 4rem 4rem;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sage);
    background: rgba(107, 143, 107, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.hero h1 .highlight {
    color: var(--sage);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--forest);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--pine);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid rgba(26, 46, 26, 0.15);
}

.btn-secondary:hover {
    border-color: var(--forest);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--forest);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 500;
    margin-top: 0.15rem;
}

/* Hero Right Visual */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-left: 1px solid rgba(26, 46, 26, 0.04);
    padding: 3rem;
}

.hero-visual {
    width: 100%;
    max-width: 480px;
}

.coverage-preview {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
}

.preview-tile {
    aspect-ratio: 1;
    border-radius: 4px;
    transition: transform 0.15s;
    cursor: default;
}

.preview-tile:hover {
    transform: scale(1.3);
    z-index: 2;
}

.preview-tile.verified { background: var(--sage); }
.preview-tile.in_progress { background: var(--gold); }
.preview-tile.pending { background: var(--sand); }

/* ===== COVERAGE SECTION ===== */
.coverage-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--sage);
    background: rgba(107, 143, 107, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.coverage-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.coverage-card {
    background: var(--white);
    border: 1px solid rgba(26, 46, 26, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s;
}

.coverage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 46, 26, 0.06);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.coverage-card.verified .card-icon { color: var(--sage); }
.coverage-card.in-progress .card-icon { color: var(--gold); }
.coverage-card.pending .card-icon { color: var(--slate); }

.card-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.25rem;
}

.card-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.25rem;
}

.card-sub {
    font-size: 0.8rem;
    color: var(--slate);
}

/* CTA Banner */
.cta-banner {
    background: var(--cream);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.cta-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--forest);
}

.cta-banner p {
    color: var(--slate);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(26, 46, 26, 0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--slate);
}

/* ===== DEMO NOTICE ===== */
.demo-notice {
    display: inline-block;
    background: #FEF3C7;
    color: #92400E;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #F59E0B;
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-right {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .coverage-stats-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}
