@font-face {
    font-family: Montserrat;
    src: url('../fonts/montserrat-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Montserrat;
    src: url('../fonts/montserrat-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Montserrat;
    src: url('../fonts/montserrat-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Montserrat;
    src: url('../fonts/montserrat-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Montserrat;
    src: url('../fonts/montserrat-extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap
}

:root {
    --ink: #252526;
    --muted: #68696d;
    --line: #e5e3e1;
    --soft: #f6f5f3;
    --red: #f14949;
    --red-dark: #ae3030;
    --dark: #3f4042;
    --white: #fff;
    --cream: #fcfaf8;
    --radius: 18px;
    --shadow: 0 22px 64px rgba(63,64,66,.12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: Montserrat,Arial,sans-serif
}

    body.menu-open {
        overflow: hidden
    }

img {
    max-width: 100%
}

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

button, input, textarea {
    font: inherit
}

small {
    font-size: .75em
}

.wrap {
    width: min(1180px,calc(100% - 40px));
    margin-inline: auto
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    background: var(--dark);
    color: #fff;
    padding: 12px 16px;
    z-index: 99
}

    .skip-link:focus {
        left: 12px
    }

.site-header {
    height: 78px;
    border-bottom: 1px solid rgba(37,37,38,.06);
    background: rgba(255,255,255,.95);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px)
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px
}

.brand img {
    display: block;
    width: 164px;
    height: auto
}

.desktop-nav {
    display: flex;
    gap: 26px;
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: #5f6063
}

    .desktop-nav a:hover, .desktop-nav a:focus {
        color: var(--red)
    }

.language-nav {
    display: flex;
    gap: 2px
}

    .language-nav a {
        padding: 7px 8px;
        border-radius: 7px;
        font-size: 10px;
        font-weight: 800;
        color: #777
    }

        .language-nav a.active, .language-nav a:hover {
            background: var(--soft);
            color: var(--red)
        }

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 24px;
    padding: 7px;
    cursor: pointer
}

.mobile-menu {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 9px;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s,box-shadow .2s;
    cursor: pointer
}

    .button:hover {
        transform: translateY(-2px)
    }

.button-dark {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 8px 22px rgba(37,37,38,.14)
}

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

.nav-cta {
    padding: 13px 17px
}

.hero {
    padding: 76px 0 88px;
    overflow: hidden
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    color: #b92e2e;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(241,73,73,.11)
}

h1 {
    font-size: clamp(48px,6vw,76px);
    line-height: 1.02;
    letter-spacing: -.055em;
    margin: 0 0 26px;
    font-weight: 800;
    max-width: 700px
}

.marker {
    position: relative;
    z-index: 1;
    white-space: nowrap
}

    .marker:after {
        content: "";
        position: absolute;
        height: 14px;
        left: 0;
        right: -4px;
        bottom: 7px;
        background: var(--red);
        border-radius: 4px;
        transform: rotate(-1deg);
        z-index: -1
    }

.lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 650px;
    margin: 0
}

.actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 32px;
    flex-wrap: wrap
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid #bdbab7;
    padding-bottom: 3px
}

    .text-link:hover {
        color: var(--red);
        border-color: var(--red)
    }

.microcopy {
    font-size: 11px;
    color: #858588;
    margin: 17px 0 0
}

.product-visual {
    position: relative;
    min-height: 500px
}

    .product-visual:before {
        content: "";
        position: absolute;
        inset: 0 -22% -4% 0;
        background: #f4e3df;
        border-radius: 46% 54% 59% 41%/45% 43% 57% 55%;
        transform: rotate(-6deg)
    }

.map-window {
    position: absolute;
    inset: 38px 0 auto;
    background: #fff;
    border: 1px solid #ddd9d6;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(63,64,66,.18);
    transform: rotate(1.2deg)
}

.window-bar {
    height: 54px;
    border-bottom: 1px solid #eeecea;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 17px
}

    .window-bar i {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #d9d6d3
    }

        .window-bar i:first-child {
            background: var(--red)
        }

    .window-bar span {
        font-size: 10px;
        color: #858588;
        margin-left: 7px
    }

.map-canvas {
    height: 385px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg,#f4f1ed,#ece9e4)
}

.road {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd8d2;
    border-radius: 100%;
    transform: rotate(-25deg)
}

.road-one {
    width: 620px;
    height: 72px;
    left: -100px;
    top: 165px
}

.road-two {
    width: 430px;
    height: 46px;
    left: 170px;
    top: 50px;
    transform: rotate(48deg)
}

.river {
    position: absolute;
    width: 80px;
    height: 560px;
    left: 205px;
    top: -100px;
    background: #c9dce2;
    border-radius: 50%;
    transform: rotate(43deg)
}

.catchment {
    position: absolute;
    width: 225px;
    height: 210px;
    left: 125px;
    top: 76px;
    background: rgba(241,73,73,.18);
    border: 2px solid var(--red);
    border-radius: 48% 52% 58% 42%/45% 50% 50% 55%
}

.pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 5px solid #fff;
    background: var(--dark);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,.22)
}

