@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --black: #191e29;
    --soft: #132d46;
    --daam: #d3d7d6;
    --white: #fff;
    --off: #132d46;
    --line: rgba(105, 110, 121, .25);
    --gray: #696e79;
    --dark: #132d46;
    --gold: #01c38d;
    --teal: #01c38d;
    --green: #01c38d;
    --max: 1400px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--off);
    color: var(--black);
    font-family: Manrope, sans-serif;
    font-size: 16px;
    line-height: 1.6
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
textarea {
    font: inherit
}

.container {
    width: min(calc(100% - 96px), var(--max));
    margin-inline: auto
}

.site-main {
    overflow: hidden
}

.section {
    padding: 128px 0
}

.section-light {
    background: var(--white)
}

.section-off {
    background: var(--off)
}

.section-dark,
.hero,
.cta-section {
    background: var(--black);
    color: var(--white)
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .16em;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--gray)
}

.eyebrow span {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 10px
}

.gold-text {
    color: var(--gold)
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--black);
    display: grid;
    place-items: center;
    color: var(--white);
    letter-spacing: .35em;
    font-weight: 700;
    transition: opacity .8s, visibility .8s
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    height: 88px;
    color: var(--white);
    transition: .35s
}

.site-header.is-scrolled {
    height: 68px;
    background: rgba(25, 30, 41, .94);
    color: var(--white);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px)
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-wordmark {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.08em
}

.brand-caption {
    font-size: 8px;
    letter-spacing: .18em;
    margin-top: 7px
}

.site-nav {
    display: flex;
    gap: 25px;
    margin-left: auto
}

.site-nav a,
.header-cta {
    font-size: 15px;
    letter-spacing: .02em
}

.site-nav a {
    position: relative
}

.site-nav a:after,
.text-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .3s
}

.site-nav a:hover:after,
.text-link:hover:after {
    width: 100%
}

.header-cta {
    border: 1px solid currentColor;
    padding: 12px 16px;
    animation: popPop 1.8s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 13px
}



.header-cta:hover {
    transform: scale(1.01);
    animation-play-state: paused;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(197, 160, 89, .16);
    }
}

@keyframes popPop {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.08);
    }

    20% {
        transform: scale(.98);
    }

    30% {
        transform: scale(1.04);
    }

    40% {
        transform: scale(1);
    }
}

.header-cta span {
    color: var(--gold);
    margin-left: 12px;
    font-size: 17px
}

.nav-burger {
    display: none;
    background: none;
    border: 0;
    color: currentColor;
    padding: 8px
}

.nav-burger span {
    display: block;
    width: 23px;
    height: 1px;
    background: currentColor;
    margin: 5px
}

.hero {
    min-height: 760px;
    padding: 180px 0 100px;
    background-image: radial-gradient(circle at 82% 38%, rgba(1, 195, 141, .13), transparent 25%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 70px;
    align-items: center
}

.hero-title {
    font-size: clamp(52px, 7.5vw, 110px);
    letter-spacing: -.075em;
    line-height: .98;
    margin: 0 0 36px;
    font-weight: 500
}

.hero-title em,
.page-hero h1 em,
h2 em {
    font-style: normal;
    color: var(--gray)
}

.hero-lead {
    max-width: 470px;
    color: #aab0b8;
    font-size: 18px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 40px
}

.btn {
    display: inline-flex;
    gap: 22px;
    align-items: center;
    padding: 15px 20px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    transition: .3s
}

.btn svg,
.text-link svg {
    width: 16px;
    height: 16px;
    transition: transform .3s
}

.btn:hover svg,
.text-link:hover svg {
    transform: translateX(5px)
}

.btn-light {
    background: var(--white);
    color: var(--black)
}

.btn-light:hover {
    background: var(--teal);
    color: var(--white)
}

.btn-dark {
    background: var(--black);
    color: var(--white)
}

.btn-dark:hover {
    background: var(--teal);
    color: var(--black)
}

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700
}

.text-link-light {
    color: var(--white)
}

