*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid
}

:root {
    --navy: #182544;
    --navy-deep: #0d172f;
    --orange: #f34f08;
    --orange-deep: #db3012;
    --paper: #fcfaf6;
    --grey-dark: #323843;
    --radius: .25rem;
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
    --orange-light: #ff7a47;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto
}

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

button {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    color: inherit
}

ul,
ol {
    list-style: none
}

input,
select,
textarea {
    font: inherit;
    color: inherit;
    background: none
}

/* ── Layout ── */
.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 1.25rem
}

@media(min-width:64rem) {
    .container {
        padding-inline: 2.5rem
    }
}

/* ── Typography ── */
.font-display {
    font-family: var(--font-display)
}

.font-mono {
    font-family: var(--font-mono)
}

/* ── Colours ── */
.bg-navy {
    background: var(--navy)
}

.bg-navy-deep {
    background: var(--navy-deep)
}

.bg-orange {
    background: var(--orange)
}

.bg-paper {
    background: var(--paper)
}

.bg-white {
    background: #fff
}

.text-navy {
    color: var(--navy)
}

.text-orange {
    color: var(--orange)
}

.text-white {
    color: #fff
}

/* ── NAV ── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid rgba(24, 37, 68, .08)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
    gap: 1rem
}

.nav-logo img {
    height: 3rem;
    width: auto
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2.25rem;
    font-size: .8125rem;
    font-weight: 500
}

.nav-links a {
    color: rgba(24, 37, 68, .8);
    transition: color .15s
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .5rem
}

.btn-ghost {
    display: none;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(24, 37, 68, .8);
    padding: .5rem 1rem;
    transition: color .15s
}

.btn-ghost:hover {
    color: var(--navy)
}

.btn-apply {
    background: var(--orange);
    color: #fff;
    padding: .625rem 1.25rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: background .15s;
    white-space: nowrap
}

.btn-apply:hover {
    background: var(--orange-deep)
}

.btn-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--navy)
}

.btn-hamburger span {
    display: flex;
    flex-direction: column;
    gap: .3125rem
}

.btn-hamburger span i {
    display: block;
    width: 1.25rem;
    height: 1px;
    background: currentColor;
    transition: transform .25s, opacity .25s
}

.btn-hamburger[aria-expanded=true] span i:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.btn-hamburger[aria-expanded=true] span i:nth-child(2) {
    opacity: 0
}

.btn-hamburger[aria-expanded=true] span i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

@media(min-width:64rem) {
    .nav-inner {
        height: 5.5rem
    }

    .nav-logo img {
        height: 3.75rem
    }

    .nav-links {
        display: flex
    }

    .btn-ghost {
        display: inline-flex
    }

    .btn-hamburger {
        display: none
    }
}

/* Mobile nav drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none
}

.mobile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24, 37, 68, .55);
    opacity: 0;
    transition: opacity .25s
}

.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85vw, 320px);
    background: #fff;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto
}

.mobile-drawer.open {
    pointer-events: auto
}

.mobile-drawer.open .mobile-overlay {
    opacity: 1
}

.mobile-drawer.open .mobile-panel {
    transform: translateX(0)
}

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(24, 37, 68, .1)
}

.mobile-panel-head img {
    height: 2.5rem;
    width: auto
}

.mobile-close {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--navy)
}

.mobile-nav-links {
    padding: 1.5rem 1.25rem;
    flex: 1
}

.mobile-nav-links a {
    display: block;
    padding: .875rem 0;
    font-size: 1.0625rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(24, 37, 68, .07);
    transition: color .15s
}

.mobile-nav-links a:hover {
    color: var(--orange)
}

.mobile-panel-footer {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    border-top: 1px solid rgba(24, 37, 68, .1)
}

.mobile-panel-footer a {
    display: block;
    text-align: center;
    padding: .75rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em
}

.mobile-btn-ghost {
    border: 1.5px solid var(--navy);
    color: var(--navy)
}

.mobile-btn-apply {
    background: var(--orange);
    color: #fff
}

/* ── FOOTER ── */
.site-footer {
    background: var(--paper);
    border-top: 1px solid rgba(24, 37, 68, .1);
    padding-top: 4rem;
    padding-bottom: 2.5rem
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem
}

@media(min-width:48rem) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr
    }
}

.footer-logo img {
    height: 3rem;
    width: auto;
    margin-bottom: 1.25rem
}

