:root {
    --fluid-blue: #21b9ec;
    --fluid-ink: #071019;
    --fluid-paper: #f4f3ef;
    --fluid-line: rgba(8, 26, 39, .14);
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

main {
    max-width: 100%;
    overflow: clip;
}

/* Corporate global header */
.fluid-header {
    top: 0;
    padding: 0;
    border-top: 3px solid var(--fluid-blue);
    border-bottom: 1px solid rgba(133, 214, 240, .2);
    background: linear-gradient(90deg, rgba(3, 11, 17, .98), rgba(7, 20, 30, .96) 54%, rgba(4, 13, 21, .98));
    box-shadow: 0 18px 52px rgba(0, 0, 0, .24);
}

.fluid-nav {
    position: relative;
    display: flex;
    min-height: 94px;
    align-items: center;
    gap: 32px;
    border-bottom: 0;
    transition: min-height .35s var(--ease);
}

.fluid-header .brand {
    position: relative;
    display: flex;
    align-self: stretch;
    flex: 0 0 318px;
    align-items: center;
    margin-right: auto;
    padding: 0 20px 0 18px;
    isolation: isolate;
}

.fluid-header .brand::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    border-right: 1px solid rgba(124, 216, 246, .2);
    border-left: 1px solid rgba(124, 216, 246, .35);
    background: linear-gradient(105deg, rgba(42, 183, 232, .12), rgba(255, 255, 255, .025) 72%);
}

.fluid-header .brand::after {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 18px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--fluid-blue), rgba(33, 185, 236, 0));
    box-shadow: 0 0 18px rgba(33, 185, 236, .34);
}

.fluid-header .brand img {
    position: relative;
    width: 280px;
    height: auto;
    filter: drop-shadow(0 5px 18px rgba(0, 0, 0, .38));
}

.fluid-header .primary-nav {
    gap: 28px;
    margin: 0;
}

.fluid-header .primary-nav > a,
.fluid-header .nav-dropdown > button {
    padding: 36px 0 32px;
    color: rgba(239, 249, 252, .72);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.fluid-header .primary-nav > a::after,
.fluid-header .nav-dropdown > button::after {
    right: auto;
    bottom: 24px;
    width: 22px;
    height: 2px;
    background: var(--fluid-blue);
    box-shadow: 0 0 12px rgba(33, 185, 236, .36);
}

.fluid-header .primary-nav > a:hover,
.fluid-header .primary-nav > a.is-active,
.fluid-header .nav-dropdown > button:hover,
.fluid-header .nav-dropdown > button.is-active {
    color: var(--white);
}

.fluid-header .nav-dropdown > button span {
    margin-left: 3px;
    color: var(--fluid-blue);
}

.fluid-header .nav-cta {
    min-height: 52px;
    flex: 0 0 auto;
    gap: 17px;
    margin-left: 0;
    padding: 0 6px 0 21px;
    border: 1px solid rgba(122, 215, 247, .46);
    border-radius: 999px;
    color: var(--white);
    background: rgba(17, 64, 82, .2);
    font-size: 11.5px;
    letter-spacing: .055em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
    transition: color .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.fluid-header .nav-cta span {
    white-space: nowrap;
}

.fluid-header .nav-cta b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--fluid-ink);
    background: var(--white);
}

.fluid-header .nav-cta:hover {
    border-color: var(--white);
    color: var(--fluid-ink);
    background: var(--white);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .24);
}

.fluid-header .nav-cta:hover b {
    color: var(--white);
    background: var(--fluid-ink);
    transform: translateX(2px);
}

.fluid-header.is-fixed {
    padding-top: 0;
    background: rgba(4, 13, 21, .985);
    box-shadow: 0 14px 42px rgba(0, 0, 0, .3);
    backdrop-filter: none;
}

.fluid-header.is-fixed .fluid-nav {
    min-height: 76px;
}

.fluid-header.is-fixed .primary-nav > a,
.fluid-header.is-fixed .nav-dropdown > button {
    padding-block: 28px 25px;
}

.fluid-header.is-fixed .primary-nav > a::after,
.fluid-header.is-fixed .nav-dropdown > button::after {
    bottom: 18px;
}

.fluid-header.is-fixed .brand img {
    width: 258px;
}

.fluid-header .dropdown-panel {
    top: calc(100% - 1px);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .14);
}

/* Reusable fluid controls */
.soft-eyebrow,
.section-label {
    margin: 0;
    color: #157fa8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.5;
    text-transform: uppercase;
}

.section-label.light {
    color: var(--fluid-blue);
}

.pill-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    gap: 26px;
    padding: 0 7px 0 25px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    transition: transform .35s var(--ease);
}

.pill-button b {
    display: grid;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    place-items: center;
    font-size: 17px;
    transition: transform .35s var(--ease);
}

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

.pill-button:hover b {
    transform: translateX(3px);
}

.pill-button-light {
    color: var(--fluid-ink);
    background: var(--white);
}

.pill-button-light b {
    color: var(--white);
    background: var(--fluid-ink);
}

.pill-button-dark {
    color: var(--white);
    background: var(--fluid-ink);
}

.pill-button-dark b {
    color: var(--fluid-ink);
    background: var(--fluid-blue);
}

.quiet-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    color: var(--fluid-ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.quiet-link span {
    font-size: 15px;
    transition: transform .3s var(--ease);
}

.quiet-link:hover span {
    transform: translate(3px, -3px);
}

.quiet-link.light {
    color: rgba(255, 255, 255, .84);
}

/* Cinematic hero */
.cinematic-hero {
    position: relative;
    display: flex;
    height: 100svh;
    min-height: 720px;
    max-height: 1080px;
    align-items: stretch;
    color: var(--white);
    background: var(--fluid-ink);
    overflow: hidden;
}

.cinematic-media,
.cinematic-overlay {
    position: absolute;
    inset: 0;
}

.cinematic-media .hero-frame {
    position: absolute;
    inset: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 1.2s, opacity 1.2s ease;
}

.cinematic-media .hero-frame.is-active {
    visibility: visible;
    opacity: 1;
}

.cinematic-media .hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.72) contrast(1.04);
    transform: scale(1.045);
    transition: transform 8s ease, filter 1s ease;
}

