
:root {
    --ink: #09251e;
    --green: #0b6045;
    --green2: #18865f;
    --mint: #eaf5ef;
    --mint2: #d8eee4;
    --paper: #ffffff;
    --soft: #f7faf8;
    --line: #dce8e2;
    --muted: #60736b;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.wrap {
    width: min(var(--max), calc(100% - 48px));
    margin: auto;
}


/* ============================================================
   HEADER
   ============================================================ */

header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid #edf2ef;
}

.nav {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo img {
    width: 210px;
    display: block;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 28px;

    font-size: 14px;
    font-weight: 600;
}

.navlinks a {
    color: #243b33;
}

.navlinks .contact {
    color: white;
}

.button,
.contact {
    display: inline-block;

    padding: 11px 20px;

    border-radius: 9px;

    background: var(--green);
    color: white;

    font-weight: 700;

    transition: .2s ease;
}

.button:hover,
.contact:hover {
    background: #084d38;
    text-decoration: none;
    transform: translateY(-1px);
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    overflow: hidden;

    padding: 105px 0 100px;

    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(146,211,184,.55),
            transparent 31%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(234,211,180,.5),
            transparent 28%
        ),
        linear-gradient(
            125deg,
            #f9fcfa,
            #edf7f2 55%,
            #f9f5ee
        );
}

.hero::after {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -300px;
    bottom: -480px;

    border: 1px solid rgba(11,96,69,.18);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.08fr .92fr;

    gap: 65px;

    align-items: center;
}

.eyebrow {
    color: var(--green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .20em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 14px 0 25px;

    font-size: clamp(56px, 7vw, 92px);

    line-height: .94;

    letter-spacing: -.06em;
}

.hero h1 span {
    color: var(--green);
}

.lead {
    max-width: 680px;

    font-size: 20px;

    color: #40554d;
}

.hero-actions {
    margin-top: 32px;
}


/* ============================================================
   INTELLIGENCE CARD
   ============================================================ */

.intelligence {
    min-height: 410px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.intel-card {
    width: min(440px, 100%);

    padding: 34px;

    color: white;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #061d17,
            #0c3c2e
        );

    box-shadow:
        0 30px 80px rgba(7,55,40,.25);

    transform: rotate(2deg);
}

.intel-card .eyebrow {
    color: #72d8a3;
}

.intel-card h3 {
    margin: 7px 0 4px;

    font-size: 29px;
}

.intel-card p {
    color: #bcd3ca;
}

.chart {
    height: 155px;

    margin: 25px 0;

    display: flex;
    align-items: flex-end;

    gap: 13px;
}

.chart span {
    flex: 1;

    border-radius: 10px 10px 3px 3px;

    background:
        linear-gradient(
            #82e4b1,
            #20a668
        );
}

.chart span:nth-child(1) { height: 27%; }
.chart span:nth-child(2) { height: 42%; }
.chart span:nth-child(3) { height: 37%; }
.chart span:nth-child(4) { height: 63%; }
.chart span:nth-child(5) { height: 54%; }
.chart span:nth-child(6) { height: 88%; }


/* ============================================================
   SECTIONS
   ============================================================ */

.section {
    padding: 82px 0;
}

.section.soft {
    background: var(--soft);
}

.section h2 {
    margin: 6px 0 14px;

    font-size: clamp(34px, 5vw, 48px);

    line-height: 1.08;

    letter-spacing: -.04em;
}

.intro {
    max-width: 800px;

    color: var(--muted);

    font-size: 18px;
}

.cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 40px;
}

.card {
    padding: 30px;

    background: white;

    border: 1px solid var(--line);
    border-radius: 18px;
}

.card-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 14px;

    background: var(--mint);

    color: var(--green);

    font-weight: 900;
}

.card h3 {
    margin: 0 0 8px;
}

.card p {
    margin-bottom: 0;

    color: var(--muted);
}


/* ============================================================
   CONNECTED FLOW
   ============================================================ */

.flow {
    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    gap: 14px;

    align-items: center;

    margin-top: 42px;
}

.flow-box {
    padding: 24px 15px;

    text-align: center;

    border: 1px solid var(--line);
    border-radius: 15px;

    background: white;

    font-weight: 800;
}

.arrow {
    color: var(--green);

    font-size: 26px;
}


/* ============================================================
   BRAND BANNER
   ============================================================ */

.brand-banner {
    position: relative;

    overflow: hidden;

    padding: 58px;

    color: white;

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(83,190,139,.35),
            transparent 28%
        ),
        linear-gradient(
            115deg,
            #061d17,
            #0c6247
        );
}

.brand-banner h2 {
    max-width: 760px;

    margin-top: 7px;

    font-size: clamp(38px, 6vw, 62px);
}

.brand-banner p {
    max-width: 760px;

    color: #cee2da;

    font-size: 18px;
}


/* ============================================================
   LEGAL
   ============================================================ */

.legal {
    padding: 70px 0 100px;
}

.legal h1 {
    margin: 8px 0;

    font-size: clamp(42px, 6vw, 60px);

    letter-spacing: -.045em;
}

.legal h2 {
    margin-top: 42px;

    font-size: 27px;
}

.legal p,
.legal li {
    color: #40554d;
}

.meta {
    color: #788b83 !important;
}

.notice {
    margin: 28px 0;

    padding: 18px 22px;

    border-left: 4px solid var(--green);
    border-radius: 0 10px 10px 0;

    background: #eef7f2;
}


/* ============================================================
   FOOTER
   ============================================================ */

footer {
    padding: 34px 0 46px;

    border-top: 1px solid var(--line);

    color: var(--muted);

    font-size: 14px;
}

.footer {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    flex-wrap: wrap;
}

.footer-logo {
    width: 170px;

    margin-bottom: 8px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 850px) {

    .navlinks {
        display: none;
    }

    .hero {
        padding: 65px 0;
    }

    .hero-grid,
    .cards {
        grid-template-columns: 1fr;
    }

    .intelligence {
        min-height: 320px;
    }

    .flow {
        grid-template-columns: 1fr;
    }

    .arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .brand-banner {
        padding: 34px 26px;
    }
}
