:root {
    --green: #0b5b3c;
    --green2: #0f7450;
    --lime: #a5d532;
    --ink: #14241d;
    --muted: #69756f;
    --paper: #f7f7f3;
    --line: #dfe6df;
    --white: #fff;
    --orange: #f1862e;
    --radius: 28px;
    --shadow: 0 24px 80px rgba(10, 45, 30, .14)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden
}

body.menu-open {
    overflow: hidden
}

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

button,
input {
    font: inherit
}

img {
    display: block;
    width: 100%
}

button {
    border: 0;
    background: none;
    color: inherit
}

.container {
    width: min(1240px, calc(100% - 64px));
    margin-inline: auto
}

.section {
    padding: 130px 0
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    background: #fff;
    color: #000;
    padding: 12px 18px;
    z-index: 1000;
    border-radius: 8px
}

.skip-link:focus {
    top: 16px
}

.eyebrow {
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    font-weight: 700;
    color: var(--green2)
}

.eyebrow--light {
    color: #d9ff82
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h2 {
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin: 0
}

h2 span {
    color: var(--green2)
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    transition: .3s ease
}

.button span {
    transition: transform .3s ease
}

.button:hover span {
    transform: translateX(5px)
}

.button--lime {
    background: var(--lime);
    color: #14311d
}

.button--lime:hover {
    background: #b9e654;
    transform: translateY(-2px)
}

.button--glass {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(10px)
}

.button--glass:hover {
    background: #fff;
    color: var(--ink)
}

.button--dark {
    background: var(--green);
    color: #fff
}

.button--dark:hover {
    background: #083f2b;
    transform: translateY(-2px)
}

.button--light {
    background: #fff;
    color: var(--green)
}

.button--light:hover {
    background: var(--lime)
}

.site-header {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    height: 88px;
    padding: 0 34px;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    color: #fff;
    transition: .4s ease
}

.site-header.is-scrolled,
.site-header.mega-open {
    height: 76px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(20, 36, 29, .08)
}

.brand {
    width: 78px;
    height: 58px;
    display: grid;
    place-items: center
}

.brand-logo {
    grid-area: 1/1;
    max-height: 58px;
    width: auto;
    object-fit: contain
}

.brand-logo--color {
    opacity: 0
}

.site-header.is-scrolled .brand-logo--color,
.site-header.mega-open .brand-logo--color {
    opacity: 1
}

.site-header.is-scrolled .brand-logo--white,
.site-header.mega-open .brand-logo--white {
    opacity: 0
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px
}

.nav-item {
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 30px 0;
    transition: opacity .2s
}

.nav-item:hover {
    opacity: .65
}

.nav-item span {
    font-size: 10px;
    margin-left: 3px
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.icon-button,
.menu-button {
    width: 42px;
    height: 42px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: .9
}

.icon-button svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7
}

.global-button {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    padding: 12px 14px;
    border: 1px solid currentColor;
    border-radius: 30px;
    cursor: pointer
}

.menu-button {
    display: none
}

.menu-button span {
    display: block;
    width: 17px;
    height: 1px;
    background: currentColor
}

.menu-button span+span {
    margin-top: 5px;
    width: 12px
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #fff;
    color: var(--ink);
    padding: 48px max(5vw, 40px) 54px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: .3s ease;
    box-shadow: 0 30px 80px rgba(10, 45, 30, .14)
}

.mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none
}

.mega-visual {
    padding: 44px;
    border-radius: 22px;
    background: linear-gradient(130deg, #eff6e5, #dfeccd);
    min-height: 250px
}

.mega-visual h3 {
    font-size: 40px;
    margin: 0 0 14px;
    letter-spacing: -.04em
}

.mega-visual p:not(.eyebrow) {
    max-width: 520px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8
}

.mega-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    gap: 0 40px
}

.mega-links a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    display: flex;
    justify-content: space-between
}

.mega-links a:hover {
    color: var(--green2)
}

.mega-close {
    position: absolute;
    right: 34px;
    top: 22px;
    font-size: 30px;
    cursor: pointer
}