.cinematic-media .hero-frame.is-active img {
    filter: saturate(.86) contrast(1.02);
    transform: scale(1);
}

.cinematic-overlay {
    z-index: 1;
    background: rgba(2, 9, 15, .54);
}

.cinematic-overlay::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 55%;
    content: "";
    background: rgba(2, 9, 15, .28);
}

.cinematic-content {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    min-height: 720px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 105px;
    padding-bottom: 150px;
}

.cinematic-copy {
    max-width: 1000px;
}

.cinematic-copy .soft-eyebrow {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .72);
}

.cinematic-copy h1 {
    max-width: min(100%, 1080px);
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(58px, 7.25vw, 112px);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .84;
    text-shadow: 0 4px 40px rgba(0, 0, 0, .22);
}

.cinematic-copy h1 em {
    display: block;
    margin-left: clamp(24px, 5vw, 82px);
    color: var(--fluid-blue);
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.08em;
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .82;
}

.cinematic-lead {
    display: grid;
    max-width: 870px;
    grid-template-columns: minmax(320px, 1fr) auto;
    align-items: end;
    gap: 70px;
    margin-top: 48px;
    margin-left: clamp(24px, 5vw, 82px);
}

.cinematic-lead > p {
    max-width: 510px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    line-height: 1.7;
}

.cinematic-actions {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 18px;
}

.cinematic-actions .quiet-link {
    color: rgba(255, 255, 255, .76);
}

.hero-trust {
    position: absolute;
    right: 0;
    bottom: 74px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .58);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-trust i {
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, .32);
}

.hero-bottom {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 94px;
    grid-template-columns: 1fr auto 56px;
    align-items: center;
    gap: 48px;
    border-top: 1px solid rgba(255, 255, 255, .25);
}

.hero-bottom > p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    letter-spacing: .03em;
}

.hero-bottom > p strong {
    color: var(--white);
}

.hero-next {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 0;
    color: rgba(255, 255, 255, .68);
    background: none;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
}

.hero-next i {
    position: relative;
    width: 70px;
    height: 1px;
    background: rgba(255, 255, 255, .3);
}

.hero-next i::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 1px;
    content: "";
    background: var(--fluid-blue);
    transition: transform .55s var(--ease);
}

.hero-next:hover i::after {
    transform: translateX(100%);
}

.hero-down {
    display: grid;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    place-items: center;
}

.hero-down span {
    animation: gentle-down 1.8s var(--ease) infinite;
}

@keyframes gentle-down {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(3px); }
}

/* Intro */
.narrative-intro {
    padding: 155px 0 170px;
    background: var(--fluid-paper);
}

.narrative-head {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 80px;
    margin-bottom: 110px;
}

.narrative-head h2 {
    max-width: 1050px;
    margin: 0;
    color: var(--fluid-ink);
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5.7vw, 86px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .98;
}

.narrative-head h2 span {
    color: #7a858a;
}

.narrative-head > div > p {
    max-width: 640px;
    margin: 46px 0 0 auto;
    color: var(--muted);
    font-size: 16px;
}

.narrative-visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: end;
    gap: 52px;
}

.narrative-visual figure {
    height: 620px;
    margin: 0;
    border-radius: 0 170px 0 0;
    overflow: hidden;
}

.narrative-visual figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72);
    transition: filter .7s ease, transform 1s var(--ease);
}

.narrative-visual:hover figure img {
    filter: saturate(.9);
    transform: scale(1.02);
}

.narrative-experience {
    position: absolute;
    right: 150px;
    bottom: 106px;
    display: flex;
    width: 255px;
    height: 255px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 50%;
    color: var(--fluid-ink);
    background: var(--fluid-blue);
    transform: rotate(-7deg);
}

.narrative-experience strong {
    font-family: "Manrope", sans-serif;
    font-size: 70px;
    font-weight: 500;
    letter-spacing: -.08em;
    line-height: .9;
}

.narrative-experience span {
    margin-top: 15px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.45;
    text-align: center;
    text-transform: uppercase;
}

.narrative-visual > p {
    max-width: 210px;
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 12px;
}

/* Expertise */
.expertise-flow {
    position: relative;
    padding: 160px 0;
    color: var(--white);
    background: var(--fluid-ink);
}

.expertise-layout {
    display: grid;
    grid-template-columns: minmax(300px, .67fr) minmax(600px, 1.33fr);
    gap: clamp(70px, 9vw, 145px);
}

.expertise-intro {
    position: sticky;
    top: 135px;
    align-self: start;
}

.expertise-intro h2 {
    max-width: 500px;
    margin: 38px 0 26px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 4.7vw, 70px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .98;
}

.expertise-intro > p:not(.section-label) {
    max-width: 460px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, .54);
    font-size: 14px;
}

.expertise-list {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.expertise-item {
    position: relative;
    display: grid;
    min-height: 270px;
    grid-template-columns: minmax(0, 1fr) 230px 48px;
    align-items: center;
    gap: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.expertise-copy {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
}

.expertise-copy > span {
    padding-top: 9px;
    color: var(--fluid-blue);
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
}

.expertise-copy small {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, .44);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.expertise-copy h3 {
    margin-bottom: 16px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 2.6vw, 40px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.05;
    transition: color .3s ease, transform .45s var(--ease);
}

.expertise-copy p {
    max-width: 460px;
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    line-height: 1.65;
}

.expertise-item figure {
    height: 145px;
    margin: 0;
    border-radius: 999px;
    overflow: hidden;
    transform: scale(.9);
    transition: transform .55s var(--ease);
}

.expertise-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.65) saturate(.55);
    transition: filter .5s ease, transform .8s var(--ease);
}

.expertise-item > i {
    display: grid;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    place-items: center;
    font-style: normal;
    transition: color .3s ease, background .3s ease, transform .4s var(--ease);
}

.expertise-item:hover .expertise-copy h3 {
    color: var(--fluid-blue);
    transform: translateX(8px);
}

.expertise-item:hover figure {
    transform: scale(1);
}

.expertise-item:hover figure img {
    filter: none;
    transform: scale(1.04);
}

