@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Nunito:wght@600;700;800;900&display=swap');

:root {
    --purple: #2b123c;
    --purple-2: #4a1f63;
    --ink: #171717;
    --cream: #f5f5f2;
    --paper: #ffffff;
    --green: #2eaa46;
    --green-dark: #258b39;
    --orange: #ed8a2a;
    --red: #cf433b;
    --yellow: #d7ad35;
    --blue: #6fa8c7;
    --lilac: #efe9f2;
    --line: #dedede;
    --muted: #626262;
    --white: #fff;
    --radius: 28px;
    --shadow: 0 20px 55px rgba(39, 20, 81, .12);
    --max: 1180px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Montserrat", system-ui, sans-serif;
    line-height: 1.58;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit
}

button,
a {
    outline-offset: 4px
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--purple);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 4px;
    border-radius: 99px;
    background: var(--green)
}

h1,
h2,
h3,
h4 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.05;
    margin: 0 0 18px
}

h1 {
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    letter-spacing: -.055em
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    letter-spacing: -.045em
}

h3 {
    font-size: 1.5rem
}

p {
    margin: 0 0 18px
}

.lead {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: var(--muted);
    max-width: 680px
}

.section {
    padding: 112px 0;
    position: relative;
    overflow: hidden
}

.section-head {
    max-width: 760px;
    margin-bottom: 52px
}

.section-head p {
    font-size: 1.08rem;
    color: var(--muted)
}

.pill {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 99px;
    background: rgba(53, 185, 166, .12);
    color: var(--green-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}


body:before {
    content: "";
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    height: 7px;
    background: var(--green);
}

.green-bar {
    display: block;
    width: 72px;
    height: 7px;
    background: var(--green);
    margin: 0 0 22px 0;
}

.green-brush {
    display: inline-block;
    position: relative;
    padding: 9px 28px 10px;
    color: #fff;
    background: var(--green);
    font-weight: 800;
    letter-spacing: .02em;
    clip-path: polygon(1% 20%, 8% 8%, 19% 14%, 31% 3%, 43% 12%, 57% 4%, 70% 13%, 82% 6%, 98% 18%, 94% 38%, 100% 57%, 91% 72%, 98% 90%, 83% 87%, 70% 98%, 56% 91%, 43% 99%, 30% 90%, 17% 97%, 7% 86%, 1% 72%, 6% 52%, 0 36%);
}

.section-title-bar {
    width: 100%;
    height: 9px;
    background: var(--green);
    margin: 0 0 34px;
}

.pdf-visual {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(43, 18, 60, .08);
}

.pdf-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pdf-caption {
    padding: 10px 14px;
    font-size: .76rem;
    color: var(--muted);
    background: #fff
}

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

.life-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.life-grid {
    align-items: stretch
}

.life-card {
    display: flex;
    flex-direction: column
}

.life-card .life-image {
    height: 175px;
    background: #f1f1ef;
    display: grid;
    place-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line)
}

.life-card .life-image img {
    width: 72%;
    height: 150px;
    max-width: 190px;
    object-fit: contain
}

.life-card .life-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.life-card .life-stage {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 2px
}

.life-card h3 {
    font-size: 1.18rem;
    color: var(--purple);
    margin: 7px 0 10px;
    line-height: 1.16
}

.life-card p {
    font-size: .86rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0
}

.people-statement {
    max-width: 760px;
    margin: 42px auto 0;
    padding: 0 12px;
    text-align: center;
    color: var(--purple);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.025em
}

.people-statement:before {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: var(--green);
    border-radius: 99px;
    margin: 0 auto 18px
}

.beyond-statement {
    max-width: 820px;
    margin: 0 auto 42px;
    padding: 0 12px;
    text-align: center;
    color: var(--purple);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.025em
}

.beyond-statement:before {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: var(--green);
    border-radius: 99px;
    margin: 0 auto 18px
}

.beyond-visual {
    margin-top: 24px
}