.text-link,
.underlined-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px
}

.text-link span,
.underlined-link span {
    transition: transform .25s
}

.text-link:hover span,
.underlined-link:hover span {
    transform: translate(4px, -4px)
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #f6f7f2;
    z-index: 300;
    padding: 24px max(24px, 5vw) 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: .45s cubic-bezier(.7, 0, .2, 1);
    visibility: hidden
}

.mobile-menu.is-open {
    transform: none;
    visibility: visible
}

.mobile-menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mobile-menu__top img {
    width: 76px
}

.mobile-menu__top button {
    font-size: 34px
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    margin: auto 0
}

.mobile-menu nav a {
    font-size: clamp(25px, 7vw, 52px);
    font-weight: 600;
    letter-spacing: -.04em;
    padding: 11px 0;
    border-bottom: 1px solid #dbe2db;
    display: flex;
    justify-content: space-between
}

.mobile-menu nav span {
    font-size: 11px;
    letter-spacing: 0;
    color: var(--muted);
    padding-top: 10px
}

.mobile-menu__footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    font-size: 12px
}

.mobile-menu__footer p {
    margin: 0
}

.mobile-menu__footer a {
    margin-left: 18px;
    text-decoration: underline
}

.search-panel {
    position: fixed;
    inset: 0;
    z-index: 350;
    background: rgba(7, 53, 36, .97);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.search-panel.is-open {
    opacity: 1;
    visibility: visible
}

.search-panel>button {
    position: absolute;
    right: 34px;
    top: 24px;
    color: #fff;
    font-size: 38px
}

.search-panel__inner {
    width: min(800px, calc(100% - 48px))
}

.search-panel label {
    display: block;
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 600;
    letter-spacing: -.04em;
    margin-bottom: 30px
}

.search-field {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, .5)
}

.search-field input {
    flex: 1;
    background: none;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 21px;
    padding: 18px 0
}

.search-field input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.search-field button {
    color: #fff;
    font-size: 30px
}

.search-suggestions {
    display: flex;
    gap: 22px;
    margin-top: 25px;
    font-size: 12px
}

.search-suggestions span {
    opacity: .5
}

.search-suggestions a {
    text-decoration: underline
}

.hero {
    position: relative;
    height: max(760px, 100vh);
    min-height: 760px;
    background: #0c2119;
    color: #fff
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible
}

.hero-slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 7s ease
}

.hero-slide.is-active>img {
    transform: scale(1)
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 25, 17, .76) 0%, rgba(3, 25, 17, .35) 46%, rgba(3, 25, 17, .12) 70%), linear-gradient(0deg, rgba(3, 25, 17, .5), transparent 45%)
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 49%;
    transform: translate(-50%, -50%)
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 24px
}

.hero h1 {
    font-size: clamp(45px, 5.7vw, 86px);
    max-width: 1000px;
    line-height: .98;
    letter-spacing: -.06em;
    margin: 0 0 28px
}

.hero h1 em {
    font-style: normal;
    color: var(--lime)
}

.hero-copy {
    width: min(630px, 80%);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .78)
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 115px;
    transform: translateX(-50%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px
}

.hero-progress {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px
}

.hero-progress .track {
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, .35);
    position: relative
}

.hero-progress .track i {
    position: absolute;
    inset: 0 auto 0 0;
    width: 33.33%;
    background: #fff;
    transition: .5s
}

.hero-arrows {
    display: flex;
    gap: 8px
}

.hero-arrows button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    cursor: pointer;
    transition: .25s
}

.hero-arrows button:hover {
    background: #fff;
    color: var(--ink)
}

.explore-card {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: -82px;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 80px));
    min-height: 164px;
    background: #fff;
    color: var(--ink);
    border-radius: 22px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 72px 235px 1fr;
    align-items: center;
    padding: 28px 34px;
    gap: 22px
}

.explore-card__avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #eef5e6;
    display: grid;
    place-items: center
}

.explore-card__avatar img {
    width: 38px
}

.explore-card__intro small {
    display: block;
    color: var(--green2);
    font-size: 11px;
    margin-bottom: 8px
}