.expertise-item:hover > i {
    color: var(--fluid-ink);
    background: var(--fluid-blue);
    transform: translateX(5px);
}

/* Full-bleed cinematic statement */
.cinematic-interlude {
    position: relative;
    display: flex;
    height: 82svh;
    min-height: 700px;
    max-height: 940px;
    align-items: flex-end;
    color: var(--white);
    background: var(--fluid-ink);
    overflow: hidden;
}

.cinematic-interlude > img {
    position: absolute;
    inset: -5% 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.72) contrast(1.05) brightness(.74);
}

.cinematic-interlude-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(2, 9, 15, .42);
}

.cinematic-interlude-shade::before {
    position: absolute;
    inset: 0 38% 0 0;
    content: "";
    background: rgba(2, 9, 15, .22);
}

.cinematic-interlude-content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(75px, 9vh, 120px);
}

.cinematic-interlude h2 {
    max-width: 1120px;
    margin: 34px 0 58px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5.6vw, 88px);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .94;
    text-shadow: 0 8px 45px rgba(0, 0, 0, .22);
}

.cinematic-interlude h2 em {
    color: var(--fluid-blue);
    font-family: "Newsreader", Georgia, serif;
    font-weight: 400;
    letter-spacing: -.045em;
}

.cinematic-interlude-foot {
    display: flex;
    align-items: center;
    gap: 17px;
    color: rgba(255, 255, 255, .74);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cinematic-interlude-foot i {
    width: 38px;
    height: 1px;
    background: rgba(255, 255, 255, .42);
}

/* Projects */
.project-showcase {
    padding: 160px 0 175px;
    background: var(--white);
}

.project-showcase-head {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 95px;
}

.project-showcase-head > div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.project-showcase-head h2 {
    max-width: 800px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(50px, 6vw, 90px);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .94;
}

.project-cinema {
    width: min(100% - 48px, 1760px);
    margin: 0 auto 120px;
}

.project-cinema > a {
    position: relative;
    display: block;
    height: min(76vw, 760px);
    border-radius: 0 0 180px 0;
    overflow: hidden;
    background: var(--fluid-ink);
}

.project-cinema img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72) brightness(.7);
    transition: filter .7s ease, transform 1.1s var(--ease);
}

.project-cinema-caption {
    position: absolute;
    right: clamp(35px, 6vw, 105px);
    bottom: clamp(44px, 7vw, 105px);
    left: clamp(35px, 7vw, 130px);
    max-width: 770px;
    color: var(--white);
}

.project-cinema-caption > span,
.project-pair article span {
    display: block;
    margin-bottom: 18px;
    color: var(--fluid-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.project-cinema-caption h3 {
    margin-bottom: 24px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(39px, 5vw, 74px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .94;
}

.project-cinema-caption p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.project-cinema > a > i {
    position: absolute;
    right: clamp(35px, 5vw, 85px);
    bottom: clamp(35px, 5vw, 85px);
    display: grid;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    color: var(--white);
    place-items: center;
    font-size: 25px;
    font-style: normal;
    transition: color .35s ease, background .35s ease, transform .4s var(--ease);
}

.project-cinema:hover img {
    filter: saturate(.92) brightness(.74);
    transform: scale(1.025);
}

.project-cinema:hover > a > i {
    color: var(--fluid-ink);
    background: var(--white);
    transform: rotate(45deg);
}

.project-pair {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: start;
    gap: 70px;
}

.project-pair article:nth-child(2) {
    margin-top: 130px;
}

.project-pair figure {
    height: 540px;
    margin: 0 0 32px;
    overflow: hidden;
}

.project-pair article:first-child figure {
    border-radius: 150px 0 0 0;
}

.project-pair article:nth-child(2) figure {
    border-radius: 0 0 150px 0;
}

.project-pair img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.7);
    transition: filter .6s ease, transform .9s var(--ease);
}

.project-pair article:hover img {
    filter: saturate(.94);
    transform: scale(1.025);
}

.project-pair article > a > div {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
}

.project-pair h3 {
    max-width: 500px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(26px, 3vw, 43px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.05;
}

/* Method */
.method-path {
    padding: 155px 0;
    background: var(--fluid-paper);
}

.method-path-head {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 80px;
    margin-bottom: 110px;
}

.method-path-head h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(49px, 5.9vw, 86px);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .96;
}

.method-path-head h2 em {
    color: #6f7e85;
    font-family: "Newsreader", Georgia, serif;
    font-weight: 400;
    letter-spacing: -.045em;
}

.method-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
}

.method-timeline::before {
    position: absolute;
    top: 53px;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: #b9c3c7;
}

.method-timeline article {
    position: relative;
    padding-right: 20px;
}

.method-timeline article > span {
    display: block;
    margin-bottom: 28px;
    color: #147da5;
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
}

.method-timeline article > i {
    position: relative;
    z-index: 1;
    display: block;
    width: 12px;
    height: 12px;
    margin-bottom: 52px;
    border: 3px solid var(--fluid-paper);
    border-radius: 50%;
    background: var(--fluid-blue);
    box-shadow: 0 0 0 1px #8aa1ab;
}

