:root {
    --ink: #071421;
    --ink-soft: #0b2230;
    --ink-elevated: #103342;
    --paper: #ffffff;
    --mist: #eff6f5;
    --mist-blue: #edf6f8;
    --text: #102030;
    --muted: #526878;
    --muted-light: #b7ccd4;
    --line: rgba(12, 43, 58, 0.14);
    --line-light: rgba(255, 255, 255, 0.14);
    --cyan: #16c7d8;
    --green: #69df35;
    --amber: #f0b84b;
    --accent: linear-gradient(110deg, var(--cyan), var(--green));
    --dark-gradient:
        radial-gradient(circle at 12% 8%, rgba(22, 199, 216, 0.16), transparent 31%),
        radial-gradient(circle at 88% 18%, rgba(105, 223, 53, 0.11), transparent 29%),
        linear-gradient(135deg, #06131f 0%, #09283a 57%, #0b2d25 118%);
    --footer-gradient:
        radial-gradient(circle at 12% 0%, rgba(22, 199, 216, 0.22), transparent 33%),
        radial-gradient(circle at 83% 4%, rgba(105, 223, 53, 0.17), transparent 30%),
        linear-gradient(115deg, #061824 0%, #073347 52%, #123c2c 120%);
    --shadow-sm: 0 12px 34px rgba(6, 28, 40, 0.08);
    --shadow-md: 0 24px 64px rgba(6, 28, 40, 0.13);
    --radius: 8px;
    --radius-lg: 12px;
    --max: 1240px;
    --header: 64px;
}

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

html {
    background: var(--ink);
    scroll-behavior: auto;
    text-size-adjust: 100%;
}

body {
    min-width: 280px;
    margin: 0;
    overflow-x: clip;
    color: var(--text);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.62;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

p,
ul {
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    color: inherit;
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 820px;
    font-size: 3.65rem;
}

h2 {
    font-size: 2.55rem;
}

h3 {
    font-size: 1.4rem;
}

:focus-visible {
    outline: 3px solid rgba(22, 199, 216, 0.72);
    outline-offset: 4px;
}

::selection {
    color: var(--ink);
    background: var(--green);
}

.container {
    width: min(calc(100% - 48px), var(--max));
    margin-inline: auto;
}

.narrow {
    max-width: 980px;
}

.section {
    position: relative;
    padding: clamp(64px, 7vw, 92px) 0;
}

.section-dark {
    color: var(--paper);
    background: var(--dark-gradient);
}

.section-muted {
    background:
        radial-gradient(circle at 88% 10%, rgba(105, 223, 53, 0.09), transparent 26%),
        linear-gradient(135deg, var(--mist-blue), var(--mist));
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Header and navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header);
    color: var(--paper);
    background: rgba(5, 20, 31, 0.9);
    border-bottom: 1px solid rgba(22, 199, 216, 0.18);
    backdrop-filter: blur(18px) saturate(135%);
}

.header-inner {
    height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--paper);
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.brand img {
    width: 42px;
    height: 38px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.primary-nav > a,
.nav-item > a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border-radius: 6px;
    color: #d3e3e8;
    font-size: 0.86rem;
    font-weight: 720;
    line-height: 1;
    white-space: nowrap;
    transition: color 180ms ease, background-color 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="page"],
.nav-item > a[aria-current],
.nav-item:hover > a,
.nav-item:focus-within > a {
    color: var(--paper);
    background: rgba(22, 199, 216, 0.12);
}

.primary-nav .nav-cta {
    margin-left: 4px;
    padding-inline: 15px;
    color: #04151d;
    background: var(--accent);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    z-index: 1200;
    width: min(760px, calc(100vw - 48px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(22, 199, 216, 0.2);
    border-radius: var(--radius-lg);
    background: var(--footer-gradient);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.primary-nav > .has-mega:nth-child(2) .mega-menu {
    left: 0;
}

.primary-nav > .has-mega:nth-child(4) .mega-menu {
    right: 0;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu::before {
    content: "";
    position: absolute;
    inset: -15px 0 auto;
    height: 15px;
}

.mega-menu a,
.mega-copy {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.mega-menu a {
    transition: background-color 180ms ease, border-color 180ms ease;
}

.mega-menu a:hover,
.mega-menu a:focus-visible,
.mega-menu a[aria-current] {
    background: rgba(22, 199, 216, 0.13);
    border-color: rgba(22, 199, 216, 0.28);
}

.mega-menu span,
.mega-menu em,
.mega-copy span {
    min-width: 0;
    color: #a9c0c9;
    font-size: 0.72rem;
    font-style: normal;
    line-height: 1.35;
}

.mega-menu strong,
.mega-copy strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--paper);
    font-size: 0.88rem;
    line-height: 1.3;
}

.mega-copy {
    background: linear-gradient(135deg, rgba(22, 199, 216, 0.16), rgba(105, 223, 53, 0.09));
}

.mega-compact {
    width: min(600px, calc(100vw - 48px));
}

.mega-compact .mega-copy {
    display: none;
}

.menu-toggle {
    position: relative;
    z-index: 1300;
    width: 42px;
    height: 42px;
    display: none;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.07);
}

.menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--paper);
    transform-origin: center;
    transition: top 180ms ease, transform 180ms ease, opacity 140ms ease;
}

.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 27px; }

body.nav-open .menu-toggle span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
}

/* Buttons and shared type */
.eyebrow {
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 820;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: uppercase;
}

.section-lede {
    max-width: 720px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.1rem;
}

.section-dark .section-lede {
    color: var(--muted-light);
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 780;
    line-height: 1;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: #04151d;
    background: var(--accent);
    box-shadow: 0 12px 30px rgba(22, 199, 216, 0.18);
}