.hero-metrics {
    display: flex;
    gap: 40px;
    margin-top: 100px;
    color: var(--gray);
    font-size: 11px
}

.hero-metrics strong {
    color: var(--teal);
    margin-right: 8px
}

.hero-visual {
    height: 500px;
    position: relative;
    isolation: isolate
}

.hero-image-shell {
    position: absolute;
    inset: 0 0 0 26px;
    overflow: hidden;
    background: #10243a
}

.hero-image-shell:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 19, 32, .3), transparent 45%, rgba(8, 19, 32, .5))
}

.hero-image-shell img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 62% center
}

.visual-meta {
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 52px);
    left: 52px;
    top: 22px;
    z-index: 1;
    font-size: 9px;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .75)
}

.hero-service-card {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 32px;
    width: min(285px, 68%);
    padding: 23px 24px;
    background: rgba(19, 45, 70, .94);
    border-left: 2px solid var(--teal);
    box-shadow: 18px 18px 45px rgba(0, 0, 0, .25)
}

.hero-service-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--teal);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em
}

.hero-service-card strong {
    display: block;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -.03em
}

.hero-service-card i {
    position: absolute;
    right: 20px;
    bottom: 19px;
    color: var(--teal);
    font-style: normal
}

.hero-trust-note {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -29px;
    color: #aab0b8;
    font-size: 10px;
    letter-spacing: .03em
}

.hero-trust-note span {
    display: inline-block;
    width: 25px;
    height: 1px;
    margin: 0 8px 3px 0;
    background: var(--teal)
}

.section-heading {
    max-width: 680px;
    margin-bottom: 70px
}

.section-heading h2,
.statement-grid h2,
.cta-inner h2 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.04;
    letter-spacing: -.065em;
    font-weight: 500;
    margin: 0 0 25px
}

.section-heading>p:last-child {
    max-width: 460px;
    color: var(--gray)
}

.service-list {
    border-top: 1px solid var(--line);
    margin-bottom: 35px
}

.service-row {
    display: grid;
    grid-template-columns: 70px 1fr 40px;
    gap: 25px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 25px 14px;
    transition: .35s
}

.service-row:hover {
    zoom: 1.01;
    transform: scale(1.01);
    padding-inline: 25px
}

.service-number {
    font-size: 11px;
    color: var(--gold)
}

.service-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px
}

.service-main strong {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -.04em
}

.service-main small {
    max-width: 380px;
    color: var(--gray)
}

.row-arrow {
    font-size: 24px;
    transition: transform .3s
}

.service-row:hover .row-arrow,
.calculator-link:hover b,
.guide-row:hover b {
    transform: translate(5px, -5px)
}

.statement-section {
    padding: 150px 0
}

.statement-grid {
    display: grid;
    grid-template-columns: 2fr 7fr 3fr;
    gap: 40px
}

.statement-grid h2 {
    grid-column: 2;
    margin-top: 0
}

.statement-copy {
    grid-column: 3;
    color: #aab0b8;
    padding-top: 25px
}

.statement-copy p {
    margin: 0 0 35px
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}

.trust-item {
    border-top: 1px solid rgba(105, 110, 121, .25);
    padding-top: 18px
}

.trust-item span {
    font-size: 12px;
    color: var(--gold)
}

.trust-item h3 {
    font-size: 19px;
    font-weight: 500;
    margin: 70px 0 15px;
    letter-spacing: -.03em
}

.trust-item p {
    color: var(--gray);
    font-size: 13px
}

.section-heading-light>p:last-child {
    color: #aab0b8
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px
}

.dash-card {
    background: var(--soft);
    border: 1px solid rgba(105, 110, 121, .28);
    padding: 25px;
    min-height: 150px
}

.dash-card small,
.calculator-result small,
.calculator-form label {
    font-size: 10px;
    letter-spacing: .12em;
    color: var(--gray)
}

.dash-value {
    grid-column: span 4
}

