@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-500.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-600.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-700.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

:root {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --bg: #ffffff;
    --text: #000000;
    --muted: #969696;
    --soft: #f0f0f0;
    --panel: #dfe1e9;
    --line: #d9d9d9;
    --footer: #000000;
    --max: 1760px;
    --gutter: clamp(16px, 4.19vw, 80px);
    --space-2xs: 8px;
    --space-xs: 14px;
    --space-sm: 24px;
    --space-md: 40px;
    --space-lg: 64px;
    --space-xl: 96px;
    --space-2xl: 130px;
    --section-block: var(--space-xl);
    --section-block-lg: var(--space-2xl);
    --card-gap: var(--space-md);
    --panel-radius: 16px;
    --type-display: clamp(46px, 3.65vw, 68px);
    --type-page-title: clamp(42px, 2.85vw, 56px);
    --type-post-title: clamp(46px, 4.15vw, 76px);
    --type-post-intro: clamp(22px, 1.6vw, 30px);
    --type-section-title: clamp(34px, 2.25vw, 44px);
    --type-body-lg: clamp(20px, 1.18vw, 24px);
    --type-body-md: clamp(18px, 1vw, 21px);
    --type-card-title: clamp(25px, 1.55vw, 30px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    text-rendering: optimizeLegibility;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 15;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
}

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

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

.site-header {
    position: relative;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 var(--gutter);
    background: transparent;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 120px;
    line-height: 0;
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 35px;
    font-size: 16px;
    font-weight: 500;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    opacity: 0.72;
    transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav .icon,
.mobile-menu-intro,
.mobile-menu-contact {
    display: none;
}

.main-nav a:hover,
.main-nav a.is-active {
    opacity: 1;
    color: #000;
}

.main-nav a:hover {
    transform: translateY(-2px);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.pill.remix {
    justify-self: end;
    min-width: auto;
    min-height: 43px;
    padding: 0 18px;
    gap: 10px;
    font-size: 14px;
}

.pill.remix .icon {
    width: 18px;
    height: 18px;
}

.menu-toggle {
    display: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: max-content;
    min-height: 57px;
    padding: 0 32px;
    border: 1px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.pill-dark {
    background: #050505;
    color: #fff;
}

.pill-dark:hover {
    background: #fff;
    border-color: #050505;
    color: #050505;
}

.pill-light {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.pill-light:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.pill-muted {
    background: var(--soft);
    color: #222;
}

.pill-muted:hover {
    background: #050505;
    color: #fff;
}

.pill .icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 220ms ease;
}

.pill:hover {
    transform: scale(1.01);
}

.pill:hover .icon {
    transform: translateX(4px);
}

.section {
    width: min(100% - (var(--gutter) * 2), var(--max));
    margin: 0 auto;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    min-height: 790px;
    padding-top: 80px;
    padding-bottom: 88px;
    isolation: isolate;
}

.hero-main {
    position: relative;
    z-index: 1;
    max-width: min(1120px, calc(100% - 650px));
    min-width: 0;
}

.hero-main .eyebrow {
    margin-bottom: 10px;
    opacity: 0.4;
}

.hero-bg {
    position: absolute;
    left: 50%;
    top: -82px;
    z-index: -1;
    width: 100vw;
    height: calc(100vh + 82px);
    background: url("../images/backgrounds/cyan-light-shadow.png") center top / cover no-repeat;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 58vh 0 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 82%);
}

.eyebrow {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

.hero h1 {
    max-width: 100%;
    margin: 0;
    font-size: var(--type-display);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
    cursor: none;
}

.page-hero h1,
.project-hero h1 {
    max-width: 1103px;
    margin: 0;
    font-size: var(--type-page-title);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
}

.hero h1 > span:not(.hover-letter):not(.hover-word),
.split-intro h2 span,
.page-hero p,
.story h2 span {
    color: var(--muted);
}

.hero h1 > span:not(.hover-letter):not(.hover-word) {
    color: #fff;
}

.hover-word {
    display: inline-block;
    white-space: nowrap;
}

.hover-letter {
    display: inline-block;
    color: inherit;
    filter: blur(0);
    transform: translateZ(0);
    transition: color 220ms ease, filter 1500ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease;
}

.hover-letter.is-color-pulse {
    color: #009ee0;
}

.hover-letter.is-blur-strong {
    filter: blur(9px);
}

.hover-letter.is-blur-medium {
    filter: blur(6px);
}

.hover-letter.is-blur-soft {
    filter: blur(3px);
}

.hero-action {
    min-height: 57px;
    margin-top: 76px;
    padding: 0 32px;
}

.hero-services {
    position: absolute;
    right: 0;
    bottom: 88px;
    display: grid;
    width: min(100%, 520px);
    z-index: 1;
}

.hero-services a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 22px;
    align-items: center;
    min-height: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    color: rgba(0, 0, 0, 0.76);
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-services a:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.hero-services span {
    color: rgba(0, 0, 0, 0.38);
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

.hero-services strong {
    font-size: clamp(20px, 1.45vw, 28px);
    line-height: 1.1;
    font-weight: 500;
}

.hero-services .icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.hero-services a:hover {
    border-color: #111;
    color: #000;
    transform: translateX(4px);
}

.hero-services a:hover .icon {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1420px) {
    .hero {
        gap: var(--space-xl);
    }

    .hero-main {
        max-width: 100%;
    }

    .hero-services {
        position: static;
        width: min(100%, 680px);
        margin-left: auto;
    }
}

.solution-scroll {
    margin: 0;
    padding: var(--section-block) 0;
    background: linear-gradient(135deg, #f6f8f8 0%, #eef5f9 54%, #f8f8f3 100%);
}

.solution-scroll-inner {
    display: grid;
    align-items: center;
}

.solution-text {
    max-width: none;
    margin: 0 auto;
    color: #c3c7ca;
    font-size: clamp(42px, 4vw, 68px);
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: 0;
    text-wrap: balance;
}

.solution-arrow {
    display: inline-block;
    width: 0.78em;
    height: 0.78em;
    margin: 0 0.18em 0.02em 0;
    vertical-align: -0.04em;
    fill: none;
    stroke: #2b3033;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-text span {
    display: inline;
    color: #bfc4c8;
    transition: color 260ms ease, opacity 260ms ease;
}

.solution-text span.is-lit {
    color: #111;
}

.solution-text span.is-accent {
    color: #009ee0;
}

.logo-rotator {
    width: min(100% - (var(--gutter) * 2), var(--max));
    margin: 0;
    margin-inline: auto;
    background: #fff;
}

.logo-rotator-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: var(--space-xl);
    width: 100%;
}

.logo-rotator-slot {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.logo-rotator img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    margin: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.logo-rotator img.is-active {
    opacity: 0.4;
    transform: translateY(0);
}

.logo-rotator img.is-leaving {
    opacity: 0;
    transform: translateY(-18px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--card-gap);
    padding: var(--section-block) 0;
}

.project-card {
    display: block;
}

.project-card-wide {
    grid-column: 1 / -1;
}

.project-card figure {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1.69 / 1;
    margin: 0 0 24px;
    overflow: hidden;
    border-radius: calc(var(--panel-radius) * 1.5);
    background: var(--panel);
}

.project-card-wide figure {
    aspect-ratio: 1760 / 709;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.project-card:hover img {
    transform: scale(1.025);
}

.open-indicator {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    color: #fff;
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.open-indicator .icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-card:hover .open-indicator,
.knowhow-card:hover .open-indicator {
    background: #fff;
    color: #000;
    transform: scale(1.04);
}

.project-card p {
    margin: 0 0 8px;
    color: #666;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}

.project-card h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
}

.split-intro {
    display: grid;
    grid-template-columns: 288px minmax(0, 1fr) auto;
    gap: var(--space-xl);
    align-items: start;
    padding: var(--section-block) 0;
}

.split-intro .eyebrow {
    margin: 0;
}

.split-intro h2 {
    max-width: 1170px;
    margin: 0;
    font-size: clamp(30px, 2.08vw, 40px);
    line-height: 1.4;
    font-weight: 500;
}

.solution-tabs-shell {
    margin: 0;
    padding: var(--section-block) 0;
    background: #eef2f8;
}

.solution-tabs {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(72px, 8vw, 148px);
    align-items: start;
}

.solution-tabs-nav {
    position: sticky;
    top: var(--space-xl);
    display: grid;
}

.solution-tabs-nav button {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 22px;
    align-items: center;
    min-height: 82px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(34, 49, 58, 0.24);
    background: transparent;
    color: #22313a;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 180ms ease, transform 180ms ease;
}

.solution-tabs-nav button::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: #111;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.solution-tabs-nav button:first-child {
    border-top: 1px solid rgba(34, 49, 58, 0.24);
}

.solution-tabs-nav button[aria-selected="true"],
.solution-tabs-nav button:hover {
    color: #000;
}

.solution-tabs-nav button[aria-selected="true"]::after,
.solution-tabs-nav button:hover::after {
    opacity: 1;
}

.solution-tabs-nav button:hover {
    transform: translateX(4px);
}

.solution-tabs-nav span {
    color: #9aa6b0;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

.solution-tabs-nav strong {
    font-size: clamp(20px, 1.45vw, 28px);
    line-height: 1.15;
    font-weight: 500;
}

.solution-tabs-nav .icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.solution-tabs-nav button[aria-selected="true"] .icon,
.solution-tabs-nav button:hover .icon {
    opacity: 1;
    transform: translateX(0);
}

.solution-tab-panel {
    animation: tabFade 260ms ease both;
}

.solution-tab-panel[hidden] {
    display: none;
}

.solution-tab-panel h2 {
    max-width: 1040px;
    margin: 0 0 82px;
    color: #1d313c;
    font-size: clamp(48px, 4.16vw, 60px);
    line-height: 1.22;
    font-weight: 500;
}

.solution-tab-panel h2 span {
    color: rgba(29, 49, 60, 0.34);
}

.solution-tab-panel figure {
    margin: 0 0 76px;
    overflow: hidden;
    border-radius: calc(var(--panel-radius) * 1.5);
    background: #dde4ef;
}

.solution-tab-panel img {
    width: 100%;
    height: min(50vw, 690px);
    min-height: 430px;
    object-fit: cover;
}

.solution-tab-panel p {
    max-width: 960px;
    margin: 0 0 72px;
    color: #1d313c;
    font-size: clamp(28px, 2.35vw, 35px);
    line-height: 1.38;
    font-weight: 500;
}

.solution-cases {
    display: grid;
    max-width: 960px;
}

.solution-cases a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 22px;
    align-items: center;
    min-height: 70px;
    border-bottom: 1px solid rgba(34, 49, 58, 0.24);
    color: #22313a;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.solution-cases a:first-child {
    border-top: 1px solid rgba(34, 49, 58, 0.24);
}

.solution-cases span {
    color: #9aa6b0;
    font-size: 13px;
    line-height: 1;
}

.solution-cases strong {
    font-size: clamp(20px, 1.45vw, 28px);
    line-height: 1.15;
    font-weight: 500;
}

.solution-cases .icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.solution-cases a:hover {
    border-color: #111;
    color: #000;
    transform: translateX(4px);
}

.solution-cases a:hover .icon {
    opacity: 1;
    transform: translateX(0);
}

@keyframes tabFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.services {
    padding: 0 0 104px;
}

.services > .eyebrow {
    margin-bottom: 24px;
}

.accordion-item {
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.accordion-item:last-child {
    border-bottom: 1px solid var(--line);
}

.accordion button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 96px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: clamp(28px, 2.08vw, 40px);
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.accordion button:focus {
    outline: none;
}

.accordion button:focus-visible {
    outline: 2px solid #000;
    outline-offset: -2px;
}

.accordion button > span:first-child {
    line-height: 1.4;
}

.accordion-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #000;
    transition: transform 260ms ease;
}

.accordion-icon .icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.accordion-item.is-open .accordion-icon {
    transform: rotate(0deg);
}

.accordion-item:not(.is-open) .accordion-icon {
    transform: rotate(180deg);
}

.accordion-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    color: #000;
    transition: max-height 320ms ease, padding 320ms ease;
}

.accordion-item.is-open .accordion-panel {
    max-height: none;
    padding: 0 0 44px;
}

.accordion-panel p {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 18px;
    max-width: 980px;
    margin: 0;
    padding: 16px 0 17px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: clamp(24px, 1.67vw, 32px);
    line-height: 1.25;
    font-weight: 500;
}

.accordion-panel p::before {
    content: "";
    width: 34px;
    height: 2px;
    flex: 0 0 34px;
    border-radius: 999px;
    background: #009ee0;
    transform: translateY(-0.25em);
}

.accordion-panel p:last-child {
    border-bottom: 0;
}

.service-cards-section {
    margin: 0;
    padding: var(--section-block) 0;
    overflow: hidden;
    background: #fff;
}

.service-cards-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 560px) auto;
    gap: clamp(32px, 5vw, 90px);
    align-items: end;
    margin-bottom: var(--space-lg);
}

.service-cards-head .eyebrow {
    margin-bottom: 28px;
}

.service-cards-head h2 {
    max-width: 760px;
    margin: 0;
    color: #111;
    font-size: clamp(44px, 4vw, 76px);
    line-height: 1.08;
    font-weight: 500;
}

.service-cards-head > p {
    margin: 0;
    color: #75808a;
    font-size: clamp(20px, 1.46vw, 28px);
    line-height: 1.38;
    font-weight: 500;
}

.service-card-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: var(--space-sm) auto var(--space-md);
}

.service-card-filters button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 8px 0 18px;
    border: 0;
    border-radius: 999px;
    background: #f5f7f9;
    color: #4f5a63;
    font: inherit;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card-filters button span:last-child {
    display: grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: #fff;
    color: #4f5a63;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

.service-card-filters button:hover,
.service-card-filters button.is-active {
    background: #000;
    color: #fff;
    transform: scale(1.01);
}

.service-card-slider {
    display: grid;
    grid-auto-columns: clamp(320px, 28vw, 520px);
    grid-auto-flow: column;
    gap: var(--card-gap);
    width: 100%;
    padding: 8px var(--gutter) 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    scrollbar-width: none;
}

.service-card-slider::-webkit-scrollbar {
    display: none;
}

.service-card {
    position: relative;
    display: grid;
    align-content: start;
    min-width: 0;
    min-height: 360px;
    padding: var(--space-md);
    border-radius: var(--panel-radius);
    background: #f5f7f9;
    scroll-snap-align: start;
    overflow: hidden;
    transition: background-color 220ms ease, transform 220ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../images/backgrounds/cyan-light-shadow.png") center / cover no-repeat;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 360ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card.is-hidden {
    display: none;
}

.service-card:hover {
    background: #fff;
    transform: scale(1.01);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-card-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 70px;
    border-radius: 18px;
    background: #eef2f8;
    color: #009ee0;
}

.service-card-icon .icon {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card p {
    margin: 0 0 14px;
    color: #75808a;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.service-card h3 {
    max-width: 100%;
    margin: 0 0 20px;
    color: #1d313c;
    font-size: clamp(26px, 1.78vw, 34px);
    line-height: 1.18;
    font-weight: 500;
    hyphens: auto;
    overflow-wrap: normal;
    word-break: normal;
}

.service-card > span:last-child {
    display: block;
    max-width: 100%;
    color: #4f5a63;
    font-size: clamp(18px, 1.15vw, 22px);
    line-height: 1.42;
    font-weight: 500;
    hyphens: auto;
    overflow-wrap: normal;
    word-break: normal;
}

.knowhow-section {
    margin: 0;
    padding: var(--section-block) 0;
    overflow: hidden;
    background: #eef2f8;
}

.knowhow-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 560px) auto;
    gap: clamp(32px, 5vw, 90px);
    align-items: end;
    margin-bottom: var(--space-lg);
}

.knowhow-head .eyebrow {
    margin-bottom: 15px;
}

.knowhow-head h2 {
    max-width: 720px;
    margin: 0;
    color: #1d313c;
    font-size: clamp(44px, 4vw, 76px);
    line-height: 1.08;
    font-weight: 500;
}

.knowhow-head > p {
    margin: 0;
    color: #75808a;
    font-size: clamp(20px, 1.46vw, 28px);
    line-height: 1.38;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-controls button {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid #111;
    border-radius: 50%;
    background: transparent;
    color: #111;
    cursor: pointer;
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.slider-controls button:first-child .icon {
    transform: rotate(180deg);
}

.slider-controls button:hover {
    background: #111;
    color: #fff;
    transform: scale(1.03);
}

.slider-controls .icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.knowhow-slider {
    display: grid;
    grid-auto-columns: clamp(320px, 28vw, 520px);
    grid-auto-flow: column;
    gap: var(--card-gap);
    width: 100%;
    padding: 0 var(--gutter) 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    scrollbar-width: none;
}

.knowhow-slider::-webkit-scrollbar {
    display: none;
}

.knowhow-card {
    display: block;
    min-width: 0;
    scroll-snap-align: start;
}

.knowhow-card.is-hidden {
    display: none;
}

.knowhow-card figure {
    position: relative;
    aspect-ratio: 1.68 / 1;
    margin: 0 0 34px;
    overflow: hidden;
    border-radius: var(--panel-radius);
    background: #dfe4ed;
}

.knowhow-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.knowhow-card:hover img {
    transform: scale(1.025);
}

.knowhow-card p {
    margin: 0 0 14px;
    color: #75808a;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.knowhow-card h3 {
    margin: 0 0 20px;
    color: #1d313c;
    font-size: clamp(26px, 1.78vw, 34px);
    line-height: 1.18;
    font-weight: 500;
}

.knowhow-card h2 {
    margin: 0 0 20px;
    color: #1d313c;
    font-size: clamp(26px, 1.78vw, 34px);
    line-height: 1.18;
    font-weight: 500;
}

.knowhow-card > span {
    display: block;
    max-width: 620px;
    color: #4f5a63;
    font-size: clamp(18px, 1.15vw, 22px);
    line-height: 1.42;
    font-weight: 500;
}

.knowhow-overview {
    padding-bottom: var(--section-block-lg);
}

.knowhow-overview .service-card-filters {
    margin-top: 0;
    margin-bottom: var(--space-lg);
}

.knowhow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--card-gap);
}

.logo-cloud {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0 var(--space-xl);
    align-items: center;
    padding: 0 0 var(--section-block);
    text-align: center;
}

.logo-cloud-home {
    padding-left: calc(288px + var(--space-xl));
}

.logo-cloud span {
    display: grid;
    place-items: center;
    min-height: 0;
}

.logo-cloud img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.4;
    transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.logo-cloud span:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.03);
}

.site-footer {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: var(--space-xl);
    min-height: 620px;
    padding: var(--space-lg) var(--gutter) var(--space-md);
    background: var(--footer);
    color: #fff;
}

.footer-cta h2 {
    max-width: 520px;
    margin: 0 0 44px;
    font-size: clamp(44px, 3.33vw, 64px);
    line-height: 1.2;
    font-weight: 500;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    width: 120px;
    margin: 0 0 72px;
    line-height: 0;
}

.footer-brand img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: var(--space-lg);
    align-self: start;
    justify-self: end;
    width: min(760px, 100%);
    padding-top: 5px;
}