.footer-desc {
    color: rgba(24, 37, 68, .65);
    line-height: 1.625;
    max-width: 18rem;
    margin-bottom: 1.25rem;
    font-size: .9375rem
}

.footer-hq {
    font-family: var(--font-mono);
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(24, 37, 68, .5)
}

.footer-col h4 {
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--navy);
    margin-bottom: 1.125rem
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    padding-left: 0
}

.footer-col ul a {
    font-size: .875rem;
    color: rgba(24, 37, 68, .6);
    transition: color .15s
}

.footer-col ul a:hover {
    color: var(--orange)
}

.footer-col .tel {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .375rem
}

.footer-col .email {
    font-size: .875rem;
    color: rgba(24, 37, 68, .6);
    word-break: break-all
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(24, 37, 68, .1);
    display: flex;
    flex-direction: column;
    gap: .75rem
}

@media(min-width:48rem) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center
    }
}

.footer-bottom span {
    font-family: var(--font-mono);
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(24, 37, 68, .5)
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem
}

.footer-bottom-links a {
    font-family: var(--font-mono);
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(24, 37, 68, .5)
}

.footer-bottom-links a:hover {
    color: var(--orange)
}

/* ── Mobile sticky CTA ── */
.mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: #fff;
    border-top: 1px solid rgba(24, 37, 68, .1);
    padding: .75rem 1.25rem;
    display: flex;
    gap: .75rem
}

.mobile-sticky a {
    flex: 1;
    text-align: center;
    padding: .75rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.mobile-sticky .ms-ghost {
    border: 1.5px solid var(--navy);
    color: var(--navy)
}

.mobile-sticky .ms-primary {
    background: var(--orange);
    color: #fff
}

@media(min-width:48rem) {
    .mobile-sticky {
        display: none
    }
}

main {
    padding-bottom: 0
}

@media(max-width:47.9375rem) {
    main {
        padding-bottom: 4.5rem
    }
}

/* ── Sections ── */
.section {
    padding-block: 5rem
}

@media(min-width:48rem) {
    .section {
        padding-block: 7rem
    }
}

.hero-section {
    position: relative;
    background: var(--navy);
    color: #fff;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 5rem
}

@media(min-width:64rem) {
    .hero-section {
        padding-block: 7rem
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 40%, rgba(24, 37, 68, .8) 70%, rgba(24, 37, 68, .3) 100%)
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-h1 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.02;
    text-wrap: balance clamp(2rem, 7vw, 5rem)
}

.hero-h1 {
    font-size: clamp(2rem, 7vw, 5rem)
}

.page-hero {
    background: var(--navy);
    color: #fff;
    padding-block: 5rem
}

@media(min-width:48rem) {
    .page-hero {
        padding-block: 7rem
    }
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: .95;
    text-wrap: balance
}

.hero-lead {
    max-width: 32rem;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.625;
    margin-bottom: 2rem;
}

.hero-cta-row {
    gap: .75rem;
}

.hero-cta-arrow {
    width: 2rem;
    height: 2rem;
    color: var(--orange);
}

.hero-stats {
    max-width: 42rem;
    background: rgba(255, 255, 255, .1);
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .1);
}

@media(min-width:48rem) {
    .stats-grid.cols-4 {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(min-width:48rem) {
    .stats-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

.stat-cell {
    background: var(--paper);
    padding: 1.25rem
}

.stat-cell.on-dark {
    background: rgba(24, 37, 68, .7)
}

.stat-cell .label {
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: .25rem;
}

.stat-cell .value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1
}

@media(min-width:48rem) {
    .stat-cell .value {
        font-size: 1.5rem
    }
}

.stat-cell .sub {
    font-size: .625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin-top: .25rem
}

.stat-cell.white-bg {
    background: #fff
}

.stat-cell.white-bg .value {
    font-size: clamp(1.375rem, 3vw, 2rem)
}

/* Cards grid */
.cards-grid {
    display: grid;
    gap: 1px;
    background: rgba(24, 37, 68, .1)
}

.cards-grid-faint {
    display: grid;
    gap: 1px;
    background: rgba(24, 37, 68, .08)
}

@media(min-width:48rem) {
    .cards-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:64rem) {
    .cards-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

.card {
    background: #fff;
    display: flex;
    flex-direction: column
}

/* Tag badge */
.tag {
    font-family: var(--font-mono);
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    display: inline-block
}

/* Section eyebrow */
.eyebrow {
    font-family: var(--font-mono);
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--orange);
    margin-bottom: 1rem
}


.eyebrow-dark {
    color: rgba(255, 255, 255, .6);
}

/* Pill buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .625rem 1.25rem;
    border-radius: 9999px;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: all .15s;
    white-space: nowrap
}

.btn-primary {
    background: var(--orange);
    color: #fff
}

.btn-primary:hover {
    background: var(--orange-deep)
}

.btn-secondary {
    background: var(--navy);
    color: #fff
}

.btn-secondary:hover {
    background: var(--navy-deep)
}

.btn-outline-white {
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: #fff
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .05)
}

.btn-outline-navy {
    border: 1.5px solid var(--navy);
    color: var(--navy)
}

.btn-pad-lg {
    padding: .875rem 1.75rem;
}

/* 2-col layout */
.two-col {
    display: grid;
    gap: 3rem
}

@media(min-width:48rem) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        align-items: start
    }
}