@media (max-width:760px) {
    .life-card .life-image {
        height: 165px;
        padding: 12px 18px
    }

    .life-card .life-image img {
        width: 70%;
        height: 140px
    }

    .life-card .life-body {
        padding: 20px
    }

    .people-statement {
        margin-top: 34px
    }
}

.system-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: center
}

.impact-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 32px;
}

.impact-photos img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 16px
}

.hero-photo-wrap {
    width: min(100%, 620px);
    background: #f0f0ed;
    border-radius: 2px;
    overflow: hidden;
    border-top: 12px solid var(--green);
    box-shadow: 0 18px 45px rgba(43, 18, 60, .12);
}

.hero-photo-wrap img {
    width: 100%;
    height: 650px;
    object-fit: cover
}

.hero-caption {
    padding: 11px 16px;
    background: #fff;
    color: var(--muted);
    font-size: .74rem
}

.section:not(.challenge):not(.results):not(.future)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: var(--green);
    opacity: .9;
}

@media (max-width:1050px) {
    .life-grid {
        grid-template-columns: 1fr 1fr
    }

    .system-layout {
        grid-template-columns: 1fr
    }

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

@media (max-width:760px) {
    .life-grid {
        grid-template-columns: 1fr
    }

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

    .hero-photo-wrap img {
        height: 500px
    }
}

@media (max-width:460px) {
    .impact-photos {
        grid-template-columns: 1fr
    }

    .hero-photo-wrap img {
        height: 420px
    }
}

/* Navigation */
.nav {
    position: fixed;
    z-index: 50;
    top: 7px;
    left: 0;
    right: 0;
    padding: 15px 0;
    transition: .3s ease
}

.nav.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(43, 18, 60, .08);
    padding: 10px 0
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand img {
    width: 130px;
    height: auto
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-group {
    position: relative
}

.nav-main {
    border: 0;
    background: #fff;
    color: #000;
    font: inherit;
    font-size: .9rem;
    font-weight: 800;
    padding: 12px 10px;
    cursor: pointer;
    border-radius: 6px
}

.nav-main:hover,
.nav-main:focus-visible {
    background: #fff;
    color: #000;
    box-shadow: 0 0 0 1px rgba(39, 20, 81, .08)
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 225px;
    padding: 9px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 16px 35px rgba(43, 18, 60, .14);
    display: none
}

.nav-group.open .nav-dropdown {
    display: block
}

.nav-dropdown a {
    display: block;
    text-decoration: none;
    color: var(--purple);
    font-size: .86rem;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 6px
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    background: var(--cream);
    color: var(--green-dark)
}

.nav-contact {
    text-decoration: none !important;
    color: #000 !important;
    background: #fff;
    padding: 11px 17px;
    border-radius: 4px;
    font-weight: 800
}

.nav-contact:hover {
    background: #fff;
    color: #000 !important
}

.nav-cta {
    text-decoration: none !important;
    color: var(--white) !important;
    background: var(--green);
    padding: 11px 17px;
    border-radius: 4px;
    font-weight: 800
}

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 1.6rem;
    color: var(--purple)
}

@media (max-width:760px) {
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: #fff;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 10px;
        box-shadow: 0 16px 35px rgba(43, 18, 60, .14)
    }

    .nav-links.open {
        display: flex
    }

    .nav-group {
        width: 100%
    }

    .nav-main {
        text-align: left;
        width: 100%
    }

    .nav-dropdown {
        position: static;
        box-shadow: none;
        border: 0;
        padding: 0 0 4px;
        min-width: 0
    }

    .nav-group.open .nav-dropdown {
        display: block
    }

    .nav-contact {
        text-align: center;
        margin-top: 4px
    }

    .nav-cta {
        text-align: center;
        margin-top: 4px
    }

    .menu-btn {
        display: block
    }
}

/* Hero */
.hero {
    min-height: 100svh;
    padding: 145px 0 70px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 64px
}

.hero-kicker {
    margin-bottom: 20px
}

.hero h1 {
    color: var(--purple);
    max-width: 780px
}

.hero h1 span {
    color: var(--green)
}

