@font-face {
    font-family: 'Geologica';
    src: url('/assets/fonts/geologica-cyrillic.woff2') format('woff2');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Geologica';
    src: url('/assets/fonts/geologica-latin.woff2') format('woff2');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --background: #fafaf8;
    --surface: #ffffff;
    --text: #171717;
    --muted: #6b6b68;
    --accent: #e95d2a;
    --border: #e3e3df;
    --soft: #f2f2ee;
    --container: 1220px;
    --reading: 760px;
    --gutter: clamp(20px, 4vw, 56px);
    --section-space: clamp(104px, 11vw, 168px);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--background);
    color: var(--text);
    font-family: "Onest", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.58;
    text-rendering: optimizeLegibility;
}

body, button, input, textarea {
    font-family: "Onest", sans-serif;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

button, input, textarea {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

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

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

h1, h2, h3 {
    font-weight: 580;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

h1 {
    max-width: 980px;
    margin-bottom: 32px;
    font-size: clamp(58px, 6.15vw, 76px);
}

h2 {
    max-width: 840px;
    margin-bottom: 0;
    font-size: clamp(42px, 4.3vw, 54px);
}

h3 {
    font-size: clamp(23px, 2vw, 29px);
}

::selection {
    background: var(--accent);
    color: var(--surface);
}

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

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--text);
    color: var(--surface);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: none;
}

.accent {
    color: var(--accent);
}

.container {
    width: min(100% - (var(--gutter) * 2), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(250, 250, 248, 0.92);
    transition: border-color 180ms ease, background-color 180ms ease;
}

@supports (backdrop-filter: blur(12px)) {
    .site-header {
        background: rgba(250, 250, 248, 0.84);
        backdrop-filter: blur(14px);
    }
}

.site-header.is-scrolled {
    border-color: var(--border);
}

.site-header__inner {
    display: grid;
    min-height: 88px;
    grid-template-columns: 160px 1fr auto;
    gap: 32px;
    align-items: center;
}

.brand {
    display: inline-flex;
    width: 118px;
    align-items: center;
}

.brand img, .site-footer__logo {
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(22px, 3vw, 42px);
    font-size: 15px;
}

.site-nav a, .site-footer a {
    text-decoration: none;
}

.site-nav a:hover, .site-footer a:hover {
    text-decoration: underline;
}

.button {
    position: relative;
    isolation: isolate;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    min-height: 72px;
    padding: 18px 34px 18px 42px;

    border: 0;
    border-radius: 999px;

    background: #000;
    color: #fff;

    font: inherit;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;

    cursor: pointer;

    transition:
            transform 180ms ease,
            box-shadow 180ms ease;
}

.button__text {
    transform: translateY(1px);
}

.button__sparkles {
    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    fill: currentColor;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.10),
            0 0 28px rgba(233, 93, 42, 0.20);
}

.button:active {
    transform: translateY(0);
    box-shadow: none;
}

.button:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.2);
    outline-offset: 5px;
}

.button--header {
    min-height: 46px;
    padding: 12px 20px 12px 24px;

    gap: 11px;

    font-size: 15px;
}

.button--header:hover {
    box-shadow:
            0 6px 18px rgba(0, 0, 0, 0.08),
            0 0 20px rgba(233, 93, 42, 0.14);
}

.button--header::before {
    display: none;
}

.button--header .button__sparkles {
    width: 22px;
    height: 22px;
}

.button--header .button__text {
    transform: translateY(0);
}