.dash-value strong {
    display: block;
    font-size: 34px;
    font-weight: 500;
    margin: 35px 0 8px;
    letter-spacing: -.05em
}

.dash-allocation {
    grid-column: span 4
}

.allocation-bar {
    display: flex;
    height: 5px;
    margin: 42px 0 15px
}

.allocation-bar i:nth-child(1) {
    background: var(--gold);
    width: 48%
}

.allocation-bar i:nth-child(2) {
    background: #696e79;
    width: 32%
}

.allocation-bar i:nth-child(3) {
    background: rgba(105, 110, 121, .55);
    width: 20%
}

.allocation-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #aab0b8
}

.allocation-labels b {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-top: 5px
}

.dash-chart {
    grid-column: span 8
}

.dash-chart svg {
    width: 100%;
    height: 140px;
    margin-top: 28px
}

.dash-chart path,
.calculator-chart path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2
}

.chart-scale {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 9px
}

.dash-risk {
    grid-column: span 4
}

.dash-risk strong {
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-top: 38px
}

.dash-risk span {
    font-size: 11px;
    color: var(--gray)
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 35px
}

.insight-card {
    min-height: 270px;
    border-top: 1px solid var(--line);
    padding: 20px 15px;
    position: relative;
    transition: .3s
}

.insight-card:hover {
    background: var(--off)
}

.insight-card small,
.archive-story small {
    font-size: 10px;
    letter-spacing: .12em;
    color: var(--gray)
}

.insight-card small span,
.archive-story small span {
    float: right
}

.insight-card h3 {
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.05em;
    font-weight: 500;
    margin: 65px 0 15px
}

.insight-card p {
    font-size: 13px;
    color: var(--gray);
    max-width: 320px
}

.insight-card .row-arrow {
    position: absolute;
    right: 15px;
    bottom: 17px
}

.insight-featured {
    grid-column: span 2;
    background: var(--black);
    color: var(--white);
    padding: 25px
}

.insight-featured:hover {
    background: var(--soft)
}

.insight-featured h3 {
    font-size: 44px
}

.cta-section {
    padding: 130px 0;
    position: relative;
    overflow: hidden
}

.cta-section:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(105, 110, 121, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(105, 110, 121, .1) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .6
}

.cta-inner {
    position: relative
}

.cta-inner h2 {
    max-width: 830px
}

.cta-inner p:not(.eyebrow) {
    color: #aab0b8;
    max-width: 390px;
    margin: 0 0 35px
}

.cta-compact {
    padding: 100px 0
}

.page-hero {
    padding: 180px 0 105px
}

.page-hero-inner {
    max-width: 880px
}

.page-hero h1 {
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1;
    letter-spacing: -.075em;
    font-weight: 500;
    margin: 0 0 30px
}

.page-hero-inner>p:last-child {
    color: #aab0b8;
    font-size: 18px;
    max-width: 570px
}

.editorial-two-col,
.contact-grid {
    display: grid;
    grid-template-columns: 5fr 5fr;
    gap: 100px
}

.editorial-two-col h2,
.contact-grid h2 {
    font-size: clamp(40px, 5vw, 67px);
    line-height: 1.04;
    letter-spacing: -.06em;
    font-weight: 500;
    margin: 0
}

.prose {
    max-width: 600px;
    color: #8f98a3
}

.prose p {
    margin: 0 0 24px
}

.calculator-links,
.guide-list,
.insight-archive {
    max-width: 1050px
}

.calculator-link,
.guide-row {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    gap: 25px;
    border-top: 1px solid var(--line);
    padding: 30px 0
}

.calculator-link:last-child,
.guide-row:last-child {
    border-bottom: 1px solid var(--line)
}

.calculator-link>span,
.guide-row>span {
    font-size: 12px;
    color: var(--teal)
}

.calculator-link h3,
.guide-row h3 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -.05em;
    margin: 0
}

.calculator-link p {
    color: var(--gray);
    margin: 5px 0 0
}

.calculator-link b,
.guide-row b {
    font-size: 24px;
    font-weight: 400;
    transition: .3s
}

