:root {
    --navy: #071A2E;
    --blue: #0D2A4A;
    --green: #397635;
    --gold: #D8A64A;
    --cream: #F7F4ED;
    --text: #142033;
    --muted: #5D6B7A;
    --line: #DCE3EA;
    --white: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6
}

.site-header {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand img {
    width: 210px;
    height: auto;
    display: block
}

nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

nav a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem
}

nav a:hover {
    color: var(--green)
}

.hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 24px 60px;
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: 48px;
    align-items: center
}

.eyebrow {
    color: var(--green);
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .16em;
    font-weight: 900;
    margin: 0 0 14px
}

h1, h2, h3 {
    color: var(--blue);
    line-height: 1.08;
    margin-top: 0
}

h1 {
    font-size: clamp(3rem, 7vw, 5.9rem);
    letter-spacing: -.07em;
    margin-bottom: 24px
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -.04em;
    margin-bottom: 20px
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 10px
}

.lead {
    font-size: 1.32rem;
    color: #22344A;
    max-width: 720px
}

.hero-copy p:not(.eyebrow) {
    max-width: 700px
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 22px;
    text-decoration: none;
    font-weight: 900;
    border: 2px solid transparent
}

.button.primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 12px 30px rgba(216, 166, 74, .35)
}

.button.secondary {
    background: transparent;
    color: var(--blue);
    border-color: rgba(13, 42, 74, .22)
}

.button:hover {
    transform: translateY(-1px)
}

.hero-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(7, 26, 46, .25);
    border: 1px solid rgba(255, 255, 255, .1)
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    padding-bottom: 18px;
    margin-bottom: 20px
}

.card-header span {
    color: #AEBECC;
    font-weight: 700
}

.card-header strong {
    font-size: 1.35rem;
    color: var(--white)
}

.metrics {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 14px;
    margin: 0 0 24px
}

.metrics div {
    background: rgba(255, 255, 255, .06);
    padding: 16px;
    border-radius: 16px
}

.metrics dt {
    color: #AEBECC;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em
}

.metrics dd {
    margin: 6px 0 0;
    font-size: 1.65rem;
    font-weight: 900
}

.profit {
    color: #92D27E
}

.bars {
    display: grid;
    gap: 14px;
    margin-bottom: 18px
}

.bars div {
    display: grid;
    grid-template-columns:95px 1fr;
    gap: 12px;
    align-items: center
}

.bars span {
    color: #D6E0EA;
    font-size: .9rem;
    font-weight: 800
}

.bars b {
    display: block;
    height: 12px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    border-radius: 999px
}

.small {
    font-size: .86rem;
    color: var(--muted)
}

.hero-card .small {
    color: #AEBECC
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 24px
}

.feature-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 22px;
    margin-top: 34px
}

.feature-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(13, 42, 74, .06)
}

.feature-grid p {
    margin-bottom: 0;
    color: var(--muted)
}

.split {
    display: grid;
    grid-template-columns:.95fr 1.05fr;
    gap: 48px;
    align-items: start;
    background: var(--white);
    border-radius: 32px;
    border: 1px solid var(--line);
    padding: 48px
}

.audience-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 14px
}

.audience-list li {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    font-weight: 800;
    color: var(--blue)
}

.proof {
    text-align: center
}

.proof p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: var(--muted)
}

.loop {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px
}

.loop span {
    background: var(--blue);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900
}

.loop span:nth-child(even) {
    background: var(--green)
}

.loop span:last-child {
    background: var(--gold);
    color: var(--navy)
}

.cta {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    border-radius: 34px;
    margin-bottom: 70px
}

.cta h2 {
    color: var(--white)
}

.cta p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: #D6E0EA
}

footer {
    border-top: 1px solid var(--line);
    text-align: center;
    padding: 36px 24px 46px;
    background: var(--white)
}

footer img {
    width: 48px;
    height: 48px
}

footer p {
    margin: 8px 0
}

@media (max-width: 900px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column
    }

    .hero, .split {
        grid-template-columns:1fr
    }

    .feature-grid {
        grid-template-columns:1fr
    }

    .hero {
        padding-top: 36px
    }
}

@media (max-width: 560px) {
    .brand img {
        width: 170px
    }

    nav {
        gap: 14px
    }

    h1 {
        font-size: 3.1rem
    }

    .metrics {
        grid-template-columns:1fr
    }

    .audience-list {
        grid-template-columns:1fr
    }

    .split, .cta {
        border-radius: 22px;
        padding: 34px 22px
    }
}