.hero {
    display: grid;
    min-height: min(730px, calc(100svh - 88px));
    align-items: start;
    padding-block: clamp(56px, 6vw, 88px) 104px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero__inner {
    max-width: 1060px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-wave {
    position: absolute;
    z-index: 1;

    left: 50%;
    bottom: -70px;

    width: min(1500px, 110vw);
    height: 300px;

    transform: translateX(-50%);

    pointer-events: none;
    opacity: 0.72;

    /*
     * Точки мягко исчезают сверху и по краям,
     * чтобы поле не выглядело прямоугольником.
     */
    -webkit-mask-image:
            linear-gradient(
                    to bottom,
                    transparent 0%,
                    rgba(0, 0, 0, 0.25) 15%,
                    #000 48%,
                    #000 75%,
                    transparent 100%
            );
    mask-image:
            linear-gradient(
                    to bottom,
                    transparent 0%,
                    rgba(0, 0, 0, 0.25) 15%,
                    #000 48%,
                    #000 75%,
                    transparent 100%
            );
}

.eyebrow {
    margin-bottom: 28px;
    color: var(--accent);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: none;
}

.hero h1 {
    margin-inline: auto;
    font-size: clamp(56px, 5vw, 76px);
    line-height: 0.98;
    font-weight: 650;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    max-width: 810px;
}

.hero__lead {
    max-width: 870px;
    margin: 0 auto 30px;
    font-size: 23px;
    line-height: 1.42;
    font-weight: 400;
    color: #66645f;
}

.hero__note {
    max-width: 540px;
    margin: 24px auto 0;
    font-size: 16px;
    line-height: 1.45;
    color: #77736d;
}

.hero .button {
    min-height: 66px;
    padding: 17px 32px 17px 36px;
    font-size: 18px;
    gap: 14px;
}

.hero .button__sparkles {
    width: 28px;
    height: 28px;
}

.section {
    padding-block: var(--section-space);
}

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

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: clamp(48px, 9vw, 130px);
    align-items: end;
}

.section-heading > p {
    max-width: 520px;
    margin-bottom: 5px;
    color: var(--muted);
}

.section-heading--compact > p {
    color: var(--text);
    font-size: 23px;
}

.problems {
    padding-top: 80px;
}

.problems__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(56px, 6vw, 84px);
    align-items: start;
}

/* Левая колонка */

.problems__intro {
    position: sticky;
    top: 140px;
}

.problems__intro h2 {
    max-width: 570px;
    margin-bottom: 34px;
    font-size: clamp(40px, 3.3vw, 46px);
    font-weight: 580;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.problems__intro p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
}

/* Правая колонка */

.problems__list {
    border: 0;
}

.problem-row {
    position: relative;
    padding: 0;
    border: 0;
    opacity: 0;
    transform: translateY(12px);
    transition:
            opacity 500ms ease,
            transform 500ms ease;
}

.problem-row + .problem-row {
    margin-top: 62px;
}

.problem-row:first-child {
    padding-top: 0;
}

.problem-row__head {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
}

.problem-row__mark {
    display: block;
    width: 10px;
    height: 22px;
    margin-top: 3px;
    background: var(--accent);
    border-radius: 1px;
    transform: skewX(-18deg);
    transform-origin: center;
    flex-shrink: 0;
}