.method-timeline h3 {
    margin-bottom: 16px;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.method-timeline p {
    max-width: 270px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.method-promise {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-top: 120px;
    padding-top: 60px;
    border-top: 1px solid var(--fluid-line);
}

.method-promise > p {
    margin: 0;
    color: var(--fluid-ink);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(35px, 4vw, 58px);
    font-style: italic;
    letter-spacing: -.04em;
    line-height: 1.03;
}

/* References without cards */
.fluid-references {
    padding: 110px 0 120px;
    border: 0;
    background: var(--white);
}

.fluid-references .references-head {
    align-items: flex-end;
    margin-bottom: 75px;
}

.fluid-references .references-head > p:last-child {
    max-width: 580px;
    color: var(--fluid-ink);
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.05;
    text-align: right;
}

.fluid-references .reference-logo {
    width: 230px;
    height: 100px;
    margin-right: 38px;
    border: 0;
    background: transparent;
}

.fluid-references .reference-logo img {
    width: 72%;
    opacity: .5;
}

/* Open contact area */
.home-contact-fluid {
    padding: 160px 0;
    background: #08131d;
}

.home-contact-fluid::before {
    display: none;
}

.home-contact-fluid .home-contact-grid {
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(70px, 9vw, 140px);
}

.home-contact-fluid .home-contact-copy h2 {
    max-width: 720px;
    margin: 38px 0 30px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5.4vw, 78px);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .94;
}

.home-contact-fluid .home-contact-copy > p:not(.section-label) {
    max-width: 560px;
    color: rgba(255, 255, 255, .56);
}

.home-contact-fluid .direct-contact {
    margin-top: 58px;
}

.home-contact-fluid .direct-contact a {
    padding: 18px 0;
}

.home-contact-fluid .fluid-form {
    align-self: end;
}

.home-contact-fluid .quote-form,
.home-contact-fluid .quote-form.is-compact,
.home-contact-fluid .quote-form-wrap.is-compact .quote-form {
    padding: 0;
    color: var(--white);
    background: transparent;
}

.home-contact-fluid .field {
    margin-bottom: 26px;
}

.home-contact-fluid .field-grid {
    gap: 28px;
}

.home-contact-fluid .field label {
    color: rgba(255, 255, 255, .45);
}

.home-contact-fluid .field input,
.home-contact-fluid .field select,
.home-contact-fluid .field textarea {
    border-color: rgba(255, 255, 255, .28);
    color: var(--white);
}

.home-contact-fluid .field select option {
    color: var(--text);
}

.home-contact-fluid .field input:focus,
.home-contact-fluid .field select:focus,
.home-contact-fluid .field textarea:focus {
    border-color: var(--fluid-blue);
    background: transparent;
}

.home-contact-fluid .field input::placeholder,
.home-contact-fluid .field textarea::placeholder {
    color: rgba(255, 255, 255, .34);
}

.home-contact-fluid .form-footer {
    align-items: flex-end;
    margin-top: 38px;
}

.home-contact-fluid .form-footer p {
    color: rgba(255, 255, 255, .4);
}

.home-contact-fluid .form-footer .button {
    min-height: 58px;
    padding: 0 7px 0 24px;
    border-radius: 999px;
    color: var(--fluid-ink);
    background: var(--white);
}

.home-contact-fluid .form-footer .button b {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    background: var(--fluid-ink);
}

/* Real WhatsApp contact control */
.whatsapp-fab {
    right: 24px;
    bottom: 24px;
    gap: 11px;
    padding: 6px 17px 6px 6px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: #16a765;
    box-shadow: 0 16px 44px rgba(5, 32, 22, .28);
    backdrop-filter: none;
    transition: transform .35s var(--ease), background .3s ease, box-shadow .3s ease;
}

.whatsapp-fab .whatsapp-icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    color: inherit;
    background: rgba(255, 255, 255, .14);
    place-items: center;
}

.whatsapp-fab .whatsapp-icon img {
    width: 24px;
    height: 24px;
}

.whatsapp-fab .whatsapp-copy {
    display: flex;
    width: auto;
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
    color: var(--white);
    background: transparent;
    line-height: 1.15;
}

.whatsapp-fab .whatsapp-copy small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .72);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.whatsapp-fab .whatsapp-copy strong {
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: none;
}

.whatsapp-fab:hover {
    background: #108c53;
    box-shadow: 0 20px 52px rgba(5, 32, 22, .34);
    transform: translateY(-4px);
}

/* Corporate motion system */
body[data-page="home"] .reveal {
    filter: blur(4px);
    transform: translateY(48px);
    transition:
        opacity .9s var(--ease),
        filter .9s var(--ease),
        transform .9s var(--ease);
}

body[data-page="home"] .reveal.is-visible {
    filter: none;
    transform: none;
}

.hero-motion-title > span {
    display: block;
    overflow: hidden;
}

.hero-motion-title > span > i {
    display: block;
    font-style: normal;
    transform: translateY(115%);
}

.hero-motion-title.is-visible > span > i {
    animation: title-rise 1.05s var(--ease) both;
}

.hero-motion-title.is-visible > span:nth-child(2) > i {
    animation-delay: .1s;
}

.hero-motion-title.is-visible > span:nth-child(3) > i {
    animation-delay: .2s;
}

@keyframes title-rise {
    to { transform: translateY(0); }
}

.cinematic-media {
    transform: translate3d(
        var(--hero-pointer-x, 0),
        var(--hero-pointer-y, 0),
        0
    );
    transition: transform 1.1s var(--ease);
}

.cinematic-media .hero-frame img {
    transform:
        translate3d(0, var(--hero-scroll-y, 0), 0)
        scale(1.065);
}

.cinematic-media .hero-frame.is-active img {
    transform:
        translate3d(0, var(--hero-scroll-y, 0), 0)
        scale(1.02);
}

.engineering-ribbon {
    position: relative;
    z-index: 2;
    padding: 24px 0;
    color: var(--fluid-ink);
    background: var(--fluid-blue);
    overflow: hidden;
}

.engineering-ribbon > div {
    display: flex;
    width: max-content;
    align-items: center;
    animation: engineering-flow 28s linear infinite;
}

.engineering-ribbon span {
    font-family: "Manrope", sans-serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 600;
    letter-spacing: -.035em;
    white-space: nowrap;
}

.engineering-ribbon i {
    margin-inline: 34px;
    font-size: 12px;
    font-style: normal;
    opacity: .55;
}

@keyframes engineering-flow {
    to { transform: translateX(-50%); }
}

[data-parallax] {
    --parallax-shift: 0px;
}

[data-parallax] > img,
[data-parallax] > a > img {
    transform: translate3d(0, var(--parallax-shift), 0) scale(1.07);
    will-change: transform;
}

.narrative-visual[data-parallax] > img,
.narrative-visual [data-parallax] > img {
    height: calc(100% + 76px);
    margin-top: -38px;
}

.project-pair [data-parallax] > img {
    height: calc(100% + 50px);
    margin-top: -25px;
}

.project-cinema[data-parallax] > a > img {
    height: calc(100% + 72px);
    margin-top: -36px;
}