.calculator-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    max-width: 1100px
}

.calculator-form,
.calculator-result {
    padding: 55px
}

.calculator-form {
    border-right: 1px solid var(--line)
}

.calculator-form h2 {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -.06em;
    margin: 0 0 55px
}

.calculator-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    padding: 17px 0;
    color: var(--gray)
}

.calculator-form input:not(.range-input) {
    margin-left: auto;
    border: 0;
    background: none;
    color: var(--black);
    width: 150px;
    text-align: right;
    outline: 0
}

.range-input {
    width: 100%;
    margin: 42px 0
}

.calculator-result {
    background: var(--black);
    color: var(--white)
}

.calculator-result>strong {
    display: block;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -.07em;
    margin: 60px 0 50px
}

.result-line {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(105, 110, 121, .28);
    padding-top: 18px;
    color: var(--gray);
    font-size: 11px
}

.result-line b {
    display: block;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    margin-top: 5px
}

.calculator-chart {
    width: 100%;
    height: 180px;
    margin-top: 55px
}

.archive-story {
    display: block;
    border-top: 1px solid var(--line);
    padding: 28px 15px 38px;
    transition: .3s
}

.archive-story:hover {
    background: var(--off)
}

.archive-story-featured {
    background: var(--black);
    color: var(--white);
    padding: 40px
}

.archive-story h2 {
    font-size: 40px;
    letter-spacing: -.06em;
    line-height: 1.08;
    font-weight: 500;
    max-width: 750px;
    margin: 45px 0 18px
}

.archive-story p {
    max-width: 600px;
    color: var(--gray)
}

.archive-story b {
    font-size: 11px
}

.article-body {
    max-width: 850px
}

.contact-details {
    margin-top: 70px;
    color: var(--gray)
}

.contact-details p {
    display: flex;
    gap: 12px;
    align-items: center
}

.ui-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle
}

.contact-form {
    border-top: 1px solid var(--line)
}

.contact-form label {
    display: block;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    color: var(--gray);
    font-size: 12px
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    border: 0;
    background: none;
    outline: 0;
    padding: 10px 0;
    color: var(--black);
    resize: vertical
}

.contact-form button {
    margin-top: 30px
}

.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 85px 0 25px
}

.footer-top {
    display: flex;
    justify-content: space-between;
    min-height: 220px
}

.footer-wordmark {
    font-size: 100px;
    line-height: .8;
    letter-spacing: -.1em;
    font-weight: 500
}

.footer-top p {
    color: var(--gray);
    font-size: 12px
}