.button-primary:hover {
    box-shadow: 0 16px 36px rgba(22, 199, 216, 0.25);
}

.button-secondary {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
}

.button-secondary.dark {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.78);
}

.inline-actions,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
}

/* Home hero */
.hero {
    position: relative;
    overflow: hidden;
}

.creative-hero {
    min-height: min(620px, calc(100svh - var(--header)));
    display: grid;
    align-items: center;
    padding: clamp(44px, 5vw, 62px) 0;
}

.creative-hero::before {
    content: "";
    position: absolute;
    width: min(620px, 52vw);
    aspect-ratio: 1;
    right: -16vw;
    top: -42%;
    border: 1px solid rgba(22, 199, 216, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
    align-items: center;
    gap: clamp(34px, 5vw, 68px);
}

.hero-copy h1 {
    max-width: 760px;
    font-size: 3.35rem;
}

.hero-lede {
    max-width: 690px;
    margin-top: 22px;
    color: #bdd0d7;
    font-size: 1.12rem;
}

.hero-visual {
    position: relative;
    min-height: clamp(315px, 33vw, 420px);
    display: grid;
    place-items: center;
    isolation: isolate;
}

.hero-visual img {
    width: min(560px, 108%);
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 32px 54px rgba(0, 0, 0, 0.34));
}

.halo {
    position: absolute;
    z-index: -1;
    width: 76%;
    aspect-ratio: 1;
    border: 1px solid rgba(22, 199, 216, 0.24);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 199, 216, 0.14), transparent 62%);
}

.metric {
    position: absolute;
    min-width: 142px;
    padding: 12px 14px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    color: var(--paper);
    background: rgba(5, 24, 36, 0.78);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.metric strong,
.metric span {
    display: block;
}

.metric strong {
    font-size: 0.87rem;
}

.metric span {
    margin-top: 2px;
    color: #a9c2ca;
    font-size: 0.72rem;
}

.metric-one { top: 7%; right: 0; }
.metric-two { bottom: 15%; left: -3%; }
.metric-three { right: 2%; bottom: 3%; }

/* Page heroes */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 7vw, 90px) 0;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -58% auto;
    width: min(560px, 48vw);
    aspect-ratio: 1;
    border: 1px solid rgba(22, 199, 216, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
    align-items: center;
    gap: clamp(32px, 6vw, 82px);
}

.page-hero-copy h1,
.page-hero .narrow h1 {
    max-width: 780px;
    font-size: 3.2rem;
}

.page-hero-copy > p:last-child,
.page-hero .narrow > p:last-child {
    max-width: 720px;
    margin-top: 20px;
    color: #bfd1d8;
    font-size: 1.1rem;
}

.page-hero-art {
    position: relative;
    min-height: 260px;
    display: grid;
    place-items: center;
}

.page-hero-art::before {
    content: "";
    position: absolute;
    width: 74%;
    aspect-ratio: 1;
    border: 1px solid rgba(22, 199, 216, 0.2);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 199, 216, 0.13), transparent 64%);
}

.page-hero-art img {
    position: relative;
    z-index: 1;
    width: min(440px, 112%);
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.34));
}

.compact-hero {
    padding-block: clamp(52px, 6vw, 76px);
}

/* Marquee */
.marquee-band {
    overflow: hidden;
    padding: 11px 0;
    border-block: 1px solid rgba(7, 42, 56, 0.13);
    background: #f7fbfa;
}

.marquee-band.slim {
    padding-block: 8px;
}

.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    will-change: transform;
}

.marquee-track + .marquee-track {
    margin-top: 6px;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    color: #183442;
    font-size: 0.86rem;
    font-weight: 760;
}

.marquee-track span::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-inline: 13px;
    border-radius: 50%;
    background: var(--accent);
}

.marquee-right span {
    color: #617985;
}

/* Linked ecosystem wordmarks */
.ecosystem-section {
    overflow: hidden;
    padding-block: 48px 42px;
    border-block: 1px solid var(--line);
    background: #f8fbfb;
}

.ecosystem-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.65fr);
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 24px;
}

.ecosystem-heading h2 {
    font-size: 2rem;
}

.ecosystem-heading > p {
    max-width: 540px;
    justify-self: end;
    color: var(--muted);
}

.logo-marquee-window {
    width: 100%;
    margin-block: -14px -18px;
    padding-block: 14px 34px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.logo-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    animation: logo-marquee-flow 34s linear infinite;
    will-change: transform;
}

.logo-marquee-window:hover .logo-marquee-track,
.logo-marquee-window:focus-within .logo-marquee-track {
    animation-play-state: paused;
}

.logo-marquee-group {
    display: flex;
    gap: 12px;
    padding-right: 12px;
}