.footer-links nav,
.footer-links address {
    display: grid;
    align-content: start;
    gap: 12px;
    margin: 0;
    font-style: normal;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

.footer-links p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.86);
    transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.credit {
    grid-column: 1 / -1;
    align-self: end;
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

.page-hero {
    padding: var(--section-block-lg) 0 var(--section-block);
}

.page-hero p {
    max-width: 660px;
    margin: 22px 0 0;
    font-size: clamp(20px, 1.65vw, 28px);
    line-height: 1.28;
    font-weight: 500;
}

.page-hero .eyebrow {
    margin: 0 0 28px;
    color: #000;
    font-size: 14px;
}

.work-grid {
    padding-bottom: var(--section-block);
}

.service-index-section {
    padding: var(--section-block) 0 var(--section-block-lg);
}

.service-index-head {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 560px);
    gap: clamp(36px, 6vw, 110px);
    align-items: end;
    margin-bottom: var(--space-xl);
}

.service-index-head .eyebrow {
    margin-bottom: var(--space-sm);
}

.service-index-head h2 {
    max-width: 760px;
    margin: 0;
    color: #111;
    font-size: clamp(42px, 3.7vw, 66px);
    line-height: 1.08;
    font-weight: 500;
}

.service-index-head > p {
    margin: 0;
    color: #75808a;
    font-size: clamp(19px, 1.28vw, 24px);
    line-height: 1.4;
    font-weight: 500;
}