/* Ticker */
.ticker-wrap {
    background: var(--orange);
    padding-block: 1.125rem;
    overflow: hidden;
    border-top: 1px solid var(--orange-deep);
    border-bottom: 1px solid var(--orange-deep)
}

.ticker-inner {
    display: flex;
    gap: 3rem;
    animation: ticker 40s linear infinite;
    width: max-content
}

.ticker-item {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* Process steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .1)
}

@media(min-width:48rem) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.step {
    background: var(--navy);
    padding: 1.75rem
}

.step-num {
    font-family: var(--font-mono);
    font-size: .6875rem;
    color: var(--orange);
    letter-spacing: .25em;
    margin-bottom: 1.25rem
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: .625rem
}

.step-desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6
}

/* Sectors grid */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .05)
}

@media(min-width:48rem) {
    .sectors-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.sector-cell {
    background: var(--navy);
    padding: 1.75rem 1.5rem;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .2s;
    position: relative;
    overflow: hidden
}

.sector-cell:hover {
    background: var(--navy-deep)
}

.sector-num {
    font-family: var(--font-mono);
    font-size: .625rem;
    color: var(--orange);
    letter-spacing: .25em;
    text-transform: uppercase
}

.sector-name {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2
}

.sector-label-muted {
    font-size: .625rem;
    color: rgba(24, 37, 68, .4);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sector-intro-block {
    max-width: 36rem;
    margin-bottom: 3rem;
}

@media(min-width:48rem) {
    .sector-name {
        font-size: 1.25rem
    }
}

/* GRO Score card */
.gro-card {
    background: var(--navy);
    border-radius: 1rem;
    color: #fff;
    padding: 2rem;
    position: relative;
    overflow: hidden
}

.gro-card::before {
    content: '';
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 14rem;
    height: 14rem;
    border-radius: 9999px;
    background: rgba(243, 79, 8, .25);
    filter: blur(3rem)
}

.gro-score-num {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 15vw, 6rem);
    font-weight: 800;
    line-height: 1
}

.gro-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .1)
}

.gro-data-cell {
    background: rgba(24, 37, 68, .8);
    padding: .875rem
}

.gro-data-label {
    font-family: var(--font-mono);
    font-size: .625rem;
    color: var(--orange);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: .375rem
}

.gro-data-val {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.4
}

/* Story cards (testimonials) */
.story-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s
}

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

.story-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy) 0%, rgba(24, 37, 68, .4) 50%, transparent 100%)
}

.story-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--orange);
    color: #fff;
    padding: .25rem .75rem;
    font-family: var(--font-mono);
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .2em
}

.story-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #fff
}

.story-card-quote {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-wrap: pretty
}

@media(min-width:48rem) {
    .story-card-quote {
        font-size: 1.125rem
    }
}

.story-card-name {
    font-size: .875rem;
    font-weight: 700
}

.story-card-role {
    font-size: .75rem;
    color: rgba(255, 255, 255, .7)
}

/* Product hero cards */
.product-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: var(--navy)
}

.product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .45;
    transition: opacity .6s, transform .6s
}

.product-card:hover img {
    opacity: .6;
    transform: scale(1.04)
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy) 0%, rgba(24, 37, 68, .6) 50%, transparent 100%)
}

.product-card-content {
    position: relative;
    z-index: 1
}

