:root {
    --bg: #f5f7f2;
    --surface: #ffffff;
    --ink: #163038;
    --muted: #5c6d71;
    --line: rgba(22, 48, 56, .10);
    --green: #b8d94b;
    --green-2: #8cbc3e;
    --teal: #1f7b88;
    --teal-dark: #0f5562;
    --shadow: 0 18px 50px rgba(12, 34, 41, .08);
    --radius: 24px;
    --max: 1180px;
    --spacing: 1rem;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: linear-gradient(180deg, #f8faf6 0%, #eff4ec 100%);
    color: var(--ink);
    line-height: 1.55
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto
}

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(245, 247, 242, .82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .02em
}

.brand-badge {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
    box-shadow: var(--shadow)
}

.nav-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px
}

.hero {
    padding: 34px 0 42px
}

.hero-shell {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: var(--shadow);
    border-radius: 32px;
    padding: 42px
}

.hero-shell:before {
    content: "";
    position: absolute;
    inset: auto -8% -15% -8%;
    height: 60%;
    background: radial-gradient(circle at 15% 50%, rgba(184, 217, 75, .25), transparent 28%), radial-gradient(circle at 65% 60%, rgba(31, 123, 136, .18), transparent 24%), linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    pointer-events: none
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: rgba(184, 217, 75, .14);
    color: var(--teal-dark);
    border: 1px solid rgba(184, 217, 75, .35);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

h1,
h2,
h3 {
    font-family: Syne, Inter, sans-serif;
    line-height: 1.03;
    margin: 0 0 16px
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    max-width: 900px
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem)
}

h3 {
    font-size: 1.18rem
}

.hero p.lead {
    max-width: 760px;
    font-size: 1.1rem;
    color: var(--ink);
    margin: 0 0 24px;
}


.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 28px
}

.chip {
    padding: 11px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .03);
    font-weight: 600;
    color: var(--teal-dark)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: start;
}

.panel {
    background: rgba(255, 255, 255, .74);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px
}

.stat {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, #f5faf9);
    border: 1px solid var(--line)
}

.stat strong {
    display: block;
    font-family: Syne;
    font-size: 1.8rem;
    color: var(--teal-dark)
}

.stat span {
    color: var(--muted);
    font-size: 14px
}

section {
    padding: 26px 0
}

.section-head {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 26px
}

.kicker {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--teal);
    font-weight: 800;
    margin-bottom: 10px
}

.section-head p {
    color: var(--muted);
    max-width: 760px
}

.grid-4,
.grid-3,
.grid-2 {
    display: grid;
    gap: 20px
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr)
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr)
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow)
}

.card p,
.card li {
    color: var(--muted)
}

.number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green), #dff0ad);
    font-weight: 800;
    color: var(--teal-dark);
    margin-bottom: 14px
}

ul.clean {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px
}

ul.clean li {
    position: relative;
    padding-left: 18px
}

ul.clean li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--teal))
}

.image-card {
    padding: 0;
    overflow: hidden
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.markets .card {
    min-height: 240px
}

.value-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.arrow {
    font-size: 26px;
    color: var(--green-2);
    font-weight: 800
}

.dark-band {
    background: linear-gradient(135deg, #0f4754, #15363c);
    color: #fff;
    border-radius: 32px;
    padding: 34px;
    overflow: hidden;
    position: relative
}

.dark-band:after {
    content: "";
    position: absolute;
    inset: auto -10% -35% auto;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(184, 217, 75, .28), transparent 62%)
}

.dark-band p,
.dark-band li {
    color: rgba(255, 255, 255, .78)
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.road-step {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 22px
}

.year {
    font-family: Syne;
    font-size: 1.9rem;
    color: var(--green);
    margin-bottom: 8px
}

.cta {
    padding-bottom: 56px
}

.cta-shell {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    background: linear-gradient(135deg, #ffffff, #f0f7ef);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow)
}

.contact-list {
    display: grid;
    gap: 14px
}

.contact-item {
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(15, 85, 98, .18)
}

footer {
    padding: 24px 0 50px;
    color: var(--muted);
    font-size: 14px
}

@media (max-width: 980px) {

    .hero-grid,
    .section-head,
    .cta-shell,
    .value-flow,
    .roadmap {
        grid-template-columns: 1fr
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr
    }

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

@media (max-width: 640px) {
    .nav-links {
        display: none
    }

    .hero-shell {
        padding: 26px
    }

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

    .chip {
        width: 100%;
        justify-content: center;
        text-align: center
    }
}

.hero-grid h1 {
    max-width: 90%;
}



.motto {
    margin-top: calc(var(--spacing)*2);
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    max-width: 100%;
}