.service-cluster-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-xl) var(--card-gap);
}

.service-cluster {
    min-width: 0;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(29, 49, 60, 0.18);
}

.service-cluster h3 {
    margin: 0 0 var(--space-sm);
    color: #111;
    font-size: clamp(24px, 1.55vw, 30px);
    line-height: 1.15;
    font-weight: 500;
}

.service-cluster-list {
    display: grid;
    gap: 0;
}

.service-cluster-list a {
    display: grid;
    gap: 8px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(29, 49, 60, 0.1);
    transition: border-color 180ms ease, transform 180ms ease;
}

.service-cluster-list a:hover {
    border-color: rgba(29, 49, 60, 0.34);
    transform: translateX(4px);
}

.service-cluster-list strong {
    color: #1d313c;
    font-size: clamp(18px, 1.06vw, 21px);
    line-height: 1.22;
    font-weight: 500;
}

.service-cluster-list span {
    color: #5d6871;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
}

.about-media {
    overflow: hidden;
    border-radius: 16px;
    background: var(--panel);
}

.about-media img {
    width: 100%;
    max-height: 760px;
    object-fit: cover;
}

.values {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    padding: var(--section-block-lg) 0;
}

.values h2 {
    margin: 0;
    font-size: clamp(34px, 3.4vw, 54px);
    line-height: 1.05;
    font-weight: 500;
}