.product-card-cat {
    font-family: var(--font-mono);
    font-size: .625rem;
    color: rgba(243, 79, 8, .8);
    text-transform: uppercase;
    letter-spacing: .25em;
    margin-bottom: .5rem
}

.product-card-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-family: var(--font-mono);
    font-size: .625rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .25em;
    z-index: 1
}

.product-card-corner {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 1.75rem;
    height: 1.75rem;
    border-top: 2px solid rgba(243, 79, 8, .5);
    border-right: 2px solid rgba(243, 79, 8, .5);
    z-index: 1;
    transition: border-color .2s
}

.product-card:hover .product-card-corner {
    border-color: var(--orange)
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
    line-height: 1.2
}

@media(min-width:48rem) {
    .product-card h3 {
        font-size: 1.75rem
    }
}

.product-card p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 22rem
}

.product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    color: var(--orange);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em
}

.product-card-cta .line {
    width: 2rem;
    height: 1px;
    background: var(--orange);
    transition: width .4s
}

.product-card:hover .product-card-cta .line {
    width: 3.5rem
}

/* Partner logos grid */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(24, 37, 68, .05)
}

.partner-showcase {
    gap: 1px;
    background: rgba(24, 37, 68, .1);
    align-items: start
}

.partner-showcase-bg {
    gap: 1px;
    background: rgba(24, 37, 68, .1);
    align-items: start
}

@media(min-width:36rem) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.partner-cell {
    background: #fff;
    aspect-ratio: 5/2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(24, 37, 68, .8);
    font-size: .875rem;
    text-align: center;
    transition: color .15s
}

.partner-cell:hover {
    color: var(--orange)
}

.partner-heading {
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    font-weight: 800;
    text-wrap: balance;
    max-width: 36rem;
    margin-bottom: 2.5rem;
}

.partner-title {
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--navy);
    margin-bottom: 1.125rem
}



/* Form */
.form-card {
    background: #fff;
    border: 1px solid rgba(24, 37, 68, .1);
    border-radius: 1rem;
    padding: 1.5rem
}

@media(min-width:48rem) {
    .form-card {
        padding: 2rem
    }
}

.form-grid {
    display: grid;
    gap: 1.25rem
}

@media(min-width:36rem) {
    .form-grid.cols-2 {
        grid-template-columns: 1fr 1fr
    }
}

.form-label {
    display: block
}

.form-label-text {
    display: block;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(24, 37, 68, .6);
    margin-bottom: .5rem
}

.form-label-text .req {
    color: var(--orange)
}

.form-input {
    width: 100%;
    background: var(--paper);
    border: 1px solid rgba(24, 37, 68, .15);
    border-radius: calc(var(--radius) + 2px);
    padding: .75rem 1rem;
    font-size: .875rem;
    outline: none;
    transition: border-color .15s
}

.form-input:focus {
    border-color: var(--orange)
}

.form-submit {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

@media(min-width:36rem) {
    .form-submit {
        flex-direction: row;
        align-items: center;
        justify-content: space-between
    }
}

.form-note {
    font-size: .75rem;
    color: rgba(24, 37, 68, .55)
}

.form-full {
    grid-column: 1 / -1
}

/* Range inputs */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(24, 37, 68, .15);
    border-radius: 2px;
    outline: none;
    cursor: pointer
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: var(--orange);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    cursor: pointer
}

input[type=range]::-moz-range-thumb {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: var(--orange);
    border: 2px solid #fff;
    cursor: pointer
}

/* Eligibility wizard */
.wizard-card {
    background: #fff;
    border: 1px solid rgba(24, 37, 68, .1);
    border-radius: 1rem;
    padding: 1.5rem
}

@media(min-width:48rem) {
    .wizard-card {
        padding: 2rem
    }
}

.progress-bar {
    display: flex;
    gap: .25rem;
    margin-bottom: 2rem
}

.progress-bar div {
    height: .25rem;
    flex: 1;
    border-radius: 9999px;
    background: rgba(24, 37, 68, .1);
    transition: background .3s
}

.progress-bar div.active {
    background: var(--orange)
}

.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: 1.25rem
}

.option-btn {
    text-align: left;
    padding: .875rem 1rem;
    border: 1.5px solid rgba(24, 37, 68, .15);
    border-radius: .375rem;
    font-size: .875rem;
    font-weight: 500;
    transition: all .15s;
    background: #fff
}