.explore-card__intro strong {
    font-size: 17px;
    line-height: 1.35
}

.explore-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--line)
}

.explore-options a {
    min-height: 78px;
    padding: 12px 17px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    transition: .25s
}

.explore-options a span {
    font-size: 10px;
    color: #8a9690;
    margin-bottom: auto
}

.explore-options a i {
    position: absolute;
    right: 13px;
    bottom: 10px;
    font-style: normal;
    color: var(--green2)
}

.explore-options a:hover {
    background: #eff7e6;
    color: var(--green2)
}

.about {
    padding-top: 220px
}

.about-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 100px;
    align-items: center
}

.about-copy h2 {
    margin-bottom: 30px
}

.about-copy .lead {
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
    margin: 0 0 22px
}

.about-copy p:not(.eyebrow):not(.lead) {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px
}

.about-media {
    position: relative;
    height: 620px
}

.about-media figure {
    margin: 0;
    position: absolute;
    overflow: hidden
}

.about-media img {
    height: 100%;
    object-fit: cover;
    transition: transform .8s
}

.about-media figure:hover img {
    transform: scale(1.04)
}

.media-large {
    width: 64%;
    height: 500px;
    left: 15%;
    top: 50px;
    border-radius: 44% 44% 20px 20px
}

.media-small {
    width: 230px;
    height: 260px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(10, 45, 30, .16);
    border: 8px solid #fff
}

.media-small--top {
    right: 0;
    top: 0
}

.media-small--bottom {
    left: 0;
    bottom: 0
}

.orbit {
    position: absolute;
    border: 1px solid rgba(13, 93, 63, .17);
    border-radius: 50%;
    pointer-events: none
}

.orbit--one {
    width: 530px;
    height: 530px;
    right: 20px;
    top: 40px
}

.orbit--two {
    width: 640px;
    height: 640px;
    right: -35px;
    top: -15px
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 100px
}

.stat-row article {
    padding: 34px 18px;
    display: flex;
    gap: 18px;
    align-items: center;
    border-right: 1px solid var(--line)
}

.stat-row article:last-child {
    border: 0
}

.stat-row strong {
    font-size: 42px;
    color: var(--green2);
    letter-spacing: -.05em
}

.stat-row span {
    font-size: 11px;
    line-height: 1.6;
    color: var(--muted)
}

.ecosystem {
    background: #f5f7f2;
    position: relative
}

.ecosystem:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/pattern.webp') center/620px;
    opacity: .025
}

.ecosystem>.container {
    position: relative
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    align-items: end;
    margin-bottom: 70px
}

.section-heading>p {
    width: min(450px, 42%);
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
    margin: 0
}

.business-stage {
    display: grid;
    grid-template-columns: 210px 1.25fr .75fr;
    min-height: 600px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(10, 45, 30, .08)
}

.business-tabs {
    padding: 34px 0;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column
}

.business-tabs button {
    padding: 20px 26px;
    text-align: left;
    color: #7b8781;
    font-size: 13px;
    cursor: pointer;
    border-left: 3px solid transparent
}

.business-tabs button.is-active {
    color: var(--green);
    font-weight: 700;
    border-color: var(--lime);
    background: #f0f7e9
}

.business-visual {
    position: relative;
    overflow: hidden
}

.business-visual img {
    height: 100%;
    object-fit: cover;
    transition: opacity .3s, transform .6s
}

.business-visual:hover img {
    transform: scale(1.025)
}

.business-number {
    position: absolute;
    left: 30px;
    bottom: 25px;
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    opacity: .75
}

.business-content {
    padding: 54px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.business-content h3 {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -.04em;
    margin: 0 0 22px
}

.business-content>p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted)
}

.business-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 34px
}

.business-facts span {
    font-size: 10px;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 8px 10px
}

.business-content .button {
    align-self: flex-start
}

.impact {
    position: relative;
    min-height: 880px;
    color: #fff;
    overflow: hidden
}

.impact-bg,
.impact-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.impact-bg {
    object-fit: cover
}

