:root {
    --ink: #050321;
    --ink-soft: #080a1d;
    --ink-raised: #16213a;
    --lilac: #d8deea;
    --lilac-soft: #eef2f7;
    --muted: #9ba8bd;
    --accent: #67b99a;
    --accent-soft: #ff7b33;
    --brand-mint: #ffd0b7;
    --brand-orange: #ff7b33;
    --brand-rose: #d968ae;
    --brand-green: #4c9f7f;
    --brand-teal: #1c6271;
    --brand-silver: #d7dde5;
    --tl-hero-a: #181331;
    --tl-hero-b: #63315d;
    --tl-hero-c: #ff7b33;
    --white: #ffffff;
    --line: rgba(198, 211, 225, .16);
    --shadow: 0 30px 90px rgba(5, 3, 33, .28);
    --ease: cubic-bezier(.645, .045, .355, 1);
    --shell: 1296px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: auto;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--white);
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.shell {
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-weight: 600;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
    outline: 3px solid var(--accent-soft);
    outline-offset: 4px;
}

.section { padding: 42px 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 8px 13px;
    border: 1px solid rgba(76, 159, 127, .34);
    border-radius: 999px;
    background: rgba(76, 159, 127, .08);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    box-shadow: 0 0 0 5px rgba(76, 159, 127, .1);
    content: '';
}

.eyebrow-light {
    border-color: rgba(28, 98, 113, .28);
    background: rgba(76, 159, 127, .1);
    color: var(--accent-soft);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    gap: 36px;
    align-items: end;
    margin-bottom: 36px;
}

.section-heading h2,
.section-copy h2,
.model-sticky h2,
.work-copy h2 {
    margin: 12px 0 0;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.section-heading > p,
.section-copy > p {
    margin: 0;
    color: #738197;
    font-size: 15px;
    line-height: 1.6;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 25px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: transparent;
    color: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}

.button:hover {
    background: var(--accent);
    color: var(--ink);
    box-shadow: 0 14px 32px rgba(76, 159, 127, .24);
    transform: scale(1.04);
}

.button-roll > span {
    position: relative;
    display: inline-flex;
    height: 1em;
    align-items: center;
    transition: transform .35s var(--ease);
}

.button-roll > span::after {
    position: absolute;
    top: 0;
    left: 0;
    width: max-content;
    content: attr(data-text);
    transform: translateY(42px);
}

.button-roll:hover > span { transform: translateY(-42px); }
.button-outline { border-color: var(--accent); color: var(--white); }
.button-dark { border-color: var(--ink); color: var(--ink); }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
}

.text-link span { color: var(--accent); transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

/* Header & Navigation */
.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.site-header.is-scrolled {
    position: fixed;
}

.nav-shell {
    position: relative;
    display: flex;
    width: min(var(--shell), calc(100% - 48px));
    height: 90px;
    align-items: center;
    justify-content: space-between;
    margin: 24px auto 0;
    padding: 0 32px;
    border: 1px solid rgba(198, 211, 225, .2);
    border-radius: 20px;
    background: rgba(7, 11, 31, 0.72);
    box-shadow: 0 20px 48px rgba(5, 3, 33, .2);
    pointer-events: auto;
    backdrop-filter: blur(12px) saturate(130%);
    transition: height .3s var(--ease), margin .3s var(--ease), background .3s ease;
}

.is-scrolled .nav-shell {
    height: 76px;
    margin-top: 10px;
    background: rgba(7, 11, 31, 0.95);
    box-shadow: 0 14px 40px rgba(5, 3, 33, .35);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}
.brand img {
    width: auto;
    height: 68px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link,
.nav-item > button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #d8deea;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.nav-link:hover,
.nav-item > button:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--accent);
}

.nav-item.open > button,
.nav-item.is-current > button,
.nav-link[aria-current='page'] {
    background: rgba(255, 255, 255, .06);
    color: var(--accent);
}

.tl-chevron {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    transition: transform .25s ease;
    color: currentColor;
}

.nav-item.open > button .tl-chevron,
.nav-item:hover > button .tl-chevron {
    transform: rotate(180deg);
}

.nav-contact {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1.5px solid var(--accent);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
    margin-left: 8px;
}

.nav-contact:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Dropdown Panel */
.dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 200;
    display: grid;
    min-width: 320px;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(198, 211, 225, 0.2);
    border-radius: 14px;
    background: #050321;
    box-shadow: 0 24px 70px rgba(5, 3, 33, .45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    backdrop-filter: blur(20px);
    transition: opacity .3s ease, transform .3s var(--ease), visibility .3s ease;
}

.dropdown-panel::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 15px;
    content: '';
}

.dropdown-wide {
    min-width: 480px;
}

/* Hover open on desktop */
@media (min-width: 1021px) {
    .nav-item:hover .dropdown-panel {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }
    .nav-item:hover > button {
        background: rgba(255, 255, 255, .06);
        color: var(--accent);
    }
}

/* JS toggle fallback (mobile/click fallback) */
.nav-item.open .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-label {
    padding: 6px 12px 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dropdown-panel a {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-radius: 8px;
    color: #d8deea;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}

.dropdown-panel a:hover,
.dropdown-panel a[aria-current='page'] {
    background: rgba(197, 194, 236, .2);
    color: var(--accent);
}

.dropdown-panel small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(198, 211, 225, 0.2);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    outline: none;
}

.menu-toggle span {
    position: absolute;
    width: 19px;
    height: 1px;
    background: var(--white);
    transition: transform .3s var(--ease), top .3s var(--ease);
}

.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.mobile-nav-head {
    display: none;
}

.mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-search,
.mobile-nav-close {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 1px solid rgba(198, 211, 225, .18);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
}

.mobile-nav-search:disabled {
    opacity: 1;
    cursor: default;
}

.mobile-nav-search::before {
    width: 12px;
    height: 12px;
    border: 2px solid var(--white);
    border-radius: 50%;
    content: '';
}

.mobile-nav-search::after {
    position: absolute;
    right: 11px;
    bottom: 11px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transform: rotate(45deg);
    content: '';
}

.mobile-nav-close span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--white);
}

.mobile-nav-close span:first-child { transform: rotate(45deg); }
.mobile-nav-close span:last-child { transform: rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    min-height: 840px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
    isolation: isolate;
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media { z-index: -3; overflow: hidden; background: var(--ink); }
.hero-media-pan {
    position: absolute;
    inset: -3%;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
}
.hero-media-picture,
.hero-media-picture img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.hero-media-picture img {
    object-fit: cover;
    object-position: 52% center;
    filter: saturate(.92) contrast(1.06) brightness(.98);
    pointer-events: none;
}

.hero-shade {
    z-index: -1;
    background:
        radial-gradient(circle at 82% 18%, rgba(76, 159, 127, .1), transparent 34%),
        radial-gradient(circle at 8% 88%, rgba(28, 98, 113, .16), transparent 42%),
        linear-gradient(90deg, rgba(5, 3, 33, .4) 0%, rgba(5, 3, 33, .08) 48%, rgba(5, 3, 33, .17) 100%),
        linear-gradient(180deg, rgba(5, 3, 33, .14) 0%, rgba(5, 3, 33, .04) 50%, rgba(5, 3, 33, .68) 100%);
}

.hero-layout { min-height: 840px; padding-top: 266px; }

.hero-card {
    width: min(600px, 100%);
    min-height: 428px;
    padding: 48px;
    border: 1px solid rgba(198, 211, 225, .2);
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(13, 19, 41, .9), rgba(5, 3, 33, .78));
    box-shadow: 0 28px 80px rgba(1, 5, 18, .32);
    backdrop-filter: blur(16px) saturate(112%);
}

.hero-kicker {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(198, 211, 225, .22);
    border-radius: 999px;
    background: rgba(13, 19, 41, .74);
    font-size: 14px;
    line-height: 1;
    transition: border-color .25s ease, transform .25s ease;
}

.hero-kicker:hover { border-color: var(--accent); transform: translateY(-2px); }
.hero-kicker i { width: 1px; height: 18px; margin: 0 13px; background: rgba(198, 211, 225, .3); }
.hero-kicker b { color: var(--accent-soft); font-weight: 400; }