.problem-row__head h3 {
    max-width: 600px;
    margin: 0;
    font-size: clamp(23px, 1.9vw, 28px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.problem-row__text {
    max-width: 620px;
    margin: 10px 0 0 28px;
    color: #6f6c67;
    font-size: 17px;
    line-height: 1.55;
}

.problem-row.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Вывод после списка */

.problems__footer {
    display: grid;
    grid-template-columns: minmax(390px, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(56px, 7vw, 96px);
}

.problems__statement {
    grid-column: 2;
    max-width: 560px;
    margin: 64px 0 0 76px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: -0.025em;
}

.problems__statement-mark {
    display: block;
    width: 32px;
    height: 2px;
    margin-bottom: 18px;
    background: var(--accent);
}

.problem-item h3 {
    margin-bottom: 16px;
    font-size: 25px;
}

.problem-item p, .outcome-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(64px, 7vw, 96px);
    margin-top: 36px;
}

.activity-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 52px;
}

.activity-switcher__item {
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    line-height: 1.2;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.activity-switcher__item:hover {
    border-color: var(--border);
    color: var(--text);
}

.activity-switcher__item.is-active {
    border-color: var(--border);
    background: var(--surface);
    color: var(--text);
}

.capabilities-benefit {
    position: relative;
    width: fit-content;
    max-width: 520px;
    margin: 14px 0 0;
    padding: 10px 30px 10px 15px;
    background: rgba(233, 93, 42, 0.06);
    color: var(--accent);
    font-size: 15px;
    line-height: 1.45;
    clip-path: polygon(0 0, 100% 0, calc(100% - 13px) 100%, 0 100%);
    transition: opacity 100ms ease-out, transform 100ms ease-out;
}

.capabilities-benefit.is-leaving {
    opacity: 0;
    transform: translateY(-3px);
}

.capabilities-benefit.is-entering {
    animation: capabilities-benefit-enter 200ms ease-out both;
}

@keyframes capabilities-benefit-enter {
    from {
        opacity: 0;
        transform: translateY(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.capabilities h2 {
    max-width: 570px;
    font-size: clamp(40px, 3.3vw, 46px);
    font-weight: 580;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.opportunity-group {
    min-width: 0;
}

.opportunity-group__heading {
    position: relative;

    min-height: 104px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.opportunity-group__marker {
    position: absolute;
    top: 3px;
    left: -24px;

    width: 10px;
    height: 22px;

    border-radius: 1px;
    background: var(--accent);
    transform: skewX(-18deg);
}

.opportunity-group__heading h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.opportunity-group__heading p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.42;
}

.editorial-list {
    display: grid;
    grid-template-rows: repeat(4, 116px);

    margin: 0;
    padding: 0;

    list-style: none;

    transition:
            opacity 180ms ease,
            transform 180ms ease;
}

.editorial-list li {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 14px 0 0;
    border: 0;
}

.editorial-list li h4 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.editorial-list li p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.capabilities-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    gap: 20px;
    margin-top: 48px;
}

.capabilities .section-note {
    display: block;

    max-width: 460px;
    margin: 0;

    color: var(--text);
    font-size: 24px;
    font-weight: 520;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.capabilities .section-note > span {
    display: block;

    width: 32px;
    height: 2px;
    margin-bottom: 18px;

    background: var(--accent);
}

.capabilities-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);

    font-size: 16px;
    font-weight: 500;

    cursor: pointer;

    transition: color 180ms ease;
}

.capabilities-more span {
    text-decoration: none;
    border-bottom: 1px solid rgba(23, 23, 23, 0.18);
    padding-bottom: 0;
    line-height: 1;
}

.capabilities-more:hover {
    color: var(--accent);
}

.capabilities-more:hover span {
    border-color: var(--accent);
}

.capabilities-more:disabled {
    cursor: wait;
    opacity: 0.58;
}

.capabilities-more .button__sparkles {
    width: 20px;
    height: 20px;
    transform-origin: center;
    transition: color 180ms ease;
}

.capabilities-more.is-attention .button__sparkles {
    animation: capabilities-sparkle-attention 2000ms ease-out both;
}

@keyframes capabilities-sparkle-attention {
    0% {
        opacity: 0.65;
        color: var(--text);
        transform: scale(0.72) rotate(-12deg);
    }

    40% {
        opacity: 1;
        color: var(--accent);
        transform: scale(1.36) rotate(8deg);
    }

    70% {
        transform: scale(0.94) rotate(-4deg);
    }

    100% {
        opacity: 1;
        color: var(--text);
        transform: scale(1) rotate(0);
    }
}

.desk-showcase {
    padding-block: clamp(88px, 7vw, 120px);
    background: var(--surface);
}

.desk-showcase > .container {
    width: min(100% - (var(--gutter) * 2), 1380px);
}

.desk-showcase__intro {
    display: grid;
    width: 100%;
    max-width: 1380px;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 1fr);
    grid-template-areas: "visual copy";
    gap: clamp(64px, 5vw, 80px);
    align-items: center;
}

.desk-showcase__copy {
    grid-area: copy;
    max-width: 620px;
    padding-top: 0;
}

.desk-showcase__copy h2 {
    max-width: 620px;
    margin: 0;
    color: var(--text);
    font-size: clamp(40px, 3.3vw, 46px);
    font-weight: 580;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.desk-showcase__copy p {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.desk-showcase__copy p + p {
    margin-top: 16px;
}

.desk-showcase__copy .desk-showcase__statement {
    max-width: 620px;
    margin-top: 36px;
    color: var(--text);
    font-size: 24px;
    font-weight: 520;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.desk-showcase__statement::before {
    display: block;
    width: 32px;
    height: 2px;
    margin-bottom: 18px;
    background: var(--accent);
    content: "";
}

.desk-showcase__visual {
    grid-area: visual;
    width: 100%;
    max-width: 640px;
    margin: 0;
    justify-self: start;
    align-self: center;
}

.desk-showcase__frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 6px 20px rgba(23, 23, 23, 0.09),
        0 26px 72px rgba(23, 23, 23, 0.17);
}

.desk-showcase__visual img {
    display: block;
    width: 100%;
    height: auto;
}

.desk-showcase__caption {
    max-width: 480px;
    margin: 18px auto 0;
    color: var(--accent);
    font-size: 15px;
    line-height: 1.45;
    text-align: center;
}

.desk-showcase__caption strong {
    color: inherit;
    font-weight: 600;
}

.capabilities-status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.editorial-list {
    transition: opacity 180ms ease, transform 180ms ease;
}

.editorial-list.is-changing {
    opacity: 0;
    transform: translateY(6px);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 2.4vw, 30px);
    margin-top: 56px;
}

.process-step {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    gap: 0;
    padding: 28px 30px 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
}

.process-step__top {
    min-width: 0;
}

.process-step__top h3 {
    margin-bottom: 0;
}

.process-step__number {
    display: block;
    align-self: flex-start;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 24px;
    font-weight: 560;
    letter-spacing: -0.04em;
    line-height: 1;
}

.process-step__meta {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}

.process-step__meta .process-step__number {
    margin-bottom: 0;
}

.process-step__badge {
    padding: 5px 10px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 580;
    line-height: 1;
}

.process-title h2 {
    font-size: clamp(40px, 3.3vw, 46px);
}

.process-title .section-heading p {

}

.process-title .button__sparkles {
    width: 28px;
    height: 28px;
}

.process-step__body {
    min-width: 0;
    margin-top: 26px;
}

.process-step__body h3 {
    margin: 0;
    font-size: clamp(28px, 2.25vw, 30px);
}

.process-title .section-heading {
    display: block;
    max-width: 1020px;
    margin-inline: auto;
    text-align: center;
}

.process-title .process-kicker {
    margin: 0 0 28px;
    color: var(--accent);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: none;
}

.process-title .section-heading h2 {
    max-width: 1020px;
    margin-inline: auto;
}

.process-title .process-title__accent {
    color: var(--accent);
}

.process-title .section-heading > p {
    max-width: 750px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 18px;
    font-weight: 400;
}

.process-title .section-heading > p.process-kicker {
    max-width: none;
    margin: 0 0 28px;
    color: var(--accent);
    font-size: 17px;
    font-weight: 600;
}

.process-step__lead {
    min-height: 0;
    margin: 12px 0 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 520;
    line-height: 1.45;
}

.process-step__description {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.process-step__result {
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid var(--border);
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

.process-step__result-label {
    display: block;
    margin-bottom: 7px;
    font-weight: 580;
}

.process-step__result strong {
    font-weight: 580;
}

.process-step__result-text {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.process-step ul {
    margin: 3px 0 0;
    padding: 0;
    list-style: none;
}

.process-step li {
    position: relative;
    padding: 0 0 16px 20px;
    color: var(--muted);
}

.process-step li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    content: '';
}

.section-action {
    display: flex;
    margin-top: 32px;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.process-support {
    margin: clamp(64px, 7vw, 80px) 0 0;
    padding: 0;
    text-align: center;
}

.process-support h3 {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.15;
}

.process-support p {
    max-width: 800px;
    margin: 0 auto 8px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.section-action p {
    max-width: 660px;
    margin-bottom: 0;
    font-size: clamp(25px, 2.5vw, 34px);
    font-weight: 520;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.outcomes-grid {
    display: grid;
    margin-top: clamp(54px, 5vw, 62px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(56px, 8vw, 112px);
}

.outcome-item {
    min-height: 0;
    padding: 33px 0 8px;
    border-top: 1px solid var(--border);
}

.outcome-item h3 {
    margin-bottom: 11px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

#outcomes .section-heading {
    display: block;
    max-width: 680px;
    text-align: left;
}

#outcomes .section-heading h2 {
    max-width: 680px;
    font-size: clamp(40px, 3.3vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

#outcomes .section-heading > p {
    max-width: 660px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.5;
    text-align: left;
}

#outcomes .outcome-item p {
    max-width: 540px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

#outcomes .outcome-item {
    position: relative;
    padding-left: 52px;
    border-top: 0;
}

#outcomes .outcome-item::before {
    position: absolute;
    top: 30px;
    left: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 3px solid var(--accent);
    border-radius: 50%;
    background: transparent;
    color: var(--accent);
    content: '✓';
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 620px) {
    #outcomes .outcome-item {
        padding-left: 46px;
    }

    #outcomes .outcome-item::before {
        top: 33px;
        left: 0;
        width: 30px;
        height: 30px;
        font-size: 19px;
    }
}

@media (max-width: 820px) {
    .problem-row + .problem-row {
        margin-top: 24px;
    }

    #process .section-action .button {
        width: 100%;
        max-width: 100%;
        gap: 10px;
        padding-inline: 16px;
        font-size: clamp(15px, 4.2vw, 18px);
    }

    #process .section-action .button__sparkles {
        width: 28px;
        height: 28px;
    }

    #founder .founder__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #founder .founder__portrait {
        width: 190px;
        max-width: 100%;
        margin-bottom: 0;
    }

    #founder .founder__portrait img {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 620px) {
    #founder .founder__portrait {
        width: 160px;
    }
}

.section-statement--large {
    margin-top: clamp(56px, 6vw, 56px);
    margin-left: 0;
    max-width: 980px;
    font-size: clamp(34px, 3.2vw, 42px);
    font-weight: 520;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-align: left;
}

#outcomes .section-statement--large {
    font-size: 28px;
    line-height: 1.28;
}

#outcomes .section-statement > span {
    display: block;
    width: 32px;
    height: 2px;
    margin-bottom: 20px;
    background: var(--accent);
}