.impact-overlay {
    background: linear-gradient(90deg, rgba(3, 26, 17, .84), rgba(3, 26, 17, .28) 68%), linear-gradient(0deg, rgba(3, 26, 17, .75), transparent 55%)
}

.impact-inner {
    position: relative;
    z-index: 2;
    padding-top: 115px
}

.impact-copy {
    max-width: 650px
}

.impact-copy h2 {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 28px;
    color: #fff
}

.impact-copy>p:not(.eyebrow) {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 35px
}

.impact-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 110px;
    margin-bottom: 70px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px)
}

.impact-pillars article {
    min-height: 285px;
    padding: 25px 26px;
    background: rgba(255, 255, 255, .1);
    border-right: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    flex-direction: column;
    transition: .35s
}

.impact-pillars article:last-child {
    border: 0
}

.impact-pillars article:hover {
    background: rgba(255, 255, 255, .21);
    transform: translateY(-8px)
}

.impact-pillars article>span {
    font-size: 10px;
    opacity: .65
}

.impact-pillars h3 {
    font-size: 13px;
    font-weight: 500;
    margin: 20px 0 auto
}

.impact-pillars strong {
    font-size: 27px;
    margin-bottom: 8px
}

.impact-pillars p {
    font-size: 10px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .67);
    margin: 0
}

.investor {
    background: #f4f8ef
}

.investor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.report-card {
    background: #fff;
    border-radius: 16px;
    min-height: 230px;
    padding: 30px;
    display: grid;
    grid-template-columns: 58px 1fr 32px;
    align-items: center;
    gap: 20px;
    border: 1px solid #e8eee5;
    transition: .3s
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(10, 45, 30, .08);
    border-color: #c8dfbd
}

.report-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eaf4df;
    color: var(--green);
    font-weight: 700;
    font-size: 12px
}

.report-card small {
    color: var(--green2);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.report-card h3 {
    font-size: 22px;
    margin: 7px 0 10px
}

.report-card p {
    font-size: 11px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0
}

.report-card>i {
    font-style: normal;
    font-size: 22px
}

.stock-card {
    grid-column: 1/-1;
    min-height: 480px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    color: #fff
}

.stock-card>img,
.stock-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.stock-card>img {
    object-fit: cover
}

.stock-shade {
    background: linear-gradient(90deg, rgba(3, 32, 21, .64), transparent 70%), linear-gradient(0deg, rgba(3, 32, 21, .62), transparent 55%)
}

.stock-top,
.stock-value,
.stock-line {
    position: absolute;
    z-index: 2
}

.stock-top {
    left: 34px;
    top: 30px
}

.stock-top span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 600
}

.stock-top img {
    width: 26px
}

.stock-top small {
    display: block;
    margin: 8px 0 0 35px;
    opacity: .75
}

.stock-value {
    left: 35px;
    bottom: 40px
}

.stock-value small {
    display: block;
    font-size: 9px;
    opacity: .65
}

.stock-value strong {
    font-size: 36px;
    display: block;
    margin: 3px 0
}

.stock-value span {
    font-size: 11px;
    color: #b7ea55
}

.stock-line {
    right: 35px;
    bottom: 40px;
    width: 55%;
    height: 130px
}

.stock-line polyline {
    fill: none;
    stroke: rgba(255, 255, 255, .8);
    stroke-width: 2;
    vector-effect: non-scaling-stroke
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 55px
}

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

.story-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: .35s
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(10, 45, 30, .1)
}

.story-image {
    height: 310px;
    overflow: hidden;
    position: relative
}

.story-image img {
    height: 100%;
    object-fit: cover;
    transition: .65s
}

.story-card:hover .story-image img {
    transform: scale(1.045)
}

.story-image span {
    position: absolute;
    left: 18px;
    top: 18px;
    background: #fff;
    border-radius: 100px;
    padding: 8px 12px;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 600
}

.story-body {
    padding: 24px
}

.story-body time {
    font-size: 9px;
    color: #8a9690
}

.story-body h3 {
    font-size: 19px;
    line-height: 1.35;
    margin: 13px 0
}