.project-follow {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    display: flex;
    width: 96px;
    height: 96px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 50%;
    color: var(--fluid-ink);
    background: var(--fluid-blue);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.55);
    transition: opacity .25s ease, transform .4s var(--ease);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-follow b {
    margin-top: 4px;
    font-size: 17px;
}

.project-cinema.is-cursor-active .project-follow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.project-cinema.is-cursor-active > a > i {
    opacity: 0;
}

.expertise-item figure {
    transform:
        translateX(var(--expertise-shift, 0))
        scale(.9);
}

.expertise-item:hover figure {
    transform:
        translateX(var(--expertise-shift, 0))
        scale(1);
}

.method-timeline::after {
    position: absolute;
    z-index: 1;
    top: 53px;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: var(--fluid-blue);
    transform: scaleX(var(--timeline-progress, 0));
    transform-origin: left;
    transition: transform .15s linear;
}

.method-timeline article > i {
    z-index: 2;
    background: #aebbc0;
    transition: background .4s ease, box-shadow .4s ease, transform .4s var(--ease);
}

.method-timeline article h3,
.method-timeline article p {
    transition: color .4s ease, transform .5s var(--ease);
}

.method-timeline article.is-active > i {
    background: var(--fluid-blue);
    box-shadow: 0 0 0 1px var(--fluid-blue), 0 0 0 7px rgba(33, 185, 236, .12);
    transform: scale(1.15);
}

.method-timeline article.is-active h3 {
    color: #087da9;
    transform: translateY(-3px);
}

[data-magnetic] {
    will-change: transform;
    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease,
        transform .45s var(--ease);
}

/* Live digital twin showcase */
.digital-twin-showcase {
    position: relative;
    z-index: 2;
    padding: clamp(104px, 11vw, 176px) 0 clamp(96px, 10vw, 158px);
    color: #eef8fb;
    background:
        radial-gradient(circle at 82% 12%, rgba(33, 185, 236, .13), transparent 28%),
        radial-gradient(circle at 8% 86%, rgba(28, 94, 124, .18), transparent 31%),
        linear-gradient(180deg, #050b10 0%, #07131b 48%, #050b10 100%);
    overflow: hidden;
}

.digital-twin-showcase::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0 49.9%, rgba(124, 202, 226, .035) 50%, transparent 50.1%),
        linear-gradient(rgba(124, 202, 226, .025) 1px, transparent 1px);
    background-size: 100% 100%, 100% 84px;
    mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}

.twin-showcase-head {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr);
    gap: 90px;
    align-items: end;
    margin-bottom: 56px;
}

.twin-showcase-head h2 {
    max-width: 900px;
    margin: 20px 0 0;
    color: #f2f8fa;
    font-size: clamp(48px, 5.7vw, 88px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.065em;
}

.twin-showcase-head h2 em {
    color: #6ed9f5;
    font-family: "Newsreader", serif;
    font-weight: 400;
}

.twin-showcase-head > p {
    max-width: 460px;
    margin: 0 0 6px;
    color: rgba(221, 237, 243, .66);
    font-size: 16px;
    line-height: 1.8;
}

.twin-console {
    position: relative;
    border: 1px solid rgba(120, 185, 207, .24);
    border-radius: 4px;
    background: #050b10;
    box-shadow: 0 48px 110px rgba(0, 0, 0, .42);
    overflow: hidden;
}

.twin-console::before {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 34%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, #22bae9, transparent);
    box-shadow: 0 0 16px rgba(34, 186, 233, .7);
}

.twin-console-bar {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 28px;
    border-bottom: 1px solid rgba(121, 171, 190, .17);
    background: rgba(7, 16, 22, .96);
}

.twin-console-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.twin-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #a9ef64;
    box-shadow: 0 0 0 6px rgba(169, 239, 100, .08), 0 0 20px rgba(169, 239, 100, .7);
    animation: twin-live-pulse 1.8s ease-in-out infinite;
}

.twin-console-brand b,
.twin-console-brand small,
.twin-console-metrics small,
.twin-console-metrics b {
    display: block;
    font-family: "Space Grotesk", sans-serif;
}

.twin-console-brand b {
    color: #e8f6fa;
    font-size: 12px;
    letter-spacing: .09em;
}

.twin-console-brand small {
    margin-top: 4px;
    color: #66808c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;
}

.twin-console-metrics {
    display: flex;
    align-self: stretch;
}

.twin-console-metrics > span {
    display: flex;
    min-width: 120px;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    border-left: 1px solid rgba(121, 171, 190, .14);
}

.twin-console-metrics small {
    color: #607985;
    font-size: 7px;
    letter-spacing: .12em;
}

.twin-console-metrics b {
    margin-top: 5px;
    color: #dcebef;
    font-size: 11px;
    letter-spacing: .05em;
}

.twin-viewport {
    position: relative;
    height: clamp(540px, 52vw, 760px);
    min-height: 520px;
    background: #04090d;
    overflow: hidden;
}

.twin-viewport canvas {
    display: block;
    width: 100%;
    height: 100%;
    outline: 0;
}

.twin-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 6, 9, .48), transparent 18%, transparent 68%, rgba(2, 6, 9, .74)),
        linear-gradient(90deg, rgba(2, 6, 9, .34), transparent 16%, transparent 82%, rgba(2, 6, 9, .4));
    box-shadow: inset 0 0 100px rgba(0, 0, 0, .42);
}

.twin-status-card,
.twin-product-card,
.twin-camera-label {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(112, 175, 198, .25);
    background: rgba(5, 13, 18, .78);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .26);
    backdrop-filter: blur(14px);
}

.twin-status-card {
    top: 28px;
    left: 28px;
    width: min(340px, calc(100% - 56px));
    padding: 18px 20px;
}

.twin-status-card > span,
.twin-product-card > span {
    display: block;
    color: #5f7f8c;
    font: 700 8px/1 "Space Grotesk", sans-serif;
    letter-spacing: .14em;
}

.twin-status-card > b,
.twin-product-card > b {
    display: block;
    margin-top: 10px;
    color: #e8f7fa;
    font: 600 16px/1.2 "Space Grotesk", sans-serif;
}