.pricing {
    background: var(--background);
    padding-block: var(--section-space);
}

.pricing__heading {
    max-width: 760px;
}

.pricing__heading h2 {
    margin-bottom: 22px;
    font-size: clamp(40px, 3.3vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.pricing__heading p {
    max-width: 720px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.5;
}

.pricing-list {
    margin: clamp(48px, 4.5vw, 56px) 0 0;
    padding: 0;
    list-style: none;
}

.pricing-row {
    display: grid;
    padding: 28px 0 29px;
    border-top: 1px solid var(--border);
    grid-template-columns: minmax(32px, 56px) minmax(260px, 1fr) minmax(240px, 0.75fr);
    column-gap: 24px;
    align-items: start;
}

.pricing-row:last-child {
    border-bottom: 1px solid var(--border);
}

.pricing-row__number {
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}

.pricing-row__title {
    color: var(--text);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 560;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pricing-row__main {
    display: grid;
    gap: 10px;
}

.pricing-row__description {
    max-width: 620px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.pricing-row__value {
    align-self: start;
    padding-top: 3px;
    color: #555552;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 450;
    line-height: 1.35;
}

.founder__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1.28fr);
    gap: clamp(64px, 10vw, 140px);
    align-items: center;
}

#founder {
    background: var(--surface);
}

#founder .founder__grid {
    grid-template-columns: 220px minmax(0, 650px);
    gap: 80px;
    align-items: start;
    justify-content: start;
}