.footer-links {
    display: flex;
    gap: 100px
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links small {
    color: var(--gray);
    font-size: 10px;
    letter-spacing: .14em;
    margin-bottom: 12px
}

.footer-links a {
    font-size: 13px;
    color: #e8eaee
}

.footer-bottom {
    border-top: 1px solid rgba(105, 110, 121, .28);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 10px;
    letter-spacing: .04em
}

@media(max-width:900px) {
    .container {
        width: min(calc(100% - 40px), var(--max))
    }

    .site-header {
        height: 76px
    }

    .site-nav {
        display: none
    }

    .header-cta {
        display: inline-flex;
        margin-left: auto;
        padding: 10px 12px;
        animation: none
    }

    .nav-burger {
        display: block;
        margin-left: 0
    }

    .site-nav.is-open {
        display: flex;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--black);
        padding: 25px 20px;
        flex-direction: column;
        gap: 20px
    }

    .site-header.is-scrolled .site-nav.is-open {
        background: var(--black)
    }

    .hero {
        min-height: auto;
        padding: 145px 0 85px
    }

    .hero-grid,
    .editorial-two-col,
    .contact-grid,
    .calculator-shell {
        grid-template-columns: 1fr
    }

    .hero-visual {
        height: 440px;
        margin-top: 48px
    }

    .statement-grid {
        grid-template-columns: 1fr
    }

    .statement-grid h2,
    .statement-copy {
        grid-column: auto
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }

    .dashboard-grid {
        grid-template-columns: 1fr 1fr
    }

    .dash-value,
    .dash-allocation,
    .dash-chart,
    .dash-risk {
        grid-column: auto
    }

    .insight-grid {
        grid-template-columns: 1fr
    }

    .insight-featured {
        grid-column: auto
    }

    .calculator-form {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .footer-top {
        display: block
    }

    .footer-links {
        margin-top: 70px;
        gap: 60px
    }

    .section {
        padding: 88px 0
    }

    .hero-title {
        font-size: clamp(48px, 12vw, 78px)
    }

    .service-main {
        display: block
    }

    .service-main small {
        display: block;
        margin-top: 7px
    }

    .calculator-form,
    .calculator-result {
        padding: 35px 25px
    }
}

@media(max-width:560px) {
    .header-inner {
        gap: 8px
    }

    .brand-logo {
        width: 82px
    }

    .nav-burger {
        padding: 210px;
    }

    .hero-metrics {
        display: block;
        margin-top: 65px
    }

    .hero-metrics span {
        display: block;
        margin-bottom: 12px
    }

    .trust-grid,
    .dashboard-grid {
        grid-template-columns: 1fr
    }

    .service-row {
        grid-template-columns: 35px 1fr 25px;
        gap: 10px;
        padding: 22px 0
    }

    .service-main strong {
        font-size: 19px
    }

    .statement-section {
        padding: 95px 0
    }

    .footer-wordmark {
        font-size: 76px
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-top: 8px
    }

    .page-hero {
        padding: 145px 0 75px
    }

    .page-hero h1 {
        font-size: 54px
    }

    .archive-story-featured {
        padding: 25px 15px
    }

    .archive-story h2,
    .archive-story-featured h2 {
        font-size: 31px
    }

    .calculator-result>strong {
        font-size: 38px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px
    }

    .header-cta {
        padding: 8px 9px
    }

    .header-cta {
        flex: 0 1 auto;
        min-width: 0;
        padding: 8px 7px;
        font-size: 10px
    }

    .header-cta span {
        margin-left: 4px;
        font-size: 12px
    }

    .hero-visual {
        height: 355px
    }

    .hero-image-shell {
        left: 14px
    }

    .visual-meta {
        width: calc(100% - 36px);
        left: 28px;
        font-size: 7px
    }

    .hero-service-card {
        bottom: 18px;
        width: min(250px, 78%);
        padding: 17px 18px
    }

    .hero-service-card strong {
        font-size: 16px
    }

    .hero-trust-note {
        bottom: -25px;
        font-size: 8px
    }
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line)
}

.solution-item {
    padding: 25px 18px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: .3s
}

.solution-item:last-child {
    border-right: 0
}

.solution-item:hover {
    background: var(--daam);
    transform: translateY(-4px)
}

.solution-item span {
    font-size: 11px;
    color: var(--teal)
}

.solution-item h3 {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -.04em;
    margin: 60px 0 15px
}

.solution-item p {
    font-size: 13px;
    color: var(--gray);
    min-height: 80px
}

.solution-item b {
    font-size: 11px;
    color: var(--teal)
}

.locations-section {
    border-top: 1px solid var(--line)
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px
}

.location-grid h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -.06em;
    font-weight: 500;
    margin: 0 0 22px
}

.location-grid>div>p:last-child {
    color: var(--gray)
}

.location-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.location-list>div {
    border-top: 1px solid rgba(105, 110, 121, .25);
    padding-top: 18px
}

.location-list span {
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--teal);
    font-weight: 700
}

.location-list p {
    font-size: 13px;
    color: var(--gray)
}

.consent {
    display: flex !important;
    gap: 10px;
    align-items: flex-start
}

.consent input {
    width: auto !important;
    margin: 3px 0 !important
}

@media(max-width:900px) {
    .solution-grid {
        grid-template-columns: 1fr 1fr
    }

    .solution-item:nth-child(2) {
        border-right: 0
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }
}