.twin-status-card > small,
.twin-product-card > small {
    display: block;
    margin-top: 7px;
    color: #55cce9;
    font: 600 9px/1.3 "Space Grotesk", sans-serif;
}

.twin-status-card > div {
    height: 2px;
    margin-top: 16px;
    background: rgba(106, 155, 173, .18);
    overflow: hidden;
}

.twin-status-card > div i {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #22bce8, #a9ef64);
    box-shadow: 0 0 10px rgba(34, 188, 232, .8);
    transition: width .2s linear;
}

.twin-product-card {
    right: 28px;
    bottom: 30px;
    min-width: 210px;
    padding: 16px 18px;
    text-align: right;
}

.twin-product-card > small {
    color: #a9ef64;
}

.twin-camera-label {
    top: 30px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    color: #79939d;
    font: 700 7px/1 "Space Grotesk", sans-serif;
    letter-spacing: .12em;
}

.twin-camera-label i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22bce8;
    box-shadow: 0 0 10px rgba(34, 188, 232, .8);
}

.twin-noscript {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.twin-line-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 175px minmax(240px, 1fr) 175px;
    gap: 22px;
    align-items: center;
    min-height: 96px;
    padding: 16px 26px;
    border-top: 1px solid rgba(121, 171, 190, .17);
    background: #071016;
}

.twin-line-strip > span {
    display: grid;
    grid-template-columns: 9px 1fr;
    column-gap: 10px;
    align-items: center;
}

.twin-line-strip > span > i {
    grid-row: 1 / 3;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22bce8;
    box-shadow: 0 0 12px rgba(34, 188, 232, .7);
}

.twin-line-strip > span.unload > i {
    background: #a9ef64;
    box-shadow: 0 0 12px rgba(169, 239, 100, .65);
}

.twin-line-strip b,
.twin-line-strip small {
    font-family: "Space Grotesk", sans-serif;
}

.twin-line-strip b {
    color: #dcecef;
    font-size: 9px;
    letter-spacing: .07em;
}

.twin-line-strip small {
    margin-top: 3px;
    color: #5e7782;
    font-size: 7px;
}

.twin-bath-track {
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    gap: 3px;
}

.twin-bath-track i {
    display: block;
    height: 24px;
    border: 1px solid rgba(101, 144, 161, .23);
    border-radius: 2px;
    background: #0a1a22;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.twin-bath-track i.is-visited {
    border-color: rgba(34, 188, 232, .48);
    background: rgba(34, 188, 232, .2);
}

.twin-bath-track i.is-active {
    z-index: 2;
    transform: translateY(-4px) scaleY(1.22);
    border-color: #a9ef64;
    background: #75c944;
    box-shadow: 0 0 14px rgba(169, 239, 100, .58);
}

.twin-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(119, 173, 192, .19);
    border-bottom: 1px solid rgba(119, 173, 192, .19);
}

.twin-capabilities article {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    min-height: 150px;
    padding: 34px 32px;
    border-right: 1px solid rgba(119, 173, 192, .19);
}

.twin-capabilities article:last-child {
    border-right: 0;
}

.twin-capabilities article > span {
    color: #22bce8;
    font: 700 9px/1.2 "Space Grotesk", sans-serif;
    letter-spacing: .12em;
}

.twin-capabilities b {
    display: block;
    color: #e7f3f6;
    font-size: 15px;
}

.twin-capabilities p {
    max-width: 320px;
    margin: 10px 0 0;
    color: #708893;
    font-size: 12px;
    line-height: 1.65;
}

@keyframes twin-live-pulse {
    50% { opacity: .55; transform: scale(.72); }
}

/* Responsive */
@media (max-width: 1180px) {
    .fluid-nav {
        gap: 23px;
    }

    .fluid-header .brand {
        flex-basis: 252px;
        padding-right: 16px;
        padding-left: 14px;
    }

    .fluid-header .brand img {
        width: 222px;
    }

    .fluid-header.is-fixed .brand img {
        width: 222px;
    }

    .fluid-header .primary-nav {
        gap: 18px;
    }

    .fluid-header .nav-cta span {
        display: none;
    }

    .fluid-header .nav-cta {
        padding-left: 6px;
    }

    .cinematic-copy h1 {
        font-size: clamp(70px, 9vw, 108px);
    }

    .expertise-layout {
        grid-template-columns: minmax(270px, .58fr) minmax(560px, 1.42fr);
        gap: 60px;
    }

    .expertise-item {
        grid-template-columns: 1fr 190px 46px;
        gap: 24px;
    }

    .twin-showcase-head {
        gap: 50px;
    }

    .twin-console-metrics > span {
        min-width: 104px;
        padding: 0 18px;
    }
}