.hero h1 span {
    color: var(--green)
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 21px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 800;
    font-size: .9rem;
    border: 1px solid transparent;
    transition: .25s ease
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-radius: 4px
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(39, 20, 81, .2)
}

.btn-light {
    background: transparent;
    border-color: rgba(43, 18, 60, .25);
    color: var(--purple);
    border-radius: 4px
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 35px;
    max-width: 650px
}

.hero-stat {
    background: rgba(255, 253, 249, .72);
    padding: 20px
}

.hero-stat strong {
    display: block;
    font-family: "Nunito";
    font-size: 1.55rem;
    color: var(--purple)
}

.hero-stat span {
    font-size: .78rem;
    color: var(--muted)
}

.hero-media {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-hero {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    filter: drop-shadow(0 28px 32px rgba(39, 20, 81, .2));
    transform: rotate(-2deg)
}


/* Challenge — 10-child anemia visual */
.challenge-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px
}

.children-visual {
    width: min(100%, 520px);
    padding: 28px 30px 24px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 28px;
    background: rgba(255, 255, 255, .045)
}

.children-visual svg {
    width: 100%;
    height: auto;
    display: block
}

.child-silhouette {
    fill: #777080
}

.child-silhouette.anemia {
    fill: var(--green)
}

.children-legend {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 18px
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e8e1ee;
    font-size: .76rem;
    font-weight: 700
}

.legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block
}

.legend-dot.dark {
    background: #777080
}

.legend-dot.green {
    background: var(--green)
}

.children-caption {
    text-align: center;
    color: #d8d1e6;
    font-size: .82rem;
    margin: 0
}

.challenge-copy {
    max-width: 560px
}

.story-photo-card {
    position: relative;
    background: var(--white);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(43, 18, 60, .08)
}

.story-photo-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.story-photo-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    background: #fff;
    color: var(--muted);
    font-size: .76rem
}

.story-photo-caption strong {
    color: var(--purple);
    font-weight: 800
}

@media (max-width:760px) {
    .children-visual {
        padding: 22px 18px 20px
    }

    .story-photo-card {
        border-radius: 28px
    }
}

/* Challenge */
.challenge {
    background: var(--purple);
    color: var(--white)
}

.challenge .eyebrow {
    color: var(--yellow)
}

.challenge .section-head p {
    color: #d8d1e6
}

.challenge-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center
}

.big-stat {
    border-left: 5px solid var(--yellow);
    padding: 20px 0 20px 28px
}

.big-stat strong {
    font-family: "Nunito";
    font-size: clamp(4rem, 9vw, 7.5rem);
    line-height: .85;
    color: var(--yellow);
    display: block;
    letter-spacing: -.06em
}

.big-stat span {
    font-size: 1rem;
    color: #e8e1ee;
    display: block;
    margin-top: 16px
}

.challenge-copy p {
    color: #e8e1ee
}

.challenge-note {
    margin-top: 30px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    background: rgba(255, 255, 255, .05)
}

/* Story */
.story {
    background: var(--cream)
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start
}

.story-copy {
    max-width: 850px;
    margin: 0 auto
}

.story-card {
    position: relative;
    background: var(--white);
    border-radius: 36px;
    padding: 42px;
    box-shadow: var(--shadow);
    min-height: 440px;
    overflow: hidden
}

.story-card:before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: var(--lilac);
    right: -70px;
    top: -70px
}

.story-card .year {
    font-family: "Nunito";
    font-size: 5rem;
    line-height: 1;
    color: var(--purple);
    opacity: .15
}

.story-mark {
    font-size: 4rem;
    color: var(--orange);
    font-family: serif;
    line-height: 1
}

.story-quote {
    font-family: "Nunito";
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--purple);
    position: relative;
    z-index: 1
}

.story-tag {
    position: absolute;
    bottom: 34px;
    left: 42px;
    font-weight: 800;
    color: var(--green-dark)
}

.story-copy h2 {
    color: var(--purple)
}

/* Solution */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.solution-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    min-height: 330px;
    position: relative;
    transition: .3s ease
}