@media(max-width:560px) {

    .solution-grid,
    .location-list {
        grid-template-columns: 1fr
    }

    .solution-item {
        border-right: 0
    }

    .solution-item h3 {
        margin-top: 35px
    }

    .solution-item p {
        min-height: 0
    }

    .location-list {
        gap: 30px
    }
}

.calculator-disclaimer {
    font-size: 11px;
    line-height: 1.6;
    color: var(--gray);
    max-width: 620px;
    margin: 28px 0
}

.calculator-result .calculator-disclaimer {
    color: #aab0b8
}

.calculator-result .text-link {
    margin-top: 18px
}

/* Calculator library and accessible input controls */
.calculator-library-tools {
    display: grid;
    gap: 20px;
    margin: 0 0 52px;
}

.calculator-search {
    display: flex;
    align-items: center;
    max-width: 600px;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 0 16px;
    background: #fff;
}

.calculator-search input {
    width: 100%;
    min-height: 52px;
    border: 0;
    outline: 0;
    color: var(--black);
    background: transparent;
}

.calculator-search span[aria-hidden="true"] {
    font-size: 25px;
    color: var(--gray);
}

.calculator-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.calculator-filters button {
    border: 1px solid var(--line);
    border-radius: 99px;
    background: transparent;
    color: var(--black);
    padding: 9px 16px;
    cursor: pointer;
}

.calculator-filters button:hover,
.calculator-filters button.is-active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.calculator-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 42px;
}

.calculator-link[hidden] {
    display: none !important;
}

.calculator-empty {
    padding: 22px 0;
    color: var(--gray);
}

.calculator-detail-layout {
    max-width: 1120px;
}

.calculator-back {
    display: inline-flex;
    margin: 0 0 22px;
    color: var(--gray);
}

.calculator-shell {
    max-width: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 42px rgba(19, 45, 70, .08);
}

.calculator-form,
.calculator-result {
    padding: clamp(26px, 4vw, 54px);
}

.calculator-form h2 {
    margin-bottom: 22px;
}

.calc-field {
    display: grid;
    grid-template-columns: 1fr minmax(130px, 190px);
    align-items: center;
    gap: 8px 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--black);
}

.calc-input-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 0 11px;
    color: var(--gray);
    background: #fff;
}

.calc-input-wrap input {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    border: 0 !important;
    margin: 0 !important;
    color: var(--black) !important;
    text-align: right;
    outline: 0;
    background: transparent !important;
}

.range-input {
    grid-column: 1 / -1;
    width: 100%;
    accent-color: var(--teal);
}

.calculator-form .btn {
    margin-top: 26px;
}

.calculator-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-result>strong {
    margin: 20px 0 24px;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.result-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    align-items: baseline;
}

.result-line span {
    color: #aab0b8;
}

.result-line b {
    justify-self: end;
}

.calculator-result-note {
    margin: 8px 0 0;
    color: #d8dde0;
    font-size: 14px;
}

.calculator-chart [data-calc-area] {
    fill: rgba(1, 195, 141, .17);
    stroke: none;
}

.calculator-chart [data-calc-path] {
    fill: none;
    stroke: var(--teal);
    stroke-width: 3;
}

.calculator-related {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 36px 0 0;
}

.calculator-related h2 {
    margin: 0;
    font-size: 22px;
}

