@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
/* ===== RESET / BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #020C16;
    --panel: rgba(9, 17, 26, 0.92);
    --white: #F2F5F7;
    --muted: rgb(255 255 255 / 80%);
    --blue: #6FAED9;

    --max: 1430px;
    --padX: 28px;

    --h1: 88px;
    --h1-lh: 0.80;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: #000;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.inter {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.montserrat {
    font-family: "Hanken Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.ibm-plex-sans {
    font-family: "IBM Plex Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/* ===== LAYOUT HELPERS ===== */
.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
}

/* ==========================================================================
   AMBIENT BACKGROUND
   ========================================================================== */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;

    background:
        radial-gradient(1200px 800px at 50% -10%, rgba(90, 140, 190, 0.08), rgba(2, 12, 22, 0) 60%),
        radial-gradient(900px 700px at 12% 25%, rgba(40, 90, 140, 0.08), rgba(2, 12, 22, 0) 62%),
        radial-gradient(900px 700px at 88% 70%, rgba(20, 60, 110, 0.10), rgba(2, 12, 22, 0) 65%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);

    animation: bg-breathe 10s ease-in-out infinite;
}

.site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 50% 50%, rgba(2, 12, 22, 0) 0%, rgba(2, 12, 22, 0.70) 100%);
    opacity: 0.9;
}

.site-bg__blob {
    position: absolute;
    width: 980px;
    height: 980px;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.38;

    background:
        radial-gradient(circle at 30% 30%, rgba(110, 160, 210, 0.28), rgba(2, 12, 22, 0) 62%),
        radial-gradient(circle at 70% 65%, rgba(35, 90, 140, 0.18), rgba(2, 12, 22, 0) 60%);

    transform: translate3d(0, 0, 0);
    animation: blob-float 18s linear infinite;
}

.site-bg__blob--1 {
    top: -260px;
    left: -260px;
    animation-duration: 16s;
}

.site-bg__blob--2 {
    top: 10%;
    right: -320px;
    width: 860px;
    height: 860px;
    opacity: 0.55;
    animation-duration: 18s;
    animation-delay: -5s;
}

.site-bg__blob--3 {
    bottom: -360px;
    left: 18%;
    width: 1100px;
    height: 1100px;
    opacity: 0.50;
    animation-duration: 20s;
    animation-delay: -9s;
}

@keyframes blob-float {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    25% {
        transform: translate3d(110px, 60px, 0) scale(1.06);
    }

    50% {
        transform: translate3d(40px, 140px, 0) scale(0.98);
    }

    75% {
        transform: translate3d(-120px, 80px, 0) scale(1.07);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes bg-breathe {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.08);
    }

    100% {
        filter: brightness(1);
    }
}

/* ==========================================================================
   UNIVERSAL ANIMATION SYSTEM (keep your classes)
   ========================================================================== */
.animate-section {
    opacity: 0;
    transition: opacity 600ms ease;
}

.animate-section.is-inview {
    opacity: 1;
}

.animate-item {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.985);
    filter: blur(8px);
    transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
    transition-delay: var(--delay, 0ms);
    will-change: opacity, transform, filter;
}

.animate-item.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

/* legacy alias so nothing breaks */
.anim-section {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 700ms ease, transform 700ms ease;
}

.anim-section.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.anim-item {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 650ms ease, transform 650ms ease;
}

.anim-item.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* optional “breath” */
.animate-item.breath.is-inview {
    animation: sectionBreath 4s ease-in-out infinite;
}

@keyframes sectionBreath {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.018);
    }

    100% {
        transform: scale(1);
    }
}

/* hover helper */
.animate-item.hover-scale {
    transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease, box-shadow 420ms cubic-bezier(.2, .8, .2, 1);
}

.animate-item.hover-scale:hover {
    transform: translate3d(0, -6px, 0) scale(1.03);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {

    .animate-section,
    .animate-item,
    .anim-section,
    .anim-item {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.btn.btn--primary {
    position: relative;
    gap: 16px;

    padding: 15px 20px;
    border-radius: 999px;

    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;

    transition: transform 0.35s ease;
}

.btn.btn--primary .arrow {
    display: inline-flex;
    transition: transform 0.35s ease;
}

.btn.btn--primary .btn__label {
    display: inline-block;
    transition: transform 0.25s ease;
}

.btn.btn--primary:hover .btn__label {
    transform: scale(1.04);
}

.btn.btn--primary:hover .arrow {
    transform: translateX(6px);
}

.btn.btn--primary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;

    opacity: 0.9;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    background-size: 200% 100%;
    background-position: 0% 50%;
}

.btn.btn--primary:hover::after {
    animation: gradient-move 1.2s linear forwards;
}

@keyframes gradient-move {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 200% 50%;
    }
}


/* ==========================================================================
   HEADER / MENU (kept minimal)
   ========================================================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 50px;
    margin: 50px 0;
}

.header__container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    width: 150px;
    height: 55px;
}

.burger {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;

    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;

    transition: 0.35s ease;
}

.burger__line {
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.burger__line:nth-child(2) {
    width: 20px;
}

.burger:hover .burger__line {
    background: rgba(255, 255, 255, 0.9);
}

.menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 250ms ease;
}

.menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;

    background: #09111a;
    color: #fff;
    padding: 26px 22px;

    display: flex;
    flex-direction: column;

    transform: translate3d(100%, 0, 0);
    transition: transform 320ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.menu__close {
    align-self: flex-end;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 8px 10px;
    margin-bottom: 6px;
}

.menu__link {
    display: flex;
    align-items: center;
    gap: 35px;

    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 70px;

    padding: 10px 6px;
    border-radius: 10px;
}

.menu__link .index {
    font-size: 24px;
    color: var(--blue);
}

.menu__link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.menu.is-open {
    pointer-events: auto;
}

.menu.is-open .menu__backdrop {
    opacity: 1;
}

.menu.is-open .menu__panel {
    transform: translate3d(0, 0, 0);
}

body.menu-open {
    overflow: hidden;
}

/* ===== MENU ===== */
.menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 250ms ease;
}

.menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #09111a;
    color: #fff;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;

    transform: translate3d(100%, 0, 0);
    transition: transform 320ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}


.container.header__container {
    height: 100%;
    width: 100%;
    max-width: 1430px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.container.header__container .header__logo {
    height: 100%;
}

.container.header__container .header__logo img {
    width: 150px;
    height: 55px;
}

.container.header__container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container.header__container .header__nav .header__menu {
    display: flex;
    align-items: center;
    gap: 35px;

    z-index: 1111;
}

.container.header__container .header__nav .header__menu .header__menu-item a {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
}


/* ==========================================================================
   HERO
   ========================================================================== */
section.hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    max-height: 1080px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    background: #05070c;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__background img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.08) translate3d(0, 0, 0);
    will-change: transform;
    animation: heroZoom 15s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(70% 60% at 50% 30%, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.78));
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: 1;

    filter: blur(18px);
    opacity: 0.85;
    transform: translate3d(-4%, 0, 0);
    will-change: transform, opacity;
    animation: glowMove 14s ease-in-out infinite alternate;

    mix-blend-mode: screen;
    pointer-events: none;
}

.hero__fade-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 260px;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(to bottom,
            rgba(2, 12, 22, 0) 0%,
            rgba(2, 12, 22, 0.65) 55%,
            rgba(2, 12, 22, 1) 100%);
}

.hero__container {
    position: relative;
    z-index: 3;
    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding-top: 200px;
}

.hero__container .hero__container__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 10px;
}

.hero__title {
    max-width: 1400px;
    font-size: var(--h1);
    color: var(--white);
    text-align: center;
    line-height: 100%;
}

.hero__actions {
    padding-top: 200px;
}

@keyframes heroZoom {
    from {
        transform: scale(1.06) translate3d(0, 1.5%, 0);
    }

    to {
        transform: scale(1.15) translate3d(0, -3.5%, 0);
    }
}

@keyframes glowMove {
    from {
        transform: translate3d(-4%, 0, 0);
        opacity: 0.75;
    }

    to {
        transform: translate3d(4%, -2%, 0);
        opacity: 0.95;
    }
}

/* hero noise (optional) */
.hero__noise {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.045;
    mix-blend-mode: overlay;
    animation: noiseShift 2.5s steps(2) infinite;
}

@keyframes noiseShift {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-2%, 2%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero__background img,
    .hero::before,
    .hero__noise {
        animation: none;
    }
}

/* ===== HERO INTRO (on load only) ===== */
.hero-anim {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 1100ms ease,
        transform 1400ms cubic-bezier(.16, 1, .3, 1);
    will-change: opacity, transform;
}

.hero-anim--delay1 {
    transition-delay: 180ms;
}

.hero-anim--delay2 {
    transition-delay: 320ms;
}