.values p {
    margin: 0;
    color: #5d5d5d;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
}

.values .eyebrow {
    margin-bottom: 26px;
    color: #000;
    font-size: 12px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 72px;
    padding-bottom: var(--section-block-lg);
}

.contact-layout h2 {
    max-width: 520px;
    margin: 0 0 26px;
    font-size: clamp(30px, 2.6vw, 44px);
    line-height: 1.14;
    font-weight: 500;
}

.contact-layout p {
    max-width: 430px;
    margin: 0;
    color: #707070;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 500;
}

.contact-layout a {
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 36px;
    align-content: start;
}

.contact-form label {
    color: #686868;
    font-weight: 500;
}

.contact-layout .contact-sentence {
    max-width: 1500px;
    margin: 0;
    color: #151515;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.55;
    font-weight: 500;
}

.story-input,
.story-editable {
    display: inline-block;
    width: max(var(--field-width, 8ch), 4ch);
    max-width: min(100%, var(--field-max, 36ch));
    border: 0;
    border-bottom: 2px solid #111;
    border-radius: 0;
    padding: 0 0.08em 0.12em;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 500;
    line-height: 1.1;
    vertical-align: baseline;
    outline: 0;
    transition: border-color 180ms ease, color 180ms ease;
}

.story-editable {
    width: auto;
    white-space: nowrap;
}

.story-editable:empty::before {
    content: attr(data-placeholder);
    color: #9b9b9b;
}

.story-input::placeholder {
    color: #9b9b9b;
    opacity: 1;
}

.story-input:hover,
.story-input:focus,
.story-editable:hover,
.story-editable:focus {
    border-color: #009ee0;
}

.story-choice {
    position: relative;
    display: inline-flex;
    vertical-align: baseline;
}

.story-keep {
    white-space: nowrap;
}

.story-punct::after {
    content: ".";
}

.story-choice button {
    font: inherit;
}

.story-choice > button {
    display: inline-flex;
    align-items: baseline;
    width: auto;
    max-width: none;
    min-height: 1.42em;
    border: 0;
    border-radius: 999px;
    padding: 0.16em 0.42em 0.06em;
    background: #dfe7f1;
    color: #151515;
    line-height: 1.05;
    white-space: nowrap;
    cursor: pointer;
}

.story-choice > button:focus-visible,
.story-choice > button:hover {
    outline: none;
    background: #d3dfec;
}

.story-choice-wide {
    --field-max: 28ch;
}

.story-choice-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    z-index: 8;
    display: grid;
    min-width: max(100%, 260px);
    padding: 8px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.story-choice-menu[hidden] {
    display: none;
}