.option-btn:hover {
    border-color: var(--orange)
}

.option-btn.selected {
    border-color: var(--orange);
    background: rgba(243, 79, 8, .05);
    color: var(--orange)
}

/* Careers job list */
.job-list {
    border-top: 1px solid rgba(24, 37, 68, .1);
    border-bottom: 1px solid rgba(24, 37, 68, .1);
}

.job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(24, 37, 68, .1)
}

.job-item:last-child {
    border-bottom: none
}

.job-title {
    font-weight: 500;
    font-size: .9375rem
}

.job-apply {
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(24, 37, 68, .6);
    transition: color .15s;
    white-space: nowrap
}

.job-apply:hover {
    color: var(--orange)
}

.job-list-spacing {
    padding: 1.5rem 2rem
}

.job-why-ugro-header {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    text-wrap: balance;
}

.job-orange-divider {
    padding: 1.15rem;
    border-left: 3px solid var(--orange);
}

/* Investors filings table */
.filings-list {
    border-top: 1px solid rgba(24, 37, 68, .1);
    border-bottom: 1px solid rgba(24, 37, 68, .1)
}

.filing-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(24, 37, 68, .1)
}

.investor-portal-btn {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem
}

.investor-heading-compact {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-wrap: balance;
    margin-bottom: 2rem;
}

@media(min-width:48rem) {
    .filing-row {
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 1rem
    }
}

.filing-row:last-child {
    border-bottom: none
}

.filing-type {
    font-family: var(--font-mono);
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    min-width: 5rem
}

.filing-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem
}

.filing-date {
    font-size: .875rem;
    color: rgba(24, 37, 68, .55)
}

.filing-link {
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange)
}

.filing-link:hover {
    text-decoration: underline
}

/* About timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, .1)
}

.timeline-item {
    background: var(--navy);
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 1.25rem;
    padding: 1.25rem
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange)
}

.timeline-text {
    color: rgba(255, 255, 255, .75);
    line-height: 1.625;
    font-size: .9375rem;
    padding-top: .375rem
}

/* Sectors detail cards */
.sector-detail-grid {
    display: grid;
    gap: 1px;
    background: rgba(24, 37, 68, .1)
}

@media(min-width:48rem) {
    .sector-detail-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.sector-detail-card {
    background: #fff;
    padding: 2rem;
    transition: background .15s;
    cursor: default
}

.sector-detail-card:hover {
    background: var(--paper)
}

.sector-detail-card .sector-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem
}

.sector-detail-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .75rem;
    transition: color .2s
}

.sector-detail-card:hover h3 {
    color: var(--orange)
}

.sector-detail-card p {
    font-size: .875rem;
    color: rgba(24, 37, 68, .65);
    line-height: 1.6
}

/* CTA banner */
.cta-banner {
    background: var(--navy-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-block: 5rem
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -6rem;
    left: -6rem;
    width: 20rem;
    height: 20rem;
    border-radius: 9999px;
    background: rgba(243, 79, 8, .15);
    filter: blur(4rem)
}

@media(min-width:48rem) {
    .cta-banner {
        padding-block: 6rem
    }
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem
}

@media(min-width:64rem) {
    .cta-inner {
        grid-template-columns: 7fr 5fr;
        align-items: end
    }
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.02;
    text-wrap: balance
}

.cta-banner p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.625;
    font-size: 1.0625rem
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem
}

/* Utility */
.text-balance {
    text-wrap: balance
}

.text-pretty {
    text-wrap: pretty
}

/* EMI Calculator */

.emi-heading {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.02;
    text-wrap: balance;
    margin-bottom: .75rem;

}

.emi-tab {
    padding: .5rem 1.25rem;
    border-radius: 9999px;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    transition: all .2s
}

.emi-tab.active {
    background: var(--navy);
    color: #fff
}

.emi-tab:not(.active) {
    background: rgba(24, 37, 68, .08);
    color: rgba(24, 37, 68, .7)
}

.emi-cal-section-max-width {
    max-width: 56rem;
}

.emi-change-details {
    font-size: 1.25rem;
    font-weight: 700;
}

.emi-range-label {
    display: flex;
    justify-content: space-between;
    font-size: .625rem;
    color: rgba(24, 37, 68, .4);
    margin-top: .375rem;
}

.emi-cta {
    margin-top: 1.75rem;
    width: 100%;
    justify-content: center;
}

