:root {
    --navy: #1B2A49;
    --navy-deep: #131F37;
    --green: #2ECC71;
    --green-2: #28B463;
    --orange: #F39C12;
    --text: #111827;
    --text-2: #4B5563;
    --text-3: #6B7280;
    --line: #E5E7EB;
    --line-2: #D1D5DB;
    --bg: #FFFFFF;
    --bg-soft: #F3F6FD;
    --bg-mute: #F8FAFC;
    --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
    --shadow-md: 0 8px 24px rgba(15,23,42,.08);
    --shadow-lg: 0 24px 56px rgba(15,23,42,.14), 0 4px 12px rgba(15,23,42,.06);
    --radius: 10px;
    --radius-lg: 14px;
    --max-w: 1200px;
    --max-text: 640px;
    --space-section: clamp(2.75rem, 5vw, 4.75rem);
}


/* HERO — dense, video-left */
.hero {
    padding: 3rem 0 var(--space-section);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--bg-mute) 0%, #fff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 3.5rem;
    }
}

.hero h1 {
    font-size: clamp(1.75rem, 3.25vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    color: var(--navy);
}

    .hero h1 .accent {
        color: var(--green);
    }

.hero-sub {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-2);
    max-width: 32rem;
    margin: 0 0 1.5rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
    margin-bottom: 1.25rem;
}

.hero-microproof {
    font-size: .8125rem;
    color: var(--text-3);
    max-width: 32rem;
    line-height: 1.55;
}

    .hero-microproof strong {
        color: var(--text-2);
        font-weight: 500;
    }

.hero-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    background: #0B1530;
    aspect-ratio: 16 / 10;
    cursor: pointer;
}

    .hero-video img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        filter: brightness(.78) saturate(1.05);
    }

.hero-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(11,21,48,0) 30%, rgba(11,21,48,.55) 100%);
}

.play-button {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 36px rgba(0,0,0,.35);
}

    .play-button svg {
        width: 26px;
        height: 26px;
        fill: var(--navy);
        margin-left: 4px;
    }

.video-meta {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
}

.pill {
    background: rgba(255,255,255,.18);
    color: #fff;
    backdrop-filter: blur(8px);
    padding: .25rem .625rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 500;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .625rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .875rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 150ms ease;
    white-space: nowrap;
}

.button-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 1px 2px rgba(46,204,113,.25), 0 6px 16px rgba(46,204,113,.18);
}

    .button-primary:hover {
        background: var(--green-2);
        transform: translateY(-1px);
    }

.button-ghost-dark {
    background: transparent;
    color: var(--text);
    border-color: var(--line-2);
}

    .button-ghost-dark:hover {
        background: var(--bg-mute);
    }

.button-lg {
    padding: .875rem 1.5rem;
    font-size: .9375rem;
}