.story-body p {
    font-size: 11px;
    line-height: 1.7;
    color: var(--muted)
}

.story-body i {
    font-style: normal;
    font-size: 11px;
    color: var(--green2);
    font-weight: 600
}

.journey {
    background: #f6f6f1
}

.journey-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px
}

.journey-intro h2 {
    font-size: clamp(38px, 4.5vw, 62px)
}

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

.journey-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    position: relative;
    transition: .35s;
    min-height: 470px;
    display: flex;
    flex-direction: column
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(10, 45, 30, .1)
}

.journey-card>span {
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 10px;
    color: #fff;
    z-index: 2
}

.journey-image {
    height: 210px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px
}

.journey-image img {
    height: 100%;
    object-fit: cover;
    transition: .6s
}

.journey-card:hover img {
    transform: scale(1.05)
}

.journey-card h3 {
    font-size: 18px;
    line-height: 1.35
}

.journey-card p {
    font-size: 11px;
    line-height: 1.7;
    color: var(--muted)
}

.journey-card i {
    font-style: normal;
    font-size: 11px;
    color: var(--green2);
    font-weight: 600;
    margin-top: auto
}

.footer {
    background: #07543a;
    color: #fff;
    padding: 80px 0 24px
}

.footer-main {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 100px
}

.footer-brand img {
    width: 220px;
    max-height: 80px;
    object-fit: contain;
    object-position: left
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
    margin: 32px 0
}

.socials {
    display: flex;
    gap: 9px
}

.socials a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px
}

.socials a:hover {
    background: #fff;
    color: var(--green)
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.footer-links h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 20px
}

.footer-links a {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, .65);
    margin: 12px 0
}

.footer-links a:hover {
    color: #fff
}

.footer-bottom {
    margin-top: 65px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .17);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 9px;
    color: rgba(255, 255, 255, .6)
}

.footer-bottom div {
    display: flex;
    gap: 22px
}

.footer-bottom button {
    color: #fff;
    font-size: 9px;
    cursor: pointer
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

@media(max-width:1080px) {
    .desktop-nav {
        gap: 16px
    }

    .nav-item {
        font-size: 10px
    }

    .site-header {
        grid-template-columns: 120px 1fr auto
    }

    .global-button {
        display: none
    }

    .about-grid {
        gap: 55px
    }

    .business-stage {
        grid-template-columns: 170px 1fr
    }

    .business-content {
        grid-column: 1/-1;
        border-top: 1px solid var(--line);
        padding: 38px
    }

    .business-visual {
        min-height: 440px
    }

    .impact-pillars {
        grid-template-columns: 1fr 1fr
    }

    .impact-pillars article:nth-child(2) {
        border-right: 0
    }

    .impact-pillars article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .2)
    }

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

    .explore-card {
        grid-template-columns: 60px 190px 1fr;
        width: calc(100% - 48px);
        padding: 24px
    }

    .explore-options a {
        padding-inline: 11px;
        font-size: 10px
    }
}