.calculator-related a {
    color: var(--dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero-banner-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.hero-banner-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hero-image-caption {
    position: absolute;
    left: 7%;
    bottom: 7%;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.hero-image-caption span {
    display: block;
    margin-bottom: 9px;
    color: #b9e3d6;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}

.hero-image-caption strong {
    font-size: clamp(19px, 2.1vw, 28px);
    line-height: 1.2;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Single page launch / website in progress */
body.page-home {
    background: #f5f5f2;
}

body.page-home .site-header {
    background: rgba(19, 45, 70, .92);
    backdrop-filter: blur(14px);
}

body.page-home .site-header.is-scrolled {
    background: rgba(19, 45, 70, .97);
}

.wip-hero {
    position: relative;
    min-height: 690px;
    padding: 174px 0 70px;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(ellipse at 82% 45%, rgba(1, 195, 141, .18), transparent 34%), linear-gradient(115deg, #10283f, #132d46 60%, #183c50);
}

.wip-hero-inner {
    position: relative;
    z-index: 2;
}

.wip-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 37px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 99px;
    color: #e2eae8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.wip-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #01c38d;
    box-shadow: 0 0 0 5px rgba(1, 195, 141, .15);
}

.wip-hero .eyebrow {
    color: #b9c8cf;
    margin-bottom: 15px;
}

.wip-hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(56px, 8vw, 108px);
    line-height: .99;
    letter-spacing: -.075em;
}

.wip-hero h1 em,
.wip-section-heading h2 em,
.wip-contact h2 em {
    color: #01c38d;
    font-style: normal;
}

.wip-intro {
    max-width: 510px;
    margin: 27px 0 0;
    color: #c3cdd2;
    font-size: 17px;
}

.wip-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 32px;
}

.wip-actions .btn {
    min-height: 54px;
}

.wip-secondary-link {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.wip-secondary-link span {
    margin-left: 9px;
    color: #01c38d;
}

.wip-hero-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 72px;
    color: #aabac2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
}

.wip-hero-note i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #01c38d;
}

.wip-hero-mark {
    position: absolute;
    right: 2%;
    bottom: -110px;
    color: rgba(255, 255, 255, .025);
    font-size: clamp(220px, 38vw, 560px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.1em;
    pointer-events: none;
}

.wip-services {
    padding: 108px 0 120px;
    background: #f5f5f2;
}

.wip-section-heading {
    max-width: 680px;
    margin-bottom: 47px;
}

.wip-section-heading .eyebrow,
.wip-contact .eyebrow {
    color: #68737a;
    margin-bottom: 15px;
}

.wip-section-heading h2,
.wip-contact h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.07;
    letter-spacing: -.065em;
}

.wip-section-heading p:last-child {
    max-width: 450px;
    margin: 18px 0 0;
    color: #68737a;
}

.wip-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #d9ddda;
    border-left: 1px solid #d9ddda;
}

.wip-service-card {
    min-height: 208px;
    padding: 23px 22px 25px;
    border-right: 1px solid #d9ddda;
    border-bottom: 1px solid #d9ddda;
    transition: background .2s, transform .2s;
}

.wip-service-card:hover {
    position: relative;
    z-index: 1;
    background: #fff;
    transform: translateY(-3px);
}

.wip-service-number {
    color: #009e73;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}

.wip-service-card h3 {
    margin: 26px 0 8px;
    font-size: 18px;
    letter-spacing: -.03em;
}

.wip-service-card p {
    margin: 0;
    color: #68737a;
    font-size: 13px;
    line-height: 1.7;
}

.wip-contact {
    padding: 100px 0;
    color: #fff;
    background: #132d46;
}

.wip-contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}

.wip-contact .eyebrow {
    color: #aabac2;
}

.wip-contact-copy>p:not(.eyebrow) {
    max-width: 370px;
    color: #b8c4ca;
}

.wip-contact-phone,
.wip-contact-email {
    display: block;
    width: fit-content;
}

.wip-contact-phone {
    margin-top: 28px;
    color: #01c38d;
    font-size: 25px;
    font-weight: 700;
}

.wip-contact-phone span,
.wip-office a span {
    margin-left: 8px;
    font-size: 15px;
}

.wip-contact-email {
    margin-top: 5px;
    color: #d4dde0;
    font-size: 14px;
}

.wip-offices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-content: center;
}