.founder__portrait {
    margin-bottom: 0;
    width: 220px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    background: transparent;
}

.founder__portrait img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 38%;
    border-radius: inherit;
}

.founder__copy h2 {
    margin-bottom: 28px;
    font-size: clamp(40px, 3.3vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.founder__copy > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

#founder .founder__copy > p:last-child {
    margin-bottom: 0;
}

@media (min-width: 821px) and (max-width: 1024px) {
    #founder .founder__grid {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 64px;
    }

    #founder .founder__portrait {
        width: 200px;
    }
}

.faq {
    border-top: 0;
    background: var(--soft);
}

.faq__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(480px, 1.25fr);
    gap: clamp(64px, 10vw, 150px);
    align-items: start;
}

.faq__heading {
    position: sticky;
    top: 140px;
}

.faq__heading > p {
    max-width: 470px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.faq__contact {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.5;
}

.faq__contact p {
    margin: 0 0 8px;
    color: var(--muted);
}

.faq__contact a {
    color: var(--accent);
    text-underline-offset: 4px;
}

.faq-list {
    border-bottom: 1px solid var(--border);
}

.faq-item {
    border-top: 1px solid var(--border);
}

.faq-item h3 {
    margin: 0;
}

.faq-item__button {
    display: grid;
    width: 100%;
    min-height: 108px;
    grid-template-columns: 1fr 32px;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border: 0;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-size: clamp(20px, 1.8vw, 25px);
    font-weight: 540;
    letter-spacing: -0.025em;
    line-height: 1.3;
    text-align: left;
}

.faq-item__icon {
    position: relative;
    width: 20px;
    height: 20px;
    justify-self: end;
}

.faq-item__icon::before, .faq-item__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--text);
    content: '';
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__button[aria-expanded='true'] .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item__button[aria-expanded='true'] .faq-item__icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item__panel {
    height: 0;
    overflow: hidden;
    transition: height 220ms ease;
}

.faq-item:has(.faq-item__button[aria-expanded='true']) .faq-item__panel {
    height: auto;
}

.faq-item__panel > div {
    max-width: 690px;
    padding: 0 50px 34px 0;
}

.faq-item__panel p {
    margin-bottom: 18px;
    color: var(--muted);
}

/* FAQ cards: closed items stay compact; an open item forms one joined panel. */
.faq-list {
    border-bottom: 0;
}

.faq-item {
    margin-top: 10px;
    border-top: 0;
}

.faq-item__button {
    min-height: 76px;
    padding: 21px 22px 21px 28px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    font-size: clamp(18px, 1.5vw, 21px);
    letter-spacing: -0.015em;
    transition: border-radius 180ms ease, background-color 180ms ease, color 180ms ease;
}

.faq-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--soft);
}

.faq-item__icon::before,
.faq-item__icon::after {
    width: 17px;
    height: 1.5px;
    background: var(--muted);
    transition: transform 180ms ease, background-color 180ms ease;
}

.faq-item__button[aria-expanded='true'] {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid var(--border);
    border-bottom: 0;
    background: var(--surface);
}