.pin-one {
    left: 218px;
    top: 168px
}

.pin-two {
    right: 83px;
    top: 96px
}

.pin-three {
    left: 73px;
    bottom: 66px;
    background: var(--red)
}

.map-card {
    position: absolute;
    background: #fff;
    border: 1px solid #e5e1de;
    border-radius: 12px;
    padding: 14px 15px;
    box-shadow: 0 12px 30px rgba(63,64,66,.14);
    display: flex;
    flex-direction: column
}

    .map-card small, .map-card span {
        font-size: 9px;
        color: #7b7c7f
    }

    .map-card strong {
        font-size: 22px;
        margin: 4px 0
    }

.households {
    top: 42px;
    left: 18px
}

.potential {
    right: 16px;
    bottom: 22px;
    min-width: 145px
}

.meter {
    height: 6px;
    background: #ece9e6;
    border-radius: 8px;
    margin-top: 8px;
    overflow: hidden
}

    .meter i {
        display: block;
        width: 82%;
        height: 100%;
        background: var(--red)
    }

.proof-strip {
    border-block: 1px solid var(--line);
    background: var(--cream)
}

.proof-inner {
    min-height: 126px;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 52px
}

.proof-label {
    display: flex;
    flex-direction: column;
    gap: 7px
}

    .proof-label span {
        font-size: 10px;
        letter-spacing: .13em;
        font-weight: 800;
        color: #989491
    }

    .proof-label strong {
        font-size: 19px
    }

.proof-inner p {
    margin: 0;
    padding-left: 45px;
    border-left: 1px solid var(--line);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    color: #555659
}

.customer-logos {
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden
}

    .customer-logos[hidden] {
        display: none
    }

.logo-caption {
    text-align: center;
    margin: 0 0 24px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #999
}

.logo-viewport {
    overflow: hidden;
    mask-image: linear-gradient(to right,transparent,#000 8%,#000 92%,transparent)
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    padding: 4px 30px
}

    .logo-track.is-moving {
        animation: logo-scroll var(--carousel-duration,26s) linear infinite
    }

        .logo-track.is-moving:hover {
            animation-play-state: paused
        }

.customer-logo {
    width: 155px;
    height: 55px;
    display: grid;
    place-items: center;
    flex: none
}

    .customer-logo img {
        max-width: 145px;
        max-height: 48px;
        filter: grayscale(1);
        opacity: .66;
        transition: .2s
    }

        .customer-logo img:hover {
            filter: none;
            opacity: 1
        }

@keyframes logo-scroll {
    to {
        transform: translateX(-50%)
    }
}

.section {
    padding: 94px 0
}

.soft {
    background: var(--soft)
}

.section-heading {
    max-width: 720px
}

.centered {
    text-align: center;
    margin: 0 auto 45px
}

    .centered .eyebrow {
        justify-content: center
    }

.section-heading h2, .process-intro h2, .contrast h2, .contact-intro h2 {
    font-size: clamp(34px,4.2vw,52px);
    line-height: 1.1;
    letter-spacing: -.045em;
    margin: 0 0 22px
}

.section-heading > p:last-child, .process-intro > p, .contrast-lead, .contact-intro > p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    margin: 0
}

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