.story-choice-menu button {
    border: 0;
    border-radius: 10px;
    padding: 10px 12px;
    background: transparent;
    color: #151515;
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.story-choice-menu button:hover,
.story-choice-menu button:focus-visible {
    outline: none;
    background: #e9eef5;
}

.story-dependent[hidden] {
    display: none;
}

.story-editable-date {
    --field-width: 5ch;
    --field-max: 7ch;
}

.story-editable-time {
    --field-width: 6ch;
    --field-max: 8ch;
}

.story-editable-email {
    --field-width: 10ch;
    --field-max: 22ch;
}

.story-editable-phone {
    --field-width: 10ch;
    --field-max: 20ch;
}

.contact-story-form .pill {
    margin-top: 2px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;
}

.plain-toggle {
    border: 0;
    padding: 0;
    background: transparent;
    color: #777;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    cursor: pointer;
}

.plain-toggle:hover,
.plain-toggle:focus-visible {
    color: #111;
    outline: none;
}

.classic-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 42px;
    max-width: 980px;
}

.classic-contact[hidden] {
    display: none;
}

.classic-field {
    position: relative;
    display: block;
    padding-top: 20px;
}

.classic-field span {
    position: absolute;
    left: 0;
    top: calc(20px + 0.16em);
    color: #8b8b8b;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.2;
    font-weight: 500;
    pointer-events: none;
    transform-origin: left top;
    transition: color 180ms ease, transform 180ms ease, font-size 180ms ease, top 180ms ease;
}

.classic-field input,
.classic-field select,
.classic-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 2px solid #111;
    border-radius: 0;
    padding: 0 0 10px;
    background: transparent;
    color: #151515;
    font: inherit;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.2;
    font-weight: 500;
    outline: 0;
    appearance: none;
    resize: vertical;
    transition: border-color 180ms ease;
}

.classic-field input::placeholder,
.classic-field textarea::placeholder {
    color: transparent;
}

.classic-field select {
    color: transparent;
}

.classic-field.is-filled select,
.classic-field select:focus {
    color: #151515;
}

.classic-field textarea {
    min-height: 128px;
}

.classic-field input:focus,
.classic-field select:focus,
.classic-field textarea:focus {
    border-color: #009ee0;
}

.classic-field.is-invalid input,
.classic-field.is-invalid select,
.classic-field.is-invalid textarea {
    border-color: #d43333;
}

.classic-field.is-invalid span {
    color: #d43333;
}

.classic-field:focus-within span,
.classic-field.is-filled span {
    top: 0;
    color: #707070;
    font-size: 16px;
    transform: translateY(0);
}

.classic-field-full {
    grid-column: 1 / -1;
}

.story-editable.is-invalid {
    border-color: #d43333;
}

.contact-error {
    margin: -8px 0 0;
    color: #d43333;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
}

.legal-content {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    max-width: none;
    padding-bottom: var(--section-block-lg);
}

.legal-content h2 {
    margin: 0;
    font-size: clamp(30px, 2.7vw, 46px);
    line-height: 1.12;
    font-weight: 500;
}

.legal-content .eyebrow {
    margin: 0 0 24px;
    color: #000;
    font-size: 14px;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 72px;
}

.legal-grid article:last-child {
    grid-column: 1 / -1;
}

.legal-grid-wide article {
    grid-column: 1 / -1;
}

.legal-label {
    margin: 0 0 12px;
    color: #000;
    font-size: 14px;
}

.legal-content p {
    margin: 0;
    color: #666;
    font-size: 18px;
    line-height: 1.48;
    font-weight: 500;
}

.legal-content a {
    color: #000;
    font-weight: 600;
}

.project-hero {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 80px;
    padding: var(--section-block-lg) 0 var(--section-block);
}

.project-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

.project-meta p {
    margin: 0 0 8px;
    color: #858585;
    font-size: 13px;
    font-weight: 500;
}

.project-meta strong {
    font-size: 16px;
    font-weight: 500;
}

.project-detail {
    padding-bottom: var(--section-block-lg);
}

.post-hero {
    display: grid;
    gap: var(--space-sm);
    padding: var(--section-block-lg) 0 var(--section-block);
}

.post-category {
    margin: 0;
    color: #75808a;
    font-size: clamp(17px, 1.1vw, 22px);
    line-height: 1.25;
    font-weight: 500;
}

.post-hero h1 {
    max-width: 1160px;
    margin: 0;
    font-size: var(--type-post-title);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: 0;
}

.post-hero > p:last-child {
    max-width: 940px;
    margin: var(--space-sm) 0 0;
    color: #75808a;
    font-size: var(--type-post-intro);
    line-height: 1.22;
    font-weight: 500;
}

.service-hero {
    padding-bottom: var(--space-xl);
}

.project-main-image {
    margin: 0 0 var(--section-block);
    overflow: hidden;
    border-radius: 16px;
    background: var(--panel);
}

.project-main-image img {
    width: 100%;
    aspect-ratio: 1.66 / 1;
    object-fit: cover;
}

.service-intro-copy {
    display: grid;
    margin: 0 0 var(--section-block);
}

.service-intro-copy > div {
    display: grid;
    gap: var(--space-sm);
    max-width: 920px;
    margin-left: auto;
}

.service-intro-copy p {
    margin: 0;
    color: #56616b;
    font-size: var(--type-body-lg);
    line-height: 1.42;
    font-weight: 500;
}

.project-copy {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    margin-bottom: 90px;
}

.project-copy .eyebrow {
    margin: 8px 0 0;
}

.project-copy h2 {
    max-width: 790px;
    margin: 0;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.08;
    font-weight: 500;
}

.project-copy p:last-child {
    grid-column: 2;
    max-width: 650px;
    margin: 0;
    color: #777;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
}

.service-detail-blocks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--card-gap);
    margin: 0 0 var(--section-block);
}

.service-detail-blocks article {
    display: grid;
    align-content: start;
    gap: var(--space-xs);
    min-height: 340px;
    padding: var(--space-md);
    border-radius: var(--panel-radius);
    background: #f5f7f9;
}

.service-detail-blocks h2,
.service-detail-list h2 {
    margin: 0;
    color: #1d313c;
    font-size: var(--type-card-title);
    line-height: 1.12;
    font-weight: 500;
}

.service-detail-blocks p {
    margin: 0;
    color: #56616b;
    font-size: var(--type-body-md);
    line-height: 1.36;
    font-weight: 500;
}

.service-detail-list {
    display: grid;
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
    gap: var(--space-xl);
    margin: 0 0 var(--section-block);
}