.faq-item__panel[hidden] {
    border: 0;
}

.faq-item:has(.faq-item__button[aria-expanded='false']) .faq-item__panel {
    border: 0;
}

.faq-item__button[aria-expanded='true'] .faq-item__icon {
    background: #e7e8ec;
}

.faq-item__button[aria-expanded='true'] .faq-item__icon::before,
.faq-item__button[aria-expanded='true'] .faq-item__icon::after {
    background: var(--muted);
}

.faq-item__panel {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-top: 0;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    background: var(--surface);
}

.faq-item__panel > div {
    max-width: none;
    padding: 0 28px 26px;
}

.faq-item__panel p:last-child {
    margin-bottom: 0;
}

@media (hover: hover) {
    .faq-item__button[aria-expanded='false']:hover {
        color: var(--accent);
    }

    .faq-item__button:hover .faq-item__icon::before,
    .faq-item__button:hover .faq-item__icon::after {
        background: var(--accent);
    }
}

.section--request {
    background: var(--surface);
}

.request-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
    gap: clamp(64px, 10vw, 150px);
    align-items: start;
}

.request-layout__heading {
    position: sticky;
    top: 140px;
}

.request-layout__heading p {
    max-width: 470px;
    margin: 34px 0 0;
    color: var(--muted);
}

.request-form {
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid var(--border);
    background: var(--surface);
}

#request .request-layout {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(520px, 1.2fr);
    gap: clamp(64px, 9vw, 132px);
    align-items: start;
}

#request .request-layout__heading {
    position: static;
    max-width: 520px;
}

#request .request-layout__heading h2 {
    margin-bottom: 28px;
    font-size: clamp(40px, 3.3vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

#request .request-layout__heading p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

#request .request-layout__heading .eyebrow {
    margin-bottom: 24px;
}

#request .request-layout__heading .request-layout__note {
    margin-top: 26px;
    color: var(--text);
    font-size: 15px;
}

#request .request-form {
    width: 100%;
    max-width: 680px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

#request .request-success {
    display: grid;
    width: 100%;
    max-width: 680px;
    min-height: 300px;
    align-content: center;
    justify-items: start;
}

#request .request-success[hidden] {
    display: none;
}

.request-success__icon {
    color: var(--accent);
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
}

.request-success h3 {
    margin: 24px 0 10px;
    font-size: clamp(28px, 2.4vw, 32px);
    font-weight: 560;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.request-success p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}

#request .request-start {
    margin-bottom: 44px;
}

#request .request-start h3 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.15;
}

#request .request-start > p {
    max-width: 620px;
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 16px;
}

#request .request-start__options {
    border-top: 1px solid var(--border);
}

#request .request-start__option {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 20px;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

#request .request-start__option strong,
#request .request-start__option span:nth-child(2) {
    grid-column: 1;
}

#request .request-start__option strong {
    font-size: 18px;
    font-weight: 560;
}

#request .request-start__option span:nth-child(2) {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

#request .request-start__option span:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--accent);
    font-size: 22px;
}

#request .request-start__option:hover strong,
#request .request-start__option:focus-visible strong {
    color: var(--accent);
}

.request-form__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.field {
    display: grid;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
}

.field input, .field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #bdbdb7;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

#request .field input,
#request .field textarea {
    min-height: 58px;
    padding: 0 20px;
    border: 2px solid #c9c9c9;
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 16px;
}

#request .field input::placeholder,
#request .field textarea::placeholder {
    color: #777;
    opacity: 1;
}

.field input {
    min-height: 52px;
}

.field textarea {
    min-height: 150px;
    padding: 12px 0;
    resize: vertical;
}

#request .field--message {
    margin-top: 24px;
}

#request .field--message textarea {
    min-height: 132px;
    padding-block: 16px;
    resize: vertical;
}

.field input:focus, .field textarea:focus {
    border-color: var(--accent);
}

.request-form__choices {
    margin: 52px 0;
    padding: 0;
    border: 0;
}

.request-form__choices legend {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    cursor: pointer;
}

.chip input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.chip span {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.chip:hover span {
    border-color: #aaa9a3;
}

.chip input:focus-visible + span {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.chip input:checked + span {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--surface);
}

.request-form__footer {
    display: flex;
    margin-top: 34px;
    align-items: center;
    gap: 22px;
}

#request .request-form__footer {
    margin-top: 20px;
}

.button--submit {
    border-radius: 14px;
}

.request-form__status {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    padding-block: 72px 34px;
    border-top: 1px solid var(--border);
    background: var(--background);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    row-gap: 20px;
    align-items: start;
}