.solution-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-family: "Nunito";
    font-size: 1.25rem;
    margin-bottom: 28px
}

.icon.teal {
    background: rgba(53, 185, 166, .14);
    color: var(--green-dark)
}

.icon.orange {
    background: rgba(238, 139, 34, .14);
    color: #c66d0d
}

.icon.purple {
    background: rgba(39, 20, 81, .1);
    color: var(--purple)
}

.solution-card p {
    color: var(--muted);
    font-size: .96rem
}

.solution-number {
    position: absolute;
    right: 24px;
    top: 20px;
    font-family: "Nunito";
    font-size: .8rem;
    color: #b5adbd
}

/* Evolution */
.evolution {
    background: #f1ece4
}

.evolution-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 65px
}

.evolution-copy {
    position: sticky;
    top: 120px;
    height: max-content
}

.evolution-copy .capacity {
    margin-top: 35px;
    padding: 25px;
    border-radius: 24px;
    background: var(--purple);
    color: var(--white)
}

.capacity strong {
    display: block;
    font-family: "Nunito";
    font-size: 3.4rem;
    color: var(--yellow);
    line-height: 1
}

.capacity span {
    display: block;
    margin-top: 7px;
    color: #ded7e7
}

.timeline {
    position: relative;
    padding-left: 36px
}

.timeline:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #c9bfd1
}

.timeline-item {
    position: relative;
    padding: 0 0 46px 26px
}

.timeline-item:last-child {
    padding-bottom: 0
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -35px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 7px #f1ece4;
    border: 2px solid var(--green)
}

.timeline-year {
    font-family: "Nunito";
    font-size: 1.2rem;
    color: var(--orange);
    font-weight: 900
}

.timeline-item h3 {
    margin: 4px 0 6px;
    color: var(--purple)
}

.timeline-item p {
    margin: 0;
    color: var(--muted)
}

/* Products */
.products {
    background: var(--paper)
}

.product-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px
}

.tab {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--purple);
    padding: 10px 15px;
    border-radius: 99px;
    font: 700 .82rem "Montserrat";
    cursor: pointer
}

.tab.active,
.tab:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple)
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.product-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    overflow: hidden;
    transition: .25s
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.product-img {
    height: 220px;
    background: #e7e6e2;
    display: grid;
    place-items: center;
    padding: 16px
}

/* The photos have a slightly uneven backdrop (#e0dfdb–#ecebe7); fade their edges into the card colour so no seam shows */
.product-img img {
    width: 100%;
    height: auto;
    max-height: 100%;
    aspect-ratio: 1255 / 1060;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent), linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent), linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
    mask-composite: intersect
}

.product-body {
    padding: 20px
}

.product-body small {
    color: var(--green-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em
}

.product-body h3 {
    font-size: 1.15rem;
    margin: 7px 0 5px;
    color: var(--purple)
}

.product-body p {
    font-size: .83rem;
    color: var(--muted);
    margin: 0
}

.product-group {
    display: none
}

.product-group.active {
    display: block
}

/* Impact model */
.impact-model {
    background: var(--cream)
}

.flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    align-items: stretch
}

.flow-item {
    position: relative;
    padding: 26px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    min-height: 205px
}

.flow-item:first-child {
    border-radius: 24px 0 0 24px
}

.flow-item:last-child {
    border-radius: 0 24px 24px 0
}

.flow-item:not(:last-child):after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: var(--white);
    font-weight: 900;
    z-index: 2
}

.flow-step {
    font-size: .7rem;
    color: var(--green-dark);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase
}

.flow-item h3 {
    font-size: 1.08rem;
    color: var(--purple);
    margin-top: 14px
}

.flow-item p {
    font-size: .86rem;
    color: var(--muted)
}

.impact-note {
    max-width: 760px;
    margin: 35px auto 0;
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted)
}

/* Results */
.results {
    background: var(--purple);
    color: var(--white)
}

.results .eyebrow {
    color: var(--yellow)
}

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