.service-detail-list .eyebrow {
    color: #75808a;
    margin-bottom: var(--space-xs);
}

.service-accordion {
    display: grid;
}

.service-accordion details {
    border-top: 1px solid var(--line);
}

.service-accordion details:last-child {
    border-bottom: 1px solid var(--line);
}

.service-accordion summary {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 48px;
    gap: var(--space-xs);
    align-items: center;
    min-height: 86px;
    list-style: none;
    cursor: pointer;
}

.service-accordion summary::-webkit-details-marker {
    display: none;
}

.service-accordion summary span {
    color: rgba(0, 0, 0, 0.36);
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

.service-accordion summary strong {
    color: #1d313c;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.16;
    font-weight: 500;
}

.service-accordion .icon {
    justify-self: end;
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 220ms ease;
}

.service-accordion details[open] .icon {
    transform: rotate(90deg);
}

.service-accordion details:hover summary strong {
    color: #009ee0;
}

.service-accordion p {
    max-width: 760px;
    margin: 0 0 var(--space-sm) calc(56px + var(--space-xs));
    color: #56616b;
    font-size: var(--type-body-md);
    line-height: 1.42;
    font-weight: 500;
}

.post-body {
    display: grid;
    gap: var(--space-sm);
    max-width: 820px;
    margin: 0 auto var(--section-block);
}

.post-body p {
    margin: 0;
    color: #555;
    font-size: var(--type-body-lg);
    line-height: 1.45;
    font-weight: 500;
}

.post-body h2 {
    margin: var(--space-sm) 0 0;
    color: #111;
    font-size: var(--type-section-title);
    line-height: 1.08;
    font-weight: 500;
}

.post-body h2:first-child {
    margin-top: 0;
}

.post-body ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-body li {
    position: relative;
    margin: 0;
    padding: 0 0 12px 34px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    color: #4d5962;
    font-size: var(--type-body-md);
    line-height: 1.35;
    font-weight: 500;
}

.post-body li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 18px;
    height: 1px;
    background: currentColor;
}

.post-inline-cta {
    display: grid;
    gap: var(--space-xs);
    margin: var(--space-xs) 0;
    padding: var(--space-md);
    border-radius: var(--panel-radius);
    background: #eef4fb;
}

.post-inline-cta p {
    margin: 0;
    color: #6a7781;
    font-size: 16px;
    line-height: 1.35;
}

.post-inline-cta h3 {
    max-width: 720px;
    margin: 0;
    color: #1d313c;
    font-size: clamp(27px, 1.9vw, 38px);
    line-height: 1.12;
    font-weight: 500;
}

.post-note {
    display: grid;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
    padding: var(--space-md) var(--space-md) var(--space-md) clamp(24px, 3vw, 44px);
    border-left: 5px solid #009ee0;
    border-radius: 0 var(--panel-radius) var(--panel-radius) 0;
    background: linear-gradient(90deg, rgba(0, 158, 224, 0.16), rgba(0, 158, 224, 0.055));
}

.post-note p {
    margin: 0;
    color: #007bb0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.post-note h3 {
    max-width: 860px;
    margin: 0;
    color: #1d313c;
    font-size: clamp(32px, 2.2vw, 44px);
    line-height: 1.1;
    font-weight: 500;
}

.post-note ul {
    display: grid;
    gap: 12px;
    max-width: 820px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-note li {
    position: relative;
    margin: 0;
    padding-left: 28px;
    color: #3f4b54;
    font-size: clamp(20px, 1.12vw, 23px);
    line-height: 1.42;
    font-weight: 500;
}

.post-note li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: #009ee0;
}

.post-faq {
    display: grid;
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
    gap: var(--space-lg);
    max-width: 1040px;
    margin: 0 auto var(--section-block);
}

.post-faq-head {
    display: grid;
    align-content: start;
    gap: var(--space-xs);
}

.post-faq-head p {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
}

.post-faq-head h2 {
    margin: 0;
    color: #1d313c;
    font-size: var(--type-section-title);
    line-height: 1.08;
    font-weight: 500;
}

.post-faq-list {
    display: grid;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.post-faq details {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    transition: border-color 220ms ease;
}

.post-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: #1d313c;
    cursor: pointer;
    list-style: none;
    font-size: clamp(21px, 1.45vw, 28px);
    line-height: 1.18;
    font-weight: 500;
    transition: color 220ms ease, padding-left 220ms ease;
}

.post-faq summary::marker {
    content: "";
}

.post-faq summary::-webkit-details-marker {
    display: none;
}

.post-faq summary .icon {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.post-faq details:hover {
    border-color: rgba(0, 0, 0, 0.28);
}

.post-faq details:hover summary {
    color: #000;
    padding-left: 10px;
}

.post-faq details:hover summary .icon {
    transform: translateX(4px);
}

.post-faq details[open] summary .icon {
    transform: rotate(90deg);
}

.post-faq details[open]:hover summary .icon {
    transform: rotate(90deg) translateX(4px);
}

.post-faq details p {
    max-width: 820px;
    margin: 0;
    padding: 0 0 var(--space-sm);
    color: #64717b;
    font-size: var(--type-body-md);
    line-height: 1.45;
    font-weight: 500;
}

.post-related {
    display: grid;
    gap: var(--space-md);
    max-width: 1040px;
    margin: 0 auto;
    padding-top: var(--section-block);
}

.post-related-head {
    display: grid;
    align-content: start;
    gap: var(--space-xs);
    max-width: 720px;
}

.post-related-head p {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
}

.post-related-head h2 {
    margin: 0;
    color: #1d313c;
    font-size: var(--type-section-title);
    line-height: 1.08;
    font-weight: 500;
}

.post-related-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}

.post-related-card {
    min-width: 0;
}

.post-related-card figure {
    margin-bottom: 28px;
}

.post-related-card h3 {
    font-size: var(--type-card-title);
}

.post-related-card > span {
    font-size: var(--type-body-md);
}

.service-related {
    margin-top: var(--space-xl);
    padding-top: 0;
}

.post-cta {
    display: grid;
    gap: var(--space-sm);
    max-width: 1040px;
    margin: 0 auto;
    padding: var(--space-lg);
    border-radius: var(--panel-radius);
    background: #f5f7f9;
}

.service-cta {
    margin-top: var(--section-block);
    margin-bottom: 0;
}