.decision-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 29px;
    position: relative
}

    .decision-card.featured {
        border-top: 4px solid var(--red);
        padding-top: 26px;
        box-shadow: 0 18px 50px rgba(63,64,66,.09)
    }

.icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: #fae7e7;
    color: #ba3030;
    display: inline-grid;
    place-items: center;
    font-size: 20px;
    font-weight: 700
}

.card-number {
    position: absolute;
    top: 32px;
    right: 28px;
    color: #bbb7b3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em
}

.decision-card h3, .benefit-grid h3, .audience-list h3 {
    font-size: 19px;
    line-height: 1.3;
    margin: 25px 0 12px
}

.decision-card p, .benefit-grid p, .audience-list p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0
}

.decision-card ul {
    list-style: none;
    padding: 20px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 10px
}

.decision-card li {
    font-size: 11px;
    font-weight: 600
}

    .decision-card li:before {
        content: "✓";
        color: var(--red);
        margin-right: 8px
    }

.process-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 90px;
    align-items: center
}

.process-intro .text-link {
    margin-top: 28px
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 13px
}

    .steps li {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 19px;
        padding: 23px;
        border: 1px solid var(--line);
        border-radius: 14px
    }

        .steps li > span {
            width: 52px;
            height: 52px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--dark);
            color: #fff;
            font-weight: 800
        }

    .steps h3 {
        font-size: 16px;
        margin: 2px 0 7px
    }

    .steps p {
        font-size: 13px;
        line-height: 1.6;
        color: var(--muted);
        margin: 0
    }

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

.contrast-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center
}

.eyebrow-light {
    color: #ff8d8d
}

.contrast-lead {
    color: #c9c9ca
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

    .benefit-grid article {
        padding: 25px;
        border-radius: 14px;
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.1)
    }

    .benefit-grid .icon {
        background: rgba(241,73,73,.16);
        color: #ff8989
    }

    .benefit-grid h3 {
        font-size: 15px;
        margin: 18px 0 8px
    }

    .benefit-grid p {
        font-size: 12px;
        color: #c9c9ca
    }

.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center
}

.data-panel {
    background: var(--soft);
    padding: 42px;
    border-radius: 18px;
    border: 1px solid var(--line)
}

.panel-kicker {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    color: #a12f2f;
    margin: 0 0 18px
}

.data-panel h3 {
    font-size: 27px;
    line-height: 1.35;
    margin: 0 0 28px
}