.wip-office {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.wip-office-label {
    color: #01c38d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.wip-office p {
    min-height: 85px;
    margin: 16px 0;
    color: #d4dde0;
    font-size: 14px;
    line-height: 1.8;
}

.wip-office a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.wip-footer {
    padding: 24px 0;
    color: #aabac2;
    background: #0e2438;
}

.wip-footer-inner {
    display: flex;
    align-items: center;
    gap: 22px;
}

.wip-footer-brand {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.06em;
}

.wip-footer p {
    flex: 1;
    margin: 0;
    font-size: 12px;
}

.wip-footer-inner>span {
    font-size: 11px;
}

@media (max-width: 900px) {
    .wip-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wip-contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 600px) {
    .wip-hero {
        min-height: 650px;
        padding-top: 145px;
    }

    .wip-kicker {
        margin-bottom: 28px;
    }

    .wip-intro {
        font-size: 15px;
    }

    .wip-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .wip-hero-note {
        gap: 9px;
        margin-top: 56px;
        font-size: 8px;
    }

    .wip-services,
    .wip-contact {
        padding: 72px 0;
    }

    .wip-service-card {
        min-height: 195px;
        padding: 18px 14px;
    }

    .wip-service-card h3 {
        margin-top: 20px;
        font-size: 16px;
    }

    .wip-service-card p {
        font-size: 12px;
    }

    .wip-offices {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wip-office p {
        min-height: 0;
    }

    .wip-footer-inner {
        flex-wrap: wrap;
        gap: 5px 15px;
    }

    .wip-footer p {
        flex-basis: calc(100% - 60px);
    }

    .wip-footer-inner>span {
        width: 100%;
        margin-top: 8px;
    }
}

@media(max-width: 760px) {
    .calculator-card-grid {
        grid-template-columns: 1fr;
    }

    .calculator-library-tools {
        margin-bottom: 36px;
    }

    .calculator-shell {
        grid-template-columns: 1fr;
    }

    .calculator-form {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .calc-field {
        grid-template-columns: 1fr minmax(120px, 170px);
    }

    .calculator-result>strong {
        font-size: clamp(32px, 9vw, 46px);
    }
}

@media(max-width: 480px) {
    .calc-field {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .calc-input-wrap {
        width: 100%;
    }

    .calculator-related {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-banner-image img {
        min-height: 320px;
    }
}

.brand-logo {
    display: block;
    width: 138px;
    height: 200px;
    object-fit: contain;
    object-position: center;
    /* background: var(--white); */
    padding: 5px 9px;
    /* border-radius: 3px */
}

.site-header.is-scrolled .brand-logo {
    width: 112px;
    height: 42px;
    padding: 4px 7px
}

.brand-wordmark {
    display: block
}

.brand-caption {
    display: block
}

@media(max-width:560px) {
    .brand-logo {
        width: 82px;
        height: 44px
    }

    .site-header.is-scrolled .brand-logo {
        width: 100px;
        height: 38px
    }
}

.brand-logo-primary {
    display: block
}

.brand-logo-compact,
.brand-fallback {
    display: none
}

.site-header.is-scrolled .brand-logo-primary {
    display: none
}

.site-header.is-scrolled .brand-logo-compact {
    display: block;
    background: transparent;
    padding: 0;
    object-fit: contain
}

.site-header.is-scrolled .brand-logo {
    width: 75px;
    height: 40px
}

.brand-logo-compact {
    width: 82px;
    height: 40px;
    background: transparent;
    padding: 0
}

@media(max-width:560px) {
    .site-header.is-scrolled .brand-logo {
        width: 68px;
        height: 36px
    }
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 28px
}

.footer-social small {
    color: var(--gray);
    font-size: 9px;
    letter-spacing: .14em
}

.footer-social a {
    font-size: 12px;
    color: var(--white)
}

.social-strip {
    border-top: 1px solid var(--line)
}

.social-strip-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px
}

.social-strip h2 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -.06em;
    font-weight: 500;
    margin: 0
}

.social-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap
}

.social-actions .btn {
    white-space: nowrap
}

@media(max-width:700px) {
    .social-strip-inner {
        display: block
    }

    .social-actions {
        margin-top: 35px;
        display: grid;
        justify-items: start
    }
}