.result-card {
    padding: 34px 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    border-radius: 24px
}

.result-card strong {
    display: block;
    font-family: "Nunito";
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 1;
    color: var(--yellow);
    letter-spacing: -.05em
}

.result-card span {
    display: block;
    color: #e1dbe9;
    margin-top: 12px
}

.result-foot {
    text-align: center;
    color: #d9d1e4;
    margin: 38px auto 0;
    max-width: 620px
}

/* Collaboration / commitment */
.collab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.collab-card,
.commit-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white)
}

.actor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px
}

.actor {
    padding: 11px 14px;
    border-radius: 99px;
    background: var(--cream);
    font-weight: 800;
    color: var(--purple);
    font-size: .85rem
}

.commitment {
    background: var(--cream)
}

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

.commit-card {
    background: var(--paper)
}

.commit-card h3 {
    font-size: 1.2rem;
    color: var(--purple)
}

.commit-card p {
    font-size: .9rem;
    color: var(--muted)
}

.commit-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    box-shadow: 0 14px 30px rgba(39, 20, 81, .14);
    border: 1px solid rgba(255, 255, 255, .75)
}

.commit-icon svg {
    width: 48px;
    height: 48px
}

.commit-icon.production {
    background: linear-gradient(145deg, #fff2dc, #f5b35d);
    color: #9a5b09
}

.commit-icon.women {
    background: linear-gradient(145deg, #f4eaff, #c29bea);
    color: #6b3a9c
}

.commit-icon.responsible {
    background: linear-gradient(145deg, #e8fbf4, #76d5b8);
    color: #18775f
}

.commit-icon.growth {
    background: linear-gradient(145deg, #eaf0ff, #9db5f2);
    color: #35569a
}

.commit-card {
    text-align: center
}

.commit-card h3 {
    margin-top: 0
}


/* Recognition */
.recognition {
    background: var(--paper)
}

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

.recognition-item {
    min-height: 125px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 22px;
    transition: .25s
}

.recognition-item:hover {
    border-color: var(--green);
    transform: translateY(-3px)
}

.recognition-item strong {
    font-family: "Nunito";
    color: var(--purple);
    font-size: 1.05rem
}

/* Team */
.team {
    background: #f1ece4
}

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

.team-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--line)
}

.team-avatar {
    height: 230px;
    background: var(--lilac);
    display: grid;
    place-items: center;
    position: relative;
    padding: 18px
}

.team-avatar img {
    width: 180px;
    height: 180px;
    max-width: 100%;
    object-fit: contain;
    display: block
}

.team-body {
    padding: 25px
}

.team-body h3 {
    color: var(--purple);
    margin-bottom: 5px
}

.role {
    color: var(--green-dark);
    font-weight: 800;
    font-size: .84rem
}

.team-body p {
    font-size: .9rem;
    color: var(--muted);
    margin-top: 15px
}

/* Future */
.future {
    background:
        radial-gradient(circle at 20% 20%, rgba(53, 185, 166, .23), transparent 25%),
        radial-gradient(circle at 90% 70%, rgba(238, 139, 34, .24), transparent 25%),
        var(--purple);
    color: var(--white);
    text-align: center
}

.future .eyebrow {
    color: var(--yellow)
}

.future h2 {
    max-width: 850px;
    margin: 0 auto 25px
}

.future .lead {
    color: #ded7e7;
    margin: 0 auto
}

.closing {
    font-family: "Nunito";
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.08;
    max-width: 900px;
    margin: 55px auto 0;
    color: var(--white);
    letter-spacing: -.04em
}

.closing em {
    color: var(--yellow);
    font-style: normal
}

/* Footer */
footer {
    background: #170d30;
    color: var(--white);
    padding: 65px 0 30px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 50px
}

.footer-brand img {
    width: 150px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px
}

footer p,
footer a {
    color: #c9c1d7
}

footer a {
    text-decoration: none
}

footer a:hover {
    color: var(--white)
}

.footer-social {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start
}

.footer-linkedin {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    background: #fff;
    color: #170d30;
    transition: .2s
}

.footer-linkedin:hover {
    transform: translateY(-2px);
    background: var(--green);
    color: #fff
}

.footer-linkedin svg {
    width: 21px;
    height: 21px;
    fill: currentColor
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .78rem;
    color: #9188a3
}


.original-gallery {
    background: var(--cream)
}

.gallery-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: end;
    margin-bottom: 38px
}

.charla-gallery {
    display: grid;
    grid-template-columns: 1.35fr .85fr .85fr;
    grid-auto-rows: 235px;
    gap: 14px
}

.charla-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #ddd;
    box-shadow: 0 12px 30px rgba(39, 20, 81, .09)
}