.site-footer__logo {
    width: 116px;
    margin-bottom: 20px;
}

.site-footer__inner p {
    color: var(--muted);
    font-size: 14px;
}

.site-footer__links {
    display: grid;
    gap: 12px;
    justify-items: end;
    font-size: 14px;
}

.site-footer__copyright {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.legal {
    padding-block: clamp(72px, 9vw, 130px);
}

.legal__header {
    max-width: 820px;
    margin-bottom: 72px;
}

.legal__header .brand {
    margin-bottom: 72px;
}

.legal__header h1 {
    font-size: clamp(45px, 5vw, 68px);
}

.legal__content {
    max-width: 780px;
}

.legal__content h2 {
    margin: 56px 0 22px;
    font-size: 30px;
}

.legal__content p, .legal__content li {
    color: var(--muted);
}

.legal__content a {
    color: var(--text);
}






@media (max-width: 1024px) {
    .site-header__inner {
        grid-template-columns: 140px 1fr auto;
    }

    .site-nav {
        gap: 20px;
    }

    .process-step__body {
        display: block;
    }

    .founder__grid, .faq__grid, .request-layout {
        gap: 64px;
    }

    .problems__layout,
    .problems__footer,
    #request .request-layout {
        grid-template-columns: 1fr;
    }

    .problems__layout,
    .problems__footer {
        gap: 56px;
    }

    .problems__intro {
        position: static;
    }

    .problems__statement {
        grid-column: 1;
        max-width: 620px;
        margin: 64px 0 0;
    }

    #request .request-layout {
        gap: 48px;
    }
}




@media (max-width: 820px) {
    :root {
        --section-space: 96px;
    }

    body {
        font-size: 17px;
    }

    .site-header__inner {
        min-height: 76px;
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        display: none;
    }

    .brand {
        width: 105px;
    }

    .hero {
        min-height: 680px;
        padding-block: 64px 96px;
    }

    .hero-wave {
        bottom: -185px;
        width: min(1500px, 110vw);
        height: 280px;
        opacity: 0.9;
    }

    .section-heading, .founder__grid, .faq__grid, .request-layout {
        grid-template-columns: 1fr;
    }

    .desk-showcase {
        padding-block: 72px;
    }

    .desk-showcase__intro {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual";
        gap: 44px;
    }

    .desk-showcase__visual {
        max-width: 560px;
        margin: 0;
        justify-self: start;
    }

    .desk-showcase__frame {
        border-radius: 18px;
    }

    .section-heading {
        gap: 34px;
    }

    .section-heading > p {
        max-width: var(--reading);
    }

    .problems-grid, .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .problem-item, .outcome-item {
        min-height: 0;
    }

    .problems__layout,
    .problems__footer {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .problems__intro {
        position: static;
    }

    .problems__intro p {
        max-width: 680px;
    }

    .problems__statement {
        grid-column: 1;
        max-width: 620px;
        margin: 64px 0 0;
    }

    .pricing__heading h2 {
        font-size: 40px;
    }

    .pricing__heading p {
        font-size: 18px;
    }

    .pricing-list {
        margin-top: 42px;
    }

    .pricing-row {
        min-height: 0;
        padding: 24px 0 25px;
        grid-template-columns: 34px minmax(0, 1fr);
        column-gap: 12px;
        align-items: start;
    }

    .pricing-row__main,
    .pricing-row__value {
        grid-column: 2;
    }

    .pricing-row__title {
        font-size: 24px;
    }

    .pricing-row__main {
        gap: 8px;
    }

    .pricing-row__value {
        margin-top: 10px;
        padding-top: 0;
        font-size: 18px;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 76px;
        margin-top: 32px;
    }

    .activity-switcher {
        gap: 5px;
        margin-top: 32px;
    }

    .activity-switcher__item {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 14px;
    }

    .capabilities-benefit {
        max-width: 100%;
        margin-top: 12px;
        padding: 9px 27px 9px 13px;
        font-size: 15px;
    }

    .opportunity-group__heading {
        min-height: 0;
    }

    .opportunity-group__marker {
        left: -24px;
    }

    .process-step {
        align-self: stretch;
        height: auto;
        gap: 20px;
        padding: 24px;
    }

    .process-step__result {
        margin-top: 26px;
    }

    .process-step__number {
        display: block;
        margin-bottom: 24px;
        color: var(--accent);
        font-size: 38px;
        font-weight: 560;
        letter-spacing: -0.04em;
        line-height: 1;
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-title .process-list {
        margin-top: 42px;
    }

    .founder__portrait {
        max-width: 540px;
    }

    .faq__heading, .request-layout__heading {
        position: static;
    }

    .request-layout__heading p {
        max-width: var(--reading);
    }

    #request .request-form {
        margin-top: 48px;
        padding: 32px 28px;
    }

    #request .request-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    #request .request-form {
        margin-top: 0;
        padding: 0;
    }
}