.emi-grid {
    display: grid;
    gap: 1.5rem
}

@media(min-width:64rem) {
    .emi-grid {
        grid-template-columns: 3fr 2fr;
        align-items: start
    }
}

.emi-inputs {
    background: #fff;
    border: 1px solid rgba(24, 37, 68, .1);
    border-radius: 1rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem
}

.emi-result {
    background: var(--navy);
    color: #fff;
    border-radius: 1rem;
    padding: 1.75rem
}

.emi-label-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .75rem
}

.emi-label {
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(24, 37, 68, .55)
}

.emi-val {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700
}

.emi-monthly {
    font-family: var(--font-display);
    font-size: clamp(2rem, 10vw, 3.5rem);
    font-weight: 800;
    margin-top: .5rem
}

.emi-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .1);
    margin-top: 1.5rem
}

.emi-breakdown-cell {
    background: rgba(24, 37, 68, .5);
    padding: .875rem
}

.emi-breakdown-label {
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .55);
    margin-bottom: .25rem
}

.emi-breakdown-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9375rem
}

.heading-sm {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    max-width: 32rem;
    margin-bottom: 2rem
}

.sub-head {
    color: rgba(24, 37, 68, .65);
    margin-bottom: 2.5rem;
    max-width: 30rem;
}

.orange-line {
    width: 2rem;
    height: 1px;
    background: var(--orange);
}

.flex-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.text-dim-relaxed {
    color: rgba(255, 255, 255, .7);
    line-height: 1.625;
}


/* Custom classes only — properties already covered by Bootstrap utilities
   (d-flex, gap-*, mb-*, fw-*, text-uppercase, position-*, object-fit-cover, etc.)
   are applied directly in the HTML instead of duplicated here. */


/* ---- Custom colors / brand (no Bootstrap equivalent) ---- */

.text-orange {
    color: var(--orange);
}

.op-40 {
    opacity: .4;
}

.op-30 {
    opacity: .3;
}

.mb-0 {
    margin-bottom: 0;
}

.min-h-30 {
    min-height: 30rem;
}

.bg-navy-faint {
    background: rgba(24, 37, 68, .1);
}

.bg-navy-white {
    background: var(--navy);
}

.font-light-white {
    color: rgba(255, 255, 255, .85);
}

.text-white-dim {
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
}

.text-white-50 {
    color: rgba(255, 255, 255, .1)
}

.bg-white-10 {
    background: rgba(255, 255, 255, .1);
}


/* ---- Custom sizing (off Bootstrap's spacing scale) ---- */

.stat-cell .value.fs-stat-value {
    font-size: 1.25rem;
}

.gap-md {
    gap: .75rem;
}

.hero-content-padding {
    padding-top: 2rem;
    padding-bottom: 3rem
}

.hero-h1-size {
    max-width: 44rem;
    margin-bottom: 1.25rem;
}

.mission-stats-width {
    max-width: 28rem;
}

.two-col-end {
    margin-bottom: 2.5rem;
}

.two-col-panel {
    background: var(--navy);
    padding: 1.75rem;
    gap: 1.25rem;
}


/* ---- Section heading rows ---- */

.section-heading-row {
    margin-bottom: 2.5rem;
}

.section-heading-link {
    font-size: .75rem;
    letter-spacing: .1em;
    color: rgba(24, 37, 68, .6);
}


/* ---- Card component ---- */

.card-media {
    aspect-ratio: 5/4;
    background: var(--navy);
}

.card-tag-pos {
    top: .875rem;
    left: .875rem;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(8px);
    padding: .25rem .625rem;
}

.card-body {
    padding: 1.75rem;
}

.card-title {
    font-size: 1.375rem;
    margin-bottom: .75rem;
    text-wrap: balance;
}

.card-desc {
    color: rgba(24, 37, 68, .65);
    font-size: .9375rem;
    line-height: 1.6;

}

.card-features {
    gap: .375rem;
    font-size: .75rem;
    color: rgba(24, 37, 68, .7);
}

.card-features-dark {
    display: flex;
    flex-direction: column;
    gap: .375rem;
    margin-bottom: 1.5rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, .7);
}

.btn-sm {
    font-size: .6875rem;
}

.card-link {
    font-size: .6875rem;
    letter-spacing: .1em;
    color: rgba(24, 37, 68, .7);
}

.card-media-img-hover {
    transition: transform 1.2s;
}