.charla-photo.charla-large {
    grid-row: span 2
}

.charla-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.charla-photo:hover img {
    transform: scale(1.04)
}

.charla-photo:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(transparent, rgba(20, 12, 37, .72))
}

.charla-photo figcaption {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 16px;
    color: #fff;
    font-weight: 800;
    font-size: .82rem
}

.gallery-foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    color: var(--muted);
    font-size: .78rem
}

.gallery-foot span:first-child {
    color: var(--purple);
    font-weight: 800
}

.history-visual {
    margin: 28px 0;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line)
}

.history-visual img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.history-caption {
    padding: 13px 16px;
    font-size: .78rem;
    color: var(--muted)
}

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

.image-recognition {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    min-height: 230px
}

.image-recognition img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: #f5f2ed;
    padding: 14px;
    transition: transform .35s ease
}

.image-recognition span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: var(--purple);
    font-size: .82rem;
    font-weight: 800
}

.image-recognition span b {
    color: var(--green-dark);
    font-size: 1rem
}

.image-recognition:hover img {
    transform: scale(1.035)
}

.image-recognition:hover {
    border-color: var(--green)
}

@media (max-width:1050px) {
    .image-recognition-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .gallery-intro {
        grid-template-columns: 1fr
    }
}

@media (max-width:760px) {
    .charla-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 190px
    }

    .charla-photo.charla-large {
        grid-row: span 2
    }

    .gallery-foot {
        flex-direction: column
    }

    .image-recognition-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:460px) {
    .charla-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px
    }

    .charla-photo.charla-large {
        grid-row: span 1
    }

    .image-recognition-grid {
        grid-template-columns: 1fr
    }
}

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

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

.counter {
    font-variant-numeric: tabular-nums
}