.hero h1 {
    max-width: 510px;
    margin: 18px 0 0;
    font-size: clamp(38px, 4.2vw, 54px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1;
}

.hero h1 span { display: block; color: var(--accent-soft); }
.hero-card > p { max-width: 480px; margin: 14px 0 22px; color: var(--lilac); font-size: 15px; line-height: 1.55; }

.hero-scroll {
    position: absolute;
    z-index: 5;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 14px;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(5, 3, 33, .72);
    color: var(--white);
    font-size: 12px;
    backdrop-filter: blur(12px);
}

.hero-scroll i { color: var(--accent-soft); font-style: normal; animation: arrow-bob 1.8s ease-in-out infinite; }

/* Trusted brands */
.trusted { padding: 52px 0 46px; background: var(--ink); color: var(--white); }
.trusted-heading h2 { margin: 0 0 32px; font-size: clamp(26px, 3vw, 38px); font-weight: 500; letter-spacing: -.05em; line-height: 1.1; text-align: center; }
.brand-marquee { position: relative; overflow: hidden; border-radius: 12px; }
.brand-marquee::before, .brand-marquee::after { position: absolute; z-index: 2; top: 0; bottom: 0; width: 80px; content: ''; pointer-events: none; }
.brand-marquee::before { left: 0; background: linear-gradient(90deg, var(--ink) 0%, transparent 100%); }
.brand-marquee::after { right: 0; background: linear-gradient(-90deg, var(--ink) 0%, transparent 100%); }
.brand-marquee-track { display: flex; width: max-content; animation: brand-marquee 30s linear infinite; will-change: transform; }
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
.brand-marquee-group { display: flex; min-width: max-content; align-items: center; gap: clamp(40px, 5vw, 64px); padding-right: clamp(40px, 5vw, 64px); }
.brand-marquee-group img { width: auto; max-width: 144px; height: 42px; object-fit: contain; opacity: .95; filter: brightness(0) invert(1); }
.brand-marquee-group img:nth-child(3), .brand-marquee-group img:nth-child(9) { height: 52px; }

.tl-cred-item { display: flex; align-items: center; gap: 12px; padding: 0; transition: transform .3s ease, opacity .3s ease; }
.tl-cred-item:hover { transform: translateY(-2px); }
.tl-cred-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(76, 159, 127, .14); color: var(--accent); flex-shrink: 0; }
.tl-cred-icon svg { width: 18px; height: 18px; }
.tl-cred-text { display: flex; flex-direction: column; }
.tl-cred-label { color: var(--white); font-size: 14px; font-weight: 600; line-height: 1.25; white-space: nowrap; }
.tl-cred-sub { color: #8e9ab0; font-size: 11px; font-weight: 400; line-height: 1.25; white-space: nowrap; }

/* Clean SVG Wordmark Logos — matches brand marquee style */
.svc-logo {
    display: flex;
    align-items: center;
    opacity: 0.88;
    transition: opacity .3s ease, transform .3s ease;
    flex-shrink: 0;
}
.svc-logo:hover { opacity: 1; transform: translateY(-1px); }
.svc-logo svg text { fill: white; }


/* Global partner */
.intro-section { background: var(--white); }
.partner-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(60px, 8vw, 118px); align-items: center; }
.partner-media { position: relative; min-height: 540px; margin: 0; overflow: hidden; border: 1px solid rgba(5, 3, 33, .14); border-radius: 18px; background: var(--ink); }
.partner-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 3, 33, .06) 30%, rgba(5, 3, 33, .84) 100%); content: ''; }
.partner-media > img { width: 100%; height: 540px; object-fit: cover; transition: transform 1s var(--ease); }
.partner-media:hover > img { transform: scale(1.045); }
.partner-media figcaption { position: absolute; z-index: 2; right: 32px; bottom: 32px; left: 32px; display: flex; flex-direction: column; color: var(--white); }
.partner-media figcaption span, .gradient-tagline { background: linear-gradient(90deg, var(--accent), var(--accent-soft)); background-clip: text; color: transparent; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.partner-media figcaption strong { max-width: 470px; margin-top: 10px; font-size: clamp(28px, 3.2vw, 44px); font-weight: 500; letter-spacing: -.05em; line-height: 1.05; }
.partner-copy h2 { margin: 12px 0 16px; font-size: clamp(32px, 3.6vw, 48px); font-weight: 500; letter-spacing: -.05em; line-height: 1.05; }
.partner-copy > p { margin: 0; color: #738197; font-size: 15px; line-height: 1.6; }
.partner-list { display: grid; gap: 10px; margin: 20px 0; padding: 0; list-style: none; }
.partner-list li { position: relative; min-height: 25px; padding: 1px 0 0 39px; color: #33305b; font-size: 15px; }
.partner-list li::before { position: absolute; top: 0; left: 0; width: 25px; height: 25px; background: url('../assets/images/reference/list-bullet.svg') center / contain no-repeat; content: ''; }
.partner-quote { margin: 24px 0 0; padding: 20px; border: 1px solid rgba(5, 3, 33, .16); border-radius: 17px; background: var(--lilac-soft); }
.partner-quote > p { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.5; }
.partner-quote footer { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.partner-quote footer > img { width: 112px; padding: 10px; border-radius: 10px; background: var(--ink); }
.partner-quote footer span { display: flex; min-width: 0; flex-direction: column; }
.partner-quote footer strong { font-size: 14px; font-weight: 600; }
.partner-quote footer small { color: #6f6b91; font-size: 12px; }

/* Services */
.services { background: var(--white); color: var(--ink); }
.services-intro { max-width: 690px; margin-bottom: 32px; }
.services-intro h2 { margin: 10px 0 12px; font-size: clamp(34px, 4vw, 50px); font-weight: 500; letter-spacing: -.05em; line-height: 1.02; }
.services-intro p { max-width: 620px; margin: 0; color: #738197; font-size: 15px; line-height: 1.6; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card { position: relative; display: flex; min-height: 640px; flex-direction: column; padding: 34px; border: 1px solid rgba(5, 3, 33, .16); border-radius: 17px; background: var(--white); transition: border-color .35s ease, box-shadow .45s ease, transform .45s var(--ease); }
.service-card:hover { z-index: 2; border-color: rgba(76, 159, 127, .56); box-shadow: 0 28px 60px rgba(5, 3, 33, .12); transform: translateY(-8px); }
.service-icon { display: grid; width: 156px; height: 156px; place-items: center; }
.service-icon img { width: 100%; height: 100%; object-fit: contain; transition: transform .55s var(--ease); }
.service-card:hover .service-icon img { transform: scale(1.05) rotate(-2deg); }
.service-card h3 { margin: 25px 0 22px; font-size: clamp(27px, 2.2vw, 34px); font-weight: 500; letter-spacing: -.045em; line-height: 1.05; }
.service-card ul { display: grid; gap: 7px; margin: 0 0 30px; padding: 0; color: #738197; font-size: 15px; line-height: 1.45; list-style-position: inside; }
.service-card li::marker { color: var(--accent); }
.service-button { display: inline-flex; width: max-content; min-height: 48px; align-items: center; justify-content: center; margin-top: auto; overflow: hidden; padding: 0 23px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); font-size: 14px; font-weight: 600; transition: color .25s ease, background .25s ease, border-color .25s ease; }
.service-button:hover { border-color: var(--accent); background: var(--accent); color: var(--ink); }

.service-card-body { color: #738197; font-size: 15px; line-height: 1.6; margin: 0 0 30px; }
.service-toggle-wrap { display: flex; justify-content: center; margin-top: 48px; }
.service-toggle-btn { display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 32px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; background: rgba(255, 255, 255, .08); color: #fff; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .3s ease; }
.service-toggle-btn:hover { background: var(--accent); border-color: var(--accent); color: #050321; transform: translateY(-2px); }
.service-toggle-btn svg { transition: transform .3s ease; }

/* Bangladesh Orbit Section */
.results-section {
    background: var(--ink);
    color: var(--white);
    padding: 64px 0;
}

.results-card-box {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 56px);
    background: linear-gradient(180deg, #0e092c 0%, #150f3d 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(5, 3, 33, 0.5);
}

.results-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 52px;
}
.results-header h2 {
    margin: 12px 0 0;
    color: var(--white);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.15;
}

.results-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
    text-align: center;
}

.results-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.results-metric-item strong {
    color: var(--white);
    font-size: clamp(38px, 4.2vw, 56px);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1;
}
.results-metric-item p {
    margin: 12px 0 0;
    color: rgba(216, 222, 234, 0.72);
    font-size: 14px;
    line-height: 1.4;
    max-width: 220px;
}

.results-footer-callout {
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}
.results-footer-callout p {
    margin: 0;
    color: rgba(216, 222, 234, 0.6);
    font-size: 13.5px;
    letter-spacing: .01em;
}

@media (max-width: 991px) {
    .results-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }
}
@media (max-width: 575px) {
    .results-metrics-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


/* Orbit Rings - Theme Colors (Orange & Peach Glow) */
.bd-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.bd-ring-1 {
    width: 200px;
    height: 200px;
    border: 1.5px solid rgba(76, 159, 127, .75);
    box-shadow: 0 0 25px rgba(76, 159, 127, .4), inset 0 0 15px rgba(76, 159, 127, .2);
    animation: bd-ring-pulse 3.5s ease-in-out infinite alternate;
}
.bd-ring-2 {
    width: 320px;
    height: 320px;
    border: 1.5px solid rgba(28, 98, 113, .55);
    box-shadow: 0 0 30px rgba(76, 159, 127, .3);
    animation: bd-ring-pulse 5s ease-in-out infinite alternate-reverse;
}
.bd-ring-3 {
    width: 440px;
    height: 440px;
    border: 1.5px dashed rgba(76, 159, 127, .45);
    box-shadow: 0 0 35px rgba(76, 159, 127, .25);
    animation: bd-ring-spin 60s linear infinite;
}

@keyframes bd-ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.98); opacity: .65; }
    100% { transform: translate(-50%, -50%) scale(1.02); opacity: 1; filter: drop-shadow(0 0 12px rgba(76, 159, 127, .5)); }
}
@keyframes bd-ring-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center Sphere */
.bd-orbit-center {
    position: relative;
    z-index: 5;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #2a153b 0%, #08041d 100%);
    border: 2.5px solid var(--accent);
    box-shadow: 0 0 45px rgba(76, 159, 127, .55), inset 0 0 25px rgba(76, 159, 127, .35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}
.bd-orbit-center:hover {
    transform: scale(1.06);
    box-shadow: 0 0 60px rgba(76, 159, 127, .75), inset 0 0 30px rgba(76, 159, 127, .45);
}
.bd-orbit-center img {
    max-width: 92px;
    height: auto;
}

/* Satellites Grid / Positioned Cards */
.bd-satellite {
    position: absolute;
    z-index: 6;
    padding: 11px 17px;
    border: 1px solid rgba(76, 159, 127, .35);
    border-radius: 12px;
    background: rgba(13, 19, 41, .92);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(5, 3, 33, .6), 0 0 15px rgba(76, 159, 127, .15);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    max-width: 185px;
}
.bd-satellite:hover {
    transform: scale(1.06) translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 16px 36px rgba(5, 3, 33, .7), 0 0 25px rgba(76, 159, 127, .4);
}
.bd-satellite strong {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: var(--accent-soft);
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(76, 159, 127, .3);
}
.bd-satellite span {
    display: block;
    font-size: 11px;
    color: #cbd5e1;
    line-height: 1.35;
    margin-top: 2px;
}

/* Satellite Positions */
.bd-sat-1 { top: 25px; left: 30px; }
.bd-sat-2 { top: 25px; right: 30px; }
.bd-sat-3 { top: 195px; left: 10px; }
.bd-sat-4 { top: 195px; right: 10px; }
.bd-sat-5 { bottom: 30px; left: 40px; }
.bd-sat-6 { bottom: 20px; right: 20px; max-width: 210px; }

@media (max-width: 991px) {
    .bd-orbit-inner { grid-template-columns: 1fr; gap: 40px; }
    .bd-orbit-diagram { height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bd-satellite { position: relative; top: auto!important; left: auto!important; right: auto!important; bottom: auto!important; max-width: none; }
    .bd-ring, .bd-orbit-center { display: none; }
}

/* Value band */
.value-band { padding: 78px 0; border-top: 1px solid var(--line); background: var(--ink-soft); color: var(--white); }
.value-grid { display: grid; grid-template-columns: 1.6fr repeat(3, .65fr); gap: 30px; align-items: center; }
.value-copy h2 { max-width: 520px; margin: 20px 0 0; font-size: clamp(36px, 4vw, 54px); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.value-stat { min-height: 142px; padding-left: 28px; border-left: 1px solid var(--line); }
.value-stat strong, .value-stat b { color: var(--accent-soft); font-size: clamp(44px, 5vw, 70px); font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.value-stat b { font-size: clamp(28px, 3vw, 40px); }
.value-stat span { display: block; margin-top: 15px; color: var(--muted); font-size: 13px; line-height: 1.45; }

/* Model */
.model { background: var(--lilac-soft); }
.model-layout { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr); gap: clamp(60px, 9vw, 150px); align-items: start; }
.model-sticky { position: sticky; top: 120px; }
.model-sticky p { margin: 14px 0 20px; color: #738197; font-size: 15px; line-height: 1.6; }
.model-steps { border-top: 1px solid rgba(5, 3, 33, .14); }
.model-step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; min-height: 220px; align-items: center; padding: 32px 0; border-bottom: 1px solid rgba(5, 3, 33, .14); transition: padding .35s var(--ease), background .35s ease; }
.model-step:hover { padding-right: 20px; padding-left: 20px; background: var(--white); }
.model-step > span { align-self: start; color: var(--accent); font-size: 14px; font-weight: 600; }
.model-step small { color: #8a86a9; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.model-step h3 { margin: 10px 0 0; font-size: clamp(22px, 2.4vw, 32px); font-weight: 500; letter-spacing: -.04em; line-height: 1.05; }
.model-step p { max-width: 620px; margin: 10px 0 0; color: #738197; font-size: 15px; line-height: 1.6; }

/* Industries */
.industries { background: var(--white); }
.industry-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.industry-card { position: relative; min-height: 520px; overflow: hidden; border-radius: 17px; background: var(--ink-soft); color: var(--white); }
.industry-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 3, 33, .05), rgba(5, 3, 33, .86)); content: ''; }
.industry-card > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: filter .45s ease, transform .7s var(--ease); }
.industry-card:hover > img { filter: saturate(1.1); transform: scale(1.08); }
.industry-card > div { position: absolute; z-index: 2; right: 26px; bottom: 26px; left: 26px; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; }
.industry-card small { grid-column: 1 / -1; color: var(--accent-soft); font-size: 12px; }
.industry-card h3 { margin: 0; font-size: 28px; font-weight: 500; letter-spacing: -.04em; line-height: 1.08; }
.industry-card a { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent-soft); font-size: 20px; transition: background .25s ease, color .25s ease, transform .25s ease; }
.industry-card a:hover { background: var(--accent); color: var(--ink); transform: translate(3px, -3px); }

/* Film */
.film { position: relative; min-height: 460px; overflow: hidden; background: var(--ink); color: var(--white); isolation: isolate; }
.film > video { position: absolute; z-index: -3; inset: -50px 0 auto; width: 100%; height: calc(100% + 100px); object-fit: cover; filter: saturate(.8) contrast(1.08) hue-rotate(8deg); transform: translate3d(0, var(--film-shift, 0), 0) scale(1.09); will-change: transform; }
.film-overlay { position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 68% 28%, rgba(76, 159, 127, .25), transparent 28%), linear-gradient(90deg, rgba(5, 3, 33, .88), rgba(5, 3, 33, .45) 64%, rgba(5, 3, 33, .7)); }
.film-content { display: flex; min-height: 460px; justify-content: center; flex-direction: column; padding: 48px 0; }
.route-pill { display: inline-flex; width: max-content; align-items: center; gap: 12px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(5, 3, 33, .6); color: var(--lilac); font-size: 12px; backdrop-filter: blur(10px); }
.route-pill i { width: 28px; height: 1px; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); }
.route-pill b { color: var(--accent-soft); font-weight: 500; }
.film-content > p { margin: 16px 0 0; color: var(--muted); font-size: 13px; letter-spacing: .04em; }
.film h2 { max-width: 900px; margin: 16px 0 0; font-size: clamp(34px, 4.8vw, 56px); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.film h2 em { color: var(--accent-soft); font-style: normal; }
.film-footer { display: flex; gap: 24px; align-items: center; margin-top: 56px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.film-footer a { margin-left: auto; color: var(--accent-soft); font-weight: 600; }
.film-control { position: absolute; right: 24px; bottom: 24px; display: inline-flex; min-height: 44px; align-items: center; gap: 10px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(5, 3, 33, .72); color: var(--white); cursor: pointer; font-size: 12px; backdrop-filter: blur(12px); }
.film-control b { font-weight: 500; }

/* Work */
.work { background: var(--lilac-soft); }
.work-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); gap: clamp(60px, 8vw, 120px); align-items: center; }
.work-image { position: relative; min-height: 650px; margin: 0; overflow: hidden; border-radius: 17px; box-shadow: var(--shadow); }
.work-image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(5, 3, 33, .78)); content: ''; }
.work-image img { width: 100%; height: 650px; object-fit: cover; transition: transform .8s var(--ease); }
.work-image:hover img { transform: scale(1.05); }
.work-image figcaption { position: absolute; z-index: 2; right: 28px; bottom: 26px; left: 28px; color: var(--white); font-size: 14px; }
.work-copy > p { margin: 26px 0 0; color: #738197; font-size: 18px; line-height: 1.7; }
.work-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 32px 0 0; padding: 0; list-style: none; }
.work-copy li { padding: 16px 18px; border: 1px solid rgba(5, 3, 33, .1); border-radius: 12px; background: rgba(255, 255, 255, .65); color: #464267; font-size: 14px; }
.work-copy li::before { margin-right: 9px; color: var(--accent); content: '\2022'; }

/* Insights */
.insights { background: var(--ink); color: var(--white); }
.insights .section-heading { align-items: end; }
.insights .section-heading h2 { color: var(--white); }
.insights .section-heading .button { justify-self: end; }
.insight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.insight-card { display: flex; min-height: 280px; flex-direction: column; padding: 24px; border: 1px solid rgba(198, 211, 225, .16); border-radius: 17px; background: var(--ink-soft); transition: border-color .3s ease, transform .4s var(--ease); }
.insight-card:hover { border-color: rgba(76, 159, 127, .45); transform: translateY(-5px); }
.insight-card > span { color: var(--accent); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.insight-card h3 { margin: 20px 0 0; font-size: clamp(20px, 2vw, 24px); font-weight: 500; letter-spacing: -.04em; line-height: 1.1; }
.insight-card p { margin: 12px 0 18px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.insight-card a { margin-top: auto; color: var(--accent-soft); font-size: 14px; font-weight: 600; }

/* CTA and footer */
.final-cta { position: relative; overflow: hidden; padding: 128px 0; background: var(--lilac-soft); color: var(--ink); text-align: center; isolation: isolate; }
.final-cta-inner { position: relative; z-index: 2; display: flex; align-items: center; flex-direction: column; }
.final-cta h2 { max-width: 920px; margin: 24px auto 0; font-size: clamp(52px, 7vw, 90px); font-weight: 500; letter-spacing: -.07em; line-height: .92; }
.final-cta p { max-width: 620px; margin: 26px auto 32px; color: #738197; font-size: 18px; }
.cta-orbits { position: absolute; z-index: -1; inset: 0; }
.cta-orbits i { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(76, 159, 127, .22); border-radius: 50%; transform: translate(-50%, -50%); }
.cta-orbits i:nth-child(1) { width: 390px; height: 390px; }
.cta-orbits i:nth-child(2) { width: 700px; height: 700px; border-style: dashed; animation: orbit 30s linear infinite; }
.cta-orbits i:nth-child(3) { width: 1040px; height: 1040px; border-color: rgba(5, 3, 33, .08); animation: orbit-reverse 38s linear infinite; }

/* ───────────────────────────────────────────────────────────────
   TMX-STYLE SITE FOOTER
──────────────────────────────────────────────────────────────── */
.site-footer-tmx,
.site-footer {
    background: #0c1227;
    color: rgba(216, 222, 234, 0.75);
    font-size: 14px;
}

/* Outer wrapper */
.styles-module--footer--e4089 .shell,
.styles-module--footer--e4089 .styles-module--container--1b805 {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo row */
.styles-module--logo--5cde5 {
    padding: 32px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Main 4-col grid */
.styles-module--columns--870a0 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.35fr;
    gap: 30px;
    padding: 28px 0 26px;
}

/* Each column */
.styles-module--container--0a182 {
    display: flex;
    flex-direction: column;
}

/* Column heading (accordion trigger on mobile) */
.styles-module--title--c5679 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: default;
}

/* Chevron icon – hidden on desktop */
.styles-module--icon--42764 {
    display: none;
}

/* Links */
.styles-module--content--279b5 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.styles-module--link--512c0 {
    color: rgba(216, 222, 234, 0.65);
    font-size: 13.5px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}
.styles-module--link--512c0:hover { color: var(--white); }

.styles-module--categoryLink--d2182 {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.styles-module--categoryLink--d2182:hover { color: var(--accent-soft); }

/* Newsletter column */
.styles-module--columnNewsletter--936ec {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}


.styles-module--columnTitle--c8726 {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Newsletter form */
/* Newsletter form pill fields */
.styles-module--form--32411 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.styles-module--emailField--0f21d input {
    width: 100%;
    height: 48px;
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(198, 211, 225, 0.18);
    border-radius: 999px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    box-sizing: border-box;
}
.styles-module--consentField--6c418 .field.styles-module--field--e45fd {
    width: 100%;
    height: auto;
    min-height: 52px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(198, 211, 225, 0.18);
    border-radius: 16px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}
.styles-module--emailField--0f21d input:focus {
    border-color: rgba(76, 159, 127, 0.6);
    background: rgba(255, 255, 255, 0.07);
}
.styles-module--emailField--0f21d input::placeholder { color: rgba(216, 222, 234, 0.4); }

/* Subscribe Pill Button (White) */
.styles-module--formButton--8ecaa,
.styles-module--button--54de0 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #050321;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.styles-module--formButton--8ecaa:hover,
.styles-module--button--54de0:hover {
    background: #d8deea;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Consent row */
.styles-module--container--d0c60 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;
}

.styles-module--label--16dad {
    flex: 1;
    color: rgba(216, 222, 234, 0.6);
    font-size: 11.5px;
    line-height: 1.5;
    cursor: pointer;
}
.styles-module--label--16dad a { color: var(--accent); text-decoration: underline; }
.styles-module--asterisk--afb8a { color: var(--accent); }

.styles-module--button--1da63 {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}
.styles-module--input--06ddc {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 2;
}
.styles-module--checkmark--ab1fd {
    display: block;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(198, 211, 225, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    transition: border-color 0.2s ease;
}
.styles-module--input--06ddc:checked ~ .styles-module--checkmark--ab1fd {
    border-color: var(--accent);
    background: rgba(76, 159, 127, 0.15);
}

/* Circular Social Icons Box */
.footer-social-box {
    margin-top: 20px;
}
.styles-module--container--0a60f {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.styles-module--social--2563d {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(198, 211, 225, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.styles-module--social--2563d:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}


/* Locations bar - 4 column grid */
.footer-locations-bar {
    margin: 2px 0 18px;
    padding: 22px 24px 20px;
    border: 1px solid rgba(139, 215, 232, .13);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(10, 26, 31, .62), rgba(8, 10, 29, .48));
}
.footer-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.footer-loc-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(216, 222, 234, 0.4);
    margin-bottom: 14px;
}
.styles-module--columnLocationList--e5052 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.styles-module--columnLocationList--e5052 li a {
    color: rgba(216, 222, 234, 0.65);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.styles-module--columnLocationList--e5052 li a:hover { color: var(--white); }
.footer-loc-view-all {
    color: var(--accent);
    font-size: 12.5px;
}
.footer-loc-view-all:hover { opacity: 0.8; }



/* Credits / Legal Bottom */
.styles-module--credits--9269d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.styles-module--disclaimer--a9305 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: rgba(216, 222, 234, 0.45);
    font-size: 12px;
}
.styles-module--disclaimer--a9305 p { margin: 0; }
.styles-module--creditsColumn--d49b7 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.styles-module--creditsColumn--d49b7 a {
    color: rgba(216, 222, 234, 0.5);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.styles-module--creditsColumn--d49b7 a:hover { color: var(--white); }

/* ── Responsive Tablets (1024px) ── */
@media (max-width: 1064px) {
    .styles-module--columns--870a0 {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .styles-module--columnNewsletter--936ec {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 24px;
    }
    .footer-locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Locations accordion title toggle rule for desktop vs mobile/tablet */
.footer-locations-accordion-title {
    display: none;
}
.footer-locations-content {
    display: block;
}

/* ── Responsive Mobile & Tablet (max-width: 1024px) ── */
@media (max-width: 1024px) {
    .styles-module--columns--870a0 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .styles-module--container--0a182 {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0;
    }
    .styles-module--title--c5679 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        margin-bottom: 0;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        cursor: pointer;
    }
    .styles-module--icon--42764 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        transition: transform 0.3s ease;
    }
    .styles-module--icon--42764 svg {
        width: 16px;
        height: 16px;
        display: block;
    }
    .styles-module--content--279b5 {
        display: none;
        flex-direction: column;
        padding-bottom: 12px;
    }
    .styles-module--container--0a182.is-open .styles-module--content--279b5 {
        display: flex;
    }
    .styles-module--container--0a182.is-open .styles-module--icon--42764 {
        transform: rotate(180deg);
    }
    .styles-module--content--279b5 a {
        display: flex;
        align-items: center;
        padding: 13px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        color: #d8deea;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .styles-module--content--279b5 a:hover {
        color: var(--white);
    }
    
    .styles-module--columnNewsletter--936ec {
        order: -1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 28px;
        margin-bottom: 16px;
    }

    /* Locations Accordion on Mobile & Tablet */
    .footer-locations-bar {
        border-top: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-locations-accordion-title {
        display: flex;
    }
    .footer-locations-content {
        display: none;
        padding-bottom: 16px;
    }
    .footer-locations-bar.is-open .footer-locations-content {
        display: block;
    }
    .footer-locations-bar.is-open .styles-module--icon--42764 {
        transform: rotate(180deg);
    }
    .footer-locations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 8px;
    }
    .footer-loc-col {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 12px;
    }
    
    .styles-module--credits--9269d {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 0;
    }
    .styles-module--creditsColumn--d49b7 {
        gap: 12px;
    }
}


/* ── Old .site-footer / .footer-grid fallback ── */
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 23px 0; border-top: 1px solid rgba(198, 211, 225, .12); color: #8e9ab0; font-size: 11px; }


/* Inner pages */
.inner-page {
    background: var(--ink);
    color: #ddd9f3;
}

.inner-page main {
    background: var(--ink);
}
.simple-nav .nav-link[aria-current='page'] { color: var(--accent-soft); }
.simple-nav .nav-contact[aria-current='page'] { background: var(--accent); color: var(--ink); }

.page-hero { position: relative; min-height: 680px; overflow: hidden; background: var(--ink); color: #f1efff; isolation: isolate; }
.page-hero-media { position: absolute; z-index: -2; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.025); animation: hero-breathe 12s ease-in-out infinite alternate; }
.page-hero-overlay { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(5, 3, 33, .96) 0%, rgba(5, 3, 33, .82) 42%, rgba(5, 3, 33, .28) 100%), linear-gradient(0deg, rgba(5, 3, 33, .48), transparent 55%); }
.page-hero-about .page-hero-media { left: 42%; }
.page-hero-about .page-hero-media img { object-position: 44% 46%; }
.page-hero-services .page-hero-media img { object-position: center 48%; }
.page-hero-industries .page-hero-media img { object-position: center 45%; }
.page-hero-cases .page-hero-media img { object-position: center 55%; }
.page-hero-content { display: flex; min-height: 600px; align-items: flex-start; justify-content: flex-end; flex-direction: column; padding-top: 128px; padding-bottom: 52px; }
.page-hero-content h1 { max-width: 860px; margin: 16px 0 0; font-size: clamp(42px, 5.2vw, 72px); font-weight: 500; letter-spacing: -.065em; line-height: .92; }
.page-hero-content h1 em { color: var(--accent-soft); font-style: normal; }
.page-hero-content > p { max-width: 590px; margin: 22px 0 0; color: #c6d3e1; font-size: 17px; line-height: 1.62; }

.page-intro { background: var(--ink); }
.editorial-grid { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.editorial-grid h2 { max-width: 640px; margin: 14px 0 0; font-size: clamp(32px, 3.8vw, 52px); font-weight: 500; letter-spacing: -.055em; line-height: 1; }
.editorial-copy > p { margin: 0 0 14px; color: #738197; font-size: 15px; line-height: 1.65; }
.editorial-grid.light h2 { color: #f1efff; }
.editorial-grid.light .editorial-copy > p { color: var(--muted); }
.dark-feature { background: var(--ink); color: #ddd9f3; }
.dark-feature .section-heading h2 { color: #f1efff; }
.dark-feature .section-heading > p { color: var(--muted); }

.principle-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.principle-card { min-height: 350px; padding: 34px; border: 1px solid rgba(198, 211, 225, .17); border-radius: 17px; background: var(--ink-soft); transition: border-color .3s ease, transform .4s var(--ease); }
.principle-card:hover { border-color: rgba(76, 159, 127, .52); transform: translateY(-7px); }
.principle-card > span { color: var(--accent); font-size: 13px; }
.principle-card h3 { margin: 100px 0 16px; font-size: 34px; font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.principle-card p { margin: 0; color: var(--muted); line-height: 1.65; }

/* ═══════════════════ PAGE HERO ENHANCEMENTS ═══════════════════ */
.page-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border: 1px solid rgba(76, 159, 127, .4);
    border-radius: 14px;
    background: rgba(76, 159, 127, .1);
    color: var(--accent);
}
.page-hero-icon svg { width: 26px; height: 26px; }
.page-hero-cta { margin-top: 34px; }

/* ═══════════════════ PAGE CARD SECTION ═══════════════════ */
.page-card-section { background: var(--ink); }
.page-card-section { padding-top: 0; padding-bottom: 72px; }
.page-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
@media (max-width: 900px) { .page-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 580px) { .page-card-grid { grid-template-columns: 1fr; } }

.page-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 280px;
    padding: 28px 24px 24px;
    border: 1px solid rgba(198, 211, 225, .14);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(13, 19, 41, .95), rgba(12, 10, 39, .98));
    box-shadow: 0 16px 48px rgba(5, 3, 33, .18);
    transition: border-color .35s ease, transform .4s var(--ease), box-shadow .4s var(--ease);
}
.page-card:hover {
    border-color: rgba(76, 159, 127, .45);
    box-shadow: 0 28px 72px rgba(5, 3, 33, .22);
    transform: translateY(-6px);
}
.page-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border: 1px solid rgba(76, 159, 127, .32);
    border-radius: 12px;
    background: rgba(76, 159, 127, .08);
    color: var(--accent);
    flex-shrink: 0;
}
.page-card-icon svg { width: 20px; height: 20px; }
.page-card h2 {
    margin: 0 0 14px;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1.1;
    color: #f1efff;
}
.page-card-points {
    flex: 1;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}
.page-card-points li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(198, 211, 225, .08);
    color: #c6d3e1;
    font-size: 13px;
    line-height: 1.5;
}
.page-card-points li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.page-card-link {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color .25s ease;
}
.page-card-link:hover { color: var(--accent-soft); }

/* ═══════════════════ SERVICE FEATURE BLOCKS ═══════════════════ */
.page-feature-blocks { background: var(--ink); }

.svc-block { padding-block: clamp(54px, 6vw, 96px); }
.svc-block--alt { background: rgba(13, 19, 41, .55); }

.svc-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 72px);
    align-items: center;
}
.svc-block__grid--flip .svc-block__visual { order: 2; }
.svc-block__grid--flip .svc-block__copy   { order: 1; }

/* Visual / Art Panel */
.svc-block__visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.svc-block__art {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 320px;
    border: 1px solid rgba(198, 211, 225, .12);
    border-radius: 22px;
    background: radial-gradient(ellipse at 50% 40%, rgba(76, 159, 127, .07) 0%, transparent 70%),
                linear-gradient(180deg, rgba(13, 19, 41, .95), rgba(12, 10, 39, .98));
    overflow: hidden;
}
.svc-block__art-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1.5px solid rgba(76, 159, 127, .4);
    border-radius: 20px;
    background: rgba(76, 159, 127, .1);
    color: var(--accent);
}
.svc-block__art-icon svg { width: 34px; height: 34px; }
.svc-block__art-ring {
    position: absolute;
    border: 1px solid rgba(76, 159, 127, .12);
    border-radius: 50%;
    animation: ring-pulse 4s ease-in-out infinite;
    pointer-events: none;
}
.svc-block__art-ring { width: 160px; height: 160px; }
.svc-block__art-ring--2 { width: 260px; height: 260px; animation-delay: -2s; }
@keyframes ring-pulse {
    0%, 100% { opacity: .5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

/* Chips / bullets strip */
.svc-block__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.svc-block__chips li {
    padding: 6px 14px;
    border: 1px solid rgba(198, 211, 225, .16);
    border-radius: 100px;
    background: rgba(13, 19, 41, .7);
    color: #c6d3e1;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

/* Copy Panel */
.svc-block__copy h2 {
    max-width: 600px;
    margin: 12px 0 20px;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1.05;
    color: #f1efff;
}
.svc-block__copy > p {
    max-width: 560px;
    margin: 0 0 14px;
    color: #c6d3e1;
    font-size: 15px;
    line-height: 1.72;
}
.svc-block__cta { margin-top: 28px; }

@media (max-width: 860px) {
    .svc-block__grid,
    .svc-block__grid--flip { grid-template-columns: 1fr; }
    .svc-block__grid--flip .svc-block__visual,
    .svc-block__grid--flip .svc-block__copy { order: unset; }
    .svc-block__art { min-height: 220px; }
}

/* Legacy compatibility – keep old classes working */
.service-detail-section { background: var(--ink); padding-block: 60px; }
.service-detail-section.alt { background: var(--ink-soft); }
.service-detail-grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: clamp(22px, 3vw, 54px); align-items: center; }
.service-detail-grid.reverse .service-detail-art { order: 2; }
.service-detail-grid.reverse .service-detail-copy { order: 1; }
.service-detail-art { display: grid; min-height: 360px; place-items: center; border: 1px solid rgba(198, 211, 225, .16); border-radius: 18px; background: linear-gradient(180deg, rgba(13, 19, 41, .92), rgba(12, 10, 39, .98)); }
.service-detail-art img { width: min(280px, 64%); }
.service-detail-copy h2 { max-width: 720px; margin: 12px 0 14px; font-size: clamp(30px, 3.6vw, 46px); font-weight: 500; letter-spacing: -.055em; line-height: 1; color: #f1efff; }
.service-detail-copy > p { max-width: 620px; margin: 0; color: #c6d3e1; font-size: 15px; line-height: 1.65; }

.contact-section { background: var(--ink); padding-block: 60px; }


.category-section { padding-top: 0; background: var(--white); }
.category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.category-card { overflow: hidden; border: 1px solid rgba(5, 3, 33, .14); border-radius: 18px; background: var(--white); box-shadow: 0 24px 60px rgba(5, 3, 33, .08); transition: border-color .35s ease, transform .45s var(--ease); }
.category-card:hover { border-color: rgba(76, 159, 127, .5); transform: translateY(-7px); }
.category-card figure { height: 330px; margin: 0; overflow: hidden; background: var(--ink); }
.category-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.category-card:hover figure img { transform: scale(1.055); }
.category-card > div { position: relative; min-height: 300px; padding: 34px; }
.category-card > div > span { color: var(--accent); font-size: 12px; }
.category-card h2 { margin: 18px 0 16px; font-size: clamp(32px, 3.1vw, 46px); font-weight: 500; letter-spacing: -.055em; line-height: 1; }
.category-card p { margin: 0 0 24px; color: #738197; line-height: 1.65; }
.category-card a { position: absolute; right: 34px; bottom: 30px; left: 34px; color: var(--ink); font-size: 14px; font-weight: 600; }
.category-card a:hover { color: var(--accent); }

.case-list { padding-top: 20px; background: var(--lilac-soft); }
.case-list .shell { display: grid; gap: 34px; }
.case-feature { display: grid; min-height: 600px; overflow: hidden; grid-template-columns: 1.05fr .95fr; border: 1px solid rgba(5, 3, 33, .14); border-radius: 18px; background: var(--white); box-shadow: 0 28px 70px rgba(5, 3, 33, .08); }
.case-feature.reverse figure { order: 2; }
.case-feature.reverse .case-feature-copy { order: 1; }
.case-feature figure { min-height: 600px; margin: 0; overflow: hidden; background: var(--ink); }
.case-feature figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.case-feature:hover figure img { transform: scale(1.045); }
.case-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 74px); }
.case-feature-copy h2 { margin: 20px 0; font-size: clamp(40px, 4vw, 58px); font-weight: 500; letter-spacing: -.06em; line-height: .98; }
.case-feature-copy > p { margin: 0; color: #738197; font-size: 17px; line-height: 1.68; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.case-metrics span { padding-top: 18px; border-top: 1px solid rgba(5, 3, 33, .15); }
.case-metrics strong { display: block; color: var(--accent); font-size: 33px; font-weight: 500; letter-spacing: -.05em; }
.case-metrics small { color: #6f6b91; font-size: 11px; line-height: 1.35; }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.result-grid .value-stat { min-height: 180px; padding-top: 32px; }

.resource-section { padding-top: 0; background: var(--white); }
.resource-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.resource-card { position: relative; display: flex; min-height: 380px; flex-direction: column; padding: 34px; border: 1px solid rgba(5, 3, 33, .14); border-radius: 17px; background: var(--lilac-soft); transition: border-color .35s ease, transform .4s var(--ease); }
.resource-card:hover { border-color: rgba(76, 159, 127, .5); transform: translateY(-7px); }
.resource-card > span { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.resource-card h2 { margin: 34px 0 18px; font-size: clamp(30px, 3vw, 44px); font-weight: 500; letter-spacing: -.055em; line-height: 1.02; }
.resource-card p { margin: 0 0 28px; color: #738197; line-height: 1.65; }
.resource-card a { margin-top: auto; font-size: 14px; font-weight: 600; }
.resource-card.featured { grid-column: 1 / -1; display: grid; min-height: 570px; grid-template-columns: 1.05fr .95fr; padding: 0; overflow: hidden; }
.resource-card.featured figure { min-height: 570px; margin: 0; overflow: hidden; }
.resource-card.featured figure img { width: 100%; height: 100%; object-fit: cover; }
.resource-card.featured > div { display: flex; flex-direction: column; padding: clamp(38px, 5vw, 70px); }
.resource-card.featured > div > span { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.newsletter-band { padding: 100px 0; background: var(--ink); color: var(--white); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(58px, 10vw, 154px); align-items: center; }
.newsletter-grid h2 { margin: 18px 0; font-size: clamp(46px, 5vw, 70px); font-weight: 500; letter-spacing: -.065em; line-height: .96; }
.newsletter-grid p { margin: 0; color: var(--muted); }
.newsletter-form label { display: block; margin-bottom: 12px; color: var(--lilac); font-size: 13px; }
.newsletter-form > div { display: flex; gap: 10px; }
.newsletter-form input { width: 100%; min-height: 56px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--ink-soft); color: var(--white); outline: none; }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button { min-width: 130px; border: 0; border-radius: 999px; background: var(--accent); color: var(--ink); font-weight: 600; cursor: pointer; }
.newsletter-form small { display: block; margin-top: 13px; color: #8e9ab0; line-height: 1.45; }

.contact-hero { min-height: 920px; padding: 190px 0 100px; background: radial-gradient(circle at 10% 5%, rgba(76, 159, 127, .14), transparent 28%), var(--ink); color: var(--white); }
.contact-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 156px); align-items: start; }
.contact-intro { position: sticky; top: 130px; }
.contact-intro h1 { max-width: 650px; margin: 24px 0; font-size: clamp(64px, 7vw, 100px); font-weight: 500; letter-spacing: -.075em; line-height: .9; }
.contact-intro > p { max-width: 570px; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.contact-details { display: grid; gap: 18px; margin-top: 56px; }
.contact-details a, .contact-details > div { display: flex; flex-direction: column; padding-top: 18px; border-top: 1px solid var(--line); }
.contact-details small { color: #8e9ab0; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.contact-details strong { margin-top: 5px; font-size: 18px; font-weight: 500; }
.contact-form { display: grid; gap: 22px; padding: 42px; border: 1px solid var(--line); border-radius: 18px; background: var(--ink-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 9px; color: var(--lilac); font-size: 13px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 54px; padding: 13px 16px; border: 1px solid rgba(198, 211, 225, .2); border-radius: 10px; background: #0b1227; color: var(--white); outline: none; transition: border-color .2s ease; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form .consent { display: flex; align-items: flex-start; grid-template-columns: 20px 1fr; gap: 11px; color: var(--muted); line-height: 1.5; }
.contact-form .consent input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--accent); }
.contact-form .button { width: max-content; min-width: 150px; cursor: pointer; }
.location-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.location-card { min-height: 390px; padding: 38px; border: 1px solid rgba(5, 3, 33, .14); border-radius: 18px; background: var(--lilac-soft); }
.location-card > span { color: var(--accent); font-size: 13px; }
.location-card h3 { margin: 100px 0 16px; font-size: 48px; font-weight: 500; letter-spacing: -.06em; }
.location-card p { max-width: 470px; margin: 0; color: #738197; }
.location-card a { display: inline-flex; margin-top: 30px; font-size: 14px; font-weight: 600; }

@keyframes hero-breathe { from { transform: scale(1.025); } to { transform: scale(1.075); } }

/* Reveal motion */
.js .reveal { opacity: 0; transform: translate3d(0, 32px, 0); transition: opacity .8s ease, transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.js .service-card:nth-child(2), .js .industry-card:nth-child(2), .js .insight-card:nth-child(2), .js .value-stat:nth-child(3) { transition-delay: .09s; }
.js .service-card:nth-child(3), .js .industry-card:nth-child(3), .js .insight-card:nth-child(3), .js .value-stat:nth-child(4) { transition-delay: .18s; }

@keyframes nav-enter { from { opacity: 0; transform: translateY(-22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes brand-marquee { to { transform: translateX(-50%); } }
@keyframes arrow-bob { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }
@keyframes orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit-reverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }

/* Tablet */
@media (max-width: 1120px) {
    .nav-link, .nav-item > button, .nav-contact { font-size: 13px; }
    .nav-contact { padding-inline: 16px; }
    .partner-grid { gap: 48px; }
    .partner-media, .partner-media > img { min-height: 640px; height: 640px; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .service-card:last-child { grid-column: 1 / -1; }
    .service-card:last-child { min-height: 520px; }
    .value-grid { grid-template-columns: 1.4fr repeat(3, .7fr); }
    .work-grid { grid-template-columns: 1fr 1fr; gap: 54px; }
}

@media (max-width: 1020px) {
    html { scroll-padding-top: 94px; }
    .shell { width: min(100% - 32px, var(--shell)); }
    .nav-shell {
        width: calc(100% - 24px);
        height: 74px;
        margin-top: 12px;
        padding: 0 20px;
        border-radius: 14px;
        background: #050321;
    }
    .is-scrolled .nav-shell {
        height: 70px;
        margin-top: 8px;
    }
    .brand img { height: 34px; }
    .menu-toggle {
        position: relative;
        display: grid;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: 0;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        border: 1px solid rgba(198, 211, 225, 0.2);
        border-radius: 14px;
        background: #050321;
        box-shadow: 0 24px 70px rgba(5, 3, 33, .5);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        visibility: hidden;
        backdrop-filter: blur(20px);
        transition: opacity .25s ease, transform .25s var(--ease), visibility .25s ease;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }
    
    .nav-item {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid rgba(198, 211, 225, .1);
    }
    .nav-item:last-child {
        border-bottom: 0;
    }
    
    .nav-link, .nav-item > button {
        width: 100%;
        min-height: 50px;
        justify-content: space-between;
        padding: 0 12px;
        border-radius: 8px;
        background: transparent;
        font-size: 15px;
        color: #d8deea;
    }
    .nav-contact {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        margin: 12px 0 0;
        border: 1.5px solid var(--accent);
        border-radius: 999px;
        background: transparent;
        color: #fff;
    }
    .nav-contact:hover {
        background: var(--accent);
    }

    .dropdown-panel, .dropdown-wide {
        position: static;
        z-index: auto;
        width: 100%;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0 12px;
        border: 0;
        background: rgba(5, 3, 33, 0.4);
        box-shadow: none;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        transition: max-height .3s var(--ease), padding .3s ease;
    }
    .nav-item.open .dropdown-panel {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        padding-top: 8px;
        padding-bottom: 12px;
    }
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .dropdown-panel a {
        padding: 10px 12px;
        font-size: 14px;
        color: #d8deea;
    }
    .dropdown-panel a:hover {
        background: rgba(76, 159, 127, 0.1);
        color: var(--accent);
    }
    .dropdown-label {
        display: none;
    }
    .section-heading { grid-template-columns: 1fr; gap: 24px; }
    .partner-grid, .model-layout, .work-grid { grid-template-columns: 1fr; }
    .section-copy { max-width: 760px; }
    .partner-media { width: min(760px, 100%); min-height: 620px; margin-inline: auto; }
    .partner-media > img { min-height: 620px; height: 620px; }
    .partner-copy { max-width: 760px; }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .value-copy { grid-column: 1 / -1; margin-bottom: 15px; }
    .value-stat:last-child { grid-column: 1 / -1; }
    .model-sticky { position: static; }
    .industry-track, .insight-grid { grid-template-columns: 1fr 1fr; }
    .industry-card:last-child, .insight-card:last-child { grid-column: 1 / -1; }
    .industry-card:last-child { min-height: 460px; }
    .film-footer { flex-wrap: wrap; }
    .film-footer a { width: 100%; margin: 8px 0 0; }
    .work-image, .work-image img { min-height: 560px; height: 560px; }
    .work-copy { max-width: 760px; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

/* Mobile mirrors the reference: copy on dark background, image below. */
@media (max-width: 760px) {
    .section { padding: 60px 0; }
    .hero { min-height: 844px; }
    .hero-layout { min-height: 844px; padding-top: 134px; }
    .hero-media { top: 512px; height: 332px; }
    .hero-shade { top: 512px; height: 332px; background: linear-gradient(180deg, rgba(5, 3, 33, .1), rgba(5, 3, 33, .48)); }
    .hero-media-picture img { object-position: 58% center; }
    .hero-card { width: 100%; min-height: 378px; padding: 0 8px; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
    .hero-kicker { font-size: 13px; }
    .hero h1 { max-width: 520px; margin-top: 27px; font-size: clamp(40px, 12vw, 52px); line-height: .96; }
    .hero-card > p { margin-top: 17px; font-size: 16px; }
    .hero-scroll { display: none; }

    .trusted { padding: 70px 0; }
    .trusted-heading h2 { margin-bottom: 42px; }
    .brand-marquee::before, .brand-marquee::after { width: 45px; }
    .brand-marquee-group { gap: 58px; padding-right: 58px; }
    .brand-marquee-group img { max-width: 120px; height: 34px; }

    .section-heading { margin-bottom: 40px; }
    .section-heading h2, .section-copy h2, .model-sticky h2, .work-copy h2 { font-size: clamp(40px, 11.5vw, 54px); line-height: .98; }
    .section-heading > p, .section-copy > p, .model-sticky p, .work-copy > p { font-size: 16px; }

    .partner-media, .partner-media > img { min-height: 520px; height: 520px; }
    .partner-media figcaption { right: 24px; bottom: 28px; left: 24px; }
    .partner-media figcaption strong { font-size: clamp(38px, 11vw, 52px); }
    .partner-copy h2 { font-size: clamp(40px, 11.5vw, 54px); }
    .partner-copy > p { font-size: 16px; }
    .partner-quote { padding: 22px; }
    .partner-quote footer { align-items: flex-start; flex-direction: column; }

    .service-grid { grid-template-columns: 1fr; }
    .service-card:last-child { grid-column: auto; }
    .service-card, .service-card:last-child { min-height: 570px; padding: 28px; }
    .service-icon { width: 132px; height: 132px; }

    .value-band { padding: 70px 0; }
    .value-grid { grid-template-columns: 1fr; }
    .value-copy, .value-stat:last-child { grid-column: auto; }
    .value-stat { min-height: auto; padding: 24px 0 0; border-top: 1px solid var(--line); border-left: 0; }
    .value-stat strong { font-size: 60px; }

    .model-layout { gap: 60px; }
    .model-step { grid-template-columns: 48px 1fr; min-height: 280px; gap: 14px; }
    .model-step:hover { padding-right: 12px; padding-left: 12px; }
    .model-step h3 { font-size: 34px; }

    .industry-track, .insight-grid {
        display: flex;
        width: calc(100% + 16px);
        gap: 14px;
        overflow-x: auto;
        padding-right: 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .industry-track::-webkit-scrollbar, .insight-grid::-webkit-scrollbar { display: none; }
    .industry-card, .insight-card, .industry-card:last-child, .insight-card:last-child { min-width: min(84vw, 370px); grid-column: auto; scroll-snap-align: start; }
    .industry-card, .industry-card:last-child { min-height: 480px; }

    .film, .film-content { min-height: 620px; }
    .film-content { padding: 74px 0 110px; }
    .route-pill { gap: 8px; font-size: 10px; }
    .route-pill i { width: 18px; }
    .film h2 { font-size: clamp(48px, 13.4vw, 64px); line-height: .9; }
    .film-footer { gap: 10px 16px; margin-top: 40px; }
    .film-footer span { font-size: 10px; }
    .film-control { right: 16px; bottom: 16px; }

    .work-image, .work-image img { min-height: 480px; height: 480px; }
    .work-copy ul { grid-template-columns: 1fr; }

    .insights .section-heading .button { justify-self: start; }
    .final-cta { padding: 100px 0; }
    .final-cta h2 { font-size: clamp(48px, 13vw, 66px); }
    .final-cta p { font-size: 16px; }

    .site-footer { padding-top: 72px; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-bottom: 54px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
    .brand img { height: 44px; }
    .nav-shell { padding-inline: 14px; }
    .hero-kicker { padding-inline: 12px; font-size: 12px; }
    .hero-kicker i { margin-inline: 9px; }
    .hero-card .button { min-height: 54px; }
    .partner-media, .partner-media > img { min-height: 460px; height: 460px; }
    .film-footer span { width: calc(50% - 8px); }
}

@media (max-height: 680px) and (min-width: 761px) {
    .hero, .hero-layout { min-height: 720px; }
    .hero-layout { padding-top: 180px; }
}

@media (max-width: 1120px) {
    .page-hero, .page-hero-content { min-height: 700px; }
    .page-hero-content { padding-bottom: 72px; }
    .editorial-grid { gap: 60px; }
    .principle-card { padding: 28px; }
    .service-detail-grid { gap: 42px; }
    .case-feature-copy { padding: 44px; }
    .case-metrics { grid-template-columns: 1fr; }
    .case-metrics span { display: grid; grid-template-columns: 82px 1fr; align-items: center; }
    .contact-hero-grid { gap: 64px; }
}

@media (max-width: 1020px) {
    .page-hero, .page-hero-content { min-height: 660px; }
    .page-hero-content { padding-top: 150px; padding-bottom: 64px; }
    .page-hero-content h1 { font-size: clamp(58px, 10vw, 86px); }
    .page-hero-about .page-hero-media { left: 22%; }
    .editorial-grid, .service-detail-grid, .page-card-grid, .case-feature, .resource-card.featured, .newsletter-grid, .contact-hero-grid { grid-template-columns: 1fr; }
    .editorial-copy { max-width: 720px; }
    .principle-grid { grid-template-columns: 1fr 1fr; }
    .principle-card:last-child { grid-column: 1 / -1; }
    .service-detail-grid.reverse .service-detail-art, .service-detail-grid.reverse .service-detail-copy { order: initial; }
    .service-detail-art { min-height: 390px; }
    .service-detail-art img { width: min(260px, 55%); }
    .service-detail-section { padding-block: 72px; }
    .page-card-section { padding-bottom: 72px; }
    .page-card { min-height: 0; }
    .category-card figure { height: 290px; }
    .case-feature, .case-feature figure { min-height: 0; }
    .case-feature figure { height: 460px; }
    .case-feature.reverse figure, .case-feature.reverse .case-feature-copy { order: initial; }
    .case-metrics { grid-template-columns: repeat(3, 1fr); }
    .case-metrics span { display: block; }
    .resource-card.featured figure { min-height: 0; height: 460px; }
    .newsletter-grid { gap: 50px; }
    .contact-hero { min-height: 0; padding: 160px 0 90px; }
    .contact-intro { position: static; }
    .contact-intro h1 { max-width: 760px; }
    .contact-form { max-width: 760px; }
    .contact-section { padding-block: 72px; }
}

@media (max-width: 760px) {
    .page-hero, .page-hero-content { min-height: 620px; }
    .page-hero-media { inset: 0; }
    .page-hero-about .page-hero-media { left: 0; }
    .page-hero-overlay { background: linear-gradient(180deg, rgba(5, 3, 33, .76), rgba(5, 3, 33, .9)); }
    .page-hero-content { padding-top: 140px; padding-bottom: 54px; }
    .page-hero-content h1 { font-size: clamp(48px, 14.2vw, 65px); line-height: .9; }
    .page-hero-content > p { margin-top: 22px; font-size: 16px; }
    .editorial-grid { gap: 26px; }
    .editorial-grid h2 { font-size: clamp(34px, 10vw, 48px); }
    .editorial-copy > p { font-size: 15px; }
    .principle-grid, .category-grid, .resource-grid, .result-grid, .location-grid { grid-template-columns: 1fr; }
    .principle-card:last-child { grid-column: auto; }
    .principle-card { min-height: 300px; }
    .principle-card h3 { margin-top: 72px; }
    .service-detail-art { min-height: 300px; }
    .service-detail-copy h2 { font-size: clamp(32px, 9.5vw, 42px); }
    .service-detail-copy > p { font-size: 15px; }
    .service-detail-section { padding-block: 66px; }
    .category-card figure { height: 260px; }
    .category-card > div { min-height: 310px; padding: 28px; }
    .category-card a { right: 28px; left: 28px; }
    .page-card-grid { grid-template-columns: 1fr; }
    .page-card { min-height: 0; padding: 24px; }
    .page-card img { height: 188px; margin-bottom: 18px; }
    .page-card h2 { font-size: clamp(22px, 7vw, 32px); }
    .page-card p { font-size: 15px; }
    .case-list { padding-top: 0; }
    .case-list .shell { gap: 20px; }
    .case-feature figure { height: 300px; }
    .case-feature-copy { padding: 30px 26px 36px; }
    .case-feature-copy h2 { font-size: clamp(37px, 10.5vw, 50px); }
    .case-metrics { grid-template-columns: 1fr; }
    .case-metrics span { display: grid; grid-template-columns: 86px 1fr; }
    .result-grid .value-stat { min-height: 0; }
    .resource-card { min-height: 340px; padding: 28px; }
    .resource-card.featured { min-height: 0; }
    .resource-card.featured figure { height: 300px; }
    .resource-card.featured > div { padding: 30px 26px 36px; }
    .newsletter-band { padding: 78px 0; }
    .newsletter-form > div { flex-direction: column; }
    .newsletter-form button { min-height: 54px; }
    .contact-hero { padding: 140px 0 72px; }
    .contact-intro h1 { font-size: clamp(50px, 14vw, 68px); }
    .contact-intro > p { font-size: 16px; }
    .contact-details { margin-top: 36px; }
    .contact-form { gap: 16px; padding: 22px; }
    .field-row { grid-template-columns: 1fr; }
    .contact-section { padding-block: 64px; }
    .location-card { min-height: 330px; padding: 30px; }
    .location-card h3 { margin-top: 72px; }
}

@media (hover: hover) and (min-width: 1021px) {
    .nav-item:hover .dropdown-panel { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
    .nav-item:hover > button .tl-chevron { transform: rotate(180deg); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js .reveal { opacity: 1; transform: none; }
    .brand-marquee-track { animation: none; }
    .page-hero-media img, .film > video { transform: none !important; }
}

/* TMX-aligned results, model, industries and film */
.results-section {
    background: var(--white);
}

.results-inner {
    text-align: center;
}

.results-heading {
    max-width: 980px;
    margin: 0 auto 72px;
}



.results-heading .gradient-tagline,
.model-overview .gradient-tagline {
    margin-inline: auto;
}

.results-heading h2,
.model-overview h2,
.industries-header h2 {
    margin: 18px 0 0;
    font-size: clamp(48px, 6.2vw, 82px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .96;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(5, 3, 33, .16);
    border-bottom: 1px solid rgba(5, 3, 33, .16);
}

.result-metric {
    min-height: 232px;
    padding: 50px 28px 40px;
}

.result-metric + .result-metric {
    border-left: 1px solid rgba(5, 3, 33, .16);
}

.result-metric > div {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.result-metric strong,
.result-metric b {
    color: var(--ink);
    font-size: clamp(56px, 6vw, 84px);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .9;
}

.result-metric b {
    padding-bottom: 5px;
    font-size: clamp(28px, 3vw, 42px);
}

.result-metric p {
    max-width: 180px;
    margin: 24px auto 0;
    color: #65618d;
    font-size: 14px;
    line-height: 1.5;
}

.results-closing {
    margin: 42px auto 0;
    color: #65618d;
    font-size: 18px;
}

.model-showcase {
    overflow: clip;
    background: var(--lilac-soft);
}

.model-overview {
    max-width: 880px;
    margin: 0 auto 78px;
    text-align: center;
}

.model-overview p {
    max-width: 720px;
    margin: 28px auto 0;
    color: #7f8da4;
    font-size: 18px;
    line-height: 1.7;
}

.model-columns {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
    gap: clamp(48px, 7vw, 112px);
    align-items: start;
}

.model-info-list {
    border-top: 1px solid rgba(5, 3, 33, .14);
}

.model-info {
    display: flex;
    min-height: 520px;
    justify-content: center;
    flex-direction: column;
    padding: 72px 0;
    border-bottom: 1px solid rgba(5, 3, 33, .14);
    opacity: .36;
    transform: translateX(-18px);
    transition: opacity .45s ease, transform .55s var(--ease);
}

.model-info.is-active {
    opacity: 1;
    transform: translateX(0);
}

.model-info h3 {
    max-width: 620px;
    margin: 20px 0 0;
    font-size: clamp(40px, 4.6vw, 64px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .98;
}

.model-info p {
    max-width: 620px;
    margin: 26px 0 0;
    color: #7f8da4;
    font-size: 18px;
    line-height: 1.7;
}

.model-animation {
    height: 1560px;
}

.model-animation-sticky {
    position: sticky;
    top: 122px;
    display: grid;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(5, 3, 33, .1);
    border-radius: 28px;
    background: radial-gradient(circle at 48% 46%, rgba(28, 98, 113, .18), transparent 29%), linear-gradient(145deg, #09062c, #17133d 58%, #251139);
    box-shadow: 0 38px 90px rgba(5, 3, 33, .18);
}

.model-animation-sticky::after {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 20%, rgba(76, 159, 127, .17), transparent 28%), linear-gradient(180deg, transparent 58%, rgba(5, 3, 33, .55));
    content: '';
    pointer-events: none;
}

.model-animation canvas {
    width: 100%;
    height: 100%;
}

.model-animation-label {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    background: rgba(10, 7, 38, 0.82);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(5, 3, 33, 0.5);
}

.model-animation-label i {
    width: 32px;
    height: 1px;
    background: rgba(76, 159, 127, 0.6);
}

.model-animation-label strong {
    color: var(--accent);
    font-weight: 600;
}

.industries-carousel {
    overflow: hidden;
    background: #f7f8fb;
}

.industries-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 62px;
}

.industries-header > div {
    max-width: 760px;
}

.industries-header p {
    max-width: 580px;
    margin: 25px 0 0;
    color: #7f8da4;
    font-size: 18px;
    line-height: 1.65;
}

.industry-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: calc((100vw - min(var(--shell), calc(100vw - 48px))) / -2);
    padding-right: max(24px, calc((100vw - var(--shell)) / 2));
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.industry-carousel-viewport::-webkit-scrollbar { display: none; }

.industry-carousel-track {
    display: flex;
    width: max-content;
    gap: 22px;
}

.industry-slide {
    width: min(410px, calc(100vw - 62px));
    scroll-snap-align: start;
}

.industry-image {
    display: block;
    overflow: hidden;
    height: 292px;
    border-radius: 14px;
    background: var(--ink-soft);
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease), filter .45s ease;
}

.industry-slide:hover .industry-image img {
    filter: saturate(1.08);
    transform: scale(1.055);
}

.industry-content {
    padding: 24px 4px 0;
}

.industry-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    background: rgba(76, 159, 127, .12);
    border: 1px solid rgba(76, 159, 127, .25);
    border-radius: 100px;
    color: var(--accent);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.industry-content h3 {
    margin: 0;
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.15;
}

.industry-content p {
    min-height: 60px;
    margin: 12px 0 0;
    color: #7f8da4;
    font-size: 14px;
    line-height: 1.55;
}

.industry-points {
    display: grid;
    gap: 5px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}
.industry-points li {
    position: relative;
    padding-left: 18px;
    color: #888aaa;
    font-size: 12.5px;
    line-height: 1.45;
}
.industry-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
}
.industry-link span {
    color: var(--accent);
    transition: transform .25s ease;
}
.industry-link:hover span { transform: translateX(4px); }

.industry-content > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
}
.industry-content > a span {
    color: var(--accent);
    transition: transform .25s ease;
}
.industry-content > a:hover span { transform: translateX(4px); }

.industry-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 48px;
}

.industry-carousel-controls button {
    display: grid;
    width: 54px;
    height: 54px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(5, 3, 33, .25);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 20px;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.industry-carousel-controls button:hover:not(:disabled) {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.industry-carousel-controls button:disabled { cursor: default; opacity: .28; }

.confidence-film {
    background: var(--white);
}

.confidence-film-frame {
    position: relative;
    display: grid;
    min-height: 700px;
    overflow: hidden;
    place-items: center;
    border-radius: 18px;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.confidence-film-frame > video {
    position: absolute;
    z-index: -3;
    inset: -45px 0;
    width: 100%;
    height: calc(100% + 90px);
    object-fit: cover;
    transform: translate3d(0, var(--film-shift, 0), 0) scale(1.08);
    will-change: transform;
}

.confidence-film-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: radial-gradient(circle at 70% 28%, rgba(76, 159, 127, .2), transparent 32%), linear-gradient(180deg, rgba(5, 3, 33, .36), rgba(5, 3, 33, .74));
}

.confidence-film-content {
    width: min(100% - 80px, 1050px);
    text-align: center;
}

.confidence-film-content h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(54px, 6.8vw, 94px);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .95;
    text-wrap: balance;
}

.confidence-film-frame .film-control {
    z-index: 3;
}

@media (max-width: 1100px) {
    .results-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .result-metric:nth-child(3) { border-top: 1px solid rgba(5, 3, 33, .16); border-left: 0; }
    .result-metric:nth-child(4) { border-top: 1px solid rgba(5, 3, 33, .16); }
    .model-columns { grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr); gap: 44px; }
    .model-info { min-height: 440px; }
    .model-animation { height: 1320px; }
}

@media (max-width: 820px) {
    .results-heading, .model-overview { margin-bottom: 52px; }
    .model-columns { display: flex; flex-direction: column-reverse; }
    .model-animation { width: 100%; height: auto; }
    .model-animation-sticky { position: relative; top: auto; max-width: 620px; margin: 0 auto; }
    .model-info { min-height: auto; padding: 68px 0; opacity: 1; transform: none; }
    .industries-header { align-items: flex-start; flex-direction: column; margin-bottom: 46px; }
    .industry-carousel-controls { justify-content: flex-start; }
    .confidence-film-frame { min-height: 560px; }
}

@media (max-width: 560px) {
    .results-section, .model-showcase, .industries-carousel, .confidence-film { padding-block: 78px; }
    .results-metrics { grid-template-columns: 1fr; }
    .result-metric { min-height: 178px; padding: 36px 20px; }
    .result-metric + .result-metric { border-top: 1px solid rgba(5, 3, 33, .16); border-left: 0; }
    .results-closing { font-size: 16px; }
    .model-info h3 { font-size: 40px; }
    .model-info p, .model-overview p, .industries-header p { font-size: 16px; }
    .model-animation-label { bottom: 14px; }
    .model-animation-label span:first-child, .model-animation-label span:last-child { display: none; }
    .industry-carousel-viewport { margin-right: -24px; padding-right: 24px; }
    .industry-slide { width: calc(100vw - 50px); }
    .industry-image { height: 250px; }
    .industry-content p { min-height: auto; }
    .confidence-film-frame { min-height: 470px; border-radius: 13px; }
    .confidence-film-content { width: calc(100% - 38px); }
    .confidence-film-content h2 { font-size: clamp(44px, 14vw, 62px); }
}

.service-directory {
    background: var(--white);
}

.service-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 58px;
}

.service-directory-card {
    min-height: 270px;
    padding: 30px;
    border: 1px solid rgba(5, 3, 33, .16);
    border-radius: 14px;
    background: var(--white);
    transition: border-color .3s ease, box-shadow .3s ease, transform .35s var(--ease);
}

.service-directory-card:hover {
    border-color: rgba(76, 159, 127, .65);
    box-shadow: 0 24px 55px rgba(5, 3, 33, .1);
    transform: translateY(-6px);
}

.service-directory-card > span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
}

.service-directory-card h3 {
    margin: 42px 0 0;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.06;
}

.service-directory-card p {
    margin: 17px 0 0;
    color: #7f8da4;
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 1050px) {
    .service-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .service-directory-grid { grid-template-columns: 1fr; }
    .service-directory-card { min-height: 220px; }
}

.category-card > div { min-height: 465px; }
.category-card ul {
    display: grid;
    gap: 9px;
    margin: 0 0 66px;
    padding: 0;
    color: #7f8da4;
    font-size: 14px;
    list-style: none;
}
.category-card li { position: relative; padding-left: 18px; }
.category-card li::before {
    position: absolute;
    top: .65em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    content: '';
}
@media (max-width: 760px) {
    .category-card > div { min-height: 450px; }
}

/* Home page: TMX Transform-aligned dark visual system */
.home-page {
    background: var(--ink);
    color: var(--white);
    font-family: 'Inter', Arial, sans-serif;
}

.home-page :is(h1, h2, h3) {
    font-family: 'Instrument Sans', Arial, sans-serif;
}

.home-page main {
    overflow: clip;
    background: var(--ink);
    color: var(--white);
}

.home-page main > section,
.home-page .intro-section,
.home-page .services,
.home-page .results-section,
.home-page .model-showcase,
.home-page .industries-carousel,
.home-page .confidence-film,
.home-page .work,
.home-page .insights,
.home-page .final-cta {
    background:
        radial-gradient(circle at 82% 10%, rgba(76, 159, 127, .055), transparent 30%),
        linear-gradient(180deg, var(--ink) 0%, #07071d 100%);
    color: var(--white);
}

/* Compact newsletter controls at tablet and mobile widths. */
@media (max-width: 1064px) {
    .styles-module--columnNewsletter--936ec {
        display: grid;
        width: 100%;
        grid-template-columns: minmax(150px, .32fr) minmax(0, 620px);
        align-items: start;
        justify-content: space-between;
    }
    .styles-module--formContent--5e80e,
    .styles-module--container--c0ce1 { width: 100%; min-width: 0; }
    .styles-module--form--32411 {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 124px;
        gap: 10px;
    }
    .styles-module--formButton--8ecaa,
    .styles-module--button--54de0 { width: 124px; }
    .styles-module--consentField--6c418 { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .styles-module--columnNewsletter--936ec {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-bottom: 20px;
    }
    .styles-module--columnTitle--c8726 { margin-bottom: 0; }
    .styles-module--emailField--0f21d input,
    .styles-module--formButton--8ecaa,
    .styles-module--button--54de0 { height: 44px; }
    .styles-module--consentField--6c418 .field.styles-module--field--e45fd {
        min-height: 0;
        padding: 10px 12px;
        border-radius: 12px;
    }
    .styles-module--label--16dad { font-size: 10px; line-height: 1.4; }
}

@media (max-width: 390px) {
    .styles-module--form--32411 { grid-template-columns: 1fr 108px; gap: 8px; }
    .styles-module--formButton--8ecaa,
    .styles-module--button--54de0 { width: 108px; font-size: 13px; }
}

.home-page main > section:nth-of-type(even):not(.hero):not(.confidence-film) {
    background:
        radial-gradient(circle at 12% 18%, rgba(28, 98, 113, .1), transparent 34%),
        linear-gradient(180deg, #07071d 0%, var(--ink-soft) 100%);
}

.home-page .section { padding-block: 56px; }
.home-page .model-showcase,
.home-page .industries-carousel,
.home-page .work,
.home-page .final-cta { padding-block: 72px; }

.home-page .hero-card h1 {
    max-width: 500px;
    font-size: clamp(36px, 3.4vw, 48px);
    line-height: .98;
    letter-spacing: -.05em;
}

.home-page .hero-card p { color: var(--lilac); }

.home-page .trusted {
    min-height: 150px;
    padding: 56px 0 12px;
}

.home-page .trusted-heading h2 {
    margin-bottom: 28px;
    color: #d8deea;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}

.home-page .brand-marquee-group { gap: clamp(40px, 5vw, 72px); padding-right: clamp(40px, 5vw, 72px); }
.home-page .brand-marquee-group img { max-width: 120px; height: 26px; }
.home-page .brand-marquee-group img:nth-child(3),
.home-page .brand-marquee-group img:nth-child(9) { height: 38px; }

.home-page .partner-grid { gap: clamp(36px, 5vw, 72px); }
.home-page .partner-media {
    min-height: 720px;
    border-color: rgba(198, 211, 225, .2);
    border-radius: 12px;
    background: linear-gradient(145deg, var(--ink-raised), var(--ink-soft));
}
.home-page .partner-media > img { height: 720px; }
.home-page .partner-media figcaption { right: 32px; bottom: 32px; left: 32px; }
.home-page .partner-media figcaption strong { font-size: clamp(28px, 2.4vw, 38px); }
.home-page .partner-copy h2 {
    color: var(--white);
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.25;
    letter-spacing: -.04em;
}
.home-page .partner-copy > p,
.home-page .partner-list li { color: var(--lilac); }
.home-page .partner-quote {
    border-color: rgba(198, 211, 225, .2);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(22, 33, 58, .9), rgba(13, 19, 41, .94));
}
.home-page .partner-quote > p,
.home-page .partner-quote footer strong { color: var(--white); }
.home-page .partner-quote footer small { color: var(--muted); }

.home-page .services-intro { margin-bottom: 28px; }
.home-page .services-intro h2 { margin-block: 10px; }
.home-page .services-intro p { line-height: 1.55; }
.home-page .services-intro h2,
.home-page .model-overview h2,
.home-page .industries-header h2,
.home-page .work-copy h2,
.home-page .insights .section-heading h2,
.home-page .final-cta h2 {
    color: var(--white);
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.08;
    letter-spacing: -.04em;
}
.home-page .services-intro p,
.home-page .model-overview p,
.home-page .industries-header p,
.home-page .work-copy > p,
.home-page .final-cta p { color: var(--lilac); }

.home-page .service-card {
    min-height: 610px;
    padding: 24px;
    border-color: rgba(198, 211, 225, .2);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(22, 33, 58, .92), rgba(13, 19, 41, .96));
    color: var(--white);
}
.home-page .service-card:hover {
    border-color: rgba(76, 159, 127, .58);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}
.home-page .service-card h3 { color: var(--white); }
.home-page .service-card ul { color: var(--lilac); }
.home-page .service-button {
    min-height: 52px;
    border: 0;
    background: #24354a;
    color: var(--white);
}
.home-page .service-button:hover { background: var(--accent); color: var(--ink); }

.home-page .results-section.section { padding-block: 0; }
.home-page .results-inner {
    min-height: 430px;
    padding: 56px 36px;
    border: 1px solid rgba(198, 211, 225, .2);
    border-radius: 12px;
    background:
        radial-gradient(circle at 86% 16%, rgba(76, 159, 127, .1), transparent 28%),
        linear-gradient(145deg, var(--ink-raised), var(--ink-soft));
}
.home-page .results-heading {
    max-width: 850px;
    margin-bottom: 32px;
}
.home-page .results-heading h2 {
    color: var(--white);
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.2;
    letter-spacing: -.035em;
}
.home-page .results-metrics {
    border-color: rgba(198, 211, 225, .2);
}
.home-page .result-metric {
    min-height: 122px;
    padding: 5px 18px;
}
.home-page .result-metric + .result-metric { border-color: rgba(198, 211, 225, .2); }
.home-page .result-metric strong,
.home-page .result-metric b {
    color: var(--white);
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -.04em;
}
.home-page .result-metric b { padding-bottom: 4px; font-size: 32px; }
.home-page .result-metric p {
    max-width: 240px;
    margin-top: 8px;
    color: var(--white);
    font-size: 15px;
    line-height: 1.4;
}
.home-page .results-closing { margin-top: 22px; color: var(--lilac); }

.home-page .model-overview { max-width: 900px; }
.home-page .model-info-list { border-color: rgba(198, 211, 225, .2); }
.home-page .model-info {
    min-height: 760px;
    border-color: rgba(198, 211, 225, .2);
}
.home-page .model-info h3 {
    color: var(--white);
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.06;
    letter-spacing: -.035em;
}
.home-page .model-info p { color: var(--lilac); }
.home-page .model-animation { height: 1420px; }
.home-page .model-animation-sticky {
    top: 112px;
    border-color: rgba(198, 211, 225, .2);
    border-radius: 12px;
    box-shadow: none;
}

.model-bullet-list {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}
.model-bullet-list li {
    position: relative;
    padding-left: 24px;
    color: var(--lilac);
    font-size: 15px;
    line-height: 1.5;
}
.model-bullet-list li::before {
    content: '\2022';
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--accent);
    font-size: 18px;
}

.home-page .industries-carousel > .shell { position: relative; }
.home-page .industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 22px;
}
.home-page .industries-header > div { max-width: 600px; }
.home-page .industries-header p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(216, 222, 234, 0.7);
}

/* Screenshot Exact Match Industry Cards */
.industry-carousel-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -12px;
    padding: 0 12px 10px;
}
.industry-carousel-viewport::-webkit-scrollbar { display: none; }

.industry-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.industry-slide {
    width: min(360px, calc(100vw - 48px));
    scroll-snap-align: start;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: transform .3s ease;
}
.industry-slide:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: transparent;
}

.industry-image {
    position: relative;
    display: block;
    overflow: hidden;
    height: 220px;
    border-radius: 16px;
    background: var(--ink-soft);
}
.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform .5s var(--ease);
}
.industry-slide:hover .industry-image img {
    transform: scale(1.04);
}

.industry-content {
    padding: 18px 0 0;
    display: flex;
    flex-direction: column;
}

.industry-content h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.2;
}

.industry-content p {
    margin: 0 0 14px;
    color: rgba(216, 222, 234, 0.7);
    font-size: 14px;
    line-height: 1.5;
    min-height: 42px;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease;
}
.industry-link span {
    transition: transform .2s ease;
    display: inline-block;
}
.industry-link:hover {
    color: var(--accent);
}
.industry-link:hover span {
    transform: translateX(4px);
    color: var(--accent);
}

.industry-carousel-controls {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 32px;
}
.industry-carousel-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.industry-carousel-controls button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    transform: scale(1.06);
}
.industry-carousel-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.home-page .confidence-film.section {
    position: relative;
    min-height: 85vh;
    padding: 0;
    overflow: hidden;
    background: var(--ink);
}
.home-page .confidence-film-frame.shell {
    width: 100%;
    max-width: none;
    min-height: 85vh;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}
.home-page .confidence-film-frame > video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transform: none;
}
.home-page .confidence-film-overlay {
    background: linear-gradient(180deg, rgba(5, 3, 33, .16) 0%, rgba(5, 3, 33, .32) 65%, var(--ink) 100%);
}
.home-page .confidence-film-content { width: min(100% - 80px, 980px); }
.home-page .confidence-film-content h2 {
    font-size: clamp(42px, 4.2vw, 62px);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.home-page .work-image {
    border: 1px solid rgba(198, 211, 225, .2);
    border-radius: 12px;
    box-shadow: none;
}
.home-page .work-copy li {
    border-color: rgba(198, 211, 225, .2);
    background: linear-gradient(145deg, rgba(22, 33, 58, .86), rgba(13, 19, 41, .92));
    color: var(--lilac);
}
.home-page .text-link { color: var(--accent-soft); }

.home-page .insight-card {
    border-color: rgba(198, 211, 225, .2);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(22, 33, 58, .88), rgba(13, 19, 41, .94));
}
.home-page .insight-card p { color: var(--lilac); }

.home-page .final-cta {
    border-top: 1px solid rgba(198, 211, 225, .2);
    text-align: center;
}
.home-page .final-cta .eyebrow { color: var(--accent-soft); }
.home-page .final-cta .button-light {
    border-color: var(--accent);
    background: transparent;
    color: var(--white);
}

@media (max-width: 1100px) {
    .home-page .result-metric:nth-child(3),
    .home-page .result-metric:nth-child(4) { border-color: rgba(198, 211, 225, .2); }
    .home-page .model-info { min-height: 700px; }
    .home-page .model-animation { height: 2100px; }
    .home-page .industry-carousel-controls {
        position: static;
        margin-top: 36px;
    }
}

@media (max-width: 820px) {
    .home-page .section,
    .home-page .model-showcase,
    .home-page .industries-carousel,
    .home-page .work,
    .home-page .final-cta { padding-block: 56px; }
    .home-page .model-info { min-height: auto; }
    .home-page .model-animation { height: auto; }
    .home-page .model-animation-sticky { top: auto; }
    .home-page .confidence-film.section,
    .home-page .confidence-film-frame.shell { min-height: 100svh; padding: 0; }
}

@media (max-width: 560px) {
    .home-page .trusted { min-height: 170px; padding: 64px 0 28px; }
    .home-page .trusted-heading h2 { margin-bottom: 24px; }
    .home-page .partner-media,
    .home-page .partner-media > img { min-height: 520px; height: 520px; }
    .home-page .partner-copy h2 { font-size: 32px; }
    .home-page .results-inner { padding: 56px 24px; }
    .home-page .results-heading { margin-bottom: 38px; }
    .home-page .result-metric { min-height: 164px; padding: 32px 18px; }
    .home-page .result-metric + .result-metric { border-color: rgba(198, 211, 225, .2); }
    .home-page .confidence-film-content { width: calc(100% - 38px); }
    .home-page .confidence-film-content h2 { font-size: clamp(44px, 13vw, 58px); }
}

/* Homepage reference sections: innovation, statements, stories, resources and animated CTA */
.home-page .innovation-showcase,
.home-page .market-voices,
.home-page .capability-stories,
.home-page .resource-news { padding-block: 84px; }

.home-page .innovation-showcase {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    padding: 64px 0 16px;
    background: #050321;
}
.innovation-heading { text-align: center; }
.innovation-heading h2 { margin: 0; color: #fff; font-size: clamp(24px, 1.95vw, 30px); font-weight: 500; letter-spacing: -.03em; line-height: 1.12; }
.innovation-heading p { max-width: 500px; margin: 22px auto 0; color: #d5d2ee; font-size: 15px; line-height: 1.5; }
.innovation-marquee { position: relative; width: 100%; margin-top: 60px; overflow: hidden; mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%); }
.innovation-marquee-track { display: flex; width: max-content; animation: innovation-marquee 38s linear infinite; will-change: transform; }
.innovation-marquee-group { display: flex; align-items: center; flex-shrink: 0; gap: clamp(38px, 4vw, 66px); padding-right: clamp(38px, 4vw, 66px); }
.innovation-marquee-group > span { color: #fff; font-size: clamp(34px, 3.4vw, 52px); font-weight: 400; letter-spacing: -.04em; line-height: 1; white-space: nowrap; }
.innovation-cube { position: relative; display: block; width: 50px; height: 50px; flex: 0 0 50px; border: 1px solid rgba(255, 123, 51, .58); transform: rotate(30deg) skew(-8deg); box-shadow: inset 0 0 18px rgba(217, 104, 174, .1), 0 0 18px rgba(255, 123, 51, .12); }
.innovation-cube::before { position: absolute; inset: 7px; border: 1px solid rgba(214, 221, 221, .42); content: ''; }
.innovation-cube::after { position: absolute; inset: 0; background: linear-gradient(45deg, transparent 49%, rgba(255, 123, 51, .4) 49.5%, rgba(255, 123, 51, .4) 50.5%, transparent 51%), linear-gradient(-45deg, transparent 49%, rgba(217, 104, 174, .34) 49.5%, rgba(217, 104, 174, .34) 50.5%, transparent 51%); content: ''; }
.innovation-link { margin-top: 58px; text-align: center; }
.innovation-link a { color: #fff; font-size: 15px; font-weight: 500; }
.innovation-link a span { display: inline-block; margin-left: 6px; transition: transform .25s ease; }
.innovation-link a:hover span { transform: translateX(5px); }

.story-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 44px; margin-bottom: 48px; }
.story-header h2 { max-width: 780px; margin: 17px 0 0; color: #fff; font-size: clamp(34px, 3.4vw, 48px); font-weight: 500; letter-spacing: -.04em; line-height: 1.02; }
.story-controls { display: flex; justify-content: flex-end; gap: 10px; }
.story-controls button { display: grid; width: 48px; height: 48px; border: 1px solid rgba(198, 211, 225, .28); border-radius: 50%; background: transparent; color: #fff; font-size: 18px; cursor: pointer; place-items: center; transition: background .25s ease, color .25s ease, opacity .25s ease; }
.story-controls button:hover:not(:disabled) { background: #fff; color: var(--ink); }
.story-controls button:disabled { opacity: .3; cursor: default; }
.voices-viewport, .story-viewport { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.voices-viewport::-webkit-scrollbar, .story-viewport::-webkit-scrollbar { display: none; }
.home-page .market-voices {
    padding-block: clamp(72px, 7vw, 104px);
    background: #050321;
}
.voices-card {
    position: relative;
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
    min-height: 480px;
    padding: 56px 36px 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    background: linear-gradient(180deg, #050321 0%, #0d1731 38%, #10372e 72%, #1c6271 100%);
    box-shadow: 0 20px 50px rgba(5, 3, 33, 0.5);
}
.voices-card::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.05), transparent 70%);
    content: '';
    pointer-events: none;
}

.voices-card > * {
    position: relative;
    z-index: 1;
}
.voices-track {
    display: flex;
    width: max-content;
    gap: 0;
}
.voice-card {
    display: flex;
    width: min(100vw - 96px, 880px);
    min-height: 320px;
    flex: 0 0 min(100vw - 96px, 880px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: clamp(10px, 3vw, 36px);
    scroll-snap-align: center;
    text-align: center;
}
.voice-logo {
    width: auto;
    height: 34px;
    margin: 0 auto 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.voice-card blockquote,
.voice-quote {
    max-width: 760px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(20px, 2.2vw, 27px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -.02em;
}
.voice-card footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 28px;
}
.voice-card footer b {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}
.voice-card footer small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 400;
}
.voices-dots-and-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}
.voices-dots-and-arrows > button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
}
.voices-dots-and-arrows > button:hover:not(:disabled) {
    color: #ffffff;
    transform: scale(1.15);
}
.voices-dots-and-arrows > button:disabled {
    opacity: .3;
    cursor: default;
}
.voices-dots {
    display: flex;
    align-items: center;
    gap: 14px;
}
.voices-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.voices-dots button.is-active {
    background: #fff;
    transform: scale(1.1);
}

.story-header > div { max-width: 810px; }
.story-header p { max-width: 650px; margin: 20px 0 0; color: var(--lilac); font-size: 16px; line-height: 1.6; }
.story-track { display: flex; gap: 18px; width: max-content; }
.story-card { width: calc((min(100vw - 48px, 1200px) - 36px) / 3); overflow: hidden; border: 1px solid rgba(198, 211, 225, .2); border-radius: 12px; background: #050321; scroll-snap-align: start; }
.story-media { position: relative; display: block; height: 290px; overflow: hidden; }
.story-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5, 3, 33, .46)); content: ''; }
.story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.story-card:hover .story-media img { transform: scale(1.055); }
.story-media > span { position: absolute; z-index: 2; top: 16px; right: 16px; display: grid; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; background: rgba(5, 3, 33, .56); color: #fff; font-size: 11px; place-items: center; backdrop-filter: blur(12px); }
.story-body { min-height: 335px; padding: 28px; }
.story-body small { color: var(--accent); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.story-body h3 { margin: 14px 0 0; color: #fff; font-size: 30px; font-weight: 500; letter-spacing: -.04em; line-height: 1.08; }
.story-body p { margin: 18px 0 28px; color: var(--lilac); font-size: 14px; line-height: 1.65; }
.story-body > a { color: var(--accent-soft); font-size: 13px; font-weight: 600; }
.story-body > a span { display: inline-block; margin-left: 5px; transition: transform .25s ease; }
.story-body > a:hover span { transform: translateX(5px); }
.story-controls { margin-top: 32px; }

.resource-news .section-heading { align-items: flex-end; }
.resource-news .section-heading > div { max-width: 760px; }
.resource-news .section-heading p { max-width: 650px; margin: 18px 0 0; color: var(--lilac); font-size: 16px; line-height: 1.6; }
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.resource-card { overflow: hidden; border: 1px solid rgba(198, 211, 225, .2); border-radius: 12px; background: #050321; }
.resource-media { display: block; height: 230px; overflow: hidden; }
.resource-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.resource-card:hover .resource-media img { transform: scale(1.055); }
.resource-card > div { display: flex; min-height: 310px; flex-direction: column; padding: 28px; }
.resource-card span { color: var(--accent); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.resource-card h3 { margin: 18px 0 0; color: #fff; font-size: 27px; font-weight: 500; letter-spacing: -.04em; line-height: 1.12; }
.resource-card p { margin: 18px 0 28px; color: var(--lilac); font-size: 14px; line-height: 1.6; }
.resource-card > div > a { margin-top: auto; color: var(--accent-soft); font-size: 13px; font-weight: 600; }
.resource-card > div > a b { display: inline-block; margin-left: 6px; transition: transform .25s ease; }
.resource-card > div > a:hover b { transform: translateX(5px); }

.home-page .final-cta { display: grid; min-height: 560px; overflow: hidden; padding: 72px 0; place-items: center; isolation: isolate; }
.cta-canvas, .cta-vignette { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-canvas { z-index: -2; }
.cta-vignette { z-index: -1; background: radial-gradient(circle at 50% 47%, rgba(5, 3, 33, .06), rgba(5, 3, 33, .48) 66%, var(--ink) 100%), linear-gradient(180deg, var(--ink), transparent 23%, transparent 76%, var(--ink)); }
.home-page .final-cta h2 { max-width: 700px; margin-top: 16px; font-size: clamp(34px, 3.8vw, 50px); line-height: .98; letter-spacing: -.045em; }
.home-page .final-cta p { max-width: 560px; font-size: 15px; line-height: 1.55; }

.model-animation-sticky::before { position: absolute; z-index: 1; inset: 8%; border: 1px solid rgba(255, 123, 51, .1); border-radius: 50%; box-shadow: inset 0 0 80px rgba(217, 104, 174, .07), 0 0 60px rgba(255, 123, 51, .06); content: ''; pointer-events: none; animation: model-breathe 6s ease-in-out infinite; }
.model-animation canvas { position: relative; z-index: 1; }
.model-animation-label { z-index: 3; }

@keyframes innovation-marquee { to { transform: translateX(-50%); } }
@keyframes model-breathe { 50% { opacity: .48; transform: scale(.96); } }

/* Connected city ecosystem */
#main-content .city-experience {
    --city-bg: #050321;
    --city-panel: rgba(13, 19, 41, .94);
    --city-panel-soft: rgba(18, 14, 49, .74);
    --city-line: rgba(198, 211, 225, .18);
    --city-accent: var(--accent-soft);
    --city-accent-strong: var(--accent);
    position: relative;
    z-index: 2;
    isolation: isolate;
    overflow: hidden;
    padding-top: clamp(78px, 8vw, 118px);
    color: var(--white);
    background:
        radial-gradient(circle at 18% 20%, rgba(76, 159, 127, .09), transparent 30rem),
        radial-gradient(circle at 84% 40%, rgba(28, 98, 113, .16), transparent 34rem),
        var(--city-bg);
    scroll-margin-top: 120px;
    content-visibility: auto;
    contain-intrinsic-size: auto 820px;
}

.city-experience__heading {
    width: min(100% - 48px, 1200px);
    margin: 0 auto;
    padding-bottom: clamp(28px, 3.4vw, 48px);
}

.city-experience__heading span {
    display: block;
    margin-bottom: 13px;
    color: var(--city-accent-strong);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.city-experience__heading h2 {
    max-width: 820px;
    margin: 0;
    color: var(--white);
    font-size: clamp(38px, 4.5vw, 68px);
    font-weight: 600;
    line-height: 1.1;
}

.city-experience__sublead {
    max-width: 720px;
    margin: 16px 0 0;
    color: rgba(216, 222, 234, 0.72);
    font-size: 15px;
    line-height: 1.6;
}


.city-experience__map-shell {
    position: relative;
}

.city-experience__scroll {
    width: 100%;
    overflow: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-color: rgba(76, 159, 127, .55) rgba(13, 19, 41, .85);
}

.city-experience__canvas {
    position: relative;
    width: 100%;
    min-width: 1088px;
    aspect-ratio: 2816 / 1536;
    overflow: hidden;
    background: #090627;
}

.city-experience__canvas::before,
.city-experience__canvas::after {
    position: absolute;
    inset: 0;
    z-index: 6;
    content: "";
    pointer-events: none;
}

.city-experience__canvas::before {
    background: radial-gradient(circle at 50% 46%, transparent 48%, rgba(5, 3, 33, .26) 100%);
}

.city-experience__canvas::after {
    z-index: 120;
    border-block: 1px solid rgba(198, 211, 225, .12);
    box-shadow: inset 0 0 90px rgba(5, 3, 33, .45);
}

.city-experience__base {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .88;
    filter: brightness(.28) saturate(.62) hue-rotate(18deg) contrast(1.16);
}

.city-experience__tone {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 55% 42%, rgba(76, 159, 127, .12), transparent 42%),
        linear-gradient(145deg, rgba(5, 3, 33, .22), rgba(13, 19, 41, .48) 55%, rgba(5, 3, 33, .66));
    pointer-events: none;
}

.city-building {
    position: absolute;
    z-index: 30;
    display: flex;
    width: 15%;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -100%);
}

.city-building:hover,
.city-building:focus-within {
    z-index: 95;
}

.city-building > img {
    width: 100%;
    height: auto;
    filter: saturate(.42) hue-rotate(14deg) brightness(.58) contrast(1.12);
    pointer-events: none;
    transition: filter .45s var(--ease), transform .45s var(--ease);
}

.city-building:hover > img,
.city-building:focus-within > img {
    filter: saturate(.76) hue-rotate(8deg) brightness(.72) contrast(1.12) drop-shadow(0 18px 24px rgba(0, 0, 0, .42));
    transform: translateY(-6px);
}

.city-loc-1 { top: 32%; left: 63%; }
.city-loc-2 { top: 70%; left: 26%; width: 16%; }
.city-loc-3 { top: 92%; left: 17%; }
.city-loc-4 { top: 51%; left: 42%; }
.city-loc-5 { top: 68%; left: 75%; }
.city-loc-6 { top: 51%; left: 58%; width: 14%; }
.city-loc-7 { top: 52%; left: 91%; }
.city-loc-8 { top: 92%; left: 84%; }
.city-loc-9 { top: 91%; left: 65%; }

.city-pin {
    position: absolute;
    z-index: 100;
    top: -31px;
    left: 50%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transform: translateX(-50%);
    -webkit-tap-highlight-color: transparent;
}

.city-pin__label {
    position: relative;
    z-index: 2;
    display: grid;
    min-width: 74px;
    height: 34px;
    padding-inline: 16px;
    place-items: center;
    border: 1px solid rgba(28, 98, 113, .75);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(13, 19, 41, .96), rgba(5, 3, 33, .96));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05), 0 8px 22px rgba(0, 0, 0, .36), 0 0 18px rgba(76, 159, 127, .12);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.city-pin__radar {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid rgba(28, 98, 113, .38);
    border-radius: 999px;
    animation: city-radar 1.9s ease-out infinite;
}

.city-pin:hover .city-pin__label,
.city-pin:focus-visible .city-pin__label {
    background: var(--city-accent);
    box-shadow: 0 0 0 4px rgba(76, 159, 127, .13), 0 12px 30px rgba(0, 0, 0, .48), 0 0 24px rgba(76, 159, 127, .28);
    color: var(--ink);
    transform: translateY(-4px);
}

.city-pin:focus-visible .city-pin__label {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

.city-decor {
    position: absolute;
    z-index: 10;
    filter: saturate(.42) hue-rotate(12deg) brightness(.5) contrast(1.16);
    pointer-events: none;
    transform: translate(-50%, -100%);
}

.decor-vehicles { top: 22%; left: 50%; width: 28%; }
.decor-monument { top: 56%; left: 65%; width: 23%; }
.decor-streetlights { top: 57%; left: 83%; width: 19%; }
.extra-deco-1 { top: 105%; left: 49%; width: 31%; }
.extra-deco-2 { top: 46%; left: 25%; width: 30%; }
.extra-deco-3 { top: 28%; left: 90%; width: 24%; }
.extra-deco-4 { top: 29%; left: 10%; width: 26%; }
.extra-deco-5 { top: 66%; left: 51%; width: 25%; }
.extra-deco-6 { top: 100%; left: 20%; width: 13%; }
.extra-deco-7 { top: 84%; left: 38%; width: 22%; }
.extra-deco-8 { top: 38%; left: 50%; width: 13%; }
.extra-deco-9 { top: 42%; left: 75%; width: 23%; }
.extra-deco-10 { top: 95%; left: 8%; width: 27%; }
.extra-deco-11 { top: 20%; left: 25%; width: 16%; }
.extra-deco-12 { top: 65%; left: 9%; width: 30%; }
.extra-deco-13 { top: 74%; left: 82%; width: 17%; }
.extra-deco-16 { top: 16%; left: 75%; width: 17%; }
.extra-deco-17 { top: 31%; left: 40%; width: 18%; }
.extra-deco-18 { top: 82%; left: 25%; width: 19%; }

.city-pulse {
    animation: city-power-pulse 2.8s ease-in-out infinite alternate;
}

.city-actor {
    position: absolute;
    z-index: 18;
    top: 0;
    left: 0;
    width: 4.2%;
    height: auto;
    opacity: 0;
    filter: saturate(.6) hue-rotate(10deg) brightness(.72) contrast(1.12);
    pointer-events: none;
    will-change: transform, opacity;
}

.city-actor--van { width: 5.1%; }
.city-actor--drone {
    z-index: 110;
    width: 5.8%;
    filter: saturate(.7) hue-rotate(8deg) brightness(.78) contrast(1.12);
}

.city-experience__hint {
    display: none;
}

.city-dialog {
    width: min(92vw, 1024px);
    max-height: min(90dvh, 864px);
    margin: auto;
    padding: 0;
    overflow: visible;
    border: 1px solid rgba(28, 98, 113, .32);
    border-radius: 18px;
    background: transparent;
    color: var(--white);
    box-shadow: 0 42px 110px rgba(0, 0, 0, .62), 0 0 0 1px rgba(255, 255, 255, .035);
}

.city-dialog::backdrop {
    background: rgba(5, 3, 33, .82);
    backdrop-filter: blur(11px);
}

.city-dialog[open] {
    animation: city-dialog-in .36s cubic-bezier(.16, 1, .3, 1);
}

.city-dialog__panel {
    position: relative;
    max-height: min(90dvh, 864px);
    overflow-y: auto;
    padding: clamp(32px, 5vw, 72px);
    border-radius: inherit;
    background:
        radial-gradient(circle at 8% 0, rgba(76, 159, 127, .14), transparent 22rem),
        linear-gradient(145deg, rgba(13, 19, 41, .98), rgba(5, 3, 33, .995));
}

.city-dialog__panel::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 3px;
    border-radius: 0 18px 0 0;
    background: linear-gradient(90deg, transparent, var(--city-accent));
    content: "";
}

.city-dialog__close {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    width: 44px;
    aspect-ratio: 1;
    padding: 0;
    place-items: center;
    border: 1px solid var(--city-line);
    border-radius: 50%;
    background: rgba(5, 3, 33, .66);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.city-dialog__close:hover,
.city-dialog__close:focus-visible {
    border-color: rgba(28, 98, 113, .7);
    color: var(--city-accent);
    outline: none;
    transform: rotate(4deg);
}

.city-dialog__header {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 58px 26px 0;
}

.city-dialog__header span {
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--city-accent);
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.city-dialog__header time {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.city-dialog h3 {
    max-width: 14ch;
    margin: 0 0 22px;
    color: var(--white);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;
    line-height: .98;
}

.city-dialog__lead {
    max-width: 800px;
    margin: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--city-line);
    color: var(--lilac);
    font-size: 17px;
    line-height: 1.7;
}

.city-dialog__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(32px, 5vw, 72px);
    padding-block: 36px;
}

.city-dialog__grid h4 {
    margin: 0 0 18px;
    padding-left: 12px;
    border-left: 2px solid var(--city-accent);
    color: var(--white);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.city-dialog__tags {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.city-dialog__tags span {
    padding: 10px 13px;
    border: 1px solid rgba(198, 211, 225, .14);
    border-radius: 8px;
    background: rgba(5, 3, 33, .48);
    color: var(--lilac);
    font-size: 12px;
    font-weight: 700;
}

.city-dialog ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.city-dialog li {
    position: relative;
    padding-left: 23px;
    color: var(--lilac);
    font-size: 14px;
    line-height: 1.55;
}

.city-dialog li::before {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 8px;
    aspect-ratio: 1;
    border: 1px solid var(--city-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(76, 159, 127, .32);
    content: "";
}

.city-dialog__cta {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    border: 1px solid rgba(28, 98, 113, .36);
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(76, 159, 127, .18), rgba(13, 19, 41, .65));
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.city-dialog__cta span {
    font-size: 18px;
}

.city-dialog__cta:hover,
.city-dialog__cta:focus-visible {
    border-color: var(--city-accent);
    background: var(--city-accent);
    color: var(--ink);
    outline: none;
}

@keyframes city-radar {
    from { opacity: .78; transform: scale(1); }
    to { opacity: 0; transform: scale(1.72); }
}

@keyframes city-power-pulse {
    from { opacity: .8; }
    to { opacity: 1; filter: saturate(.72) hue-rotate(8deg) brightness(.75) contrast(1.12) drop-shadow(0 0 24px rgba(76, 159, 127, .18)); }
}

@keyframes city-dialog-in {
    from { opacity: 0; transform: translateY(24px) scale(.975); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
    .city-experience__scroll {
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .city-experience__canvas {
        width: 1088px;
        scroll-snap-align: center;
    }

    .city-experience__hint {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 16px 19px;
        border-top: 1px solid rgba(198, 211, 225, .1);
        background: rgba(13, 19, 41, .72);
        color: var(--muted);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
    }
}

@media (max-width: 700px) {
    #main-content .city-experience { padding-top: 72px; }
    .city-experience__heading { width: calc(100% - 38px); }
    .city-experience__heading h2 { font-size: 42px; }
    .city-experience__canvas {
        width: 976px;
        min-width: 976px;
    }

    .city-dialog {
        width: calc(100vw - 20px);
        border-radius: 14px;
    }

    .city-dialog__panel {
        padding: 56px 22px 22px;
    }

    .city-dialog__close {
        top: 14px;
        right: 14px;
    }

    .city-dialog__header {
        margin-right: 0;
    }

    .city-dialog h3 {
        font-size: 42px;
    }

    .city-dialog__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 1100px) {
    .resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .resource-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
    .home-page .innovation-showcase,
    .home-page .market-voices,
    .home-page .capability-stories,
    .home-page .resource-news { padding-block: 64px; }
    .home-page .innovation-showcase { min-height: 430px; padding-block: 56px 34px; }
    .innovation-heading p { max-width: 460px; }
    .innovation-marquee { margin-top: 54px; }
    .innovation-link { margin-top: 52px; }
    .story-header { align-items: flex-start; flex-direction: column; }
    .voices-card { min-height: 500px; padding: 54px 18px 36px; border-radius: 30px; }
    .voice-card { width: calc(100vw - 92px); flex-basis: calc(100vw - 92px); min-height: 340px; }
    .voice-card blockquote { font-size: 24px; }
    .story-card { width: min(420px, calc(100vw - 54px)); }
    .resource-grid { grid-template-columns: 1fr; }
    .resource-card:last-child { grid-column: auto; }
    .home-page .final-cta { min-height: 500px; padding-block: 64px; }
}

@media (max-width: 560px) {
    .home-page .innovation-showcase { min-height: 400px; padding-block: 52px 34px; }
    .innovation-heading { padding-inline: 24px; }
    .innovation-heading h2 { font-size: 26px; }
    .innovation-heading p { margin-top: 18px; font-size: 14px; }
    .innovation-marquee { margin-top: 48px; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
    .innovation-marquee-group { gap: 28px; padding-right: 28px; }
    .innovation-marquee-group > span { font-size: 32px; }
    .innovation-cube { width: 40px; height: 40px; flex-basis: 40px; }
    .innovation-link { margin-top: 46px; }
    .voices-card { min-height: 480px; padding: 46px 16px 32px; border-radius: 28px; }
    .voice-card { width: calc(100vw - 74px); flex-basis: calc(100vw - 74px); min-height: 320px; padding-inline: 0; }
    .voice-logo { height: 50px; margin-bottom: 30px; }
    .voice-card blockquote { font-size: 22px; line-height: 1.18; }
    .voice-card footer { margin-top: 30px; }
    .voice-card footer b { font-size: 14px; }
    .voice-card footer small { font-size: 12px; }
    .voices-dots-and-arrows { gap: 12px; }
    .voices-dots { gap: 10px; }
    .story-media { height: 245px; }
    .resource-media { height: 210px; }
    .home-page .final-cta { min-height: 520px; }
    .home-page .final-cta h2 { font-size: clamp(30px, 11vw, 44px); }
    .home-page .final-cta p { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .innovation-marquee-track,
    .model-animation-sticky::before { animation: none; }
}

body.is-lite-motion .hero-scroll i,
body.is-lite-motion .innovation-marquee-track,
body.is-lite-motion .cta-orbits i,
body.is-lite-motion .model-animation-sticky::before,
body.is-lite-motion .page-hero-media img,
body.is-lite-motion .city-pin__radar,
body.is-lite-motion .city-pulse {
    animation: none !important;
}

body.is-lite-motion .page-hero-media img,
body.is-lite-motion .film > video,
body.is-lite-motion .confidence-film-frame > video {
    transform: none !important;
}

body.is-lite-motion .nav-shell,
body.is-lite-motion .dropdown-panel,
body.is-lite-motion .story-media > span {
    backdrop-filter: none;
}

body.is-lite-motion .confidence-film.section {
    min-height: 100svh;
}

body.is-lite-motion .city-actor {
    display: none;
}

/* Navbar search */
.navbar-search {
    position: relative;
    display: flex;
    width: clamp(190px, 18vw, 318px);
    height: 46px;
    align-items: center;
    flex: 0 1 318px;
    margin-left: 12px;
    border: 1px solid rgba(198, 211, 225, .36);
    border-radius: 999px;
    background: rgba(5, 3, 33, .86);
    color: var(--white);
    transition: border-color .25s ease, box-shadow .25s ease, width .25s var(--ease);
}

.navbar-search:focus-within {
    border-color: rgba(28, 98, 113, .82);
    box-shadow: 0 0 0 4px rgba(76, 159, 127, .12);
}

.navbar-search input {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 46px 0 16px;
    border: 0;
    border-radius: inherit;
    background: transparent;
    color: var(--white);
    outline: 0;
}

.navbar-search input::placeholder { color: var(--muted); opacity: 1; }
.navbar-search input::-webkit-search-decoration,
.navbar-search input::-webkit-search-cancel-button { -webkit-appearance: none; }

.navbar-search button {
    position: absolute;
    top: 50%;
    right: 8px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.navbar-search button:hover { color: var(--accent); }
.navbar-search svg { width: 20px; height: 20px; }

.search-hero {
    min-height: 430px;
    padding-top: 168px;
    background:
        linear-gradient(120deg, rgba(7, 11, 31, .96), rgba(7, 11, 31, .88)),
        url('../assets/images/hero-tunnel.webp') center/cover no-repeat;
    background-color: #050321;
    color: var(--white);
}

.search-hero-inner { max-width: 880px; }
.search-hero h1 {
    margin: 14px 0 26px;
    font-size: clamp(44px, 7vw, 82px);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: .95;
}

.search-page-form {
    display: flex;
    max-width: 760px;
    gap: 12px;
}

.search-page-form input {
    min-height: 58px;
    min-width: 0;
    flex: 1;
    padding: 0 22px;
    border: 1px solid rgba(198, 211, 225, .34);
    border-radius: 999px;
    background: rgba(5, 3, 33, .72);
    color: var(--white);
    outline: 0;
}

.search-page-form input:focus { border-color: var(--accent-soft); }
.search-results-section { padding: 70px 0 96px; background: #050917 !important; color: var(--white); min-height: 50vh; }
.search-results-shell { max-width: 920px; }
.search-count, .search-empty { margin: 0; color: #aab6ce; font-size: 18px; }
.search-result-list { display: grid; gap: 16px; margin-top: 28px; }
.search-result-card {
    padding: 28px;
    border: 1px solid rgba(139, 215, 232, .15);
    border-radius: 12px;
    background: rgba(10, 18, 37, 0.7);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
    backdrop-filter: blur(12px);
    transition: transform .3s ease, border-color .3s ease;
}
.search-result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 215, 232, .4);
}
.search-result-card h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); font-weight: 500; line-height: 1.1; }
.search-result-card h2 a { color: var(--white); transition: color .3s ease; }
.search-result-card h2 a:hover { color: #8bd7e8; }
.search-result-card p { margin: 12px 0 0; color: #aab6ce; line-height: 1.6; }
.search-result-card .text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: #8bd7e8; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s ease; }
.search-result-card .text-link span { transition: transform 0.3s ease; display: inline-block; }
.search-result-card:hover .text-link { color: #fff; }
.search-result-card:hover .text-link span { transform: translateX(4px); }

@media (max-width: 1180px) {
    .navbar-search { width: 48px; flex-basis: 48px; }
    .navbar-search:focus-within { width: min(300px, 42vw); flex-basis: min(300px, 42vw); }
    .navbar-search input { padding-left: 18px; opacity: 0; transition: opacity .18s ease; }
    .navbar-search:focus-within input,
    .navbar-search input:not(:placeholder-shown) { opacity: 1; }
}

@media (max-width: 1020px) {
    .navbar-search { width: min(100%, 220px); flex: 1 1 auto; margin-left: auto; }
    .navbar-search:focus-within { width: min(100%, 260px); flex-basis: auto; }
    .navbar-search input { opacity: 1; }
}

@media (max-width: 560px) {
    .navbar-search { order: 3; width: 100%; flex-basis: 100%; margin: 10px 0 0; }
    .nav-shell { height: auto; min-height: 74px; flex-wrap: wrap; padding-block: 12px; }
    .primary-nav { top: calc(100% + 10px); }
    .search-page-form { flex-direction: column; }
    .search-page-form .button { width: 100%; }
}

/* Compact TMX-style navbar search */
@media (min-width: 1021px) {
    .primary-nav {
        flex: 1 1 auto;
        justify-content: center;
        min-width: 0;
    }

    .navbar-search {
        width: 48px;
        flex: 0 0 48px;
        margin-left: 8px;
        overflow: hidden;
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .navbar-search.is-open,
    .navbar-search:focus-within {
        width: min(318px, 24vw);
        flex-basis: min(318px, 24vw);
        border-color: rgba(198, 211, 225, .36);
        background: rgba(5, 3, 33, .86);
        box-shadow: 0 0 0 4px rgba(76, 159, 127, .1);
    }

    .navbar-search input {
        opacity: 0;
        pointer-events: none;
        transition: opacity .18s ease;
    }

    .navbar-search.is-open input,
    .navbar-search:focus-within input {
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-search button {
        right: 7px;
        width: 38px;
        height: 38px;
    }

    .nav-contact-outside {
        flex: 0 0 auto;
        margin-left: 12px;
        min-height: 48px;
        padding-inline: 24px;
    }
}

@media (max-width: 1180px) and (min-width: 1021px) {
    .navbar-search.is-open,
    .navbar-search:focus-within {
        width: min(286px, 28vw);
        flex-basis: min(286px, 28vw);
    }
}

@media (max-width: 1020px) {
    .nav-contact-outside {
        min-height: 44px;
        margin-left: auto;
        padding-inline: 18px;
    }
}

@media (max-width: 560px) {
    .nav-contact-outside {
        order: 2;
        min-height: 42px;
        margin-left: 0;
        padding-inline: 14px;
        font-size: 13px;
    }

    .menu-toggle { order: 3; }
    .navbar-search { order: 4; }
}

/* Final navbar search alignment */
.nav-shell {
    gap: 16px;
}

.navbar-search {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-left: 0;
    align-self: center;
    overflow: hidden;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.navbar-search input {
    opacity: 0;
    pointer-events: none;
}

.navbar-search.is-open,
.navbar-search:focus-within {
    width: min(318px, 32vw);
    flex-basis: min(318px, 32vw);
    border-color: rgba(198, 211, 225, .36);
    background: rgba(5, 3, 33, .86);
}

.navbar-search.is-open input,
.navbar-search:focus-within input {
    opacity: 1;
    pointer-events: auto;
}

.navbar-search button {
    top: 50%;
    right: 50%;
    width: 44px;
    height: 44px;
    transform: translate(50%, -50%);
    z-index: 2;
}

.navbar-search svg {
    display: block;
    width: 22px;
    height: 22px;
    overflow: visible;
}

.navbar-search.is-open button,
.navbar-search:focus-within button {
    right: 5px;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
}

.navbar-search.is-open svg,
.navbar-search:focus-within svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 1021px) {
    .nav-shell {
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar-search {
        margin-left: 10px;
    }

    .nav-shell.search-active .primary-nav {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .nav-shell.search-active .navbar-search,
    .nav-shell.search-active .navbar-search:focus-within {
        width: min(318px, 32vw);
        flex-basis: min(318px, 32vw);
        margin-left: auto;
    }
}

@media (max-width: 1020px) {
    .nav-shell {
        display: grid;
        grid-template-columns: auto 48px 48px;
        gap: 10px;
        align-items: center;
        height: 74px;
    }

    .brand {
        min-width: 0;
    }

    .navbar-search {
        grid-column: 2;
        grid-row: 1;
        width: 48px;
        flex-basis: 48px;
        margin: 0;
        justify-self: end;
    }

    .navbar-search.is-open,
    .navbar-search:focus-within {
        grid-column: 1 / -1;
        position: absolute;
        right: 76px;
        left: 64px;
        z-index: 1001;
        width: calc(100% - 140px);
        flex-basis: auto;
    }

    .nav-shell.search-active .brand {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .nav-shell.search-active .navbar-search {
        grid-column: 1 / -1;
        position: absolute;
        display: block;
        right: 76px;
        left: 20px;
        z-index: 1001;
        width: calc(100% - 96px) !important;
        min-width: 0;
        max-width: none;
        flex-basis: auto;
        border-color: rgba(198, 211, 225, .36);
        background: rgba(5, 3, 33, .86);
    }

    .nav-shell.search-active .navbar-search input {
        display: block;
        width: 100%;
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .nav-contact-outside {
        display: none;
    }

    .primary-nav {
        top: calc(100% + 12px);
    }
}

@media (max-width: 560px) {
    .nav-shell {
        grid-template-columns: minmax(0, 1fr) 48px 48px;
        height: 74px;
        min-height: 74px;
        padding-block: 0;
    }

    .brand img {
        height: 34px;
    }

    .navbar-search {
        order: initial;
    }

    .navbar-search.is-open,
    .navbar-search:focus-within {
        right: 66px;
        left: 16px;
        width: calc(100% - 82px) !important;
    }

    .nav-shell.search-active .navbar-search {
        right: 66px;
        left: 16px;
        width: calc(100% - 82px) !important;
    }

    .menu-toggle {
        order: initial;
    }
}

/* TrueLink x TMX dark palette harmonization */
.home-page .intro-section,
.home-page .services,
.home-page .industries,
.home-page .industries-carousel,
.home-page .work,
.home-page .final-cta,
.page-card-section,
.service-detail-section,
.editorial-section,
.page-section,
.category-section,
.resources-section,
.contact-section,
.experience-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(76, 159, 127, .12), transparent 34%),
        radial-gradient(circle at 88% 22%, rgba(28, 98, 113, .24), transparent 38%),
        linear-gradient(180deg, var(--ink) 0%, #0a0826 46%, var(--ink-soft) 100%);
    color: var(--white);
}

.home-page .service-card,
.page-card,
.category-card,
.resource-card,
.location-card,
.principle-card,
.service-directory-card,
.content-card,
.editorial-card {
    border-color: rgba(214, 221, 221, .16);
    background:
       none;
    color: var(--white);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.home-page .service-card:hover,
.page-card:hover,
.category-card:hover,
.resource-card:hover,
.location-card:hover,
.principle-card:hover,
.service-directory-card:hover {
    border-color: rgba(255, 123, 51, .42);
    box-shadow: 0 28px 90px rgba(76, 159, 127, .12);
}

.service-card h3,
.page-card h2,
.category-card h2,
.resource-card h2,
.location-card h3,
.principle-card h3,
.service-directory-card h3,
.content-card h2,
.editorial-card h2 {
    color: var(--white);
}

.service-card p,
.service-card li,
.service-card ul,
.service-card-body,
.page-card p,
.page-card-points,
.page-card-points li,
.category-card p,
.category-card li,
.resource-card p,
.location-card p,
.principle-card p,
.service-directory-card p,
.content-card p,
.editorial-card p {
    color: rgba(216, 222, 234, .78);
}

.category-card a,
.resource-card a,
.location-card a,
.page-card-link,
.service-directory-card a,
.text-link,
.industry-link {
    color: var(--accent-soft);
}

.category-card a:hover,
.resource-card a:hover,
.location-card a:hover,
.page-card-link:hover,
.service-directory-card a:hover,
.text-link:hover,
.industry-link:hover {
    color: var(--brand-silver);
}

.page-card-icon,
.service-icon,
.tl-cred-icon,
.service-directory-card > span,
.category-card > div > span,
.resource-card > span,
.resource-card.featured > div > span,
.location-card > span,
.gradient-tagline,
.eyebrow {
    color: var(--accent-soft);
}

.page-card-icon svg,
.tl-chevron,
.navbar-search svg,
.mobile-nav-search svg,
.mobile-nav-close svg,
.menu-toggle svg,
.industry-link svg,
.text-link svg {
    color: var(--accent-soft);
    stroke: currentColor;
}

.button,
.tl-nav-cta,
.nav-contact-outside,
.service-button,
.newsletter-form button {
    border-color: rgba(255, 123, 51, .72);
}

.button:hover,
.tl-nav-cta:hover,
.nav-contact-outside:hover,
.service-button:hover,
.newsletter-form button:hover {
    border-color: var(--brand-silver);
    background: var(--accent);
    color: var(--ink);
}

.page-hero .button-light,
.contact-hero .button-light,
.service-detail-hero .button-light {
    border-color: rgba(255, 123, 51, .7);
    background: rgba(5, 3, 33, .36);
    color: var(--white);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
    backdrop-filter: blur(12px);
}

.page-hero .button-light:hover,
.contact-hero .button-light:hover,
.service-detail-hero .button-light:hover {
    border-color: var(--brand-silver);
    background: var(--accent);
    color: var(--ink);
}

.category-card figure,
.resource-card.featured figure,
.page-card img,
.service-card figure {
    background: var(--ink);
}

@media (max-width: 760px) {
    .home-page .intro-section,
    .home-page .services,
    .home-page .industries,
    .home-page .industries-carousel,
    .home-page .work,
    .home-page .final-cta,
    .page-card-section,
    .service-detail-section,
    .editorial-section,
    .page-section,
    .category-section,
    .resources-section,
    .contact-section,
    .experience-section {
        background:
            radial-gradient(circle at 10% 6%, rgba(76, 159, 127, .14), transparent 36%),
            linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
    }
}

/* Final density pass: compact, premium rhythm across home and detail pages. */
.home-page .section { padding-block: 44px; }
.home-page .model-showcase,
.home-page .industries-carousel,
.home-page .work { padding-block: 52px; }
.home-page .trusted { min-height: 132px; padding: 42px 0 10px; }
.home-page .services-intro,
.home-page .section-heading { margin-bottom: 24px; }

.page-hero { min-height: 600px; }
.page-hero-content {
    min-height: 560px;
    padding-top: 112px;
    padding-bottom: 40px;
}
.page-hero-content h1 { font-size: clamp(38px, 4.6vw, 62px); }
.page-hero-content > p { margin-top: 16px; font-size: 15px; }
.page-hero-cta { margin-top: 24px; }
.page-card-section { padding-bottom: 48px; }
.svc-block { padding-block: clamp(44px, 4.5vw, 64px); }
.svc-block__grid { gap: clamp(24px, 3.4vw, 52px); }
.svc-block__art { min-height: 280px; }
.svc-block__copy h2 { font-size: clamp(26px, 2.8vw, 38px); }
.svc-block__copy > p { line-height: 1.62; }
.service-detail-section,
.contact-section { padding-block: 50px; }

@media (max-width: 1120px) {
    .page-hero,
    .page-hero-content { min-height: 600px; }
    .page-hero-content { padding-top: 120px; padding-bottom: 44px; }
}

@media (max-width: 1020px) {
    .page-hero,
    .page-hero-content { min-height: 570px; }
    .page-hero-content { padding-top: 122px; padding-bottom: 42px; }
    .page-hero-content h1 { font-size: clamp(40px, 7.5vw, 62px); }
    .service-detail-section,
    .contact-section { padding-block: 48px; }
    .page-card-section { padding-bottom: 46px; }
}

@media (max-width: 760px) {
    .home-page .section { padding-block: 38px; }
    .home-page .model-showcase,
    .home-page .industries-carousel,
    .home-page .work { padding-block: 44px; }
    .home-page .trusted { min-height: 116px; padding: 34px 0 8px; }

    .page-hero,
    .page-hero-content { min-height: 540px; }
    .page-hero-content { padding-top: 112px; padding-bottom: 36px; }
    .page-hero-content h1 { font-size: clamp(38px, 11.6vw, 52px); line-height: .96; }
    .page-hero-content > p { margin-top: 14px; font-size: 14px; }
    .page-hero-cta { margin-top: 20px; }
    .page-card-section { padding-bottom: 38px; }
    .svc-block { padding-block: 38px; }
    .svc-block__art { min-height: 210px; }
    .svc-block__copy h2 { margin-bottom: 14px; font-size: clamp(25px, 8vw, 34px); }
    .service-detail-section,
    .contact-section { padding-block: 42px; }
}

/* Keep the floating navigation crisp and neutral on every page. */
.site-header .nav-link,
.site-header .nav-item > button,
.site-header .nav-item > button .tl-chevron,
.site-header .navbar-search button,
.site-header .navbar-search svg,
.site-header .mobile-nav-search,
.site-header .mobile-nav-search svg,
.site-header .mobile-nav-close,
.site-header .mobile-nav-close svg {
    color: #fff !important;
    stroke: currentColor;
}

.site-header .nav-link,
.site-header .nav-link:hover,
.site-header .nav-link[aria-current='page'],
.site-header .nav-item > button,
.site-header .nav-item > button:hover,
.site-header .nav-item.open > button,
.site-header .nav-item.is-current > button,
.site-header .nav-item:hover > button {
    background: transparent !important;
    color: #fff !important;
}

.site-header .navbar-search button:hover {
    background: transparent !important;
    color: #fff !important;
}

.site-header .tl-nav-cta,
.site-header .nav-contact,
.site-header .nav-contact-outside {
    border-color: rgba(255, 255, 255, .82) !important;
    background: transparent !important;
    color: #fff !important;
}

.site-header .tl-nav-cta:hover,
.site-header .nav-contact:hover,
.site-header .nav-contact-outside:hover {
    border-color: #fff !important;
    background: transparent !important;
    color: var(--accent-soft) !important;
}

.site-header .menu-toggle span {
    background: #fff !important;
}

.mobile-nav-contact {
    display: none;
}

/* Keep the expanded information architecture clear on compact desktop widths. */
@media (min-width: 1021px) and (max-width: 1380px) {
    .nav-shell {
        gap: 8px;
        padding-inline: 18px;
    }

    .brand img {
      height: 74px !important;
    }

    .primary-nav {
        min-width: 0;
        justify-content: center;
        gap: 0;
    }

    .nav-link,
    .nav-item > button {
        min-height: 40px;
        gap: 4px;
        padding-inline: 6px;
        font-size: 14px;
    }

    .tl-chevron {
        width: 13px;
        height: 13px;
    }

    .navbar-search {
        width: 44px;
        flex-basis: 44px;
        margin-left: 0;
    }

    .nav-contact {
        min-height: 40px;
        margin-left: 0;
        padding-inline: 16px;
        font-size: 12px;
    }
}

@media (max-width: 1020px) {
    .mobile-nav-contact {
        display: flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-top: 10px;
        padding: 0 17px;
        border: 1px solid rgba(255, 255, 255, .56);
        border-radius: 999px;
        background: rgba(255, 255, 255, .025);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }

    .mobile-nav-contact:hover,
    .mobile-nav-contact:focus-visible {
        border-color: var(--accent-soft);
        background: rgba(167, 183, 255, .08);
        color: var(--accent-soft);
    }
}

/* Shared editorial card used by Home and the dynamic Insights page. */
.editorial-card { min-width: 0; }
.editorial-card__media {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    min-height: 220px;
    overflow: hidden;
    border: 1px solid rgba(167, 183, 255, .18);
    border-radius: 16px;
    background: #10172f;
    box-shadow: 0 22px 62px rgba(0, 0, 0, .22);
}
.editorial-card__cover {
    position: relative;
    display: flex;
    min-width: 0;
    justify-content: space-between;
    flex-direction: column;
    padding: 19px;
    background:
        radial-gradient(circle at 12% 100%, rgba(139, 215, 232, .1), transparent 48%),
        linear-gradient(145deg, #171c3e, #0d132c);
}
.editorial-card__brand { color: #f5f7ff; font-size: 8px; font-style: normal; font-weight: 800; letter-spacing: .12em; }
.editorial-card__brand em { margin-left: 3px; color: #8bd7e8; font-style: normal; font-weight: 400; }
.editorial-card__cover strong {
    display: -webkit-box;
    overflow: hidden;
    color: #f5f7ff;
    font-size: clamp(19px, 1.65vw, 27px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.08;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.editorial-card__cover > i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(245, 247, 255, .26);
    border-radius: 50%;
    color: #f5f7ff;
    font-size: 12px;
    font-style: normal;
}
.editorial-card__media figure { min-width: 0; margin: 0; overflow: hidden; }
.editorial-card__media figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.86) contrast(1.06) brightness(.96);
    transition: transform .65s cubic-bezier(.22, .7, .23, 1), filter .35s ease;
}
.editorial-card:hover .editorial-card__media figure img { transform: scale(1.05); filter: saturate(1) contrast(1.04) brightness(1.03); }
.editorial-card__meta { padding: 16px 2px 0; }
.editorial-card__meta time { color: #8bd7e8; font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.editorial-card__meta h3 {
    display: -webkit-box;
    min-height: 2.28em;
    margin: 10px 0 0;
    overflow: hidden;
    color: #f5f7ff;
    font-size: clamp(18px, 1.55vw, 23px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.14;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.editorial-card__meta h3 a { color: inherit; }
.editorial-card__meta h3 a:hover { color: #8bd7e8; }
.editorial-card__author { display: flex; align-items: center; gap: 9px; margin-top: 14px; }
.editorial-card__author > span { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid rgba(139, 215, 232, .34); border-radius: 50%; background: rgba(139, 215, 232, .1); color: #f5f7ff; font-size: 8px; font-weight: 700; }
.editorial-card__author p { margin: 0; color: #aab6cf; font-size: 10px; }

.industries-header__actions,
.story-header__actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.industries-header__actions .industry-carousel-controls,
.story-header__actions .story-controls { margin: 0; }
.industries-header__actions .industry-carousel-controls button,
.story-header__actions .story-controls button { width: 46px; height: 46px; }

@media (max-width: 760px) {
    .editorial-card__media { min-height: 205px; }
    .editorial-card__cover { padding: 16px; }
    .editorial-card__cover strong { font-size: clamp(18px, 5.4vw, 23px); }
    .industries-header__actions,
    .story-header__actions { width: 100%; justify-content: space-between; }
}

@media (max-width: 430px) {
    .editorial-card__media { min-height: 188px; }
    .editorial-card__cover strong { -webkit-line-clamp: 3; }
    .industries-header__actions,
    .story-header__actions { align-items: flex-start; flex-direction: column; }
}

/* Final navigation and footer polish for compact screens. */
@media (max-width: 1020px) {
    .site-header .brand img {
        width: auto;
       height: 74px !important;
        image-rendering: auto;
        filter: contrast(1.12) saturate(1.06);
        transform: translateZ(0);
    }

    .styles-module--footer--e4089 .styles-module--logo--5cde5 {
        padding: 25px 0 22px;
    }

    .styles-module--footer--e4089 .styles-module--columns--870a0 {
        padding: 22px 0 18px;
    }

    .styles-module--footer--e4089 .styles-module--columnNewsletter--936ec {
        gap: 12px;
        margin-bottom: 8px;
        padding-bottom: 20px;
    }

    .styles-module--footer--e4089 .styles-module--form--32411 {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(112px, 132px);
        gap: 10px;
    }

    .styles-module--footer--e4089 .styles-module--consentField--6c418 {
        grid-column: 1 / -1;
    }

    .styles-module--footer--e4089 .styles-module--title--c5679 {
        padding-block: 14px;
    }

    .styles-module--footer--e4089 .footer-social-box { margin-top: 10px; .styles-module--footer--e4089 .footer-social-box }
    .styles-module--footer--e4089 .styles-module--credits--9269d { padding-block: 18px;  }
}

@media (max-width: 390px) {
    .styles-module--footer--e4089 .styles-module--form--32411 {
        grid-template-columns: 1fr;
    }

    .styles-module--footer--e4089 .styles-module--consentField--6c418 {
        grid-column: 1;
    }
}

/* Keep desktop dropdowns clear of the floating navigation shell. */
@media (min-width: 1021px) {
    .site-header .nav-item.has-dropdown > .dropdown-panel {
        top: calc(100% + 28px);
        left: 0;
    }

    .site-header .nav-item.has-dropdown > .dropdown-panel::before {
        height: 29px;
    }

    .site-header.is-scrolled .nav-item.has-dropdown > .dropdown-panel {
        top: calc(100% + 20px);
    }

    .site-header.is-scrolled .nav-item.has-dropdown > .dropdown-panel::before {
        height: 21px;
    }
}

/* Keep the compact navigation controls locked to the right at every width. */
@media (max-width: 1020px) {
    .site-header .nav-shell {
        grid-template-columns: minmax(0, 1fr) 48px 48px;
    }

    .site-header .brand {
        min-width: 0;
        max-width: calc(100% - 12px);
    }

    .site-header .navbar-search:not(.is-open):not(:focus-within) {
        position: relative;
        inset: auto;
        grid-column: 2;
        grid-row: 1;
        width: 48px !important;
        min-width: 48px;
        max-width: 48px;
        justify-self: end;
    }

    .site-header .menu-toggle {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }
}

@media (max-width: 560px) {
    .site-header .nav-shell {
        grid-template-columns: minmax(0, 1fr) 46px 46px;
        column-gap: 8px;
    }

    .site-header .navbar-search:not(.is-open):not(:focus-within) {
        width: 46px !important;
        min-width: 46px;
        max-width: 46px;
    }
}

/* Final global dropdown alignment: keep submenus directly below the active menu item. */
@media (min-width: 1021px) {
    .site-header .nav-item.has-dropdown {
        position: relative;
    }

    .site-header .nav-item.has-dropdown > .dropdown-panel {
        top: calc(100% + 4px) !important;
        left: 50% !important;
        right: auto !important;
        margin-top: 0 !important;
        transform: translate(-50%, -4px) !important;
    }

    .site-header .nav-item.has-dropdown > .dropdown-panel::before {
        height: 10px !important;
    }

    .site-header .nav-item.has-dropdown:hover > .dropdown-panel,
    .site-header .nav-item.has-dropdown.open > .dropdown-panel {
        transform: translate(-50%, 0) !important;
    }
}

/* Final nav positioning polish: dropdowns should sit directly under the hovered
   item, not drift lower or to the side on scrolled pages. */
@media (min-width: 1021px) {
    .site-header .nav-shell .nav-item.has-dropdown {
        position: relative !important;
    }

   
    .site-header .nav-shell .nav-item.has-dropdown > .dropdown-panel, .site-header.is-scrolled .nav-shell .nav-item.has-dropdown > .dropdown-panel {
                top: calc(100% + 33px) !important;
        right: auto !important;
        left: 50% !important;
        z-index: 9999 !important;
        margin-top: 0 !important;
        transform: translate(-50%, -2px) !important;
    }


    .site-header .nav-shell .nav-item.has-dropdown > .dropdown-panel::before,
    .site-header.is-scrolled .nav-shell .nav-item.has-dropdown > .dropdown-panel::before {
        height: 8px !important;
    }

    .site-header .nav-shell .nav-item.has-dropdown:hover > .dropdown-panel,
    .site-header .nav-shell .nav-item.has-dropdown.open > .dropdown-panel {
        transform: translate(-50%, 0) !important;
    }
}

.tl-accordion-summary .tl-summary-icon,
.tl-summary-icon {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, .78) !important;
    background: rgba(255, 255, 255, .04) !important;
}

/* Keep the compact search and menu buttons balanced on tablet/mobile widths. */
@media (max-width: 760px) {
    .site-header .nav-shell {
        align-items: center;
        padding-inline: clamp(14px, 4vw, 22px);
    }

    .site-header .navbar-search:not(.is-open):not(:focus-within),
    .site-header .menu-toggle {
        width: 44px !important;
        min-width: 44px;
        height: 44px;
    }

    .site-header .brand img {
        height: 58px !important;
        max-width: 132px;
    }
}

/* Shared Rubik CTA for custom menu pages. */
.site-rubiks-cta {
    position: relative;
    min-height: clamp(520px, 66vh, 620px);
    overflow: hidden;
    padding: clamp(52px, 6vh, 68px) 0 0;
    background:
        radial-gradient(circle at 18% 32%, rgba(255, 63, 159, .16), transparent 24%),
        radial-gradient(circle at 82% 42%, rgba(25, 216, 255, .13), transparent 26%),
        #050321;
    color: #f8f7ff;
    text-align: center;
}

.site-rubiks-cta__copy {
    position: relative;
    z-index: 4;
    width: min(780px, calc(100% - 32px));
}

.site-rubiks-cta__copy > span {
    color: #7ee7ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.site-rubiks-cta__copy h2 {
    margin: 12px auto 0;
    color: #f8f7ff;
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1;
    white-space: nowrap;
}

.site-rubiks-cta__copy p {
    max-width: 560px;
    margin: 14px auto 22px;
    color: rgba(232, 235, 255, .72);
    font-size: 13px;
    line-height: 1.45;
}

.site-rubiks-cta__copy a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 12px;
    padding: 0 21px;
    border: 1px solid rgba(248, 247, 255, .56);
    border-radius: 999px;
    color: #f8f7ff;
    font-size: 12px;
    font-weight: 600;
}

.site-rubiks-cta__visual {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
}

.site-rubiks-cta__grid {
    --cube-size: clamp(39px, 3.8vw, 64px);
    position: absolute;
    top: clamp(300px, 43vh, 365px);
    left: 50%;
    display: grid;
    grid-template-columns: repeat(7, var(--cube-size));
    grid-auto-rows: var(--cube-size);
    gap: clamp(8px, .85vw, 14px);
    filter: drop-shadow(0 58px 38px rgba(0, 0, 0, .58)) drop-shadow(0 0 28px rgba(25, 216, 255, .2));
    transform: translateX(-50%) rotateZ(-28deg) skewX(-10deg);
    transform-style: preserve-3d;
}

.site-rubiks-cta__grid span {
    --lift: 0px;
    position: relative;
    display: block;
    transform: translateY(var(--lift));
    transform-style: preserve-3d;
    animation: site-rubik-bob 6.5s ease-in-out infinite, site-rubik-glow 2.6s ease-in-out infinite alternate;
    animation-delay: calc(var(--i) * -.06s), calc(var(--i) * -.09s);
}

.site-rubiks-cta__grid span:nth-child(4),
.site-rubiks-cta__grid span:nth-child(11),
.site-rubiks-cta__grid span:nth-child(18) { --lift: -28px; }
.site-rubiks-cta__grid span:nth-child(3),
.site-rubiks-cta__grid span:nth-child(5),
.site-rubiks-cta__grid span:nth-child(10),
.site-rubiks-cta__grid span:nth-child(12) { --lift: -12px; }

.site-rubiks-cta__grid b {
    position: absolute;
    display: block;
    border: 1px solid rgba(74, 84, 255, .76);
    box-shadow: inset 0 0 20px rgba(25, 216, 255, .18), 0 0 24px rgba(35, 109, 255, .22);
}

.site-rubiks-cta__grid b:nth-child(1) {
    inset: 0;
    background: linear-gradient(135deg, #05108f, #0634ff 54%, #1410dd);
}

.site-rubiks-cta__grid b:nth-child(2) {
    right: 0;
    bottom: calc(var(--cube-size) * -.38);
    left: 0;
    height: calc(var(--cube-size) * .38);
    background: linear-gradient(135deg, #ff512f, #a42392 44%, #0a0d63);
    transform: skewX(45deg);
    transform-origin: top left;
}

.site-rubiks-cta__grid b:nth-child(3) {
    top: 0;
    right: calc(var(--cube-size) * -.38);
    bottom: 0;
    width: calc(var(--cube-size) * .38);
    background: linear-gradient(135deg, #020213, #071aa3 52%, #070c4a);
    transform: skewY(45deg);
    transform-origin: top left;
}

.site-rubiks-cta__route {
    position: absolute;
    top: 58%;
    right: 15%;
    left: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff5bd6, #7ee7ff, transparent);
    transform: rotate(-8deg);
}

.site-rubiks-cta__node {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff5bd6;
    box-shadow: 0 0 16px currentColor;
    animation: site-node-pulse 2.8s ease-in-out infinite;
}

.site-rubiks-cta__node--one { top: 52%; left: 24%; }
.site-rubiks-cta__node--two { top: 43%; right: 23%; color: #7ee7ff; background: #7ee7ff; animation-delay: -.9s; }

@keyframes site-rubik-bob {
    0%, 100% { transform: translateY(var(--lift)); }
    50% { transform: translateY(calc(var(--lift) - 8px)); }
}

@keyframes site-rubik-glow {
    from { filter: brightness(.84) saturate(.9); }
    to { filter: brightness(1.28) saturate(1.34); }
}

@keyframes site-node-pulse {
    0%, 100% { opacity: .55; transform: scale(.78); }
    50% { opacity: 1; transform: scale(1.35); }
}

@media (max-width: 760px) {
    .site-rubiks-cta { min-height: 530px; padding-top: 52px; }
    .site-rubiks-cta__copy h2 { max-width: 340px; font-size: clamp(30px, 8.4vw, 40px); white-space: normal; }
    .site-rubiks-cta__copy p { max-width: 330px; }
    .site-rubiks-cta__grid { --cube-size: 29px; top: 330px; }
}

@media (prefers-reduced-motion: reduce) {
    .site-rubiks-cta__grid span,
    .site-rubiks-cta__node { animation: none; }
}

/* Final dropdown and footer polish. */
@media (min-width: 1021px) {
    .site-header .nav-shell .nav-item.has-dropdown {
        position: relative !important;
    }

    .site-header .nav-shell .nav-item.has-dropdown > .dropdown-panel,
    .site-header.is-scrolled .nav-shell .nav-item.has-dropdown > .dropdown-panel {
        top: calc(100% + 20px) !important;
        right: auto !important;
        left: 50% !important;
        width: max-content !important;
        min-width: 330px !important;
        max-width: min(520px, calc(100vw - 48px)) !important;
        margin: 0 !important;
        padding: 20px !important;
        border-color: rgba(139, 215, 232, .22) !important;
        border-radius: 16px !important;
        background: linear-gradient(180deg, rgba(18, 19, 48, .96), rgba(7, 11, 31, .98)) !important;
        box-shadow: 0 26px 80px rgba(0, 0, 0, .48), 0 0 34px rgba(139, 215, 232, .08) !important;
        transform: translate(-50%, 8px) !important;
    }

    .site-header .nav-shell .nav-item.has-dropdown > .dropdown-panel::before,
    .site-header.is-scrolled .nav-shell .nav-item.has-dropdown > .dropdown-panel::before {
        height: 22px !important;
    }

    .site-header .nav-shell .nav-item.has-dropdown:hover > .dropdown-panel,
    .site-header .nav-shell .nav-item.has-dropdown.open > .dropdown-panel {
        transform: translate(-50%, 0) !important;
    }
}

.site-footer-tmx,
.site-footer,
footer.styles-module--footer--e4089 {
    background: linear-gradient(180deg, rgba(18, 19, 48, 0.94), rgba(10, 12, 34, 0.98)) !important;
    color: rgba(245, 247, 255, .86) !important;
}

footer.styles-module--footer--e4089 :is(.styles-module--title--c5679, .styles-module--columnTitle--c8726, .footer-loc-heading),
.site-footer :is(.styles-module--title--c5679, .styles-module--columnTitle--c8726, .footer-loc-heading) {
    color: #f7f8ff !important;
    opacity: 1 !important;
}

footer.styles-module--footer--e4089 :is(.styles-module--link--512c0, .styles-module--columnLocationList--e5052 li a, .styles-module--disclaimer--a9305, .styles-module--creditsColumn--d49b7 a),
.site-footer :is(.styles-module--link--512c0, .styles-module--columnLocationList--e5052 li a, .styles-module--disclaimer--a9305, .styles-module--creditsColumn--d49b7 a, p, li, small) {
    color: rgba(245, 247, 255, .78) !important;
}

footer.styles-module--footer--e4089 a:hover,
.site-footer a:hover {
    color: #ffffff !important;
}

.footer-locations-bar {
    border-color: rgba(167, 183, 255, .2) !important;
    background: rgba(15, 17, 45, .64) !important;
}