/* ---- Mission section ---- */

.mission-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.05;
    text-wrap: balance;
    margin-bottom: 1.25rem;
}

.mission-para {
    color: rgba(24, 37, 68, .85);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

.mission-para-lg {
    color: rgba(24, 37, 68, .85);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-size: 1.0625rem;
}


/* ---- Products section ---- */

.products-heading {
    font-size: clamp(1.875rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.01em;
    text-wrap: balance;
    max-width: 32rem;
}


/* ---- Process / GRO / Sectors headings ---- */

.heading-md {
    font-size: clamp(1.875rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.05;
    text-wrap: balance;
}

.gro-heading {
    font-size: clamp(1.875rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.05;
    text-wrap: balance;
    margin-bottom: 1.25rem;
}

.gro-heading-compact {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-wrap: balance;
    max-width: 32rem;
    margin-bottom: 2.5rem
}

.gro-para {
    color: rgba(24, 37, 68, .7);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.sectors-heading {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 800;
    line-height: .95;
}

.sectors-lead {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .95);
    line-height: 1.7;
}

.numbers-heading {
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    font-weight: 800;
    text-wrap: balance;
    max-width: 40rem;
    margin-bottom: 2.5rem;
}

.stories-heading {
    font-size: clamp(1.875rem, 5vw, 2.75rem);
    font-weight: 800;
    text-wrap: balance;
}




/* ---- GRO score card ---- */

.gro-card-head {
    margin-bottom: 1.25rem;
}

.gro-card-label {
    font-size: .625rem;
    letter-spacing: .25em;
    color: rgba(255, 255, 255, .85);
}

.gro-card-status {
    font-size: .625rem;
    color: var(--orange);
    letter-spacing: .1em;
}

.gro-score-row {
    margin-bottom: 2rem;
}

.gro-score-sub {
    color: rgba(255, 255, 255, .95);
    font-size: .875rem;
    padding-bottom: .5rem;
}

.gro-meta-row {
    margin-top: 1.25rem;
    gap: .75rem 1.5rem;
    font-family: var(--font-mono);
    font-size: .6875rem;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .65);
}

.grid-divider-dark {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, .1);
}

.gro-datastream-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: .625rem
}

.gro-datastream-desc {
    color: rgba(255, 255, 255, .65);
    font-size: .9375rem;
    line-height: 1.6
}


/* ---- Badges / ticker rows ---- */

.badges-row {
    margin-top: 2rem;
    gap: .5rem 1.5rem;
    font-family: var(--font-mono);
    font-size: .625rem;
    letter-spacing: .1em;
    color: rgba(24, 37, 68, .85);
}

.badges-row-cap-light {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    font-family: var(--font-mono);
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .75);
}

.hero-sub-lead {
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, .65);
    max-width: 38rem;
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.625;
}


/* Application Form */

.form-width {
    max-width: 48rem;
}

.form-hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.02;
    text-wrap: balance;
    margin-bottom: .75rem;
}

.form-hero-info {
    color: rgba(24, 37, 68, .7);
    font-size: 1.0625rem;
    max-width: 32rem;
}

.form-success {
    padding: 2rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.success-note {
    color: rgba(24, 37, 68, .7);
    margin-top: .75rem;
}

/* ----------------------------- */



/* Eligibility */

.eligibility-width {
    max-width: 40rem;
}

.eligibility-heading {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.05;
    text-wrap: balance;
    margin-bottom: .75rem;
}


.eligibility-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.wizard-step.hidden {
    display: none;
}

/* ----------------------------------------- */




/*About Page */
.about-divider {
    width: 2rem;
    height: 1px;
}


.about-h2-tight {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.about-para {
    color: rgba(24, 37, 68, .7);
    line-height: 1.7;
}

.about-stats-width {
    max-width: 24rem;
}

.leader-card {
    border: 1px solid rgba(24, 37, 68, .1);
    border-radius: .5rem;
    padding: 1.5rem 2rem;
}

.cta-sub {
    color: rgba(255, 255, 255, .7);
    line-height: 1.625;
}

.about-h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    max-width: 32rem;
}

.leader-title {
    font-size: .75rem;
    letter-spacing: .1em;
    margin-bottom: .75rem;
}

.leader-bio {
    font-size: .9375rem;
    color: rgba(24, 37, 68, .7);
    line-height: 1.6;
}