.data-tags {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

    .data-tags span {
        padding: 10px 12px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 99px;
        font-size: 11px;
        font-weight: 600
    }

.audience {
    background: #f8e9e6
}

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

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

.audience.dark .section-heading > p:last-of-type, .audience.dark .audience-list p {
    color: #c9c9ca
}

.audience-list {
    display: grid
}

    .audience-list article {
        display: grid;
        grid-template-columns: 45px 1fr;
        gap: 20px;
        padding: 23px 0;
        border-bottom: 1px solid rgba(63,64,66,.16)
    }

.audience.dark .audience-list article {
    border-color: rgba(255,255,255,.14)
}

.audience-list article:first-child {
    padding-top: 0
}

.audience-list > article > span {
    font-size: 11px;
    color: #a93b3b;
    font-weight: 800
}

.audience.dark .audience-list > article > span {
    color: #ff8d8d
}

.audience-list h3 {
    font-size: 17px;
    margin: 0 0 7px
}

.audience-link {
    margin-top: 28px
}

.audience.dark .audience-link {
    color: #fff;
    border-color: #777
}

.audience-more {
    justify-self: end;
    margin-top: 24px;
}

.case-section {
    padding-top: 78px
}

.case-card {
    background: var(--dark);
    color: #fff;
    border-radius: 22px;
    padding: 52px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 55px
}

.case-meta {
    display: flex;
    flex-direction: column
}

    .case-meta strong {
        font-size: 21px;
        margin-bottom: 8px
    }

    .case-meta > span {
        font-size: 11px;
        line-height: 1.6;
        color: #bfc0c1
    }

.case-card blockquote {
    font-size: 20px;
    line-height: 1.65;
    font-weight: 600;
    margin: 0;
    padding-left: 45px;
    border-left: 1px solid rgba(255,255,255,.2)
}

.pricing {
    background: var(--soft)
}

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

.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow)
}

.price-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

    .price-row:first-child {
        padding-top: 0
    }

    .price-row strong {
        font-size: 39px;
        letter-spacing: -.04em
    }

    .price-row span {
        font-size: 12px;
        color: var(--muted);
        padding-bottom: 7px
    }

.price-note {
    font-size: 11px;
    line-height: 1.6;
    color: var(--muted);
    margin: 18px 0 0
}

.enterprise {
    margin-top: 20px;
    padding: 18px;
    border-radius: 12px;
    background: var(--soft)
}

    .enterprise strong {
        display: block;
        font-size: 15px;
        margin-bottom: 5px
    }

    .enterprise span {
        font-size: 12px;
        color: var(--muted)
    }

.cta-section {
    padding: clamp(64px, 8vw, 94px) 0 94px;
}

.contact-box {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 55px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 62px
}

.contact-intro .eyebrow {
    font-size: 11px;
    margin-bottom: 15px
}

.contact-intro > p {
    font-size: 15px
}

.contact-details {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px
}

    .contact-details a {
        color: #b92e2e;
        font-weight: 700
    }

.contact-form {
    display: grid;
    gap: 19px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px
}

.field {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 700
}

    .field small {
        font-weight: 500;
        color: var(--muted)
    }

    .field input, .field textarea {
        width: 100%;
        border: 1px solid #d8d4d0;
        background: #fff;
        border-radius: 9px;
        padding: 13px 14px;
        font-size: 14px;
        color: var(--ink);
        outline: none;
        transition: .2s
    }

    .field textarea {
        resize: vertical;
        min-height: 130px
    }

        .field input:focus, .field textarea:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(241,73,73,.1)
        }

.privacy-check {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 11px;
    line-height: 1.55;
    color: var(--muted)
}

    .privacy-check input {
        margin: 2px 0 0;
        accent-color: var(--red)
    }

    .privacy-check a {
        text-decoration: underline
    }

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important
}

.form-submit {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap
}

.contact-form button:disabled {
    opacity: .65;
    cursor: wait;
    transform: none
}

.form-status {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    max-width: 330px
}

    .form-status.success {
        color: #287a45
    }

    .form-status.error {
        color: #a12f2f
    }

footer {
    border-top: 1px solid var(--line);
    padding: 31px 0 42px;
    color: #858588;
    font-size: 11px
}

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

    .footer-inner .brand img {
        width: 140px
    }

.footer-links {
    display: flex;
    gap: 19px;
    flex-wrap: wrap
}

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