@media(max-width:820px) {
    .container {
        width: min(100% - 40px, 720px)
    }

    .section {
        padding: 90px 0
    }

    .site-header {
        height: 72px;
        padding: 0 20px;
        grid-template-columns: 1fr auto
    }

    .brand {
        width: 64px;
        height: 52px
    }

    .brand-logo {
        max-height: 48px
    }

    .desktop-nav {
        display: none
    }

    .menu-button {
        display: grid
    }

    .site-header.is-scrolled,
    .site-header.mega-open {
        height: 68px
    }

    .hero {
        height: 880px;
        min-height: 880px
    }

    .hero-content {
        top: 42%
    }

    .hero h1 {
        font-size: clamp(43px, 9vw, 68px)
    }

    .hero-copy {
        width: 90%
    }

    .hero-controls {
        bottom: 215px
    }

    .explore-card {
        bottom: -110px;
        width: calc(100% - 32px);
        min-height: 220px;
        grid-template-columns: 55px 1fr;
        padding: 22px;
        gap: 16px
    }

    .explore-options {
        grid-column: 1/-1;
        border-left: 0;
        border-top: 1px solid var(--line);
        grid-template-columns: 1fr 1fr
    }

    .explore-options a {
        min-height: 62px;
        border-bottom: 1px solid var(--line)
    }

    .about {
        padding-top: 190px
    }

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

    .about-media {
        height: 570px
    }

    .stat-row {
        grid-template-columns: 1fr 1fr
    }

    .stat-row article:nth-child(2) {
        border-right: 0
    }

    .stat-row article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .section-heading {
        display: block
    }

    .section-heading>p {
        width: 100%;
        margin-top: 28px
    }

    .business-stage {
        grid-template-columns: 1fr
    }

    .business-tabs {
        flex-direction: row;
        overflow: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 0
    }

    .business-tabs button {
        white-space: nowrap;
        border-left: 0;
        border-bottom: 3px solid transparent
    }

    .business-tabs button.is-active {
        border-bottom-color: var(--lime)
    }

    .business-visual {
        min-height: 480px
    }

    .impact {
        min-height: 1100px
    }

    .impact-inner {
        padding-top: 90px
    }

    .impact-pillars {
        margin-top: 80px
    }

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

    .stock-card {
        min-height: 410px
    }

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

    .story-card:last-child {
        grid-column: 1/-1
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .footer-links {
        grid-template-columns: 1fr 1fr
    }

    .footer-bottom {
        flex-wrap: wrap;
        gap: 15px
    }

    .footer-bottom button {
        margin-left: auto
    }
}

@media(max-width:560px) {
    .container {
        width: calc(100% - 28px)
    }

    .section {
        padding: 75px 0
    }

    .hero {
        height: 830px;
        min-height: 830px
    }

    .hero-content {
        top: 39%
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.02
    }

    .hero-copy {
        font-size: 12px;
        line-height: 1.65
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-controls {
        bottom: 230px
    }

    .explore-card {
        bottom: -135px
    }

    .explore-card__intro strong {
        font-size: 14px
    }

    .explore-options a {
        font-size: 9px
    }

    .about {
        padding-top: 230px
    }

    .about-copy .lead {
        font-size: 17px
    }

    .about-media {
        height: 440px
    }

    .media-large {
        width: 74%;
        height: 360px;
        left: 12%;
        top: 35px
    }

    .media-small {
        width: 145px;
        height: 170px;
        border-width: 5px
    }

    .orbit--one {
        width: 360px;
        height: 360px
    }

    .orbit--two {
        width: 420px;
        height: 420px
    }

    .stat-row {
        margin-top: 55px
    }

    .stat-row article {
        padding: 22px 12px;
        display: block
    }

    .stat-row strong {
        font-size: 32px;
        display: block
    }

    .business-visual {
        min-height: 360px
    }

    .business-content {
        padding: 30px 22px
    }

    .business-content h3 {
        font-size: 25px
    }

    .impact {
        min-height: 1340px
    }

    .impact-copy h2 {
        font-size: 44px
    }

    .impact-pillars {
        grid-template-columns: 1fr
    }

    .impact-pillars article {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .2) !important
    }

    .impact-pillars article:last-child {
        border-bottom: 0 !important
    }

    .report-card {
        grid-template-columns: 48px 1fr 20px;
        padding: 20px
    }

    .stock-card {
        min-height: 430px
    }

    .stock-line {
        width: 78%;
        right: 20px;
        bottom: 28px;
        opacity: .6
    }

    .stories-header {
        display: block
    }

    .stories-header .underlined-link {
        margin-top: 24px
    }

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

    .story-card:last-child {
        grid-column: auto
    }

    .story-image {
        height: 280px
    }

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

    .journey-card {
        min-height: 420px
    }

    .footer {
        padding-top: 60px
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom div {
        margin: 14px 0;
        flex-wrap: wrap
    }

    .footer-bottom button {
        padding: 0
    }

    .search-suggestions {
        flex-wrap: wrap
    }

    .mobile-menu__footer {
        display: block
    }

    .mobile-menu__footer div {
        margin-top: 15px
    }

    .mobile-menu__footer a {
        margin: 0 14px 0 0
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}