.hero.is-loaded .hero-anim {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero__background img {
    transform: translate3d(0, 0, 0) scale(1.10);
    will-change: transform;
}

.hero {
    --hero-fade: 0;
}

.hero::after {
    opacity: calc(0.75 + (var(--hero-fade) * 0.25));
}

@media (prefers-reduced-motion: reduce) {
    .hero-anim {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   ABOUT-STATEMENT
   ========================================================================== */

section.about-statement {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 200px 0;
}

.about-statement__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(143, 154, 165, 0.5);
}

.about-statement__content {
    width: 100%;
    max-width: 1255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-statement__eyebrow {
    margin-bottom: 20px;
    color: var(--blue);
    opacity: 0.4;
}

.about-statement__text {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 38px;
    line-height: 100%;
}

/* word reveal (keep) */
.reveal-group .word {
    display: inline-block;
    color: rgba(143, 154, 165, 0.5);
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.28s ease;
    will-change: opacity, transform;
}

.reveal-group .word.is-on {
    color: var(--white);
    transform: translateY(0);
}

/* ==========================================================================
   APPROACH
   ========================================================================== */

/* ==========================================================================
   APPROACH (animate-section / animate-item)
   ========================================================================== */

section.approach {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

.approach .container.approach__container {
    width: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.approach__header {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.approach__title {
    font-size: 78px;
    line-height: 100%;
    color: var(--white);
    text-transform: uppercase;
}

.approach__tagline {
    width: 100%;
    max-width: 225px;
    font-size: 18px;
    text-align: left;
    color: var(--muted);
}

.approach__actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.approach__link.btn-outline {
    padding: 15px 35px;
}

/* layout cards */
.approach .principles__layout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
}

.approach .principles__layout .principle-card {
    width: 100%;
    height: 100%;
    max-width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.approach .principles__layout .principle-card--02 {
    top: 270px;
}

.approach .principles__layout .principle-card--03 {
    top: 80px;
}

.principle-card__index {
    color: #6FAED9;
}

.principle-card__box {
    position: relative;
    overflow: hidden;

    padding: 60px;
    color: rgba(255, 255, 255, 0.8);

    border: 1px solid transparent;
    border-image: linear-gradient(180deg,
            #6FAED9 16%,
            #1A2C3A 79%,
            #142635 91%,
            #09111A 100%) 1;

    transform: translate3d(0, 0, 0);
    transition: transform 260ms ease;
    will-change: transform;
}


.principle-card__title {
    text-transform: uppercase;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.principle-card__text {
    width: 100%;
    min-height: 51px;
    font-size: 18px;
}

/* ===== STAGGER via animate delays ===== */
.approach .approach__header {
    --delay: 0ms;
}

.approach .principles__layout .principle-card:nth-child(1) {
    --delay: 140ms;
}

.approach .principles__layout .principle-card:nth-child(2) {
    --delay: 280ms;
}

.approach .principles__layout .principle-card:nth-child(3) {
    --delay: 420ms;
}

.principle-card__box::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;

    background: linear-gradient(180deg,
            rgba(111, 174, 217, 0.75) 0%,
            rgba(26, 44, 58, 0.55) 45%,
            rgba(9, 17, 26, 0.0) 100%);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    padding: 1px;
    opacity: 0.30;
    transition: opacity 360ms ease, filter 360ms ease;
}

.principle-card.animate-item.is-inview .principle-card__box::before {
    opacity: 0.55;
    animation: borderGlowPulse 2.8s ease-in-out infinite;
}

@keyframes borderGlowPulse {
    0% {
        opacity: 0.42;
        filter: blur(0px);
    }

    50% {
        opacity: 0.70;
        filter: blur(0.5px);
    }

    100% {
        opacity: 0.42;
        filter: blur(0px);
    }
}

/* hover */
.principle-card:not(.unfilled) .principle-card__box:hover {
    transform: translate3d(0, -6px, 0) scale(1.02);
}

.principle-card__box:hover::before {
    opacity: 0.90;
    filter: blur(0.8px);
    animation: none;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    .principle-card.animate-item.is-inview .principle-card__box::before {
        animation: none;
    }
}

/* ==========================================================================
   APPROACH — Breath animation for cards
   ========================================================================== */

.approach .principle-card__box {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);

    transition:
        transform 360ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 360ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.approach.animate-section.is-inview .principle-card__box {
    animation: cardBreath 4.8s ease-in-out infinite;
}

@keyframes cardBreath {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -3px, 0) scale(1.02);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.approach .principle-card:nth-child(1) .principle-card__box {
    animation-delay: 0ms;
}

.approach .principle-card:nth-child(2) .principle-card__box {
    animation-delay: -1.6s;
}

.approach .principle-card:nth-child(3) .principle-card__box {
    animation-delay: -3.2s;
}

.approach .principle-card__box:hover {
    transform: translate3d(0, -10px, 0) scale(1.05);
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .approach.animate-section.is-inview .principle-card__box {
        animation: none;
    }
}

/* ==========================================================================
   FIELDS (animate-section / animate-item)
   ========================================================================== */

section.fields {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* position: relative;
    overflow: hidden; */
    margin-top: 400px;
}

.fields .container.fields__container {
    width: 100%;
    max-width: 1430px;
    display: flex;
    position: relative;
    z-index: 2;
    padding: 0 50px;
}

/* header */
.fields__header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
}

.fields__eyebrow {
    width: 100%;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.fields__title {
    font-size: 78px;
    line-height: 100%;
    color: var(--white);
    text-transform: uppercase;
}

/* grid */
.fields__grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fields__sticky-layout {
    display: flex;
}

/* card base */
.field-card {
    display: flex;
    width: 100%;
    flex-direction: row-reverse;

    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;

    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow;
}

.field-detail__index {
    height: 100%;
    font-size: 16px;
    color: #6fafd989;
}

.field-detail__index span {
    font-size: 32px;
}


/* content */
.field-card__number {
    font-size: 14px;
}

.field-card__title {
    width: 100%;
    min-height: 72px;
    font-size: 24px;
    line-height: 100%;
    margin: 10px 0 80px;
}

.field-card__text {
    width: 100%;
    min-height: 51px;
    font-size: 14px;
}

/* ===== HOVER (fixed) ===== */

.fields__header {
    --delay: 0ms;
}

.fields__grid .field-card:nth-child(1) {
    --delay: 120ms;
}

.fields__grid .field-card:nth-child(2) {
    --delay: 240ms;
}

.fields__grid .field-card:nth-child(3) {
    --delay: 360ms;
}

.fields__grid .field-card:nth-child(4) {
    --delay: 480ms;
}

.fields__grid .field-card:nth-child(5) {
    --delay: 600ms;
}

.fields__grid .field-card:nth-child(6) {
    --delay: 720ms;
}

.fields__grid .field-card:nth-child(7) {
    --delay: 840ms;
}

.fields__grid .field-card:nth-child(8) {
    --delay: 960ms;
}

.fields__grid .field-card:nth-child(9) {
    --delay: 1080ms;
}

.fields__grid .field-card:nth-child(10) {
    --delay: 1200ms;
}

.fields__grid .field-card:nth-child(11) {
    --delay: 1320ms;
}

.fields__grid .field-card:nth-child(12) {
    --delay: 1440ms;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    .field-card {
        transition: none;
    }

    .field-card:hover {
        transform: none;
        filter: none;
    }

    .field-card::before {
        display: none;
    }
}

/* ==========================================================================
   ABOUT (animate-section / animate-item friendly)
   ========================================================================== */

section.about {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

section.about .about__container {
    width: 100%;
    max-width: 1430px;

    display: flex;
    flex-direction: column;
    padding: 0 50px;
}

/* layout */
.about__grid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* gap: 60px; */
    align-items: start;
}

/* left */
.about__title {
    font-size: 78px;
    line-height: 75%;
    color: var(--white);
    text-transform: uppercase;
}

/* right */
.about__right {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about__right a {
    padding-left: 0px;
}

.about__text {
    width: 100%;
    max-width: 680px;

    display: block;

    text-align: left;
    text-transform: uppercase;

    font-size: 26px;
    line-height: 1.25;

    color: rgba(143, 154, 165, 0.8);

    margin-bottom: 50px;
}

/* optional: actions spacing */
.about__actions {
    margin-top: 0;
}

/* ==========================================================================
   CASE STUDIES (animate-section / animate-item friendly)
   ========================================================================== */

section.case-studies {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

section.case-studies .case-studies__container {
    width: 100%;
    max-width: 1430px;

    display: flex;
    flex-direction: column;
    padding: 0 50px;
}

/* header */
.case-studies__header {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.case-studies__title {
    font-size: 78px;
    line-height: 100%;
    color: var(--white);
    text-transform: uppercase;
}

.case-studies__actions {
    display: flex;
    align-items: flex-end;
}

/* grid */
.case-studies__grid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 130px;
    margin-top: 70px;
}

/* card base */
.case-card {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;

    color: rgba(255, 255, 255, 0.8);

    transform: translate3d(0, 0, 0);
    transition:
        transform 360ms cubic-bezier(.2, .8, .2, 1),
        filter 360ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform, filter;
    overflow: hidden;
    cursor: pointer;
}

/* number */
.case-card__number {
    font-size: 16px;
    text-align: right;
    color: #6FAED9;
}

/* media */
.case-card__media {
    overflow: hidden;
}

.case-card__image {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.case-card:hover .case-card__image {
    transform: scale(1.06);
    transition: transform 0.6s ease;
}

/* body spacing */
.case-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-card__title {
    font-size: 26px;
    text-transform: uppercase;
    color: var(--white);
    transition: transform 360ms cubic-bezier(.2, .8, .2, 1);
}


.case-card__sh_details {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);

    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);

    transition:
        opacity 520ms cubic-bezier(.2, .8, .2, 1),
        transform 0.6s ease,
        filter 520ms cubic-bezier(.2, .8, .2, 1);

    transition-delay: 80ms;
}

/* hover micro-shift */
.case-card__body:hover .case-card__title {
    transform: translate3d(0, -2px, 0);
}

/* unfilled subtitle */
.case-studies__subtitle {
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    text-align: left;
}

.case-card__body:hover::after {
    background: rgba(0, 0, 0, 0.55);
}

.case-card__body:hover .case-card__sh_details {
    opacity: 1;
    margin-top: 15px;
    transform: translateY(0);
    filter: blur(0);

    max-height: 400px;
}

.case-card__body:hover .case-card__title {
    transform: translateY(-4px);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {

    .case-card,
    .case-card__image,
    .case-card__title {
        transition: none !important;
    }

    .case-card:hover {
        transform: none;
        filter: none;
    }
}

/* ==========================================================================
   PUBLICATIONS (animate-section / animate-item friendly)
   ========================================================================== */

section.publications {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

section.publications .publications__container {
    width: 100%;
    max-width: 1430px;
    gap: 70px;

    display: flex;
    flex-direction: column;
}

.publications__header {
    width: 100%;
}

.publications__title {
    font-size: 78px;
    line-height: 100%;
    color: var(--white);
    text-transform: uppercase;
}

.publications__layout {
    width: 100%;
    display: flex;
}

.pub_block__left .pub-card {
    width: 50%;
    height: 450px;
}

.pub-card__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pub-card__media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pub-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.6;
    filter: blur(2px);
}

/* ==========================================================================
   PUB CARD (shared)
   ========================================================================== */

.pub-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    color: rgba(255, 255, 255, 0.8);

    transform: translate3d(0, 0, 0);
    transition:
        transform 360ms cubic-bezier(.2, .8, .2, 1),
        filter 360ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform, filter;
}

.pub-card__link {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none;
    color: inherit;

    transition: transform 320ms cubic-bezier(.2, .8, .2, 1), background-color 320ms ease;
    transform: translate3d(0, 0, 0);
}

.pub-card__link:hover .pub-card__title {
    text-decoration: underline;
}

.pub-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.pub-card__link:hover .pub-card__media img {
    transform: scale(1.06);
    transition: transform 0.6s ease;
}

.pub-card__link:focus-visible {
    outline: 2px solid rgba(111, 174, 217, 0.6);
    outline-offset: 3px;
}

.pub-card__media {
    overflow: hidden;
}

.pub-card__image {
    display: block;
    width: 100%;
    height: auto;

    transform: scale(1);
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.pub-card__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.pub-card__date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.pub-card__title {
    line-height: 1.05;
    font-size: 20px;
    max-width: 440px;
    color: var(--white);
    transition: transform 360ms cubic-bezier(.2, .8, .2, 1);
}

.pub-card__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Variants: featured / small
   ========================================================================== */

.pub-card--featured .pub-card__image {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.pub-card--featured .pub-card__body {
    gap: 22px;
}

.pub-card--small {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 25px;
    align-items: start;
}

.pub-card--small .pub-card__media {
    border-radius: 14px;
}

.pub-card--small .pub-card__image {
    width: 450px;
    height: 240px;
    object-fit: cover;
}

.pub-card--small .pub-card__body {
    max-width: 480px;
}

.publications__actions {
    margin-top: 50px;
}

.publication__subtitle {
    font-size: 18px;
}

@media (prefers-reduced-motion: reduce) {

    .pub-card,
    .pub-card::before,
    .pub-card__image,
    .pub-card__title {
        transition: none !important;
    }

    .pub-card:hover {
        transform: none;
        filter: none;
    }

    .pub-card:hover .pub-card__image {
        transform: none;
    }
}

.publication_hero {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.publication_hero .container.publication__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 70px 0 28px;
    gap: 15px;
}

.publication_hero .publication__title {
    font-size: 78px;
    text-transform: uppercase;
    color: #F2F5F7;
    text-align: left;
}

.publication_hero .publication__subtitle {
    width: 100%;
    max-width: 800px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

section.publication_hero__content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.publication_hero__content .container.publication_hero__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px 28px 0 28px;
    gap: 25px;
}

.container.publication_hero__container .pub__tabs {
    width: 100%;
    max-width: 260px;
    display: flex;
    gap: 22px;
    justify-content: flex-start;
    align-items: flex-start;
}

.container.publication_hero__container .pub__tabs .tab {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.container.publication_hero__container .pub__tabs .tab.highlighted {
    padding-bottom: 10px;
    color: #F2F5F7;
}

.publication_hero__content .publication_hero__insights {
    width: 100%;
    display: block;
    margin-top: 16px;
}

.pub__panel {
    display: none;
    width: 100%;
}

.publication_hero__content .pub__panel.insights {
    width: 100%;
    justify-content: space-between;
    gap: 35px;
}

.publication_hero__content .pub__insight {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    max-width: 50%;
    min-height: 500px;
    padding: 35px;
    padding-top: 200px;
    backdrop-filter: blur(20px);
    opacity: 0.8;
    inset: 1px;
    background: radial-gradient(1200px 600px at 50% 30%, rgb(111 174 217 / 4%), #00000045 60%), #081e3073;
    /* transition: opacity 320ms; */
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    cursor: pointer;
}

.publication_hero__content .pub__insight:hover .subtitle {
    transform: scale(1.04);
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.pub__insight img {
    width: 100%;
    max-width: 425px;
}

.pub__insight img.logo {
    max-width: 178px;
}

.publication_hero__content .publication_hero__insights .pub__insight .subtitle {
    color: #F2F5F7;
    font-size: 20px;
}

.container.publications__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
}

.publications__layout {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.publications__layout .pub_block__left {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 35px;
}

.pub-card__media {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pub-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.publications__layout .pub_block__left .pub-card__body {
    position: absolute;
    left: 30px;
    width: 100%;
    height: 95%;
    max-width: 480px;
    display: flex;
    justify-content: end;
    color: rgba(255, 255, 255, 0.6);
    gap: 30px;
}

.pub-card__title {
    line-height: 100%;
    font-size: 20px;
    color: #F2F5F7;
}

.publication_hero__content .publication_hero__insights {
    width: 100%;
    display: block;
    margin-top: 16px;
}

.pub__panel {
    display: none;
    width: 100%;
}

.pub__panel.is-active {
    display: block;
}

.pub__panel.insights.is-active {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.pub__tabs .tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  color: rgba(255,255,255,.35);
  transition: color 220ms ease, transform 220ms ease;
}

.pub__tabs .tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  opacity: 0;
  transform: scaleX(.6);
  transform-origin: center;
  border-radius: 999px;

  background: linear-gradient(250deg, #6FAED9 16%, #1A2C3A 79%, #142635 91%, #09111A 100%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.pub__tabs .tab:hover {
  color: rgba(255,255,255,.9);
  transform: translate3d(0,-1px,0);
}

.pub__tabs .tab:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.pub__tabs .tab.highlighted {
  color: #F2F5F7;
}

.pub__tabs .tab.highlighted::after {
  opacity: 1;
  transform: scaleX(1);
}

/* =========================
   PANEL SWITCH ANIMATION
   ========================= */

.pub__panel {
  display: none;
  width: 100%;
}

/* will animate when becoming active */
.pub__panel.is-active {
  display: block;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: panelIn 420ms cubic-bezier(.2,.8,.2,1) forwards;
}

.pub__panel.insights.is-active {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}

@keyframes panelIn {
  to {
    opacity: 1;
    transform: translate3d(0,0,0);
  }
}


/* ==========================================================================
   LEADERSHIP (animate-section / animate-item friendly)
   ========================================================================== */

section.leadership {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

section.leadership .container.leadership__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

.container.leadership__container .leadership__left {
    /* width: 52%; */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leadership__left .leadership__content {
    display: flex;
    margin-top: 70px;
    gap: 10px;
}

.leadership__content>div:first-child {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leadership__header {
    min-height: 53.5px;
    font-size: 78px;
    text-transform: uppercase;
    color: var(--white);
}

.leadership__details {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 5px;
}

.leadership__details .lead__name {
    font-size: 32px;
    color: var(--white);
}

.leadership__details .lead__position {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.leadership__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.leadership__left .leadership__subtitle {
    padding: 100px 250px 0 25px;
}

.leadership__right .leadership__subtitle {
    width: 100%;
    max-width: 390px;
}

.container.leadership__container .leadership__right {
    /* width: 50%; */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leadership__right .leadership__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.leadership__left .leadership__content img {
    max-width: 370px;
}

.leadership__right .leadership__content img {
    max-width: 350px;
}

.leadership__hero {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
}

.leadership__hero .founder {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.leadership__hero .founder .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.leadership_hero__content {
    width: 70%;
}

.leadership_hero__content .content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leadership_hero__content .social {
    display: flex;
    margin-top: 25px;
    gap: 20px;
}

.leadership_hero__content .social a {
  transition: transform 0.25s ease;
}

.leadership_hero__content .social a:hover {
  cursor: pointer;
  transform: scale(1.04);
}

.leadership_hero__content .social img {
    width: 23px;
    height: 23px;
}

.leadership__hero .leadership_hero__content .lead__details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.leadership__hero .leadership_hero__content .lead__details__name {
    font-size: 24px;
    color: var(--white);
}

.leadership__hero .leadership_hero__content .lead__details__position {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.leadership__hero.reverse {
    flex-direction: row-reverse;
}

.hero__actions.leadership {
    padding-top: 30px;
}

.hero__actions.leadership a {
    font-size: 16px;
    padding-left: 0px;
}

/* ==========================================================================
   PRESENCE (animate-section / animate-item friendly)
   ========================================================================== */

section.presence {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

section.presence .presence__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 0 50px;
}

.presence__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.presence__title {
    width: 100%;
    display: flex;
    justify-content: start;
    font-size: 78px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 100%;
}

.presence__eyebrow {
    width: 100%;
    display: flex;
    justify-content: end;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 40px;
    left: -28px;
    margin-top: 0;
}

.presence__eyebrow p {
    max-width: 343px;
    font-size: 18px;
}

.presence .map-wrap {
    width: 100%;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

footer.footer {
    width: 100%;
    height: 100%;
    max-height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}


.footer .container.footer__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
}

.footer .container.footer__container .footer_logo img {
    width: 150px;
    height: 55px;
}

.footer .container.footer__container .footer__brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .container.footer__container .footer__locations {
    font-size: 14px;
    color: var(--white);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer__top .footer__brand {
    width: 70%;
}

.footer__title {
    min-height: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__links {
    font-size: 14px;
    display: flex;
    width: 25%;
    justify-content: space-between;
}

.footer__links .footer__col {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
}

.footer__links .footer__col a {
    text-decoration: none;
    color: var(--white);
    min-height: 18px;
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1)
}

.footer__links .footer__col a:hover,
.footer .footer__bottom a:hover {
    transform: scale(1.06);
    cursor: pointer;
}

.footer .footer__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 25px;
    color: var(--white);
    border-top: 0.3px solid transparent;
    border-image: linear-gradient(250deg,
            #6FAED9 16%,
            #1A2C3A 79%,
            #142635 91%,
            #09111A 100%) 1;
}

.footer .footer__bottom span {
    font-size: 12px;
}

.footer .footer__bottom .footer__legal {
    width: 12%;
    display: flex;
    justify-content: space-between;
}

.footer .footer__bottom a {
    text-decoration: none;
    color: var(--white);
    font-size: 12px;
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1)
}

section.contact__us {
    width: 100%;
    height: 100%;
    max-height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 200px 0;
}

.contact__us .container.contact__us__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.contact__us .container.contact__us__container .contact__header {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact__us .container.contact__us__container .contact__header .contact__title {
    /* width: 50%; */
    max-width: 690px;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-size: 78px;
    color: var(--white);
    line-height: 100%;
}


.contact__us .container.contact__us__container .contact__header .contact__tagline {
    max-width: 420px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact__us .container.contact__us__container .contact__header .contact__tagline:not(:last-child) {
    margin: 20px 0;
}

.contact__us .contact__form {
    width: 50%;
    height: 100%;
}

.contact__form .form__contact__header {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: 40px;
    color: var(--white);
    gap: 5px;

}

.contact__form .form__contact__tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}


.contact-form {
    width: 100%;
    max-width: 600px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.contact-form__field {
    position: relative;
    padding: 15px 15px;
    border-bottom: 0.5px solid #6faed930;

}

.contact__form.one__field {
    width: 100%;
    display: flex;
    gap: 10px;
}

.contact__form.one__field .contact-form__field {
    width: 50%;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;

    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.25;

    padding-right: 56px;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__select {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.contact-form__select:valid {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form__field:focus-within {
    border-bottom-color: rgba(160, 230, 255, 0.45);
}

.contact-form__actions {
    margin-top: 28px;
}

.contact-form__submit {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
}

.contact-form .contact__actions {
    width: 100%;
    margin-top: 25px;
}

.contact__actions .btn {
    width: 100%;
}

.contact__header .contact__subtitle {
    width: 100%;
    max-width: 515px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}


/* ===== ABOUT TEXT: WORD-BY-WORD REVEAL (separate) ===== */

.about__reveal-words {
    display: block !important;
    align-items: initial !important;
    justify-content: initial !important;
}

.about__reveal-words {
    color: rgba(143, 154, 165, 0.5);
}

.about__reveal-words .w {
    display: inline;
    color: rgba(143, 154, 165, 0.5);
    transition: color 0.25s linear;
}

.about__reveal-words .w.is-visible {
    color: var(--white);
}

/* ===== CASE CARD: glow + hover scale ===== */

.case-card__body::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.0);
    transition: background 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.case-card__content {
    position: absolute;
    bottom: 0px;
    inset: auto 0 0 0;
    padding: 25px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.case-card__image {
    max-height: 500px;
}

.case-card--unfilled:hover {
    transform: none;
    filter: none;
}

/* ===== CASE MODAL ===== */

.case-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.case-modal .modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 20, 0.322);
    backdrop-filter: blur(14px);
    opacity: 0;
    transition: opacity 320ms ease;
}

.case-modal .modal__panel {
    height: 100%;
    width: 100%;
    max-width: 70%;
    max-height: 90%;
    padding: 40px;
    overflow: hidden;
}

.case-modal .case-modal__content {
    height: 100%;
    position: absolute;
    left: 50%;
    top: 55%;
    width: 100%;
    padding: 25px 100px 50px 100px;

    background: rgb(9 17 26 / 0%);
    border-radius: 18px;

    opacity: 0;
    transform: translate(-50%, -46%) scale(0.96);
    filter: blur(10px);

    transition:
        opacity 420ms cubic-bezier(.2, .8, .2, 1),
        transform 420ms cubic-bezier(.2, .8, .2, 1),
        filter 420ms cubic-bezier(.2, .8, .2, 1);
}

.case-modal__header-content {
    width: 100%;
    height: 100%;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-modal.is-open {
    pointer-events: auto;
}

.case-modal.is-open .modal__backdrop {
    opacity: 1;
}

.case-modal.is-open .case-modal__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
}

.case-modal-data__title {
    font-size: 40px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 50px;
    line-height: 100%;
}

.case-modal-data__content {
    height: calc(100% - 125px);
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.case-modal-data__content__wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--white);
    padding-bottom: 35px;
}

.case-modal-data__content__wrapper:not(:last-child) {
    border-bottom: 0.5px solid transparent;
    border-image: linear-gradient(315deg, #6FAED9 16%, #1A2C3A 79%, #142635 91%, #09111A 100%) 1;
}

.case-modal-data__content__wrapper .case__header {
    font-size: 14px;
    color: #6FAED9;
    text-transform: uppercase;
}

.case-modal-data__content__wrapper p {
    max-width: 880px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* close */
.modal__close {
    position: absolute;
    top: 22px;
    right: 22px;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 220ms ease, transform 220ms ease;
}

.modal__close:hover {
    transform: scale(1.06);
    cursor: pointer;
}

/* content */
.case-modal__title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.case-modal__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.case-modal__close {
    position: absolute;
    top: 10px;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1111;

    transition: background 220ms ease, transform 220ms ease;
}

.case-modal__close:hover {
    transform: scale(1.06);
    cursor: pointer;
}

/* ===== LEADERSHIP: glow + hover ===== */

.leadership__person {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 18px;
    padding: 10px;

    border: 1px solid transparent;
    border-image: linear-gradient(180deg,
            rgba(111, 174, 217, 0.55) 0%,
            rgba(26, 44, 58, 0.38) 60%,
            rgba(9, 17, 26, 0.70) 100%) 1;

    transition: transform 0.35s ease, filter 0.35s ease;
    will-change: transform, filter;
}

.leadership__person img {
    display: block;
    border-radius: 14px;
    transition: transform 0.35s ease, filter 0.35s ease;
    will-change: transform, filter;
}

.leadership__person.is-active {
    filter: drop-shadow(0 0 18px rgba(111, 174, 217, 0.14));
}

.leadership__person:hover {
    transform: scale(1.015);
    filter:
        drop-shadow(0 0 26px rgba(111, 174, 217, 0.22)) drop-shadow(0 0 50px rgba(111, 174, 217, 0.10));
}

.leadership__person:hover img {
    transform: scale(1.01);
}

.leadership__person.is-pulse {
    animation: leaderPulse 4.2s ease-in-out infinite;
}

@keyframes leaderPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.010);
    }

    100% {
        transform: scale(1);
    }
}


/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    transition: opacity 240ms ease;
}

.modal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    height: 90%;
    overflow: auto;

    transform: translate3d(-50%, -46%, 0);
    opacity: 0;

    background: radial-gradient(1200px 600px at 50% 30%, rgba(111, 174, 217, 0.08), transparent 60%), rgba(10, 20, 30, 0.55);
    backdrop-filter: blur(18px);

    padding: 40px;

    transition: transform 280ms cubic-bezier(.2, .8, .2, 1), opacity 280ms ease;
    will-change: transform, opacity;
}



.modal__close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    font-size: 22px;
}

.modal__header-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
}

.modal__title {
    text-transform: uppercase;
    font-size: 34px;
    color: var(--white);
    line-height: 1.05;
}

.modal__subtitle {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.modal__body {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.modal__p:not(:last-child) {
    margin-bottom: 14px;
}

/* open state */
.modal.is-open {
    pointer-events: auto;
}

.modal.is-open .modal__backdrop {
    opacity: 1;
}

.modal.is-open .modal__panel {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
}

/* lock scroll (reuse your pattern) */
body.modal-open {
    overflow: hidden;
}

.map-wrap {
    width: 100%;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
}

.world-map .city-label {
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.01em;

    fill: rgba(255, 255, 255, 0.8);
    opacity: 0.85;

    pointer-events: none;
}

.world-map .city:hover .city-label {
    opacity: 1;
    fill: rgba(242, 245, 247, 0.92);
}

.world-map .country {
    fill: rgba(255, 255, 255, 0.12);
}

.world-map .country--hl {
    fill: #6FAED9;
}

/* optional city points */
.world-map .city-dot {
    fill: #6FAED9;
    opacity: 0.9;
}

.world-map .city-dot-glow {
    fill: #6FAED9;
    opacity: 0.22;
}

.map-pop {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 6px, 0);
    transition: opacity 0.18s ease, transform 0.18s ease;
    padding: 12px 14px;
    /* border-radius: 12px; */

    background-color: #04101ccf;
    /* backdrop-filter: blur(10px); */

    max-width: 305px;
}

.map-pop.is-open {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.map-pop__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0.02em;
}

.map-pop__sub {
    margin-top: 2px;
    font-family: "Inter", sans-serif;
    font-weight: 200;
    color: rgba(242, 245, 247, 0.6);
    font-size: 12px;
}

.map-pop__text {
    margin-top: 8px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: rgba(242, 245, 247, 0.86);
    font-size: 12.5px;
    line-height: 1.35;
}

.city-dot-glow {
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0.22;
    pointer-events: none;

}

.city-dot {
    transition: transform 0.2s ease;
}

.city-dot:hover {
    transform: scale(1.12);
}

.city-dot:hover+.city-dot-glow {
    opacity: 0.35;
    transform: scale(1.06);
}

#presence {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

#presence.is-inview {
    opacity: 1;
    transform: translateY(0);
}

#presence .anim-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0ms);
}

#presence.is-inview .anim-item {
    opacity: 1;
    transform: translateY(0);
}

#presence .map-wrap {
    transform: translateY(18px) scale(0.99);
    opacity: 0;
}

#presence.is-inview .map-wrap {
    transform: translateY(0) scale(1);
    opacity: 1;
}

#presence.is-inview .world-map {
    animation: map-float 6s ease-in-out infinite;
}

@keyframes map-float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -6px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {

    #presence,
    #presence .anim-item,
    #presence .world-map {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

.modal.fields {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease, visibility 0ms linear 260ms;
}

.modal.fields.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 260ms ease, visibility 0ms linear 0ms;
}

.modal.fields .modal__backdrop {
    position: absolute;
    inset: 0;

    background: #000306a8;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    transition: opacity 260ms ease;
}


.modal.fields.is-open .modal__backdrop {
    opacity: 1;
}

.modal.fields .modal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(760px, calc(100% - 40px));
    height: 100%;
    max-height: fit-content;
    overflow: auto;
    padding: 40px !important;
    background: rgba(8, 16, 26, 0.98);

    opacity: 0;
    transition: opacity 260ms ease, transform 260ms ease;
}

.modal.fields.is-visible .modal__panel {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {

    .modal.fields,
    .modal.fields .modal__backdrop,
    .modal.fields .modal__panel {
        transition: none !important;
    }
}



.modal.fields .modal__close {
    position: absolute;
    right: 14px;
    top: 12px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.field-detail__summary {
    padding-bottom: 25px;
}

.modal.fields .modal__title {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 5px;
}

.modal.fields .modal__p {
    color: rgba(242, 245, 247, 0.78);
    line-height: 1.55;
    margin: 0 0 14px;
}

.modal.fields .modal__list {
    margin: 0;
    padding-left: 18px;
    color: rgba(242, 245, 247, 0.78);
}

.field-detail__wrapper {
    width: 85%;
    display: flex;
    align-items: start;
    flex-direction: column;
}

.field-detail__kicker {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.field-detail__kicker .field-detail__name {
    font-size: 44px;
    text-transform: uppercase;
    max-width: 550px;
    width: 100%;
    line-height: 100%;

}

.field-detail__summary {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-align: left;
    max-width: 370px;
}

.field-detail__paragraph {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    text-align: left;
}

.field-detail__aside {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 25px;
    padding-left: 15px;
    border-left: 1px solid transparent;
    border-image: linear-gradient(180deg,
            #6FAED9 16%,
            #1A2C3A 79%,
            #142635 91%,
            #09111A 100%) 1;
}

.field-detail__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    padding-left: 30px;
    padding-top: 20px;
}

/* ===== FIELD CARD EXPAND ON HOVER ===== */

.fields__grid .field-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.field-detail__wrapper {
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 420ms cubic-bezier(.2, .8, .2, 1);
}

.field-detail__content__wrapper {
    overflow: hidden;
}


.field-card:hover .field-detail__wrapper,
.field-card.is-open .field-detail__wrapper {
    grid-template-rows: auto 1fr;
}


.field-detail__content__wrapper {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 320ms ease, transform 320ms ease;
}

.field-card:hover .field-detail__content__wrapper,
.field-card.is-open .field-detail__content__wrapper {
    opacity: 1;
    transform: translateY(0);
}

.field-card {
    transition: transform 320ms cubic-bezier(.2, .8, .2, 1);
}

.field-card:hover,
.field-card.is-open {
    transform: translateY(-6px);
}


.about-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.about-modal.is-open {
    display: block;
}

.about-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 50% 30%, rgba(111, 174, 217, 0.08), transparent 60%),
        rgba(10, 20, 30, 0.55);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity: 0;
    transition: opacity 320ms ease;
}

.about-modal__panel {
    position: relative;
    width: min(920px, calc(100% - 32px));
    margin: 6vh auto 0;
    border-radius: 18px;

    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.99);
    filter: blur(8px);

    transition:
        opacity 320ms ease,
        transform 320ms ease,
        filter 320ms ease;
}

.about-modal.is-open.is-visible .about-modal__backdrop {
    opacity: 1;
}

.about-modal.is-open.is-visible .about-modal__panel {
    width: 100%;
    height: 100%;
    opacity: 1;
    filter: blur(0);
    margin: 0 !important;
}

.about-modal.is-open:not(.is-visible) .about-modal__backdrop {
    opacity: 0;
}

.about-modal.is-open:not(.is-visible) .about-modal__panel {
    opacity: 0;
    filter: blur(8px);
}

.about-modal__close {
    position: absolute;
    top: 10px;
    left: 10px;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1111;

    transition: background 220ms ease, transform 220ms ease;
}

body.about-modal-open {
    overflow: hidden;
}

/* ===============================
   ABOUT MODAL CONTENT (from about.css)
   =============================== */

section.about-hero {
    width: 100%;
    max-height: 1080px;
    display: flex;
}

section.about-hero .container.about-hero__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    align-items: start;
    flex-direction: column;
    padding: 50px 50px 0 50px;
}

section.about-hero .container.about-hero__container .about-hero__lead {
    width: 100%;
    max-width: 650px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    margin-top: 10px;
}

section.about-hero .container.about-hero__container .about-hero__title {
    max-width: 1400px;
    color: var(--white);
    font-size: 126px;
    text-transform: uppercase;
    text-align: left;
    line-height: 95%;
}

section.about__expanded {
    width: 100%;
    height: 100%;
    max-height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.about__expanded .container.about__expanded__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
    padding: 70px 28px 0 28px;
    gap: 25px;
}

.about-expanded__title {
    font-size: 78px;
    color: var(--white);
}

.about__expanded__content {
    display: flex;
    color: var(--muted);
    gap: 105px;
}

.about__expanded-content__bottom {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.engine-content__uppercase__text {
    width: 100%;
    max-width: 716px;
    text-transform: uppercase;
    font-size: 38px;
    line-height: 100%;
    color: var(--white);
}

section.about-vision {
    width: 100%;
    height: 100%;
    max-height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.about-vision .container.about-vision__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    padding: 100px 28px 0 28px;
}

.about-vision .container.about-vision__container .about-vision__content {
    text-align: left;
    text-transform: uppercase;
    font-size: 26px;
    color: rgba(143, 154, 165, 0.3);
    max-width: 577px;
    width: 100%;
}


.about-modal .modal__panel {
    will-change: transform, opacity, filter;
}

.about-modal .modal-anim-item {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    filter: blur(10px);

    transition:
        opacity 520ms ease,
        transform 520ms ease,
        filter 520ms ease;

    transition-delay: var(--d, 0ms);
}

.about-modal.is-open.is-visible .modal-anim-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.about-modal.is-open:not(.is-visible) .modal-anim-item {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    filter: blur(10px);
}




/* ==========================================================================
   RESPONSIVE
   ========================================================================== */


/* 2) Tablet */
@media (max-width: 1024px) {
    .header {
        padding: 0 24px;
        margin: 28px 0;
    }

    section.hero .container.hero__container {
        padding-top: 150px;
        padding-bottom: 70px;
    }

    section.hero .container.hero__container .hero__subtitle {
        font-size: 18px;
        max-width: 680px;
    }

    section.hero .container.hero__container .hero__title {
        max-width: 900px;
        font-size: clamp(38px, 6.2vw, 64px);
        letter-spacing: -0.015em;
    }

    section.hero .container.hero__container .hero__actions {
        padding-top: 120px;
    }
}

/* 3) Mobile */
@media (max-width: 768px) {
    section:not(.hero, .publication_hero, .publication_hero__content, .about__expanded) {
        margin-top: 100px !important;
    }

    .menu__link {
        font-size: 28px;
    }

    .menu__link span {
        min-width: 60px;
    }

    .header {
        height: 64px;
        padding: 0 20px;
        margin: 22px 0;
    }

    .container {
        padding: 0 20px 0 20px !important;
    }

    .container.header__container {
        padding: 0;
    }

    .container.header__container .header__logo img {
        width: 120px;
        height: auto;
    }

    section.hero .container.hero__container {
        padding: 200px 20px 60px 20px !important;
        justify-content: start;
    }

    .hero__container__content {
        flex-direction: column-reverse !important;
    }

    section.hero .container.hero__container .hero__subtitle {
        max-width: 330px;
        font-size: 20px;
        margin-top: 25px;
    }

    section.hero .container.hero__container .hero__title {
        font-size: clamp(34px, 8.4vw, 48px);
        line-height: 0.95;
        letter-spacing: -0.01em;
        font-size: 56px;
    }

    .btn.btn--primary {
        font-size: 20px;
        padding: 15px 55px !important;
        gap: 15px;
    }


    section.about-statement {
        margin: 100px 0;
    }

    .about-statement__eyebrow {
        font-size: 16px;
    }

    .about-statement__content .about-statement__text {
        font-size: 20px;
    }

    .approach__header {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .approach__title {
        font-size: 52px;
        text-align: center;
        line-height: 100%;
    }

    .approach__tagline {
        font-size: 20px;
        text-align: center;
        margin-top: 20px;
        max-width: 290px;
    }

    .principles__layout {
        margin-top: 50px !important;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .principle-card__box {
        padding: 40px;
    }

    .principle-card {
        position: relative;
        top: unset !important;

    }

    .principle-card__text {
        font-size: 20px;
    }

    section.about .container.about__container {
        /* padding: 0 !important; */
    }

    .container.about__container .about__grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    .about__title {
        font-size: 52px;
        text-align: center;
        line-height: 100%;
    }

    .about__grid .about__text {
        text-align: center;
        font-size: 20px;
    }

    .about__grid .about__right {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .section.leadership {}

    .container.leadership__container {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .leadership__left,
    .leadership__right {
        width: 100% !important;
    }

    .leadership_title {
        font-size: 52px;
        text-align: center;
    }

    .leadership__content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 50px !important;
    }

    .leadership__details {
        text-align: center;
    }

    .leadership__subtitle {
        padding: 0 !important;
        font-size: 20px;
        text-align: center;
        max-width: 320px;
    }

    .leadership__hero {
        flex-direction: column;
    }

    .leadership__hero img {
        min-width: unset !important;
    }

    .leadership__hero .lead__paragraph {
        font-size: 18px;
    }

    .hero__actions.leadership {

    }

    section.fields {}

    .fields__sticky-layout {
        flex-direction: column;
        gap: 50px;
    }

    .fields__header {
        flex-direction: column;
    }

    .fields__title {
        font-size: 52px;
        line-height: 100%;
    }

    .container.fields__container {
        flex-direction: column;
        gap: 50px;
    }

    .field-card {
        justify-content: space-between
    }

    .field-detail__name {
        font-size: 28px !important;
    }

    .field-detail__summary {
        font-size: 20px;
    }

    .field-detail__index {
        font-size: 12px;
    }

    section.case-studies {}

    .case-studies__title {
        font-size: 52px;
        line-height: 100%;
        text-align: center;
    }

    .case-studies__header {
        align-items: center;
        justify-content: center;
    }

    .case-studies__grid {
        flex-direction: column;
    }

    .case-card {
        width: 100%;
    }

    .case-modal__content {}

    section.publications {}

    .publications__title {
        font-size: 52px;
        line-height: 100%;
        text-align: center;
    }

    .pub_block__left {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .pub-card {
        width: 100% !important;
    }

    .pub-card__body {
        text-align: center;
    }

    .presence__title {
        font-size: 52px;
        line-height: 100%;
        text-align: center;
    }

    .container.contact__us__container {
        flex-direction: column;
    }

    .contact__header {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contact__title {
        font-size: 52px !important;
        line-height: 100%;
        text-align: center;
    }

    .contact-form__input {
        padding: 0 !important;
    }

    .contact__subtitle {
        font-size: 20px !important;
        margin-bottom: 25px;
    }

    .footer__brand {
        display: flex;
        gap: 15px;
    }

    .footer__top {
        flex-direction: column;
        gap: 35px;
    }

    .footer__links {
        width: 100%;
    }

    .footer__bottom {
        display: flex;
        flex-direction: column;
    }

    .footer__legal {
        margin-top: 5px;
        display: flex;
        width: 100% !important;
    }

    .footer__legal a {
        font-size: 16px !important;
    }

    .footer__links .footer__col a {
        font-size: 16px !important;
    }

    .publication_hero {
        padding-top: 0 !important;
        margin-top: 100px !important;
    }

    .container.publication__container {
        flex-direction: column-reverse !important;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    .publication_hero__content {
        margin-top: 50px !important;
        margin-bottom: 100px;
    }

    .publication__subtitle {
        font-size: 20px !important;
        text-align: center;
    }

    .publication__title {
        font-size: 44px !important;
        line-height: 100%;
        text-align: center !important;
    }

    .pub__tabs {
        width: 100%;
        max-width: unset !important;
    }

    .pub__tabs .tab {
        font-size: 20px;
    }

    .pub__panel.insights {
        width: 100%;
        flex-direction: column;
        gap: 0 !important;
    }

    .pub__insight {
        width: 100%;
        max-width: unset !important;
        min-height: 350px !important;
    }

    section.presence {
        display: none;
    }

    .pub__tabs {
        justify-content: center !important;
    }

    .pub-card {
        height: 100%;
    }

    .pub-card__desc {
        font-size: 16px !important;
    }

    .about__expanded {
        flex-direction: column;
        margin-top: 48px !important;
    }

    .about-expanded__title {
        font-size: 52px !important;
        line-height: 100%;
    }

    .about__expanded__content {
        flex-direction: column;
        gap: 35px;
    }

    .engine-content__uppercase__text {
        width: 100%;
        font-size: 20px;
    }

    .modal.case-modal .modal__panel{
        max-width: 90%;
        max-height: 95%;
        padding: 20px !important;
        background: radial-gradient(1200px 600px at 50% 30%, rgba(111, 174, 217, 0.08), transparent 60%), rgba(10, 20, 30, 0.55);
        backdrop-filter: blur(18px);
    }

    .case-modal .modal__backdrop {
        inset: 0;
        background: radial-gradient(1200px 600px at 50% 30%, rgba(111, 174, 217, 0.08), transparent 60%), rgba(10, 20, 30, 0.55);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transition: opacity 320ms ease;
    }

    .modal.case-modal.is-open .modal__backdrop {
        opacity: 0
    }

    .case-modal__content {
       padding: 20px !important;
    }

    .case-modal-data__title {
        font-size: 42px !important;
        line-height: 100%;
        margin-bottom: 25px;
    }
}

.menu {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.menu.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

/* ===============================
   PRIVACY POLICY
   =============================== */

section.policy_hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
    color: var(--muted);
}

section.policy_hero .policy__container {
    width: 100%;
    max-width: 1430px;
    gap: 40px;

    display: flex;
    flex-direction: column;
    padding: 0px 70px 0 28px;
}

.policy_hero__content {}

.policy__title {
    font-size: 78px;
    color: #F2F5F7;
    text-transform: uppercase;
}

.policy__block__title {
    font-size: 44px;
    color: #F2F5F7;
    text-transform: uppercase;
}

.policy_hero__block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy__section-title {
    font-size: 28px;
    color: #F2F5F7;
    text-transform: uppercase;
}

.policy__text__subtitle {
    font-size: 22px;
    color: #F2F5F7;
    text-transform: uppercase;
}

.policy__section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.policy__details__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy__text {
    max-width: 1200px;
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
/* ===== RESET / BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #020C16;
    --panel: rgba(9, 17, 26, 0.92);
    --white: #F2F5F7;
    --muted: rgb(255 255 255 / 80%);
    --blue: #6FAED9;

    --max: 1430px;
    --padX: 28px;

    --h1: 88px;
    --h1-lh: 0.80;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: #000;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.inter {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.montserrat {
    font-family: "Hanken Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.ibm-plex-sans {
    font-family: "IBM Plex Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/* ===== LAYOUT HELPERS ===== */
.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
}

/* ==========================================================================
   AMBIENT BACKGROUND
   ========================================================================== */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;

    background:
        radial-gradient(1200px 800px at 50% -10%, rgba(90, 140, 190, 0.08), rgba(2, 12, 22, 0) 60%),
        radial-gradient(900px 700px at 12% 25%, rgba(40, 90, 140, 0.08), rgba(2, 12, 22, 0) 62%),
        radial-gradient(900px 700px at 88% 70%, rgba(20, 60, 110, 0.10), rgba(2, 12, 22, 0) 65%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);

    animation: bg-breathe 10s ease-in-out infinite;
}

.site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 50% 50%, rgba(2, 12, 22, 0) 0%, rgba(2, 12, 22, 0.70) 100%);
    opacity: 0.9;
}

.site-bg__blob {
    position: absolute;
    width: 980px;
    height: 980px;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.38;

    background:
        radial-gradient(circle at 30% 30%, rgba(110, 160, 210, 0.28), rgba(2, 12, 22, 0) 62%),
        radial-gradient(circle at 70% 65%, rgba(35, 90, 140, 0.18), rgba(2, 12, 22, 0) 60%);

    transform: translate3d(0, 0, 0);
    animation: blob-float 18s linear infinite;
}

.site-bg__blob--1 {
    top: -260px;
    left: -260px;
    animation-duration: 16s;
}

.site-bg__blob--2 {
    top: 10%;
    right: -320px;
    width: 860px;
    height: 860px;
    opacity: 0.55;
    animation-duration: 18s;
    animation-delay: -5s;
}

.site-bg__blob--3 {
    bottom: -360px;
    left: 18%;
    width: 1100px;
    height: 1100px;
    opacity: 0.50;
    animation-duration: 20s;
    animation-delay: -9s;
}

@keyframes blob-float {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    25% {
        transform: translate3d(110px, 60px, 0) scale(1.06);
    }

    50% {
        transform: translate3d(40px, 140px, 0) scale(0.98);
    }

    75% {
        transform: translate3d(-120px, 80px, 0) scale(1.07);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes bg-breathe {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.08);
    }

    100% {
        filter: brightness(1);
    }
}

/* ==========================================================================
   UNIVERSAL ANIMATION SYSTEM (keep your classes)
   ========================================================================== */
.animate-section {
    opacity: 0;
    transition: opacity 600ms ease;
}

.animate-section.is-inview {
    opacity: 1;
}

.animate-item {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.985);
    filter: blur(8px);
    transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
    transition-delay: var(--delay, 0ms);
    will-change: opacity, transform, filter;
}

.animate-item.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

/* legacy alias so nothing breaks */
.anim-section {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 700ms ease, transform 700ms ease;
}

.anim-section.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.anim-item {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 650ms ease, transform 650ms ease;
}

.anim-item.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* optional “breath” */
.animate-item.breath.is-inview {
    animation: sectionBreath 4s ease-in-out infinite;
}

@keyframes sectionBreath {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.018);
    }

    100% {
        transform: scale(1);
    }
}

/* hover helper */
.animate-item.hover-scale {
    transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease, box-shadow 420ms cubic-bezier(.2, .8, .2, 1);
}

.animate-item.hover-scale:hover {
    transform: translate3d(0, -6px, 0) scale(1.03);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {

    .animate-section,
    .animate-item,
    .anim-section,
    .anim-item {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.btn.btn--primary {
    position: relative;
    gap: 16px;

    padding: 15px 20px;
    border-radius: 999px;

    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;

    transition: transform 0.35s ease;
}

.btn.btn--primary .arrow {
    display: inline-flex;
    transition: transform 0.35s ease;
}

.btn.btn--primary .btn__label {
    display: inline-block;
    transition: transform 0.25s ease;
}

.btn.btn--primary:hover .btn__label {
    transform: scale(1.04);
}

.btn.btn--primary:hover .arrow {
    transform: translateX(6px);
}

.btn.btn--primary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;

    opacity: 0.9;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    background-size: 200% 100%;
    background-position: 0% 50%;
}

.btn.btn--primary:hover::after {
    animation: gradient-move 1.2s linear forwards;
}

@keyframes gradient-move {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 200% 50%;
    }
}


/* ==========================================================================
   HEADER / MENU (kept minimal)
   ========================================================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 50px;
    margin: 50px 0;
}

.header__container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    width: 150px;
    height: 55px;
}

.burger {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;

    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;

    transition: 0.35s ease;
}

.burger__line {
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.burger__line:nth-child(2) {
    width: 20px;
}

.burger:hover .burger__line {
    background: rgba(255, 255, 255, 0.9);
}

.menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 250ms ease;
}

.menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;

    background: #09111a;
    color: #fff;
    padding: 26px 22px;

    display: flex;
    flex-direction: column;

    transform: translate3d(100%, 0, 0);
    transition: transform 320ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.menu__close {
    align-self: flex-end;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 8px 10px;
    margin-bottom: 6px;
}

.menu__link {
    display: flex;
    align-items: center;
    gap: 35px;

    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 70px;

    padding: 10px 6px;
    border-radius: 10px;
}

.menu__link .index {
    font-size: 24px;
    color: var(--blue);
}

.menu__link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.menu.is-open {
    pointer-events: auto;
}

.menu.is-open .menu__backdrop {
    opacity: 1;
}

.menu.is-open .menu__panel {
    transform: translate3d(0, 0, 0);
}

body.menu-open {
    overflow: hidden;
}

/* ===== MENU ===== */
.menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 250ms ease;
}

.menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #09111a;
    color: #fff;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;

    transform: translate3d(100%, 0, 0);
    transition: transform 320ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}


.container.header__container {
    height: 100%;
    width: 100%;
    max-width: 1430px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.container.header__container .header__logo {
    height: 100%;
}

.container.header__container .header__logo img {
    width: 150px;
    height: 55px;
}

.container.header__container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container.header__container .header__nav .header__menu {
    display: flex;
    align-items: center;
    gap: 35px;

    z-index: 1111;
}

.container.header__container .header__nav .header__menu .header__menu-item a {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
}


/* ==========================================================================
   HERO
   ========================================================================== */
section.hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    max-height: 1080px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    background: #05070c;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__background img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.08) translate3d(0, 0, 0);
    will-change: transform;
    animation: heroZoom 15s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(70% 60% at 50% 30%, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.78));
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: 1;

    filter: blur(18px);
    opacity: 0.85;
    transform: translate3d(-4%, 0, 0);
    will-change: transform, opacity;
    animation: glowMove 14s ease-in-out infinite alternate;

    mix-blend-mode: screen;
    pointer-events: none;
}

.hero__fade-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 260px;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(to bottom,
            rgba(2, 12, 22, 0) 0%,
            rgba(2, 12, 22, 0.65) 55%,
            rgba(2, 12, 22, 1) 100%);
}

.hero__container {
    position: relative;
    z-index: 3;
    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding-top: 200px;
}

.hero__container .hero__container__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 10px;
}

.hero__title {
    max-width: 1400px;
    font-size: var(--h1);
    color: var(--white);
    text-align: center;
    line-height: 100%;
}

.hero__actions {
    padding-top: 200px;
}

@keyframes heroZoom {
    from {
        transform: scale(1.06) translate3d(0, 1.5%, 0);
    }

    to {
        transform: scale(1.15) translate3d(0, -3.5%, 0);
    }
}

@keyframes glowMove {
    from {
        transform: translate3d(-4%, 0, 0);
        opacity: 0.75;
    }

    to {
        transform: translate3d(4%, -2%, 0);
        opacity: 0.95;
    }
}

/* hero noise (optional) */
.hero__noise {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.045;
    mix-blend-mode: overlay;
    animation: noiseShift 2.5s steps(2) infinite;
}

@keyframes noiseShift {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-2%, 2%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero__background img,
    .hero::before,
    .hero__noise {
        animation: none;
    }
}

/* ===== HERO INTRO (on load only) ===== */
.hero-anim {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 1100ms ease,
        transform 1400ms cubic-bezier(.16, 1, .3, 1);
    will-change: opacity, transform;
}

.hero-anim--delay1 {
    transition-delay: 180ms;
}

.hero-anim--delay2 {
    transition-delay: 320ms;
}

.hero.is-loaded .hero-anim {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero__background img {
    transform: translate3d(0, 0, 0) scale(1.10);
    will-change: transform;
}

.hero {
    --hero-fade: 0;
}

.hero::after {
    opacity: calc(0.75 + (var(--hero-fade) * 0.25));
}

@media (prefers-reduced-motion: reduce) {
    .hero-anim {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   ABOUT-STATEMENT
   ========================================================================== */

section.about-statement {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 200px 0;
}

.about-statement__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(143, 154, 165, 0.5);
}

.about-statement__content {
    width: 100%;
    max-width: 1255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-statement__eyebrow {
    margin-bottom: 20px;
    color: var(--blue);
    opacity: 0.4;
}

.about-statement__text {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 38px;
    line-height: 100%;
}

/* word reveal (keep) */
.reveal-group .word {
    display: inline-block;
    color: rgba(143, 154, 165, 0.5);
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.28s ease;
    will-change: opacity, transform;
}

.reveal-group .word.is-on {
    color: var(--white);
    transform: translateY(0);
}

/* ==========================================================================
   APPROACH
   ========================================================================== */

/* ==========================================================================
   APPROACH (animate-section / animate-item)
   ========================================================================== */

section.approach {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

.approach .container.approach__container {
    width: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.approach__header {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.approach__title {
    font-size: 78px;
    line-height: 100%;
    color: var(--white);
    text-transform: uppercase;
}

.approach__tagline {
    width: 100%;
    max-width: 225px;
    font-size: 18px;
    text-align: left;
    color: var(--muted);
}

.approach__actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.approach__link.btn-outline {
    padding: 15px 35px;
}

/* layout cards */
.approach .principles__layout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
}

.approach .principles__layout .principle-card {
    width: 100%;
    height: 100%;
    max-width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.approach .principles__layout .principle-card--02 {
    top: 270px;
}

.approach .principles__layout .principle-card--03 {
    top: 80px;
}

.principle-card__index {
    color: #6FAED9;
}

.principle-card__box {
    position: relative;
    overflow: hidden;

    padding: 60px;
    color: rgba(255, 255, 255, 0.8);

    border: 1px solid transparent;
    border-image: linear-gradient(180deg,
            #6FAED9 16%,
            #1A2C3A 79%,
            #142635 91%,
            #09111A 100%) 1;

    transform: translate3d(0, 0, 0);
    transition: transform 260ms ease;
    will-change: transform;
}


.principle-card__title {
    text-transform: uppercase;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.principle-card__text {
    width: 100%;
    min-height: 51px;
    font-size: 18px;
}

/* ===== STAGGER via animate delays ===== */
.approach .approach__header {
    --delay: 0ms;
}

.approach .principles__layout .principle-card:nth-child(1) {
    --delay: 140ms;
}

.approach .principles__layout .principle-card:nth-child(2) {
    --delay: 280ms;
}

.approach .principles__layout .principle-card:nth-child(3) {
    --delay: 420ms;
}

.principle-card__box::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;

    background: linear-gradient(180deg,
            rgba(111, 174, 217, 0.75) 0%,
            rgba(26, 44, 58, 0.55) 45%,
            rgba(9, 17, 26, 0.0) 100%);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    padding: 1px;
    opacity: 0.30;
    transition: opacity 360ms ease, filter 360ms ease;
}

.principle-card.animate-item.is-inview .principle-card__box::before {
    opacity: 0.55;
    animation: borderGlowPulse 2.8s ease-in-out infinite;
}

@keyframes borderGlowPulse {
    0% {
        opacity: 0.42;
        filter: blur(0px);
    }

    50% {
        opacity: 0.70;
        filter: blur(0.5px);
    }

    100% {
        opacity: 0.42;
        filter: blur(0px);
    }
}

/* hover */
.principle-card:not(.unfilled) .principle-card__box:hover {
    transform: translate3d(0, -6px, 0) scale(1.02);
}

.principle-card__box:hover::before {
    opacity: 0.90;
    filter: blur(0.8px);
    animation: none;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    .principle-card.animate-item.is-inview .principle-card__box::before {
        animation: none;
    }
}

/* ==========================================================================
   APPROACH — Breath animation for cards
   ========================================================================== */

.approach .principle-card__box {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);

    transition:
        transform 360ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 360ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.approach.animate-section.is-inview .principle-card__box {
    animation: cardBreath 4.8s ease-in-out infinite;
}

@keyframes cardBreath {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -3px, 0) scale(1.02);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.approach .principle-card:nth-child(1) .principle-card__box {
    animation-delay: 0ms;
}

.approach .principle-card:nth-child(2) .principle-card__box {
    animation-delay: -1.6s;
}

.approach .principle-card:nth-child(3) .principle-card__box {
    animation-delay: -3.2s;
}

.approach .principle-card__box:hover {
    transform: translate3d(0, -10px, 0) scale(1.05);
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .approach.animate-section.is-inview .principle-card__box {
        animation: none;
    }
}

/* ==========================================================================
   FIELDS (animate-section / animate-item)
   ========================================================================== */

section.fields {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* position: relative;
    overflow: hidden; */
    margin-top: 400px;
}

.fields .container.fields__container {
    width: 100%;
    max-width: 1430px;
    display: flex;
    position: relative;
    z-index: 2;
    padding: 0 50px;
}

/* header */
.fields__header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
}

.fields__eyebrow {
    width: 100%;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.fields__title {
    font-size: 78px;
    line-height: 100%;
    color: var(--white);
    text-transform: uppercase;
}

/* grid */
.fields__grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fields__sticky-layout {
    display: flex;
}

/* card base */
.field-card {
    display: flex;
    width: 100%;
    flex-direction: row-reverse;

    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;

    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow;
}

.field-detail__index {
    height: 100%;
    font-size: 16px;
    color: #6fafd989;
}

.field-detail__index span {
    font-size: 32px;
}


/* content */
.field-card__number {
    font-size: 14px;
}

.field-card__title {
    width: 100%;
    min-height: 72px;
    font-size: 24px;
    line-height: 100%;
    margin: 10px 0 80px;
}

.field-card__text {
    width: 100%;
    min-height: 51px;
    font-size: 14px;
}

/* ===== HOVER (fixed) ===== */

.fields__header {
    --delay: 0ms;
}

.fields__grid .field-card:nth-child(1) {
    --delay: 120ms;
}

.fields__grid .field-card:nth-child(2) {
    --delay: 240ms;
}

.fields__grid .field-card:nth-child(3) {
    --delay: 360ms;
}

.fields__grid .field-card:nth-child(4) {
    --delay: 480ms;
}

.fields__grid .field-card:nth-child(5) {
    --delay: 600ms;
}

.fields__grid .field-card:nth-child(6) {
    --delay: 720ms;
}

.fields__grid .field-card:nth-child(7) {
    --delay: 840ms;
}

.fields__grid .field-card:nth-child(8) {
    --delay: 960ms;
}

.fields__grid .field-card:nth-child(9) {
    --delay: 1080ms;
}

.fields__grid .field-card:nth-child(10) {
    --delay: 1200ms;
}

.fields__grid .field-card:nth-child(11) {
    --delay: 1320ms;
}

.fields__grid .field-card:nth-child(12) {
    --delay: 1440ms;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    .field-card {
        transition: none;
    }

    .field-card:hover {
        transform: none;
        filter: none;
    }

    .field-card::before {
        display: none;
    }
}

/* ==========================================================================
   ABOUT (animate-section / animate-item friendly)
   ========================================================================== */

section.about {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

section.about .about__container {
    width: 100%;
    max-width: 1430px;

    display: flex;
    flex-direction: column;
    padding: 0 50px;
}

/* layout */
.about__grid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* gap: 60px; */
    align-items: start;
}

/* left */
.about__title {
    font-size: 78px;
    line-height: 75%;
    color: var(--white);
    text-transform: uppercase;
}

/* right */
.about__right {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about__right a {
    padding-left: 0px;
}

.about__text {
    width: 100%;
    max-width: 680px;

    display: block;

    text-align: left;
    text-transform: uppercase;

    font-size: 26px;
    line-height: 1.25;

    color: rgba(143, 154, 165, 0.8);

    margin-bottom: 50px;
}

/* optional: actions spacing */
.about__actions {
    margin-top: 0;
}

/* ==========================================================================
   CASE STUDIES (animate-section / animate-item friendly)
   ========================================================================== */

section.case-studies {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

section.case-studies .case-studies__container {
    width: 100%;
    max-width: 1430px;

    display: flex;
    flex-direction: column;
    padding: 0 50px;
}

/* header */
.case-studies__header {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.case-studies__title {
    font-size: 78px;
    line-height: 100%;
    color: var(--white);
    text-transform: uppercase;
}

.case-studies__actions {
    display: flex;
    align-items: flex-end;
}

/* grid */
.case-studies__grid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 130px;
    margin-top: 70px;
}

/* card base */
.case-card {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;

    color: rgba(255, 255, 255, 0.8);

    transform: translate3d(0, 0, 0);
    transition:
        transform 360ms cubic-bezier(.2, .8, .2, 1),
        filter 360ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform, filter;
    overflow: hidden;
    cursor: pointer;
}

/* number */
.case-card__number {
    font-size: 16px;
    text-align: right;
    color: #6FAED9;
}

/* media */
.case-card__media {
    overflow: hidden;
}

.case-card__image {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.case-card:hover .case-card__image {
    transform: scale(1.06);
    transition: transform 0.6s ease;
}

/* body spacing */
.case-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-card__title {
    font-size: 26px;
    text-transform: uppercase;
    color: var(--white);
    transition: transform 360ms cubic-bezier(.2, .8, .2, 1);
}


.case-card__sh_details {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);

    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);

    transition:
        opacity 520ms cubic-bezier(.2, .8, .2, 1),
        transform 0.6s ease,
        filter 520ms cubic-bezier(.2, .8, .2, 1);

    transition-delay: 80ms;
}

/* hover micro-shift */
.case-card__body:hover .case-card__title {
    transform: translate3d(0, -2px, 0);
}

/* unfilled subtitle */
.case-studies__subtitle {
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    text-align: left;
}

.case-card__body:hover::after {
    background: rgba(0, 0, 0, 0.55);
}

.case-card__body:hover .case-card__sh_details {
    opacity: 1;
    margin-top: 15px;
    transform: translateY(0);
    filter: blur(0);

    max-height: 400px;
}

.case-card__body:hover .case-card__title {
    transform: translateY(-4px);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {

    .case-card,
    .case-card__image,
    .case-card__title {
        transition: none !important;
    }

    .case-card:hover {
        transform: none;
        filter: none;
    }
}

/* ==========================================================================
   PUBLICATIONS (animate-section / animate-item friendly)
   ========================================================================== */

section.publications {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

section.publications .publications__container {
    width: 100%;
    max-width: 1430px;
    gap: 70px;

    display: flex;
    flex-direction: column;
}

.publications__header {
    width: 100%;
}

.publications__title {
    font-size: 78px;
    line-height: 100%;
    color: var(--white);
    text-transform: uppercase;
}

.publications__layout {
    width: 100%;
    display: flex;
}

.pub_block__left .pub-card {
    width: 50%;
    height: 450px;
}

.pub-card__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pub-card__media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pub-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.6;
    filter: blur(2px);
}

/* ==========================================================================
   PUB CARD (shared)
   ========================================================================== */

.pub-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    color: rgba(255, 255, 255, 0.8);

    transform: translate3d(0, 0, 0);
    transition:
        transform 360ms cubic-bezier(.2, .8, .2, 1),
        filter 360ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform, filter;
}

.pub-card__link {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none;
    color: inherit;

    transition: transform 320ms cubic-bezier(.2, .8, .2, 1), background-color 320ms ease;
    transform: translate3d(0, 0, 0);
}

.pub-card__link:hover .pub-card__title {
    text-decoration: underline;
}

.pub-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.pub-card__link:hover .pub-card__media img {
    transform: scale(1.06);
    transition: transform 0.6s ease;
}

.pub-card__link:focus-visible {
    outline: 2px solid rgba(111, 174, 217, 0.6);
    outline-offset: 3px;
}

.pub-card__media {
    overflow: hidden;
}

.pub-card__image {
    display: block;
    width: 100%;
    height: auto;

    transform: scale(1);
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.pub-card__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.pub-card__date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.pub-card__title {
    line-height: 1.05;
    font-size: 20px;
    max-width: 440px;
    color: var(--white);
    transition: transform 360ms cubic-bezier(.2, .8, .2, 1);
}

.pub-card__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Variants: featured / small
   ========================================================================== */

.pub-card--featured .pub-card__image {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.pub-card--featured .pub-card__body {
    gap: 22px;
}

.pub-card--small {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 25px;
    align-items: start;
}

.pub-card--small .pub-card__media {
    border-radius: 14px;
}

.pub-card--small .pub-card__image {
    width: 450px;
    height: 240px;
    object-fit: cover;
}

.pub-card--small .pub-card__body {
    max-width: 480px;
}

.publications__actions {
    margin-top: 50px;
}

.publication__subtitle {
    font-size: 18px;
}

@media (prefers-reduced-motion: reduce) {

    .pub-card,
    .pub-card::before,
    .pub-card__image,
    .pub-card__title {
        transition: none !important;
    }

    .pub-card:hover {
        transform: none;
        filter: none;
    }

    .pub-card:hover .pub-card__image {
        transform: none;
    }
}

.publication_hero {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.publication_hero .container.publication__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 70px 0 28px;
    gap: 15px;
}

.publication_hero .publication__title {
    font-size: 78px;
    text-transform: uppercase;
    color: #F2F5F7;
    text-align: left;
}

.publication_hero .publication__subtitle {
    width: 100%;
    max-width: 800px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

section.publication_hero__content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.publication_hero__content .container.publication_hero__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px 28px 0 28px;
    gap: 25px;
}

.container.publication_hero__container .pub__tabs {
    width: 100%;
    max-width: 260px;
    display: flex;
    gap: 22px;
    justify-content: flex-start;
    align-items: flex-start;
}

.container.publication_hero__container .pub__tabs .tab {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.container.publication_hero__container .pub__tabs .tab.highlighted {
    padding-bottom: 10px;
    color: #F2F5F7;
}

.publication_hero__content .publication_hero__insights {
    width: 100%;
    display: block;
    margin-top: 16px;
}

.pub__panel {
    display: none;
    width: 100%;
}

.publication_hero__content .pub__panel.insights {
    width: 100%;
    justify-content: space-between;
    gap: 35px;
}

.publication_hero__content .pub__insight {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    max-width: 50%;
    min-height: 500px;
    padding: 35px;
    padding-top: 200px;
    backdrop-filter: blur(20px);
    opacity: 0.8;
    inset: 1px;
    background: radial-gradient(1200px 600px at 50% 30%, rgb(111 174 217 / 4%), #00000045 60%), #081e3073;
    /* transition: opacity 320ms; */
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    cursor: pointer;
}

.publication_hero__content .pub__insight:hover .subtitle {
    transform: scale(1.04);
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.pub__insight img {
    width: 100%;
    max-width: 425px;
}

.pub__insight img.logo {
    max-width: 178px;
}

.publication_hero__content .publication_hero__insights .pub__insight .subtitle {
    color: #F2F5F7;
    font-size: 20px;
}

.container.publications__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
}

.publications__layout {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.publications__layout .pub_block__left {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 35px;
}

.pub-card__media {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pub-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.publications__layout .pub_block__left .pub-card__body {
    position: absolute;
    left: 30px;
    width: 100%;
    height: 95%;
    max-width: 480px;
    display: flex;
    justify-content: end;
    color: rgba(255, 255, 255, 0.6);
    gap: 30px;
}

.pub-card__title {
    line-height: 100%;
    font-size: 20px;
    color: #F2F5F7;
}

.publication_hero__content .publication_hero__insights {
    width: 100%;
    display: block;
    margin-top: 16px;
}

.pub__panel {
    display: none;
    width: 100%;
}

.pub__panel.is-active {
    display: block;
}

.pub__panel.insights.is-active {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.pub__tabs .tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  color: rgba(255,255,255,.35);
  transition: color 220ms ease, transform 220ms ease;
}

.pub__tabs .tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  opacity: 0;
  transform: scaleX(.6);
  transform-origin: center;
  border-radius: 999px;

  background: linear-gradient(250deg, #6FAED9 16%, #1A2C3A 79%, #142635 91%, #09111A 100%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.pub__tabs .tab:hover {
  color: rgba(255,255,255,.9);
  transform: translate3d(0,-1px,0);
}

.pub__tabs .tab:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.pub__tabs .tab.highlighted {
  color: #F2F5F7;
}

.pub__tabs .tab.highlighted::after {
  opacity: 1;
  transform: scaleX(1);
}

/* =========================
   PANEL SWITCH ANIMATION
   ========================= */

.pub__panel {
  display: none;
  width: 100%;
}

/* will animate when becoming active */
.pub__panel.is-active {
  display: block;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: panelIn 420ms cubic-bezier(.2,.8,.2,1) forwards;
}

.pub__panel.insights.is-active {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}

@keyframes panelIn {
  to {
    opacity: 1;
    transform: translate3d(0,0,0);
  }
}


/* ==========================================================================
   LEADERSHIP (animate-section / animate-item friendly)
   ========================================================================== */

section.leadership {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

section.leadership .container.leadership__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

.container.leadership__container .leadership__left {
    /* width: 52%; */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leadership__left .leadership__content {
    display: flex;
    margin-top: 70px;
    gap: 10px;
}

.leadership__content>div:first-child {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leadership__header {
    min-height: 53.5px;
    font-size: 78px;
    text-transform: uppercase;
    color: var(--white);
}

.leadership__details {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 5px;
}

.leadership__details .lead__name {
    font-size: 32px;
    color: var(--white);
}

.leadership__details .lead__position {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.leadership__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.leadership__left .leadership__subtitle {
    padding: 100px 250px 0 25px;
}

.leadership__right .leadership__subtitle {
    width: 100%;
    max-width: 390px;
}

.container.leadership__container .leadership__right {
    /* width: 50%; */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leadership__right .leadership__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.leadership__left .leadership__content img {
    max-width: 370px;
}

.leadership__right .leadership__content img {
    max-width: 350px;
}

.leadership__hero {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
}

.leadership__hero .founder {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.leadership__hero .founder .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.leadership_hero__content {
    width: 70%;
}

.leadership_hero__content .content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leadership_hero__content .social {
    display: flex;
    margin-top: 25px;
    gap: 20px;
}

.leadership_hero__content .social a {
  transition: transform 0.25s ease;
}

.leadership_hero__content .social a:hover {
  cursor: pointer;
  transform: scale(1.04);
}

.leadership_hero__content .social img {
    width: 23px;
    height: 23px;
}

.leadership__hero .leadership_hero__content .lead__details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.leadership__hero .leadership_hero__content .lead__details__name {
    font-size: 24px;
    color: var(--white);
}

.leadership__hero .leadership_hero__content .lead__details__position {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.leadership__hero.reverse {
    flex-direction: row-reverse;
}

.hero__actions.leadership {
    padding-top: 30px;
}

.hero__actions.leadership a {
    font-size: 16px;
    padding-left: 0px;
}

/* ==========================================================================
   PRESENCE (animate-section / animate-item friendly)
   ========================================================================== */

section.presence {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}

section.presence .presence__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 0 50px;
}

.presence__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.presence__title {
    width: 100%;
    display: flex;
    justify-content: start;
    font-size: 78px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 100%;
}

.presence__eyebrow {
    width: 100%;
    display: flex;
    justify-content: end;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 40px;
    left: -28px;
    margin-top: 0;
}

.presence__eyebrow p {
    max-width: 343px;
    font-size: 18px;
}

.presence .map-wrap {
    width: 100%;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

footer.footer {
    width: 100%;
    height: 100%;
    max-height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
}


.footer .container.footer__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
}

.footer .container.footer__container .footer_logo img {
    width: 150px;
    height: 55px;
}

.footer .container.footer__container .footer__brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .container.footer__container .footer__locations {
    font-size: 14px;
    color: var(--white);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer__top .footer__brand {
    width: 70%;
}

.footer__title {
    min-height: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__links {
    font-size: 14px;
    display: flex;
    width: 25%;
    justify-content: space-between;
}

.footer__links .footer__col {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
}

.footer__links .footer__col a {
    text-decoration: none;
    color: var(--white);
    min-height: 18px;
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1)
}

.footer__links .footer__col a:hover,
.footer .footer__bottom a:hover {
    transform: scale(1.06);
    cursor: pointer;
}

.footer .footer__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 25px;
    color: var(--white);
    border-top: 0.3px solid transparent;
    border-image: linear-gradient(250deg,
            #6FAED9 16%,
            #1A2C3A 79%,
            #142635 91%,
            #09111A 100%) 1;
}

.footer .footer__bottom span {
    font-size: 12px;
}

.footer .footer__bottom .footer__legal {
    width: 12%;
    display: flex;
    justify-content: space-between;
}

.footer .footer__bottom a {
    text-decoration: none;
    color: var(--white);
    font-size: 12px;
    transition: transform 520ms cubic-bezier(.2, .8, .2, 1)
}

section.contact__us {
    width: 100%;
    height: 100%;
    max-height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 200px 0;
}

.contact__us .container.contact__us__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.contact__us .container.contact__us__container .contact__header {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact__us .container.contact__us__container .contact__header .contact__title {
    /* width: 50%; */
    max-width: 690px;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-size: 78px;
    color: var(--white);
    line-height: 100%;
}


.contact__us .container.contact__us__container .contact__header .contact__tagline {
    max-width: 420px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact__us .container.contact__us__container .contact__header .contact__tagline:not(:last-child) {
    margin: 20px 0;
}

.contact__us .contact__form {
    width: 50%;
    height: 100%;
}

.contact__form .form__contact__header {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: 40px;
    color: var(--white);
    gap: 5px;

}

.contact__form .form__contact__tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}


.contact-form {
    width: 100%;
    max-width: 600px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.contact-form__field {
    position: relative;
    padding: 15px 15px;
    border-bottom: 0.5px solid #6faed930;

}

.contact__form.one__field {
    width: 100%;
    display: flex;
    gap: 10px;
}

.contact__form.one__field .contact-form__field {
    width: 50%;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;

    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.25;

    padding-right: 56px;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__select {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.contact-form__select:valid {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form__field:focus-within {
    border-bottom-color: rgba(160, 230, 255, 0.45);
}

.contact-form__actions {
    margin-top: 28px;
}

.contact-form__submit {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
}

.contact-form .contact__actions {
    width: 100%;
    margin-top: 25px;
}

.contact__actions .btn {
    width: 100%;
}

.contact__header .contact__subtitle {
    width: 100%;
    max-width: 515px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}


/* ===== ABOUT TEXT: WORD-BY-WORD REVEAL (separate) ===== */

.about__reveal-words {
    display: block !important;
    align-items: initial !important;
    justify-content: initial !important;
}

.about__reveal-words {
    color: rgba(143, 154, 165, 0.5);
}

.about__reveal-words .w {
    display: inline;
    color: rgba(143, 154, 165, 0.5);
    transition: color 0.25s linear;
}

.about__reveal-words .w.is-visible {
    color: var(--white);
}

/* ===== CASE CARD: glow + hover scale ===== */

.case-card__body::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.0);
    transition: background 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.case-card__content {
    position: absolute;
    bottom: 0px;
    inset: auto 0 0 0;
    padding: 25px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.case-card__image {
    max-height: 500px;
}

.case-card--unfilled:hover {
    transform: none;
    filter: none;
}

/* ===== CASE MODAL ===== */

.case-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.case-modal .modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 20, 0.322);
    backdrop-filter: blur(14px);
    opacity: 0;
    transition: opacity 320ms ease;
}

.case-modal .modal__panel {
    height: 100%;
    width: 100%;
    max-width: 70%;
    max-height: 90%;
    padding: 40px;
    overflow: hidden;
}

.case-modal .case-modal__content {
    height: 100%;
    position: absolute;
    left: 50%;
    top: 55%;
    width: 100%;
    padding: 25px 100px 50px 100px;

    background: rgb(9 17 26 / 0%);
    border-radius: 18px;

    opacity: 0;
    transform: translate(-50%, -46%) scale(0.96);
    filter: blur(10px);

    transition:
        opacity 420ms cubic-bezier(.2, .8, .2, 1),
        transform 420ms cubic-bezier(.2, .8, .2, 1),
        filter 420ms cubic-bezier(.2, .8, .2, 1);
}

.case-modal__header-content {
    width: 100%;
    height: 100%;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-modal.is-open {
    pointer-events: auto;
}

.case-modal.is-open .modal__backdrop {
    opacity: 1;
}

.case-modal.is-open .case-modal__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
}

.case-modal-data__title {
    font-size: 40px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 50px;
    line-height: 100%;
}

.case-modal-data__content {
    height: calc(100% - 125px);
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.case-modal-data__content__wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--white);
    padding-bottom: 35px;
}

.case-modal-data__content__wrapper:not(:last-child) {
    border-bottom: 0.5px solid transparent;
    border-image: linear-gradient(315deg, #6FAED9 16%, #1A2C3A 79%, #142635 91%, #09111A 100%) 1;
}

.case-modal-data__content__wrapper .case__header {
    font-size: 14px;
    color: #6FAED9;
    text-transform: uppercase;
}

.case-modal-data__content__wrapper p {
    max-width: 880px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* close */
.modal__close {
    position: absolute;
    top: 22px;
    right: 22px;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 220ms ease, transform 220ms ease;
}

.modal__close:hover {
    transform: scale(1.06);
    cursor: pointer;
}

/* content */
.case-modal__title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.case-modal__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.case-modal__close {
    position: absolute;
    top: 10px;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1111;

    transition: background 220ms ease, transform 220ms ease;
}

.case-modal__close:hover {
    transform: scale(1.06);
    cursor: pointer;
}

/* ===== LEADERSHIP: glow + hover ===== */

.leadership__person {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 18px;
    padding: 10px;

    border: 1px solid transparent;
    border-image: linear-gradient(180deg,
            rgba(111, 174, 217, 0.55) 0%,
            rgba(26, 44, 58, 0.38) 60%,
            rgba(9, 17, 26, 0.70) 100%) 1;

    transition: transform 0.35s ease, filter 0.35s ease;
    will-change: transform, filter;
}

.leadership__person img {
    display: block;
    border-radius: 14px;
    transition: transform 0.35s ease, filter 0.35s ease;
    will-change: transform, filter;
}

.leadership__person.is-active {
    filter: drop-shadow(0 0 18px rgba(111, 174, 217, 0.14));
}

.leadership__person:hover {
    transform: scale(1.015);
    filter:
        drop-shadow(0 0 26px rgba(111, 174, 217, 0.22)) drop-shadow(0 0 50px rgba(111, 174, 217, 0.10));
}

.leadership__person:hover img {
    transform: scale(1.01);
}

.leadership__person.is-pulse {
    animation: leaderPulse 4.2s ease-in-out infinite;
}

@keyframes leaderPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.010);
    }

    100% {
        transform: scale(1);
    }
}


/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    transition: opacity 240ms ease;
}

.modal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    height: 90%;
    overflow: auto;

    transform: translate3d(-50%, -46%, 0);
    opacity: 0;

    background: radial-gradient(1200px 600px at 50% 30%, rgba(111, 174, 217, 0.08), transparent 60%), rgba(10, 20, 30, 0.55);
    backdrop-filter: blur(18px);

    padding: 40px;

    transition: transform 280ms cubic-bezier(.2, .8, .2, 1), opacity 280ms ease;
    will-change: transform, opacity;
}



.modal__close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    font-size: 22px;
}

.modal__header-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
}

.modal__title {
    text-transform: uppercase;
    font-size: 34px;
    color: var(--white);
    line-height: 1.05;
}

.modal__subtitle {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.modal__body {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.modal__p:not(:last-child) {
    margin-bottom: 14px;
}

/* open state */
.modal.is-open {
    pointer-events: auto;
}

.modal.is-open .modal__backdrop {
    opacity: 1;
}

.modal.is-open .modal__panel {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
}

/* lock scroll (reuse your pattern) */
body.modal-open {
    overflow: hidden;
}

.map-wrap {
    width: 100%;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
}

.world-map .city-label {
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.01em;

    fill: rgba(255, 255, 255, 0.8);
    opacity: 0.85;

    pointer-events: none;
}

.world-map .city:hover .city-label {
    opacity: 1;
    fill: rgba(242, 245, 247, 0.92);
}

.world-map .country {
    fill: rgba(255, 255, 255, 0.12);
}

.world-map .country--hl {
    fill: #6FAED9;
}

/* optional city points */
.world-map .city-dot {
    fill: #6FAED9;
    opacity: 0.9;
}

.world-map .city-dot-glow {
    fill: #6FAED9;
    opacity: 0.22;
}

.map-pop {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 6px, 0);
    transition: opacity 0.18s ease, transform 0.18s ease;
    padding: 12px 14px;
    /* border-radius: 12px; */

    background-color: #04101ccf;
    /* backdrop-filter: blur(10px); */

    max-width: 305px;
}

.map-pop.is-open {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.map-pop__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0.02em;
}

.map-pop__sub {
    margin-top: 2px;
    font-family: "Inter", sans-serif;
    font-weight: 200;
    color: rgba(242, 245, 247, 0.6);
    font-size: 12px;
}

.map-pop__text {
    margin-top: 8px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: rgba(242, 245, 247, 0.86);
    font-size: 12.5px;
    line-height: 1.35;
}

.city-dot-glow {
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0.22;
    pointer-events: none;

}

.city-dot {
    transition: transform 0.2s ease;
}

.city-dot:hover {
    transform: scale(1.12);
}

.city-dot:hover+.city-dot-glow {
    opacity: 0.35;
    transform: scale(1.06);
}

#presence {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

#presence.is-inview {
    opacity: 1;
    transform: translateY(0);
}

#presence .anim-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0ms);
}

#presence.is-inview .anim-item {
    opacity: 1;
    transform: translateY(0);
}

#presence .map-wrap {
    transform: translateY(18px) scale(0.99);
    opacity: 0;
}

#presence.is-inview .map-wrap {
    transform: translateY(0) scale(1);
    opacity: 1;
}

#presence.is-inview .world-map {
    animation: map-float 6s ease-in-out infinite;
}

@keyframes map-float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -6px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {

    #presence,
    #presence .anim-item,
    #presence .world-map {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

.modal.fields {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease, visibility 0ms linear 260ms;
}

.modal.fields.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 260ms ease, visibility 0ms linear 0ms;
}

.modal.fields .modal__backdrop {
    position: absolute;
    inset: 0;

    background: #000306a8;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    transition: opacity 260ms ease;
}


.modal.fields.is-open .modal__backdrop {
    opacity: 1;
}

.modal.fields .modal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(760px, calc(100% - 40px));
    height: 100%;
    max-height: fit-content;
    overflow: auto;
    padding: 40px !important;
    background: rgba(8, 16, 26, 0.98);

    opacity: 0;
    transition: opacity 260ms ease, transform 260ms ease;
}

.modal.fields.is-visible .modal__panel {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {

    .modal.fields,
    .modal.fields .modal__backdrop,
    .modal.fields .modal__panel {
        transition: none !important;
    }
}



.modal.fields .modal__close {
    position: absolute;
    right: 14px;
    top: 12px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.field-detail__summary {
    padding-bottom: 25px;
}

.modal.fields .modal__title {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 5px;
}

.modal.fields .modal__p {
    color: rgba(242, 245, 247, 0.78);
    line-height: 1.55;
    margin: 0 0 14px;
}

.modal.fields .modal__list {
    margin: 0;
    padding-left: 18px;
    color: rgba(242, 245, 247, 0.78);
}

.field-detail__wrapper {
    width: 85%;
    display: flex;
    align-items: start;
    flex-direction: column;
}

.field-detail__kicker {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.field-detail__kicker .field-detail__name {
    font-size: 44px;
    text-transform: uppercase;
    max-width: 550px;
    width: 100%;
    line-height: 100%;

}

.field-detail__summary {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-align: left;
    max-width: 370px;
}

.field-detail__paragraph {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    text-align: left;
}

.field-detail__aside {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 25px;
    padding-left: 15px;
    border-left: 1px solid transparent;
    border-image: linear-gradient(180deg,
            #6FAED9 16%,
            #1A2C3A 79%,
            #142635 91%,
            #09111A 100%) 1;
}

.field-detail__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    padding-left: 30px;
    padding-top: 20px;
}

/* ===== FIELD CARD EXPAND ON HOVER ===== */

.fields__grid .field-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.field-detail__wrapper {
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 420ms cubic-bezier(.2, .8, .2, 1);
}

.field-detail__content__wrapper {
    overflow: hidden;
}


.field-card:hover .field-detail__wrapper,
.field-card.is-open .field-detail__wrapper {
    grid-template-rows: auto 1fr;
}


.field-detail__content__wrapper {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 320ms ease, transform 320ms ease;
}

.field-card:hover .field-detail__content__wrapper,
.field-card.is-open .field-detail__content__wrapper {
    opacity: 1;
    transform: translateY(0);
}

.field-card {
    transition: transform 320ms cubic-bezier(.2, .8, .2, 1);
}

.field-card:hover,
.field-card.is-open {
    transform: translateY(-6px);
}


.about-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.about-modal.is-open {
    display: block;
}

.about-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 50% 30%, rgba(111, 174, 217, 0.08), transparent 60%),
        rgba(10, 20, 30, 0.55);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity: 0;
    transition: opacity 320ms ease;
}

.about-modal__panel {
    position: relative;
    width: min(920px, calc(100% - 32px));
    margin: 6vh auto 0;
    border-radius: 18px;

    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.99);
    filter: blur(8px);

    transition:
        opacity 320ms ease,
        transform 320ms ease,
        filter 320ms ease;
}

.about-modal.is-open.is-visible .about-modal__backdrop {
    opacity: 1;
}

.about-modal.is-open.is-visible .about-modal__panel {
    width: 100%;
    height: 100%;
    opacity: 1;
    filter: blur(0);
    margin: 0 !important;
}

.about-modal.is-open:not(.is-visible) .about-modal__backdrop {
    opacity: 0;
}

.about-modal.is-open:not(.is-visible) .about-modal__panel {
    opacity: 0;
    filter: blur(8px);
}

.about-modal__close {
    position: absolute;
    top: 10px;
    left: 10px;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1111;

    transition: background 220ms ease, transform 220ms ease;
}

body.about-modal-open {
    overflow: hidden;
}

/* ===============================
   ABOUT MODAL CONTENT (from about.css)
   =============================== */

section.about-hero {
    width: 100%;
    max-height: 1080px;
    display: flex;
}

section.about-hero .container.about-hero__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    align-items: start;
    flex-direction: column;
    padding: 50px 50px 0 50px;
}

section.about-hero .container.about-hero__container .about-hero__lead {
    width: 100%;
    max-width: 650px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    margin-top: 10px;
}

section.about-hero .container.about-hero__container .about-hero__title {
    max-width: 1400px;
    color: var(--white);
    font-size: 126px;
    text-transform: uppercase;
    text-align: left;
    line-height: 95%;
}

section.about__expanded {
    width: 100%;
    height: 100%;
    max-height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.about__expanded .container.about__expanded__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    flex-direction: column;
    padding: 70px 28px 0 28px;
    gap: 25px;
}

.about-expanded__title {
    font-size: 78px;
    color: var(--white);
}

.about__expanded__content {
    display: flex;
    color: var(--muted);
    gap: 105px;
}

.about__expanded-content__bottom {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.engine-content__uppercase__text {
    width: 100%;
    max-width: 716px;
    text-transform: uppercase;
    font-size: 38px;
    line-height: 100%;
    color: var(--white);
}

section.about-vision {
    width: 100%;
    height: 100%;
    max-height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.about-vision .container.about-vision__container {
    width: 100%;
    height: 100%;
    max-width: 1430px;
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    padding: 100px 28px 0 28px;
}

.about-vision .container.about-vision__container .about-vision__content {
    text-align: left;
    text-transform: uppercase;
    font-size: 26px;
    color: rgba(143, 154, 165, 0.3);
    max-width: 577px;
    width: 100%;
}


.about-modal .modal__panel {
    will-change: transform, opacity, filter;
}

.about-modal .modal-anim-item {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    filter: blur(10px);

    transition:
        opacity 520ms ease,
        transform 520ms ease,
        filter 520ms ease;

    transition-delay: var(--d, 0ms);
}

.about-modal.is-open.is-visible .modal-anim-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.about-modal.is-open:not(.is-visible) .modal-anim-item {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    filter: blur(10px);
}




/* ==========================================================================
   RESPONSIVE
   ========================================================================== */


/* 2) Tablet */
@media (max-width: 1024px) {
    .header {
        padding: 0 24px;
        margin: 28px 0;
    }

    section.hero .container.hero__container {
        padding-top: 150px;
        padding-bottom: 70px;
    }

    section.hero .container.hero__container .hero__subtitle {
        font-size: 18px;
        max-width: 680px;
    }

    section.hero .container.hero__container .hero__title {
        max-width: 900px;
        font-size: clamp(38px, 6.2vw, 64px);
        letter-spacing: -0.015em;
    }

    section.hero .container.hero__container .hero__actions {
        padding-top: 120px;
    }
}

/* 3) Mobile */
@media (max-width: 768px) {
    section:not(.hero, .publication_hero, .publication_hero__content, .about__expanded) {
        margin-top: 100px !important;
    }

    .menu__link {
        font-size: 28px;
    }

    .menu__link span {
        min-width: 60px;
    }

    .header {
        height: 64px;
        padding: 0 20px;
        margin: 22px 0;
    }

    .container {
        padding: 0 20px 0 20px !important;
    }

    .container.header__container {
        padding: 0;
    }

    .container.header__container .header__logo img {
        width: 120px;
        height: auto;
    }

    section.hero .container.hero__container {
        padding: 200px 20px 60px 20px !important;
        justify-content: start;
    }

    .hero__container__content {
        flex-direction: column-reverse !important;
    }

    section.hero .container.hero__container .hero__subtitle {
        max-width: 330px;
        font-size: 20px;
        margin-top: 25px;
    }

    section.hero .container.hero__container .hero__title {
        font-size: clamp(34px, 8.4vw, 48px);
        line-height: 0.95;
        letter-spacing: -0.01em;
        font-size: 56px;
    }

    .btn.btn--primary {
        font-size: 20px;
        padding: 15px 55px !important;
        gap: 15px;
    }


    section.about-statement {
        margin: 100px 0;
    }

    .about-statement__eyebrow {
        font-size: 16px;
    }

    .about-statement__content .about-statement__text {
        font-size: 20px;
    }

    .approach__header {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .approach__title {
        font-size: 52px;
        text-align: center;
        line-height: 100%;
    }

    .approach__tagline {
        font-size: 20px;
        text-align: center;
        margin-top: 20px;
        max-width: 290px;
    }

    .principles__layout {
        margin-top: 50px !important;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .principle-card__box {
        padding: 40px;
    }

    .principle-card {
        position: relative;
        top: unset !important;

    }

    .principle-card__text {
        font-size: 20px;
    }

    section.about .container.about__container {
        /* padding: 0 !important; */
    }

    .container.about__container .about__grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    .about__title {
        font-size: 52px;
        text-align: center;
        line-height: 100%;
    }

    .about__grid .about__text {
        text-align: center;
        font-size: 20px;
    }

    .about__grid .about__right {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .section.leadership {}

    .container.leadership__container {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .leadership__left,
    .leadership__right {
        width: 100% !important;
    }

    .leadership_title {
        font-size: 52px;
        text-align: center;
    }

    .leadership__content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 50px !important;
    }

    .leadership__details {
        text-align: center;
    }

    .leadership__subtitle {
        padding: 0 !important;
        font-size: 20px;
        text-align: center;
        max-width: 320px;
    }

    .leadership__hero {
        flex-direction: column;
    }

    .leadership__hero img {
        min-width: unset !important;
    }

    .leadership__hero .lead__paragraph {
        font-size: 18px;
    }

    .hero__actions.leadership {

    }

    section.fields {}

    .fields__sticky-layout {
        flex-direction: column;
        gap: 50px;
    }

    .fields__header {
        flex-direction: column;
    }

    .fields__title {
        font-size: 52px;
        line-height: 100%;
    }

    .container.fields__container {
        flex-direction: column;
        gap: 50px;
    }

    .field-card {
        justify-content: space-between
    }

    .field-detail__name {
        font-size: 28px !important;
    }

    .field-detail__summary {
        font-size: 20px;
    }

    .field-detail__index {
        font-size: 12px;
    }

    section.case-studies {}

    .case-studies__title {
        font-size: 52px;
        line-height: 100%;
        text-align: center;
    }

    .case-studies__header {
        align-items: center;
        justify-content: center;
    }

    .case-studies__grid {
        flex-direction: column;
    }

    .case-card {
        width: 100%;
    }

    .case-modal__content {}

    section.publications {}

    .publications__title {
        font-size: 52px;
        line-height: 100%;
        text-align: center;
    }

    .pub_block__left {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .pub-card {
        width: 100% !important;
    }

    .pub-card__body {
        text-align: center;
    }

    .presence__title {
        font-size: 52px;
        line-height: 100%;
        text-align: center;
    }

    .container.contact__us__container {
        flex-direction: column;
    }

    .contact__header {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contact__title {
        font-size: 52px !important;
        line-height: 100%;
        text-align: center;
    }

    .contact-form__input {
        padding: 0 !important;
    }

    .contact__subtitle {
        font-size: 20px !important;
        margin-bottom: 25px;
    }

    .footer__brand {
        display: flex;
        gap: 15px;
    }

    .footer__top {
        flex-direction: column;
        gap: 35px;
    }

    .footer__links {
        width: 100%;
    }

    .footer__bottom {
        display: flex;
        flex-direction: column;
    }

    .footer__legal {
        margin-top: 5px;
        display: flex;
        width: 100% !important;
    }

    .footer__legal a {
        font-size: 16px !important;
    }

    .footer__links .footer__col a {
        font-size: 16px !important;
    }

    .publication_hero {
        padding-top: 0 !important;
        margin-top: 100px !important;
    }

    .container.publication__container {
        flex-direction: column-reverse !important;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    .publication_hero__content {
        margin-top: 50px !important;
        margin-bottom: 100px;
    }

    .publication__subtitle {
        font-size: 20px !important;
        text-align: center;
    }

    .publication__title {
        font-size: 44px !important;
        line-height: 100%;
        text-align: center !important;
    }

    .pub__tabs {
        width: 100%;
        max-width: unset !important;
    }

    .pub__tabs .tab {
        font-size: 20px;
    }

    .pub__panel.insights {
        width: 100%;
        flex-direction: column;
        gap: 0 !important;
    }

    .pub__insight {
        width: 100%;
        max-width: unset !important;
        min-height: 350px !important;
    }

    section.presence {
        display: none;
    }

    .pub__tabs {
        justify-content: center !important;
    }

    .pub-card {
        height: 100%;
    }

    .pub-card__desc {
        font-size: 16px !important;
    }

    .about__expanded {
        flex-direction: column;
        margin-top: 48px !important;
    }

    .about-expanded__title {
        font-size: 52px !important;
        line-height: 100%;
    }

    .about__expanded__content {
        flex-direction: column;
        gap: 35px;
    }

    .engine-content__uppercase__text {
        width: 100%;
        font-size: 20px;
    }

    .modal.case-modal .modal__panel{
        max-width: 90%;
        max-height: 95%;
        padding: 20px !important;
        background: radial-gradient(1200px 600px at 50% 30%, rgba(111, 174, 217, 0.08), transparent 60%), rgba(10, 20, 30, 0.55);
        backdrop-filter: blur(18px);
    }

    .case-modal .modal__backdrop {
        inset: 0;
        background: radial-gradient(1200px 600px at 50% 30%, rgba(111, 174, 217, 0.08), transparent 60%), rgba(10, 20, 30, 0.55);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transition: opacity 320ms ease;
    }

    .modal.case-modal.is-open .modal__backdrop {
        opacity: 0
    }

    .case-modal__content {
       padding: 20px !important;
    }

    .case-modal-data__title {
        font-size: 42px !important;
        line-height: 100%;
        margin-bottom: 25px;
    }
}

.menu {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.menu.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

/* ===============================
   PRIVACY POLICY
   =============================== */

section.policy_hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
    color: var(--muted);
}

section.policy_hero .policy__container {
    width: 100%;
    max-width: 1430px;
    gap: 40px;

    display: flex;
    flex-direction: column;
    padding: 0px 70px 0 28px;
}

.policy_hero__content {}

.policy__title {
    font-size: 78px;
    color: #F2F5F7;
    text-transform: uppercase;
}

.policy__block__title {
    font-size: 44px;
    color: #F2F5F7;
    text-transform: uppercase;
}

.policy_hero__block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy__section-title {
    font-size: 28px;
    color: #F2F5F7;
    text-transform: uppercase;
}

.policy__text__subtitle {
    font-size: 22px;
    color: #F2F5F7;
    text-transform: uppercase;
}

.policy__section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.policy__details__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy__text {
    max-width: 1200px;
}

/* PAGE LOAD (Policy) */
.policy_hero {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

body.page-ready .policy_hero {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.policy__title,
.policy__subtitle,
.policy_hero__block,
.footer {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

body.page-ready .policy__title { opacity: 1; transform: translate3d(0,0,0); transition-delay: 80ms; }
body.page-ready .policy__subtitle { opacity: 1; transform: translate3d(0,0,0); transition-delay: 180ms; }

body.page-ready .policy_hero__block { opacity: 1; transform: translate3d(0,0,0); }

body.page-ready .policy_hero__block:nth-of-type(1) { transition-delay: 260ms; }
body.page-ready .policy_hero__block:nth-of-type(2) { transition-delay: 320ms; }
body.page-ready .policy_hero__block:nth-of-type(3) { transition-delay: 380ms; }
body.page-ready .policy_hero__block:nth-of-type(4) { transition-delay: 440ms; }
body.page-ready .policy_hero__block:nth-of-type(5) { transition-delay: 500ms; }
body.page-ready .policy_hero__block:nth-of-type(6) { transition-delay: 560ms; }
body.page-ready .policy_hero__block:nth-of-type(7) { transition-delay: 620ms; }
body.page-ready .policy_hero__block:nth-of-type(8) { transition-delay: 680ms; }
body.page-ready .policy_hero__block:nth-of-type(9) { transition-delay: 740ms; }

body.page-ready .footer { opacity: 1; transform: translate3d(0,0,0); transition-delay: 820ms; }

@media (prefers-reduced-motion: reduce) {
  .policy_hero,
  .policy__title,
  .policy__subtitle,
  .policy_hero__block,
  .footer {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}