@media (max-width: 620px) {
    :root {
        --gutter: 20px;
        --section-space: 82px;
    }

    .desk-showcase {
        padding-block: 64px;
    }

    .desk-showcase__intro {
        gap: 38px;
    }

    .desk-showcase__copy p {
        font-size: 16px;
        line-height: 1.55;
    }

    .desk-showcase__copy .desk-showcase__statement {
        margin-top: 28px;
        font-size: 20px;
    }

    .desk-showcase__visual {
        margin: 0;
    }

    .desk-showcase__frame {
        border-radius: 16px;
    }

    html {
        scroll-padding-top: 84px;
    }

    h1 {
        font-size: clamp(43px, 12vw, 58px);
    }

    h2 {
        font-size: clamp(36px, 10vw, 46px);
    }

    .site-header__inner {
        min-height: 72px;
        gap: 14px;
    }

    .brand {
        width: 94px;
    }

    .button--header {
        min-height: 44px;
        padding: 11px 13px;
        font-size: 12px;
    }

    .hero {
        min-height: 0;
        padding-block: 52px 76px;
    }

    .hero h1 {
        font-size: clamp(43px, 12vw, 58px);
        letter-spacing: -0.025em;
    }

    .hero__lead {
        margin-bottom: 32px;
        font-size: 20px;
    }

    .hero__note {
        margin-top: 22px;
        font-size: 14px;
    }

    .editorial-list {
        display: block;
    }

    .editorial-list li {
        height: auto;
        min-height: 0;
        padding: 18px 0;
    }

    .opportunity-group__marker {
        left: 0;
    }

    .opportunity-group__heading {
        padding-left: 22px;
    }

    .problem-item {
        grid-template-columns: 42px 1fr;
        padding-block: 28px;
    }

    .problem-row {
        padding: 12px 0;
    }

    .problem-row:first-child {
        padding-top: 0;
    }

    .problem-row__head {
        grid-template-columns: 10px minmax(0, 1fr);
        column-gap: 13px;
    }

    .problem-row__mark {
        width: 9px;
        height: 18px;
        margin-top: 3px;
    }

    .problem-row__head h3 {
        font-size: 21px;
    }

    .problem-row__text {
        margin-left: 23px;
        font-size: 16px;
    }

    .problem-item h3, .outcome-item h3 {
        font-size: 23px;
    }

    .problems__statement {
        margin-top: 54px;
        font-size: 26px;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 76px;
    }

    .opportunity-group, .opportunity-group + .opportunity-group {
        padding: 0;
        border-left: 0;
    }

    .capabilities h2 {
        max-width: 570px;
    }

    .opportunity-group__heading {
        min-height: 0;
    }

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

    .editorial-list {
        display: block;
    }

    .editorial-list li {
        height: auto;
        min-height: 0;
    }

    .process-step {
        padding: 22px 24px 24px;
    }

    .process-step__body h3 {
        font-size: 28px;
    }

    .section-action {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-action .button {
        width: auto;
    }

    .founder__portrait img {
        aspect-ratio: 1 / 1.14;
    }

    .faq-item__button {
        min-height: 76px;
        padding: 20px 16px 20px 20px;
    }

    .faq-item__panel > div {
        padding-right: 6px;
    }

    .request-form {
        padding: 26px 20px;
    }

    .request-form__fields {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .request-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .button--submit {
        width: 100%;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer__links {
        justify-items: start;
    }
}

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

    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .hero-wave {
        opacity: 0.45;
    }

    .problem-row {
        opacity: 1;
        transform: none;
    }

    .capabilities-more.is-attention .button__sparkles {
        animation: none;
    }
}

@media (max-width: 820px) {
    #founder .founder__grid {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: start;
    }

    #founder .founder__copy {
        display: contents;
    }

    #founder .founder__copy > .eyebrow {
        order: 1;
        margin-bottom: 10px;
    }

    #founder .founder__copy > h2 {
        order: 2;
        margin-bottom: 24px;
    }

    #founder .founder__portrait {
        order: 3;
        width: 120px;
        margin: 0 0 28px;
    }

    #founder .founder__copy > p:not(.eyebrow) {
        order: 4;
        max-width: none;
        margin-bottom: 20px;
    }

    #founder .founder__copy > p:last-child {
        margin-bottom: 0;
    }
}