.domain-link {
    --domain-colour: #087987;
    position: relative;
    z-index: 1;
    width: 236px;
    height: 94px;
    flex: 0 0 236px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 14px 17px;
    overflow: hidden;
    border: 1px solid rgba(14, 54, 70, 0.13);
    border-radius: var(--radius);
    color: #50636d;
    background: rgba(255, 255, 255, 0.88);
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.domain-link::before {
    content: "";
    width: 22px;
    height: 3px;
    margin-bottom: 5px;
    border-radius: 3px;
    background: #9ba8ae;
    transition: width 180ms ease, background-color 180ms ease;
}

.domain-link:hover,
.domain-link:focus-visible {
    z-index: 3;
    color: var(--domain-colour);
    border-color: var(--domain-colour);
    background: #fff;
    box-shadow: 0 12px 26px rgba(6, 28, 40, 0.13);
    transform: translateY(-2px);
}

.domain-link:hover::before,
.domain-link:focus-visible::before {
    width: 38px;
    background: var(--domain-colour);
}

.domain-name {
    min-height: 1.1em;
    display: block;
    overflow: visible;
    font-size: 0.96rem;
    font-weight: 850;
    line-height: 1.1;
    white-space: nowrap;
}

.domain-role {
    min-height: 2.5em;
    color: #5f717a;
    font-size: 0.67rem;
    font-weight: 680;
    line-height: 1.25;
    text-transform: uppercase;
}

.domain-resilience { --domain-colour: #087987; }
.domain-sustainable { --domain-colour: #2f8249; }
.domain-ai { --domain-colour: #5262a8; }
.domain-neuromorphic { --domain-colour: #a85e35; }
.domain-spectrum { --domain-colour: #9c4060; }
.domain-edge { --domain-colour: #356c9a; }
.domain-interoperability { --domain-colour: #717338; }
.domain-commercial { --domain-colour: #247b6d; }

.ecosystem-note {
    margin-top: 14px;
    color: #60727b;
    font-size: 0.72rem;
}

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

/* Scroll-filled SVG statements */
.svg-fill-section {
    overflow: hidden;
    padding-block: clamp(54px, 6vw, 76px);
    background: var(--dark-gradient);
}

.svg-fill-shell {
    display: grid;
    gap: 24px;
}

.svg-fill-header {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 32px;
}

.svg-fill-header h2 {
    max-width: 620px;
    color: #fff;
    font-size: 2.15rem;
}

.svg-fill-header > p {
    max-width: 540px;
    justify-self: end;
    color: var(--muted-light);
}

.svg-fill-art {
    display: block;
    width: 100%;
    height: auto;
    border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.svg-type-base,
.svg-type-fill {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 94px;
    font-weight: 820;
    letter-spacing: 0;
}

.svg-type-base {
    fill: rgba(219, 240, 244, 0.045);
    stroke: rgba(196, 226, 232, 0.17);
    stroke-width: 1.25px;
}

.svg-type-fill {
    fill: url(#svg-text-gradient);
}

.svg-line-secondary {
    font-size: 82px;
}

.svg-signal-path {
    fill: none;
    stroke: url(#svg-path-gradient);
    stroke-width: 3px;
    stroke-linecap: round;
}

.svg-fill-evidence {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    color: var(--muted-light);
    font-size: 0.9rem;
}

.svg-fill-evidence span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.svg-fill-evidence span::before {
    content: "";
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 4px rgba(22, 199, 216, 0.1);
}

/* Shared layouts */
.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(34px, 7vw, 94px);
}

.split > p {
    color: var(--muted);
    font-size: 1.25rem;
}

.section-dark .split > p {
    color: var(--muted-light);
}

.section-heading {
    max-width: 780px;
    margin-bottom: clamp(30px, 4.5vw, 50px);
}

.section-heading h2 {
    max-width: 740px;
}

.visual-split {
    align-items: center;
}

.visual-copy {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.visual-copy img,
.funding-visual img,
.contact-card > img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(5, 30, 42, 0.18));
}

.visual-copy p {
    color: var(--muted);
}

.image-section,
.service-preview,
.neuro-highlight-section,
.funding-visual,
.solution-stage,
.contact-stage {
    overflow: hidden;
}

.image-section::before,
.service-preview::before,
.neuro-highlight-section::before,
.funding-visual::before,
.solution-stage::before,
.contact-stage::before {
    content: "";
    position: absolute;
    width: min(520px, 48vw);
    aspect-ratio: 1;
    right: -19%;
    top: -48%;
    border: 1px solid rgba(22, 199, 216, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

/* Cards and content systems */
.card-grid {
    display: grid;
    gap: 16px;
}

.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.feature-card,
.challenge-card,
.values-grid article,
.neuro-grid article {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.feature-card {
    position: relative;
    min-height: 230px;
    padding: 24px;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -38px;
    width: 100px;
    aspect-ratio: 1;
    border: 1px solid rgba(22, 199, 216, 0.16);
    border-radius: 50%;
}

.feature-card:nth-child(2n)::after {
    border-color: rgba(105, 223, 53, 0.23);
}

.feature-card h2,
.feature-card h3 {
    margin-top: 22px;
}

.feature-card h2 {
    font-size: 1.68rem;
}

.feature-card p,
.values-grid p,
.neuro-grid p {
    margin-top: 13px;
    color: var(--muted);
}

.card-index,
.feature-card > span,
.neuro-grid article > span {
    color: #0d7f8e;
    font-size: 0.76rem;
    font-weight: 820;
}

.core-portfolio {
    background:
        radial-gradient(circle at 7% 10%, rgba(22, 199, 216, 0.08), transparent 27%),
        linear-gradient(180deg, #fff, #f5f9f9);
}

.core-portfolio .feature-card {
    min-height: 210px;
    padding: 22px;
}

.asset-stack {
    position: relative;
    min-height: 370px;
}

.asset-stack img {
    position: absolute;
    width: 72%;
    max-height: 310px;
    object-fit: contain;
    filter: drop-shadow(0 24px 42px rgba(4, 28, 40, 0.2));
}

.asset-stack img:first-child {
    left: 0;
    bottom: 0;
}

.asset-stack img:last-child {
    top: 0;
    right: 0;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--line-light);
}

.stack-grid > div {
    min-width: 0;
    padding: 25px 22px;
    border-right: 1px solid var(--line-light);
}

.stack-grid > div:last-child {
    border-right: 0;
}

.stack-grid span {
    display: block;
    margin-bottom: 28px;
    color: var(--cyan);
    font-size: 0.74rem;
    font-weight: 820;
}

.stack-grid strong {
    display: block;
    font-size: 1.08rem;
}

.stack-grid p {
    margin-top: 9px;
    color: var(--muted-light);
    font-size: 0.9rem;
}

/* Swiper carousel */
.evidence-slider-section,
.project-slider-section {
    padding-block: clamp(50px, 5.5vw, 68px);
    background:
        radial-gradient(circle at 12% 0%, rgba(22, 199, 216, 0.08), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(105, 223, 53, 0.07), transparent 25%),
        #f6f9fa;
}

.evidence-slider-section .section-heading,
.project-slider-section .section-heading {
    margin-bottom: clamp(24px, 3vw, 34px);
}

.ad-carousel {
    max-width: 1120px;
    margin-inline: auto;
    padding: 0;
    overflow: hidden !important;
}

.ad-carousel .swiper-wrapper {
    align-items: stretch;
}

.ad-carousel-slide {
    height: auto !important;
    min-height: 372px;
    display: grid !important;
    grid-template-columns: minmax(310px, 0.84fr) minmax(0, 1.16fr);
    overflow: hidden;
    border: 1px solid rgba(8, 45, 60, 0.13);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: none;
}

.slide-media {
    position: relative;
    min-width: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
    background:
        radial-gradient(circle at 50% 45%, rgba(22, 199, 216, 0.23), transparent 34%),
        radial-gradient(circle at 18% 14%, rgba(105, 223, 53, 0.13), transparent 27%),
        linear-gradient(145deg, #06131f, #0a2c3e 72%, #0b3129);
}

.slide-media::after {
    content: "";
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.slide-media img {
    position: relative;
    z-index: 1;
    width: min(410px, 100%);
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.32));
}

.slide-copy {
    min-width: 0;
    display: grid;
    align-content: center;
    padding: clamp(30px, 4.3vw, 50px);
    background:
        radial-gradient(circle at 91% 8%, rgba(105, 223, 53, 0.08), transparent 27%),
        linear-gradient(145deg, #fff, #f7fbfb);
}

.slide-copy > span {
    width: max-content;
    display: inline-flex;
    margin-bottom: 18px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #086d78;
    background: rgba(22, 199, 216, 0.12);
    font-size: 0.73rem;
    font-weight: 820;
}

.slide-copy h3 {
    font-size: 1.9rem;
}

.slide-copy p {
    max-width: 570px;
    margin-top: 16px;
    color: var(--muted);
}

.slide-copy ul {
    display: grid;
    gap: 8px;
    margin: 21px 0 0;
    padding: 0;
    list-style: none;
}

.slide-copy li {
    position: relative;
    padding-left: 17px;
    color: #294354;
    font-size: 0.92rem;
    font-weight: 680;
}

.slide-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.69em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.ad-carousel-ui {
    min-height: 52px;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 17px;
}

.ad-carousel-fraction {
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 820;
    font-variant-numeric: tabular-nums;
}

.ad-carousel-pagination {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
}

.ad-carousel-pagination .swiper-pagination-bullet {
    width: 26px;
    height: 4px;
    margin: 0 !important;
    border-radius: 999px;
    background: #9aacb3;
    opacity: 0.42;
    transition: width 180ms ease, opacity 180ms ease, background 180ms ease;
}

.ad-carousel-pagination .swiper-pagination-bullet-active {
    width: 46px;
    background: var(--accent);
    opacity: 1;
}

.ad-carousel-nav {
    display: flex;
    gap: 8px;
}

.ad-carousel-prev,
.ad-carousel-next {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: transparent;
    background: var(--paper);
    box-shadow: 0 9px 24px rgba(6, 28, 40, 0.09);
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ad-carousel-prev::before,
.ad-carousel-next::before {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--ink);
    border-right: 2px solid var(--ink);
}

.ad-carousel-prev::before {
    margin-left: 4px;
    transform: rotate(-135deg);
}

.ad-carousel-next::before {
    margin-right: 4px;
    transform: rotate(45deg);
}

.ad-carousel-prev:hover,
.ad-carousel-next:hover {
    border-color: transparent;
    background: var(--accent);
    transform: translateY(-2px);
}

.ad-carousel-prev.swiper-button-disabled,
.ad-carousel-next.swiper-button-disabled {
    cursor: default;
    opacity: 0.42;
}

/* Word fill */
.word-fill-section {
    min-height: min(560px, 68vh);
    display: grid;
    align-items: center;
    overflow: hidden;
}

.page-word-section {
    min-height: min(470px, 58vh);
}

.word-fill-wrap {
    max-width: 1100px;
}

.word-fill-copy {
    max-width: 1050px;
    color: rgba(255, 255, 255, 0.065);
    font-size: 3.25rem;
    font-weight: 770;
    line-height: 1.18;
    text-shadow: 0 0 14px rgba(22, 199, 216, 0.025);
}

.word-fill-ready .fill-word {
    color: rgba(255, 255, 255, 0.065);
    text-shadow: 0 0 14px rgba(22, 199, 216, 0.025);
    transition: color 120ms linear;
}

.word-fill-ready .fill-word.is-filled {
    color: #fff;
    text-shadow: 0 0 17px rgba(22, 199, 216, 0.14);
}

/* Horizontal scroll */
.horizontal-scroll-section {
    overflow: clip;
    background: var(--paper);
}

.horizontal-viewport {
    width: 100%;
    overflow: hidden;
}

.horizontal-track {
    width: max-content;
    display: flex;
    gap: 16px;
    padding: 0 max(24px, calc((100vw - var(--max)) / 2)) 26px;
}

.horizontal-panel {
    width: min(500px, 40vw);
    min-height: 300px;
    display: grid;
    align-content: end;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 88% 10%, rgba(22, 199, 216, 0.12), transparent 27%),
        linear-gradient(145deg, #fff, #eef6f7);
    box-shadow: var(--shadow-sm);
}

.horizontal-panel:nth-child(even) {
    background:
        radial-gradient(circle at 88% 10%, rgba(105, 223, 53, 0.13), transparent 27%),
        linear-gradient(145deg, #fff, #f1f8f1);
}

.horizontal-panel span {
    margin-bottom: auto;
    color: #0c7a88;
    font-size: 0.75rem;
    font-weight: 820;
}

.horizontal-panel p {
    margin-top: 11px;
    color: var(--muted);
}

/* Proof, CTA and footer */
.proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: clamp(34px, 7vw, 88px);
}

.proof-copy p:last-child {
    margin-top: 18px;
    color: var(--muted);
}

.showcase-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-md);
}

.showcase-card > img {
    width: 100%;
    min-height: 390px;
    padding: 25px;
    object-fit: contain;
    background: var(--dark-gradient);
}

.proof-list {
    display: grid;
}

.proof-list > div {
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
}

.proof-list > div:last-child {
    border-bottom: 0;
}

.proof-list strong,
.proof-list span {
    display: block;
}

.proof-list span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.88rem;
}

.cta-panel {
    padding: 0 0 clamp(60px, 7vw, 86px);
    background: var(--paper);
}

.cta-inner {
    min-height: 210px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    padding: clamp(30px, 5vw, 54px);
    border: 1px solid rgba(22, 199, 216, 0.18);
    border-radius: var(--radius-lg);
    color: var(--paper);
    background: var(--footer-gradient);
    box-shadow: var(--shadow-md);
}

.cta-inner h2 {
    max-width: 780px;
    font-size: 2.7rem;
}

.compact-cta {
    padding-block: 48px;
}

.compact-cta .split {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: var(--paper);
    background: var(--footer-gradient);
}

.footer-glow {
    position: absolute;
    width: 380px;
    aspect-ratio: 1;
    left: 42%;
    bottom: -290px;
    border: 1px solid rgba(22, 199, 216, 0.15);
    border-radius: 50%;
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 1.3fr) minmax(150px, 0.55fr) minmax(250px, 0.8fr);
    gap: clamp(36px, 7vw, 90px);
    padding-block: 66px 48px;
}

.footer-grid > div:first-child p {
    max-width: 480px;
    margin-top: 18px;
    color: #b9ced5;
}

.footer-brand img {
    width: 52px;
    height: 44px;
}

.footer-grid h2 {
    margin-bottom: 15px;
    font-size: 0.92rem;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-grid a:not(.brand),
.footer-grid > div:last-child p {
    color: #bed1d7;
    font-size: 0.9rem;
}

.footer-grid a:not(.brand):hover {
    color: var(--paper);
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 20px;
    border-top: 1px solid var(--line-light);
    color: #adc3cb;
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Service, solution and project pages */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-grid article {
    min-width: 0;
    display: grid;
    align-content: start;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.service-grid article img {
    width: 100%;
    height: 150px;
    margin-bottom: 18px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(4, 31, 43, 0.18));
}

.service-grid article > span {
    color: #087785;
    font-size: 0.74rem;
    font-weight: 820;
}

.service-grid h3 {
    margin-top: 11px;
}

.service-grid p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 0.92rem;
}

.reveal-panel + .word-fill-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-stack {
    display: grid;
    border-block: 1px solid var(--line-light);
}

.process-stack > div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line-light);
}

.process-stack > div:last-child {
    border-bottom: 0;
}

.process-stack p {
    color: var(--muted-light);
}

.solution-list {
    display: grid;
    gap: 15px;
}

.solution-row {
    min-width: 0;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) minmax(210px, 0.42fr);
    align-items: center;
    gap: clamp(20px, 4vw, 54px);
    min-height: 235px;
    padding: 22px 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 92% 20%, rgba(22, 199, 216, 0.09), transparent 27%),
        #fff;
    box-shadow: var(--shadow-sm);
}

.solution-row:nth-child(even) {
    background:
        radial-gradient(circle at 92% 20%, rgba(105, 223, 53, 0.1), transparent 27%),
        #fff;
}

.solution-row > span {
    color: #087987;
    font-size: 0.76rem;
    font-weight: 820;
}

.solution-row h2 {
    font-size: 1.95rem;
}

.solution-row p {
    max-width: 650px;
    margin-top: 11px;
    color: var(--muted);
}

.solution-row img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 19px 30px rgba(4, 31, 43, 0.17));
}

.compact-row-list,
.compact-list .container {
    display: grid;
    border-top: 1px solid var(--line);
}

.compact-row {
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: 28px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.compact-row span {
    color: var(--muted);
}

/* Case studies */
.case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.case-grid article {
    min-width: 0;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.case-grid article img {
    width: 100%;
    height: 230px;
    margin-bottom: 22px;
    object-fit: contain;
    background: var(--dark-gradient);
    border-radius: var(--radius);
}

.case-grid article h2 {
    font-size: 1.85rem;
}

.case-grid article > p:not(.eyebrow) {
    margin-top: 13px;
    color: var(--muted);
}

.case-grid ul,
.outcome-list {
    display: grid;
    gap: 7px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.case-grid li,
.outcome-list li {
    position: relative;
    padding-left: 17px;
    color: #2b4655;
    font-size: 0.9rem;
    font-weight: 680;
}

.case-grid li::before,
.outcome-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* About, ACT, funding and neuromorphic */
.values-grid,
.neuro-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.values-grid article,
.neuro-grid article {
    padding: 24px;
}

.challenge-grid {
    display: grid;
    gap: 18px;
}

.challenge-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
    align-items: center;
    gap: 34px;
    padding: 28px;
}

.challenge-card img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 22px 36px rgba(4, 31, 43, 0.18));
}

.challenge-card p {
    margin-top: 14px;
    color: var(--muted);
}

.challenge-card ul {
    margin: 16px 0 0;
    padding-left: 19px;
    color: #294654;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.timeline-item {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.76);
}

.timeline-item > span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 50%;
    color: #05333b;
    background: var(--accent);
    font-size: 0.78rem;
    font-weight: 820;
}

.timeline-item p {
    margin-top: 10px;
    color: var(--muted);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--line);
}

.impact-grid > div {
    padding: 22px;
    border-right: 1px solid var(--line);
}

.impact-grid > div:last-child {
    border-right: 0;
}

.impact-grid strong,
.impact-grid span {
    display: block;
}

.impact-grid strong {
    font-size: 1.08rem;
}

.impact-grid span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.86rem;
}

.neuro-architecture {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.neuro-architecture article {
    min-width: 0;
    padding: 25px;
    border-right: 1px solid var(--line);
}

.neuro-architecture article:last-child {
    border-right: 0;
}

.neuro-architecture span {
    color: #087987;
    font-size: 0.73rem;
    font-weight: 820;
    text-transform: uppercase;
}

.neuro-architecture h3 {
    margin-top: 28px;
}

.neuro-architecture p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 0.9rem;
}

.neuro-usecases {
    display: grid;
    border-block: 1px solid var(--line-light);
}

.neuro-usecases > div {
    display: grid;
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
    gap: 22px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
}

.neuro-usecases > div:last-child {
    border-bottom: 0;
}

.neuro-usecases span {
    color: var(--muted-light);
}

.metric-table {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.metric-table > div {
    display: grid;
    grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
    gap: 24px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
}

.metric-table > div:last-child {
    border-bottom: 0;
}

.metric-table span {
    color: var(--muted);
}

/* New publishing content components */
.trust-strip {
    padding: 24px 0;
    border-block: 1px solid var(--line);
    background: #f7fbfa;
}

.trust-strip .container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip div > div {
    padding: 6px 22px;
    border-right: 1px solid var(--line);
}

.trust-strip div > div:last-child {
    border-right: 0;
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.82rem;
}

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

.detail-grid article {
    padding: 25px;
    border-top: 3px solid var(--cyan);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: #f3f8f8;
}

.detail-grid article:nth-child(2) { border-color: var(--green); }
.detail-grid article:nth-child(3) { border-color: var(--amber); }

.detail-grid p {
    margin-top: 11px;
    color: var(--muted);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 19px;
}

.tag-list span {
    display: inline-flex;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #244451;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
    align-items: stretch;
    gap: 20px;
}

.contact-card,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.contact-card {
    padding: 26px;
}

.contact-card > img {
    height: 210px;
    margin-bottom: 22px;
}

.contact-card h2 {
    font-size: 1.55rem;
}

.contact-card p {
    margin-top: 16px;
    color: var(--muted);
}

.contact-card a {
    color: #087584;
    font-weight: 720;
    overflow-wrap: anywhere;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
    padding: clamp(25px, 4vw, 40px);
}

.field {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 7px;
}

.field-full,
.contact-form > .button,
.contact-form > .form-note,
.contact-form > .form-status,
.contact-form > .consent-row {
    grid-column: 1 / -1;
}

.contact-form label {
    color: #203c4b;
    font-size: 0.84rem;
    font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid rgba(12, 43, 58, 0.2);
    border-radius: 7px;
    color: var(--text);
    background: #fbfdfd;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: #0f9faf;
    background: var(--paper);
    box-shadow: 0 0 0 4px rgba(22, 199, 216, 0.12);
}

.contact-form .button {
    width: max-content;
    min-width: 150px;
}

.contact-form .button[disabled] {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.consent-row {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
}

.consent-row input {
    width: 17px;
    min-height: 17px;
    margin: 3px 0 0;
    accent-color: #0e9bab;
}

.consent-row label {
    color: var(--muted);
    font-weight: 500;
    line-height: 1.5;
}

.consent-row a {
    color: #087584;
    text-decoration: underline;
}

.form-note,
.form-status {
    color: var(--muted);
    font-size: 0.82rem;
}

.form-status {
    min-height: 1.45em;
    font-weight: 680;
}

.form-status.is-success { color: #16703b; }
.form-status.is-error { color: #b43131; }

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Legal pages */
.legal-copy {
    max-width: 880px;
}

.legal-copy > * + * {
    margin-top: 18px;
}

.legal-copy h2 {
    margin-top: 40px;
    font-size: 1.85rem;
}

.legal-copy h3 {
    margin-top: 28px;
}

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

.legal-copy ul {
    display: grid;
    gap: 7px;
    padding-left: 20px;
}

.legal-copy a {
    color: #087584;
    text-decoration: underline;
}

/* Motion preparation */
.text-reveal .word {
    display: inline-block;
}

/* Tablet navigation */
@media (max-width: 1060px) {
    :root {
        --header: 64px;
    }

    h1,
    .hero-copy h1,
    .page-hero-copy h1,
    .page-hero .narrow h1 {
        font-size: 3.05rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .word-fill-copy {
        font-size: 2.8rem;
    }

    .cta-inner h2 {
        font-size: 2.4rem;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        z-index: 1200;
        width: 100%;
        height: 100svh;
        display: grid;
        align-content: start;
        gap: 4px;
        padding: calc(var(--header) + 34px) clamp(24px, 7vw, 70px) 38px;
        overflow-y: auto;
        overscroll-behavior: contain;
        color: var(--paper);
        background: var(--footer-gradient);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-18px);
        transition: opacity 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms ease;
    }

    body.nav-open .primary-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav > a,
    .nav-item > a {
        width: 100%;
        min-height: 0;
        padding: 7px 0;
        border-radius: 0;
        color: var(--paper);
        background: transparent !important;
        font-size: 2.45rem;
        font-weight: 790;
        line-height: 1.08;
    }

    .primary-nav > a::after,
    .nav-item > a::after {
        content: "";
        flex: 1;
        height: 1px;
        margin-left: 18px;
        background: linear-gradient(90deg, rgba(22, 199, 216, 0.45), transparent);
    }

    .primary-nav > a,
    .primary-nav > .nav-item {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 280ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.nav-open .primary-nav > a,
    body.nav-open .primary-nav > .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    body.nav-open .primary-nav > :nth-child(1) { transition-delay: 60ms; }
    body.nav-open .primary-nav > :nth-child(2) { transition-delay: 95ms; }
    body.nav-open .primary-nav > :nth-child(3) { transition-delay: 130ms; }
    body.nav-open .primary-nav > :nth-child(4) { transition-delay: 165ms; }
    body.nav-open .primary-nav > :nth-child(5) { transition-delay: 200ms; }
    body.nav-open .primary-nav > :nth-child(6) { transition-delay: 235ms; }
    body.nav-open .primary-nav > :nth-child(7) { transition-delay: 270ms; }

    .primary-nav .nav-cta {
        width: max-content;
        min-height: 44px;
        margin: 12px 0 0;
        padding: 0 17px;
        border-radius: 7px;
        color: #04151d;
        font-size: 0.95rem;
        background: var(--accent) !important;
    }

    .primary-nav .nav-cta::after {
        display: none;
    }

    .nav-item {
        display: grid;
        gap: 7px;
    }

    .mega-menu,
    .mega-compact,
    .primary-nav > .has-mega:nth-child(2) .mega-menu,
    .primary-nav > .has-mega:nth-child(4) .mega-menu {
        position: static;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin: 0 0 8px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .mega-menu::before,
    .mega-copy {
        display: none;
    }

    .mega-menu a,
    .mega-compact a {
        padding: 10px;
        border-color: rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.055);
    }

    .mega-menu a strong {
        font-size: 0.8rem;
    }

    .mega-menu a em {
        display: none;
    }

    .card-grid.four,
    .service-grid,
    .values-grid,
    .neuro-grid,
    .timeline,
    .neuro-architecture {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .neuro-architecture article:nth-child(2) {
        border-right: 0;
    }

    .neuro-architecture article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
        gap: 30px;
    }

    .metric {
        display: none;
    }

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

    .stack-grid > div:nth-child(2) {
        border-right: 0;
    }

    .stack-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line-light);
    }

    .ad-carousel-slide {
        grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 36px), var(--max));
    }

    .section {
        padding-block: 60px;
    }

    h1,
    .hero-copy h1,
    .page-hero-copy h1,
    .page-hero .narrow h1 {
        font-size: 2.72rem;
    }

    h2 {
        font-size: 2.08rem;
    }

    .word-fill-copy {
        font-size: 2.45rem;
    }

    .cta-inner h2 {
        font-size: 2.2rem;
    }

    .creative-hero {
        min-height: auto;
        padding-block: 50px 56px;
    }

    .hero-grid,
    .page-hero-grid,
    .split,
    .proof-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 680px;
    }

    .hero-visual {
        min-height: 290px;
    }

    .hero-visual img {
        width: min(520px, 95%);
    }

    .page-hero {
        padding-block: 52px;
    }

    .page-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
        gap: 24px;
    }

    .page-hero-art {
        min-height: 220px;
    }

    .page-hero-art img {
        max-height: 250px;
    }

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

    .visual-copy img {
        max-height: 280px;
    }

    .card-grid.two,
    .case-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 0;
    }

    .asset-stack {
        min-height: 330px;
    }

    .ad-carousel-slide {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .slide-media {
        min-height: 280px;
        padding: 24px;
    }

    .slide-media img {
        max-height: 245px;
    }

    .slide-copy {
        min-height: 315px;
        padding: 30px;
    }

    .horizontal-viewport {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .horizontal-track {
        padding-inline: 18px;
    }

    .horizontal-panel {
        width: min(82vw, 430px);
        min-height: 280px;
        scroll-snap-align: center;
    }

    .showcase-card {
        grid-template-columns: 1fr;
    }

    .showcase-card > img {
        min-height: 280px;
    }

    .cta-inner,
    .compact-cta .split {
        grid-template-columns: 1fr;
    }

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .solution-row {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .solution-row img {
        grid-column: 2;
        width: min(310px, 100%);
        justify-self: start;
    }

    .challenge-card {
        grid-template-columns: 1fr;
    }

    .challenge-card img {
        max-height: 220px;
    }

    .impact-grid,
    .trust-strip .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .impact-grid > div:nth-child(2),
    .trust-strip div > div:nth-child(2) {
        border-right: 0;
    }

    .impact-grid > div:nth-child(-n + 2),
    .trust-strip div > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .word-fill-section,
    .page-word-section {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    :root {
        --header: 60px;
    }

    body {
        font-size: 15.5px;
    }

    .container {
        width: min(calc(100% - 28px), var(--max));
    }

    h1,
    .hero-copy h1,
    .page-hero-copy h1,
    .page-hero .narrow h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.95rem;
    }

    .section {
        padding-block: 52px;
    }

    .evidence-slider-section,
    .project-slider-section {
        padding-block: 44px;
    }

    .evidence-slider-section .section-heading,
    .project-slider-section .section-heading {
        margin-bottom: 22px;
    }

    .brand span {
        font-size: 0.96rem;
    }

    .brand img {
        width: 40px;
        height: 36px;
    }

    .footer-brand img {
        width: 50px;
        height: 42px;
    }

    .ecosystem-section {
        padding-block: 40px 36px;
    }

    .ecosystem-heading {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .ecosystem-heading h2 {
        font-size: 1.75rem;
    }

    .ecosystem-heading > p {
        justify-self: start;
    }

    .domain-link {
        width: 220px;
        height: 92px;
        flex-basis: 220px;
        padding: 12px 14px;
    }

    .domain-name {
        font-size: 0.88rem;
    }

    .primary-nav {
        padding: calc(var(--header) + 22px) 18px 28px;
    }

    .primary-nav > a,
    .nav-item > a {
        font-size: 1.7rem;
    }

    .mega-menu,
    .mega-compact,
    .primary-nav > .has-mega:nth-child(2) .mega-menu,
    .primary-nav > .has-mega:nth-child(4) .mega-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .creative-hero {
        padding-block: 42px 48px;
    }

    .page-hero {
        padding-block: 44px;
    }

    .hero-actions,
    .inline-actions {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .hero-actions .button,
    .inline-actions .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 250px;
    }

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .page-hero-art {
        min-height: 135px;
    }

    .page-hero-art img {
        width: min(250px, 72%);
        max-height: 150px;
    }

    .page-hero-art::before {
        width: 170px;
    }

    .card-grid.four,
    .service-grid,
    .values-grid,
    .neuro-grid,
    .timeline,
    .neuro-architecture,
    .stack-grid {
        grid-template-columns: 1fr;
    }

    .stack-grid > div,
    .stack-grid > div:nth-child(2),
    .neuro-architecture article,
    .neuro-architecture article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .neuro-architecture article,
    .neuro-architecture article:nth-child(2) {
        border-bottom-color: var(--line);
    }

    .stack-grid > div:last-child,
    .neuro-architecture article:last-child {
        border-bottom: 0;
    }

    .asset-stack {
        min-height: 280px;
    }

    .ad-carousel-ui {
        grid-template-columns: 70px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .ad-carousel-pagination .swiper-pagination-bullet {
        width: 16px;
    }

    .ad-carousel-pagination .swiper-pagination-bullet-active {
        width: 28px;
    }

    .ad-carousel-prev,
    .ad-carousel-next {
        width: 40px;
        height: 40px;
    }

    .slide-media {
        min-height: 210px;
    }

    .slide-media img {
        max-height: 185px;
    }

    .slide-copy {
        min-height: 0;
        padding: 23px 21px;
    }

    .slide-copy h3 {
        font-size: 1.65rem;
    }

    .ad-carousel-ui {
        min-height: 46px;
        margin-top: 12px;
    }

    .word-fill-copy {
        font-size: 2rem;
    }

    .cta-inner {
        padding: 28px 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-block: 52px 38px;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

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

    .solution-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px;
    }

    .solution-row img {
        grid-column: auto;
        max-height: 170px;
    }

    .compact-row,
    .process-stack > div,
    .neuro-usecases > div,
    .metric-table > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .case-grid article {
        padding: 20px;
    }

    .case-grid article img {
        height: 195px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .contact-grid {
        gap: 14px;
    }

    .contact-card {
        padding: 22px;
    }

    .contact-card > img {
        height: 160px;
        margin-bottom: 16px;
    }

    .field-full,
    .contact-form > .button,
    .contact-form > .form-note,
    .contact-form > .form-status,
    .contact-form > .consent-row {
        grid-column: auto;
    }

    .contact-form .button {
        width: 100%;
    }

    .svg-fill-header {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svg-fill-header h2 {
        font-size: 1.82rem;
    }

    .svg-fill-header > p {
        justify-self: start;
    }

    .svg-fill-evidence {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 420px) {
    h1,
    .hero-copy h1,
    .page-hero-copy h1,
    .page-hero .narrow h1 {
        font-size: 2.12rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .word-fill-copy {
        font-size: 1.72rem;
    }

    .mega-menu,
    .mega-compact,
    .primary-nav > .has-mega:nth-child(2) .mega-menu,
    .primary-nav > .has-mega:nth-child(4) .mega-menu {
        grid-template-columns: 1fr;
    }

    .button {
        padding-inline: 15px;
        font-size: 0.9rem;
    }

    .ad-carousel-ui {
        grid-template-columns: 1fr auto;
    }

    .ad-carousel-pagination {
        display: none;
    }

    .impact-grid,
    .trust-strip .container {
        grid-template-columns: 1fr;
    }

    .impact-grid > div,
    .impact-grid > div:nth-child(2),
    .trust-strip div > div,
    .trust-strip div > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .impact-grid > div:last-child,
    .trust-strip div > div:last-child {
        border-bottom: 0;
    }
}

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

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

    .marquee-track {
        transform: translateX(-50%) !important;
    }

    .logo-marquee-track {
        animation: none !important;
        transform: none !important;
    }

    .logo-marquee-group[aria-hidden="true"] {
        display: none;
    }

    .word-fill-ready .fill-word {
        color: #fff !important;
        text-shadow: none !important;
    }
}