@media (max-width:1050px) {

    .hero-grid,
    .challenge-grid,
    .story-grid,
    .evolution-layout {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .hero-media {
        min-height: 500px
    }

    .evolution-copy {
        position: static
    }

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

    .flow {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .flow-item,
    .flow-item:first-child,
    .flow-item:last-child {
        border-radius: 20px
    }

    .flow-item:not(:last-child):after {
        content: "↓";
        right: 50%;
        top: auto;
        bottom: -20px;
        transform: translateX(50%)
    }

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

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

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

@media (max-width:760px) {
    .container {
        width: min(calc(100% - 28px), var(--max))
    }

    .section {
        padding: 80px 0
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 14px;
        right: 14px;
        background: var(--white);
        padding: 18px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        padding: 10px
    }

    .nav-cta {
        text-align: center
    }

    .menu-btn {
        display: block
    }

    .hero {
        padding-top: 120px
    }

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

    .hero-media {
        min-height: 390px
    }

    .hero-orbit {
        width: 350px;
        height: 350px
    }

    .solution-grid,
    .team-grid,
    .collab-grid {
        grid-template-columns: 1fr
    }

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

    .product-img {
        height: 175px
    }

    .commit-grid,
    .recognition-grid {
        grid-template-columns: 1fr 1fr
    }

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

@media (max-width:460px) {
    h1 {
        font-size: 3.05rem
    }

    .product-grid,
    .commit-grid,
    .recognition-grid,
    .result-grid {
        grid-template-columns: 1fr
    }

    .story-card {
        padding: 30px;
        min-height: 390px
    }

    .story-tag {
        left: 30px
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important
    }

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

.people-products {
    margin-top: 34px;
    padding-top: 4px
}

.people-products .product-tabs {
    justify-content: center;
    margin-bottom: 24px
}

.people-products .product-grid {
    grid-template-columns: repeat(5, 1fr)
}

.solution-icon {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 28px rgba(39, 20, 81, .12);
    border: 1px solid rgba(255, 255, 255, .7)
}

.solution-icon svg {
    width: 52px;
    height: 52px
}

.solution-icon.food {
    background: linear-gradient(145deg, #fff0dc, #f6b45b);
    color: #9c5607
}

.solution-icon.education {
    background: linear-gradient(145deg, #e7faf5, #7ed8c3);
    color: #167c69
}

.solution-icon.monitoring {
    background: linear-gradient(145deg, #eee9ff, #a99be5);
    color: #4c3b8f
}

.solution-card {
    text-align: left
}

.solution-card .solution-icon+h3 {
    text-align: center
}

.solution-commitment {
    margin-top: 58px
}

.solution-commitment .section-head {
    text-align: center
}

.beyond-compact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 38px;
    align-items: center;
    margin-top: 10px
}

.beyond-copy {
    padding-right: 8px
}

.beyond-copy .beyond-statement {
    margin: 0 0 22px;
    padding: 0;
    text-align: left;
    font-size: clamp(1.35rem, 2.4vw, 2rem)
}

.beyond-copy .beyond-statement:before {
    margin: 0 0 16px
}

.beyond-copy p {
    max-width: 560px;
    color: var(--muted)
}

.beyond-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px
}

.beyond-points span {
    padding: 9px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: .75rem;
    font-weight: 800;
    color: var(--purple)
}

.beyond-image-link {
    display: block;
    margin: 0;
    transition: .25s ease
}

.beyond-image-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.beyond-image-link img {
    width: 100%;
    height: 390px;
    object-fit: contain !important
}

.history-image-link {
    display: block;
    cursor: zoom-in
}

.history-image-link img {
    width: 100%;
    height: auto;
    max-height: 390px;
    object-fit: contain
}

.history-caption span {
    float: right;
    color: var(--green-dark);
    font-weight: 700
}

.history-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(18, 12, 25, .92);
    display: none;
    overflow: auto
}

.history-lightbox.open {
    display: block
}

.history-lightbox-scroll {
    display: flex;
    box-sizing: border-box;
    min-width: 100%;
    width: max-content;
    min-height: 100%;
    padding: 72px 24px 24px
}

.history-lightbox-scroll img {
    display: block;
    margin: auto;
    width: auto;
    height: auto;
    max-width: calc(100vw - 48px);
    max-height: calc(100vh - 96px);
    border-radius: 10px;
    background: #fff;
    cursor: zoom-in
}

.history-lightbox.zoomed .history-lightbox-scroll img {
    max-width: none;
    max-height: none;
    cursor: zoom-out
}

@media (max-width:760px) {
    .history-lightbox-scroll {
        padding: 64px 12px 12px
    }

    .history-lightbox-scroll img {
        max-width: calc(100vw - 24px)
    }
}

.history-lightbox-close {
    position: fixed;
    right: 22px;
    top: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--purple);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    transition: transform .15s ease, background .15s ease
}

.history-lightbox-close:hover {
    background: var(--lilac);
    transform: scale(1.06)
}

.history-lightbox-close:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 2px
}

@media (max-width:1050px) {
    .people-products .product-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:900px) {
    .beyond-compact-grid {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .beyond-image-link img {
        height: auto;
        max-height: 440px
    }
}

@media (max-width:760px) {
    .people-products .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .history-caption span {
        float: none;
        display: block;
        margin-top: 5px
    }
}

.integrated-inline {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid var(--line)
}

.integrated-inline>h3 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    margin: 0 0 24px;
    color: var(--purple)
}

.integrated-inline .flow {
    margin-top: 0
}

.integrated-inline .impact-note {
    margin-top: 28px
}