@media (max-width: 1080px) {
    .fluid-header {
        padding-top: 0;
    }

    .fluid-nav {
        min-height: 76px;
    }

    .fluid-header .brand {
        position: relative;
        z-index: 103;
        flex-basis: auto;
        margin-right: auto;
        padding: 0 16px 0 14px;
    }

    .fluid-header .brand img {
        width: 224px;
    }

    .fluid-header.is-fixed .brand img {
        width: 224px;
    }

    .fluid-header .menu-toggle {
        position: relative;
        z-index: 103;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        border: 0;
        color: var(--white);
        background: transparent;
        cursor: pointer;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .fluid-header .menu-toggle-icon {
        position: relative;
        display: block;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(122, 215, 247, .46);
        border-radius: 50%;
        background: rgba(17, 64, 82, .2);
    }

    .fluid-header .menu-toggle-icon i {
        position: absolute;
        left: 11px;
        width: 14px;
        height: 1px;
        background: var(--white);
        transition: transform .25s ease, top .25s ease;
    }

    .fluid-header .menu-toggle-icon i:first-child {
        top: 14px;
    }

    .fluid-header .menu-toggle-icon i:last-child {
        top: 21px;
    }

    .fluid-header .menu-toggle[aria-expanded="true"] i:first-child {
        top: 18px;
        transform: rotate(45deg);
    }

    .fluid-header .menu-toggle[aria-expanded="true"] i:last-child {
        top: 18px;
        transform: rotate(-45deg);
    }

    .fluid-header .primary-nav {
        position: fixed;
        z-index: 102;
        top: 0;
        right: 0;
        display: flex;
        width: 100%;
        max-width: none;
        height: 100vh;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 120px 40px 50px;
        visibility: hidden;
        background: var(--fluid-ink);
        box-shadow: -30px 0 60px rgba(0, 0, 0, .25);
        opacity: 0;
        transform: translateX(100%);
        transition: visibility .4s, opacity .4s ease, transform .5s var(--ease);
    }

    .fluid-header .primary-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .fluid-header .primary-nav > a,
    .fluid-header .nav-dropdown > button {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        color: var(--white);
        font-size: 25px;
        letter-spacing: -.025em;
        text-align: left;
        text-transform: none;
    }

    .fluid-header .primary-nav > a::after,
    .fluid-header .nav-dropdown > button::after {
        display: none;
    }

    .fluid-header .dropdown-panel {
        position: static;
        display: none;
        width: 100%;
        padding: 5px 0 12px;
        visibility: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: none;
    }

    .fluid-header .nav-dropdown.is-open .dropdown-panel {
        display: block;
    }

    .fluid-header .dropdown-panel a {
        padding: 12px 0;
        color: rgba(255, 255, 255, .72);
    }

    .fluid-header .dropdown-panel a + a {
        border-color: rgba(255, 255, 255, .12);
    }

    .fluid-header .dropdown-panel a:hover {
        color: var(--white);
        background: transparent;
    }

    .fluid-header .nav-cta {
        display: none;
    }

    .cinematic-hero,
    .cinematic-content {
        min-height: 760px;
    }

    .cinematic-content {
        padding-top: 120px;
    }

    .cinematic-copy h1 {
        font-size: clamp(62px, 10vw, 88px);
    }

    .cinematic-lead {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 35px;
    }

    .cinematic-actions {
        width: max-content;
        align-items: flex-start;
    }

    .hero-trust {
        display: none;
    }

    .cinematic-interlude {
        height: 76svh;
        min-height: 620px;
    }

    .cinematic-interlude h2 {
        font-size: clamp(44px, 7.3vw, 68px);
    }

    .narrative-intro,
    .expertise-flow,
    .project-showcase,
    .method-path,
    .home-contact-fluid {
        padding-top: 110px;
        padding-bottom: 115px;
    }

    .narrative-head,
    .project-showcase-head,
    .method-path-head {
        grid-template-columns: 150px 1fr;
        gap: 45px;
    }

    .narrative-visual {
        grid-template-columns: 1fr;
    }

    .narrative-visual figure {
        height: 540px;
    }

    .narrative-experience {
        right: 35px;
        bottom: 55px;
        width: 210px;
        height: 210px;
    }

    .narrative-visual > p {
        max-width: 520px;
    }

    .expertise-layout {
        grid-template-columns: 1fr;
    }

    .expertise-intro {
        position: static;
        max-width: 650px;
    }

    .project-showcase-head > div {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-cinema {
        width: calc(100% - 32px);
        margin-bottom: 90px;
    }

    .project-cinema > a {
        height: 650px;
        border-radius: 0 0 120px 0;
    }

    .project-pair {
        gap: 30px;
    }

    .project-pair figure {
        height: 430px;
    }

    .project-pair article > a > div {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .method-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 65px 35px;
    }

    .method-timeline::before {
        display: none;
    }

    .method-timeline::after {
        display: none;
    }

    .method-timeline article {
        border-top: 1px solid var(--fluid-line);
        padding-top: 24px;
    }

    .method-timeline article > i {
        margin-bottom: 35px;
    }

    .home-contact-fluid .home-contact-grid {
        grid-template-columns: 1fr;
    }

    .fluid-form {
        margin-top: 20px;
    }

    .twin-showcase-head {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .twin-showcase-head > p {
        max-width: 680px;
    }

    .twin-console-metrics > span:nth-child(1) {
        display: none;
    }

    .twin-viewport {
        height: 590px;
    }

    .twin-line-strip {
        grid-template-columns: 145px 1fr 145px;
        gap: 14px;
        padding-inline: 18px;
    }

    .twin-capabilities {
        grid-template-columns: 1fr;
    }

    .twin-capabilities article {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(119, 173, 192, .19);
    }

    .twin-capabilities article:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .fluid-header .fluid-nav {
        min-height: 68px;
    }

    .fluid-header .brand img {
        width: 194px;
    }

    .fluid-header.is-fixed .brand img {
        width: 194px;
    }

    .fluid-header .menu-toggle-icon {
        border: 0;
    }

    .fluid-header.is-fixed .fluid-nav {
        min-height: 68px;
    }

    .cinematic-hero,
    .cinematic-content {
        min-height: 700px;
    }

    .cinematic-overlay {
        background: rgba(2, 9, 15, .61);
    }

    .cinematic-overlay::before {
        display: none;
    }

    .cinematic-content {
        justify-content: flex-start;
        padding-top: 150px;
        padding-bottom: 110px;
    }

    .cinematic-copy .soft-eyebrow {
        max-width: 270px;
        margin-bottom: 25px;
        font-size: 8px;
    }

    .cinematic-copy h1 {
        font-size: clamp(48px, 14.4vw, 62px);
        line-height: .87;
    }

    .cinematic-copy h1 em {
        margin-left: 17px;
    }

    .cinematic-lead {
        margin-top: 38px;
        margin-left: 17px;
    }

    .cinematic-lead > p {
        font-size: 14px;
    }

    .cinematic-actions {
        align-items: stretch;
        width: 100%;
    }

    .pill-button {
        justify-content: space-between;
    }

    .hero-bottom {
        min-height: 78px;
        grid-template-columns: 1fr auto;
        gap: 15px;
    }

    .hero-bottom > p {
        font-size: 9px;
    }

    .hero-next {
        display: none;
    }

    .hero-down {
        width: 42px;
        height: 42px;
    }

    .cinematic-interlude {
        height: 76svh;
        min-height: 580px;
    }

    .cinematic-interlude-content {
        padding-bottom: 60px;
    }

    .cinematic-interlude h2 {
        margin: 25px 0 36px;
        font-size: clamp(38px, 10.8vw, 48px);
    }

    .cinematic-interlude-foot {
        gap: 10px;
        font-size: 7px;
    }

    .cinematic-interlude-foot i {
        width: 18px;
    }

    .whatsapp-fab {
        right: 14px;
        bottom: 14px;
        padding: 6px;
    }

    .whatsapp-fab .whatsapp-copy {
        display: none;
    }

    .narrative-intro,
    .expertise-flow,
    .project-showcase,
    .method-path,
    .home-contact-fluid {
        padding-top: 82px;
        padding-bottom: 88px;
    }

    .engineering-ribbon {
        padding: 17px 0;
    }

    .engineering-ribbon i {
        margin-inline: 22px;
    }

    .narrative-head,
    .project-showcase-head,
    .method-path-head {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 62px;
    }

    .narrative-head h2,
    .project-showcase-head h2,
    .method-path-head h2 {
        font-size: clamp(39px, 11.5vw, 54px);
    }

    .narrative-head > div > p {
        margin-top: 32px;
        font-size: 14px;
    }

    .narrative-visual figure {
        height: 430px;
        border-radius: 0 80px 0 0;
    }

    .narrative-experience {
        right: 12px;
        bottom: 72px;
        width: 155px;
        height: 155px;
    }

    .narrative-experience strong {
        font-size: 48px;
    }

    .narrative-experience span {
        margin-top: 9px;
        font-size: 7px;
    }

    .expertise-layout {
        gap: 60px;
    }

    .expertise-intro h2 {
        margin-top: 28px;
        font-size: 45px;
    }

    .expertise-item {
        min-height: 0;
        grid-template-columns: 1fr 42px;
        gap: 16px;
        padding: 28px 0;
    }

    .expertise-copy {
        grid-template-columns: 30px 1fr;
        gap: 12px;
    }

    .expertise-copy h3 {
        font-size: 28px;
    }

    .expertise-copy p {
        font-size: 11px;
    }

    .expertise-item figure {
        grid-column: 1 / -1;
        grid-row: 1;
        height: 170px;
        border-radius: 70px;
        transform: none;
    }

    .expertise-copy {
        grid-column: 1;
        grid-row: 2;
    }

    .expertise-item > i {
        grid-column: 2;
        grid-row: 2;
        width: 42px;
        height: 42px;
    }

    .project-cinema {
        width: calc(100% - 20px);
        margin-bottom: 70px;
    }

    .project-cinema > a {
        height: 560px;
        border-radius: 0 0 80px 0;
    }

    .project-cinema-caption {
        right: 25px;
        bottom: 38px;
        left: 25px;
    }

    .project-cinema-caption h3 {
        font-size: 40px;
    }

    .project-cinema-caption p,
    .project-cinema > a > i {
        display: none;
    }

    .project-pair {
        grid-template-columns: 1fr;
        gap: 68px;
    }

    .project-pair article:nth-child(2) {
        margin-top: 0;
    }

    .project-pair figure {
        height: 390px;
    }

    .project-pair article:first-child figure {
        border-radius: 75px 0 0 0;
    }

    .project-pair article:nth-child(2) figure {
        border-radius: 0 0 75px 0;
    }

    .project-pair h3 {
        font-size: 30px;
    }

    .method-timeline {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .method-timeline article {
        display: grid;
        grid-template-columns: 34px 1fr;
        column-gap: 14px;
    }

    .method-timeline article > span {
        grid-column: 1;
        grid-row: 1;
    }

    .method-timeline article > i {
        display: none;
    }

    .method-timeline h3,
    .method-timeline p {
        grid-column: 2;
    }

    .method-timeline h3 {
        grid-row: 1;
    }

    .method-promise {
        align-items: stretch;
        flex-direction: column;
        margin-top: 70px;
        padding-top: 40px;
    }

    .method-promise > p {
        font-size: 39px;
    }

    .fluid-references {
        padding: 78px 0;
    }

    .fluid-references .references-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .fluid-references .references-head > p:last-child {
        font-size: 31px;
        text-align: left;
    }

    .fluid-references .reference-logo {
        width: 180px;
        margin-right: 18px;
    }

    .home-contact-fluid .home-contact-copy h2 {
        font-size: 44px;
    }

    .home-contact-fluid .field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-contact-fluid .quote-form,
    .home-contact-fluid .quote-form.is-compact,
    .home-contact-fluid .quote-form-wrap.is-compact .quote-form {
        padding: 0;
    }

    .digital-twin-showcase {
        padding-top: 82px;
        padding-bottom: 88px;
    }

    .twin-showcase-head {
        margin-bottom: 38px;
    }

    .twin-showcase-head h2 {
        font-size: clamp(40px, 11.5vw, 56px);
    }

    .twin-console-bar {
        min-height: 68px;
        padding: 0 16px;
    }

    .twin-console-brand small,
    .twin-console-metrics {
        display: none;
    }

    .twin-viewport {
        height: 510px;
        min-height: 510px;
    }

    .twin-status-card {
        top: 14px;
        left: 14px;
        width: calc(100% - 28px);
        padding: 14px 15px;
    }

    .twin-camera-label {
        display: none;
    }

    .twin-product-card {
        right: 14px;
        bottom: 14px;
        min-width: 185px;
        padding: 13px 14px;
    }

    .twin-line-strip {
        grid-template-columns: 1fr 1fr;
        gap: 13px 18px;
        padding: 18px 16px;
    }

    .twin-bath-track {
        grid-column: 1 / 3;
        grid-row: 1;
        gap: 2px;
    }

    .twin-bath-track i {
        height: 18px;
    }

    .twin-line-strip > span.unload {
        justify-self: end;
        text-align: right;
    }

    .twin-capabilities {
        margin-top: 26px;
    }

    .twin-capabilities article {
        grid-template-columns: 30px 1fr;
        padding: 26px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-down span {
        animation: none;
    }

    .engineering-ribbon > div,
    .hero-motion-title.is-visible > span > i {
        animation: none;
        transform: none;
    }

    .cinematic-media,
    [data-parallax] > img,
    [data-parallax] > a > img {
        transform: none;
    }

    .project-follow {
        display: none;
    }

    .twin-live-dot {
        animation: none;
    }
}