.post-cta p {
    margin: 0;
    color: #75808a;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.post-cta h2 {
    max-width: 850px;
    margin: 0 0 var(--space-xs);
    color: #1d313c;
    font-size: var(--type-section-title);
    line-height: 1.1;
    font-weight: 500;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: var(--panel);
}

.gallery img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
}

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

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

    .reveal,
    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .project-card img,
    .accordion-icon,
    .accordion-panel,
    .solution-tab-panel,
    .logo-rotator img,
    .solution-text span,
    .main-nav,
    .menu-toggle span {
        transition: none;
        animation: none;
    }
}

@media (max-width: 1180px) {
    .hero {
        gap: 72px;
    }

    .knowhow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-index-head {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-cluster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-services {
        position: static;
        width: min(100%, 680px);
        margin-bottom: 0;
    }

    .split-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .split-intro h2 {
        max-width: 780px;
    }

    .split-intro .pill {
        justify-self: start;
    }

    .logo-cloud-home {
        padding-left: 0;
    }

    .solution-tabs-shell {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .solution-tabs {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .solution-tabs-nav {
        position: static;
        padding-top: 0;
    }

    .solution-tabs-content {
        min-width: 0;
    }

    .logo-rotator {
        margin-bottom: 0;
    }

    .solution-tab-panel h2 {
        margin-bottom: 52px;
    }

    .solution-tab-panel figure {
        margin-bottom: 52px;
    }

    .solution-tab-panel img {
        height: auto;
        min-height: 0;
        aspect-ratio: 1.45 / 1;
    }

    .service-cards-section {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .service-cards-head {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
        margin-bottom: 56px;
    }

    .service-card-filters {
        margin-top: var(--space-xs);
    }

    .service-card-slider {
        grid-auto-columns: minmax(320px, 42vw);
        gap: 28px;
    }

    .service-card {
        min-height: 330px;
        padding: 36px;
    }

    .service-card-icon {
        margin-bottom: 52px;
    }

    .knowhow-section {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .knowhow-head {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
        margin-bottom: 56px;
    }

    .slider-controls {
        justify-self: start;
    }
}

@media (max-width: 900px) {
    :root {
        --section-block: 80px;
        --section-block-lg: 96px;
    }

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

    .menu-toggle {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 70;
        display: grid;
        gap: 4px;
        place-content: center;
        width: 64px;
        height: 64px;
        border: 0;
        border-radius: 999px;
        background: #000;
        color: #fff;
        box-shadow: none;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform 220ms ease, opacity 220ms ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        inset: auto 0 0;
        z-index: 60;
        display: grid;
        gap: 0;
        grid-template-columns: 1fr;
        padding: 38px var(--gutter) 104px;
        border-radius: 32px 32px 0 0;
        background: #fff;
        box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.18);
        font-size: clamp(28px, 7.4vw, 42px);
        line-height: 1.18;
        transform: translateY(calc(100% + 32px));
        opacity: 0;
        pointer-events: none;
        transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-intro {
        display: block;
        margin: 0 0 26px;
    }

    .mobile-menu-intro p {
        margin: 0;
        font-size: clamp(36px, 9.5vw, 54px);
        line-height: 1.02;
        font-weight: 500;
        letter-spacing: 0;
    }

    .mobile-menu-intro p + p {
        color: var(--muted);
    }

    .main-nav a {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        min-height: 72px;
        align-items: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        opacity: 1;
        transform: none;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover {
        transform: none;
    }

    .main-nav .icon {
        display: block;
        width: 28px;
        height: 28px;
        flex: 0 0 auto;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.45;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-menu-contact {
        display: grid;
        gap: 8px;
        margin: 30px 0 0;
        font-size: 16px;
        line-height: 1.4;
    }

    .mobile-menu-contact p {
        margin: 0 0 4px;
        color: var(--muted);
    }

    .mobile-menu-contact a {
        min-height: auto;
        justify-content: flex-start;
        width: max-content;
        border: 0;
        font-size: 18px;
        line-height: 1.35;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    .pill.remix {
        display: inline-flex;
        min-height: 40px;
        padding: 0 15px;
        font-size: 14px;
        justify-self: end;
    }

    .hero {
        min-height: auto;
        padding-bottom: 112px;
    }

    .hero-services a {
        min-height: 64px;
    }

    .solution-scroll {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .solution-text {
        max-width: none;
        font-size: clamp(38px, 7vw, 56px);
    }

    .projects-grid,
    .gallery,
    .values,
    .contact-layout,
    .legal-content,
    .service-detail-blocks,
    .service-intro-copy,
    .service-detail-list,
    .service-cluster-grid {
        grid-template-columns: 1fr;
    }

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

    .project-card-wide {
        grid-column: auto;
    }

    .split-intro,
    .project-hero,
    .project-copy {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .project-copy p:last-child {
        grid-column: auto;
    }

    .accordion-panel {
        grid-template-columns: 1fr 1fr;
    }

    .solution-tabs-shell {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .solution-tabs-nav button,
    .solution-cases a {
        min-height: 64px;
    }

    .solution-tab-panel h2 {
        font-size: clamp(38px, 6.2vw, 56px);
    }

    .solution-tab-panel p {
        font-size: clamp(26px, 4.7vw, 34px);
    }

    .service-cards-section {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .service-card-slider {
        grid-auto-columns: minmax(320px, 72vw);
        gap: 28px;
    }

    .knowhow-section {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .knowhow-slider {
        grid-auto-columns: minmax(320px, 72vw);
        gap: 28px;
    }

    .logo-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-bottom: var(--section-block);
    }

    .logo-rotator-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-lg);
    }

    .logo-cloud-home {
        padding-left: 0;
    }

    .site-footer {
        grid-template-columns: 1fr;
        min-height: 560px;
    }

    .footer-links {
        justify-self: stretch;
    }
}

@media (max-width: 560px) {
    :root {
        --section-block: 64px;
        --section-block-lg: 80px;
        --card-gap: 22px;
    }

    .section {
        width: min(100% - 32px, var(--max));
    }

    .site-header {
        padding-inline: 16px;
    }

    .brand {
        width: 142px;
    }

    .hero {
        padding-top: 48px;
        padding-bottom: 132px;
    }

    .hero-services {
        gap: 0;
    }

    .hero-services a {
        grid-template-columns: 30px minmax(0, 1fr) 24px;
        gap: 14px;
        min-height: 58px;
    }

    .hero-services strong {
        font-size: 21px;
    }

    .eyebrow {
        margin-bottom: 32px;
    }

    .page-hero h1,
    .project-hero h1 {
        font-size: 41px;
    }

    .hero h1 {
        font-size: clamp(42px, 11.2vw, 50px);
    }

    .hero-action {
        margin-top: 54px;
    }

    .logo-rotator {
        margin: 0;
    }

    .logo-rotator-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-md) var(--space-lg);
    }

    .solution-scroll {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .solution-text {
        font-size: 34px;
        line-height: 1.14;
    }

    .projects-grid {
        gap: 38px;
    }

    .project-card figure {
        border-radius: 12px;
    }

    .split-intro {
        padding: var(--section-block) 0;
    }

    .solution-tabs-shell {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .solution-tabs {
        gap: 42px;
    }

    .solution-tabs-nav button,
    .solution-cases a {
        grid-template-columns: 30px minmax(0, 1fr) 24px;
        gap: 14px;
        min-height: 58px;
    }

    .solution-tabs-nav strong,
    .solution-cases strong {
        font-size: 21px;
    }

    .solution-tab-panel h2 {
        margin-bottom: 38px;
        font-size: 38px;
        line-height: 1.16;
    }

    .solution-tab-panel figure {
        margin-bottom: 38px;
        border-radius: 14px;
    }

    .solution-tab-panel img {
        aspect-ratio: 1.08 / 1;
    }

    .solution-tab-panel p {
        margin-bottom: 42px;
        font-size: 27px;
        line-height: 1.32;
    }

    .service-cards-section {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .service-cards-head {
        margin-bottom: 40px;
    }

    .service-card-filters {
        gap: 8px;
        margin: var(--space-xs) auto 30px;
    }

    .service-card-filters button {
        min-height: 38px;
        padding: 0 7px 0 15px;
        font-size: 14px;
    }

    .service-card-filters button span:last-child {
        min-width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .service-cards-head h2 {
        font-size: 38px;
        line-height: 1.14;
    }

    .service-cards-head > p {
        font-size: 20px;
    }

    .service-card-slider {
        grid-auto-columns: minmax(284px, 82vw);
        gap: 22px;
        padding-top: 8px;
        padding-bottom: 6px;
    }

    .service-card {
        min-height: 300px;
        padding: 28px;
        border-radius: 12px;
    }

    .service-card-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 42px;
        border-radius: 15px;
    }

    .service-card h3 {
        font-size: 27px;
    }

    .service-card > span:last-child {
        font-size: 18px;
    }

    .knowhow-section {
        margin: 0;
        padding: var(--section-block) 0;
    }

    .knowhow-head {
        margin-bottom: 40px;
    }

    .knowhow-head h2 {
        font-size: 38px;
        line-height: 1.14;
    }

    .knowhow-head > p {
        font-size: 20px;
    }

    .slider-controls button {
        width: 48px;
        height: 48px;
    }

    .knowhow-slider {
        grid-auto-columns: minmax(284px, 82vw);
        gap: 22px;
        padding-bottom: 6px;
    }

    .knowhow-card figure {
        margin-bottom: 26px;
        border-radius: 12px;
    }

    .knowhow-card h3 {
        font-size: 27px;
    }

    .knowhow-card > span {
        font-size: 18px;
    }

    .accordion button {
        min-height: 64px;
        font-size: 30px;
    }

    .accordion-panel {
        grid-template-columns: 1fr;
    }

    .accordion-item.is-open .accordion-panel {
        max-height: 260px;
    }

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

    .page-hero,
    .project-hero {
        padding-top: 86px;
    }

    .page-hero {
        padding-bottom: 72px;
    }

    .page-hero p {
        margin-top: 20px;
        font-size: 22px;
        line-height: 1.28;
    }

    .page-hero .eyebrow {
        margin-bottom: 22px;
        color: #000;
        font-size: 14px;
    }

    .project-detail,
    .contact-layout,
    .work-grid,
    .legal-content {
        padding-bottom: 96px;
    }

    .contact-layout {
        gap: 42px;
    }

    .contact-layout h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .contact-layout p {
        font-size: 17px;
    }

    .contact-layout .contact-sentence {
        font-size: 26px;
        line-height: 1.7;
    }

    .story-input,
    .story-editable {
        width: max(var(--field-width, 8ch), 4ch);
        max-width: 100%;
        margin: 0.28em 0;
        border-radius: 0;
        padding-left: 0;
    }

    .story-choice,
    .story-choice-wide {
        max-width: 100%;
        margin: 0.18em 0;
    }

    .story-choice > button {
        padding: 0.16em 0.42em 0.06em;
    }

    .story-choice-menu {
        min-width: min(82vw, 300px);
    }

    .contact-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .classic-contact {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .classic-field input,
    .classic-field select,
    .classic-field textarea {
        font-size: 25px;
    }

    .post-hero h1 {
        font-size: 40px;
        line-height: 1.12;
    }

    .post-hero > p:last-child {
        font-size: 23px;
    }

    .post-body {
        margin-bottom: 72px;
    }

    .post-faq {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 72px;
    }

    .post-related {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 72px;
    }

    .post-related-list {
        grid-template-columns: 1fr;
    }

    .service-detail-blocks article {
        min-height: auto;
    }

    .service-accordion summary {
        grid-template-columns: 42px minmax(0, 1fr) 34px;
        min-height: 72px;
    }

    .service-accordion summary strong {
        font-size: 25px;
    }

    .service-accordion p {
        margin-left: calc(42px + var(--space-xs));
        font-size: 18px;
    }

    .post-body h2,
    .post-faq-head h2,
    .post-related-head h2 {
        font-size: 34px;
    }

    .post-inline-cta {
        padding: 28px;
    }

    .post-faq summary {
        font-size: 25px;
    }

    .post-faq details p {
        font-size: 18px;
    }

    .post-cta {
        padding: 30px;
    }

    .knowhow-grid {
        grid-template-columns: 1fr;
    }

    .legal-content {
        gap: 38px;
    }

    .legal-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legal-content h2 {
        font-size: 31px;
    }

    .legal-content p {
        font-size: 17px;
    }
}