@media(max-width:980px) {
    .desktop-nav {
        display: none
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .nav-cta {
        display: none
    }

    .mobile-menu {
        position: fixed;
        inset: 78px 0 auto;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 24px 20px;
        display: none;
        box-shadow: 0 20px 30px rgba(0,0,0,.08)
    }

        .mobile-menu.open {
            display: grid;
            gap: 18px
        }

    .hero-grid, .process-grid, .contrast-grid, .data-grid, .audience-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .product-visual {
        min-height: 450px
    }

    .proof-inner {
        grid-template-columns: 220px 1fr
    }

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

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

        .case-card blockquote {
            padding: 25px 0 0;
            border-left: 0;
            border-top: 1px solid rgba(255,255,255,.2)
        }

    .contact-box {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .section {
        padding: 76px 0
    }
}

@media(max-width:620px) {
    .wrap {
        width: min(100% - 28px,1180px)
    }

    .site-header {
        height: 68px
    }

    .brand img {
        width: 138px
    }

    .mobile-menu {
        inset: 68px 0 auto
    }

    .language-nav {
        margin-left: auto
    }

    .hero {
        padding: 48px 0 62px
    }

    .hero-grid {
        gap: 24px
    }

    h1 {
        font-size: 48px
    }

    .lead {
        font-size: 16px
    }

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

    .map-window {
        inset: 25px -18px auto 0
    }

    .map-canvas {
        height: 305px
    }

    .proof-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 0
    }

        .proof-inner p {
            padding: 18px 0 0;
            border-left: 0;
            border-top: 1px solid var(--line);
            font-size: 13px
        }

    .section {
        padding: 63px 0
    }

    .section-heading h2, .process-intro h2, .contrast h2, .contact-intro h2 {
        font-size: 35px
    }

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

    .data-panel {
        padding: 28px
    }

    .audience-grid {
        gap: 40px
    }

    .case-card {
        padding: 31px 25px;
        border-radius: 16px
    }

        .case-card blockquote {
            font-size: 16px
        }

    .price-card {
        padding: 29px 24px
    }

    .price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0
    }

        .price-row span {
            padding-bottom: 0
        }

    .cta-section {
        padding-bottom: 63px
    }

    .contact-box {
        padding: 34px 25px;
        gap: 36px
    }

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

    .footer-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .marker:after {
        height: 10px
    }

    .households {
        left: 5px
    }

    .potential {
        right: 5px
    }

    .catchment {
        left: 92px
    }

    .river {
        left: 165px
    }

    .logo-track {
        gap: 38px
    }

    .customer-logo {
        width: 125px
    }
}

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

    .logo-track.is-moving {
        animation: none
    }

    .button {
        transition: none
    }
}

/* Over Mapalize
   ========================================================= */

.about-section {
    padding: 110px 0;
    background: var(--soft);
    scroll-margin-top: 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 90px;
    align-items: start;
}

.about-heading {
    position: sticky;
    top: 110px;
}

    .about-heading h2 {
        max-width: 520px;
        margin: 16px 0 0;
        font-size: clamp(38px, 4.5vw, 58px);
        line-height: 1.08;
        letter-spacing: -.045em;
    }

.about-content {
    color: #55565a;
}

    .about-content p {
        margin: 0 0 24px;
        font-size: 15px;
        line-height: 1.8;
    }

    .about-content .about-lead {
        color: var(--dark);
        font-size: 18px;
        line-height: 1.75;
    }

.about-experience {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 38px 0;
}

.about-experience-item {
    min-height: 150px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
}

    .about-experience-item strong {
        color: var(--red);
        font-size: 32px;
        line-height: 1;
        letter-spacing: -.035em;
    }

    .about-experience-item span {
        max-width: 180px;
        color: var(--dark);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.45;
    }

@media (max-width: 900px) {
    .about-section {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-heading {
        position: static;
    }

        .about-heading h2 {
            max-width: 680px;
        }
}

@media (max-width: 600px) {
    .about-section {
        padding: 65px 0;
    }

    .about-heading h2 {
        font-size: 38px;
    }

    .about-content .about-lead {
        font-size: 16px;
    }

    .about-experience {
        grid-template-columns: 1fr;
        margin: 30px 0;
    }

    .about-experience-item {
        min-height: 125px;
    }
}