@font-face {
    font-family: "UTS Inter";
    src: url("../fonts/inter-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "UTS Inter";
    src: url("../fonts/inter-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #010104;
    --bg-soft: #111116;
    --panel: rgba(18, 18, 22, 0.84);
    --panel-soft: rgba(255, 255, 255, 0.04);
    --panel-strong: rgba(255, 255, 255, 0.07);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #ffffff;
    --text-soft: rgba(224, 224, 230, 0.88);
    --text-muted: rgba(224, 224, 230, 0.62);
    --accent: #cffe25;
    --accent-soft: #f3ff9b;
    --accent-dark: #050508;
    --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.42);
    --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.28);
    --content-width: 1260px;
    --header-width: 1272px;
    --section-space: 116px;
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "UTS Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 7% 0%, rgba(255, 255, 255, 0.1), transparent 16%),
        radial-gradient(circle at 52% -12%, rgba(207, 254, 37, 0.07), transparent 22%),
        linear-gradient(180deg, #030304 0%, #010104 24%, #010104 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.4px),
        radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.85) 0 1px, transparent 1.3px),
        radial-gradient(circle at 72% 38%, rgba(255, 255, 255, 0.65) 0 0.9px, transparent 1.2px),
        radial-gradient(circle at 38% 68%, rgba(255, 255, 255, 0.7) 0 0.9px, transparent 1.3px),
        radial-gradient(circle at 12% 74%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.4px),
        radial-gradient(circle at 88% 84%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.2px);
    background-size: 320px 320px, 380px 380px, 420px 420px, 480px 480px, 520px 520px, 560px 560px;
    opacity: 0.42;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

html.cms-toolbar-expanded .site-header,
body.cms-toolbar-expanded .site-header {
    top: 46px;
}

.site-shell {
    position: relative;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    padding: 26px 0 0;
    pointer-events: none;
}

.site-header__inner,
.section-shell,
.footer-shell {
    width: min(var(--header-width), calc(100% - 64px));
    margin: 0 auto;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-28px);
    transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header__inner > * {
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(0.04s + (var(--header-order, 0) * 0.08s));
}

body.is-ready .site-header__inner,
body.is-ready .site-header__inner > * {
    opacity: 1;
    transform: translateY(0);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    justify-self: start;
    --header-order: 0;
}

.site-brand__mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    box-shadow:
        0 0 28px rgba(207, 254, 37, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-indent: 0.14em;
}

.site-brand__text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    --header-order: 2;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(12, 12, 16, 0.78);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.language-switcher__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 160ms ease, color 160ms ease;
}

.language-switcher__link:hover,
.language-switcher__link.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
}

.language-switcher--drawer {
    justify-self: start;
}

.site-nav--desktop {
    display: flex;
    justify-content: center;
    --header-order: 1;
}

.site-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__item {
    position: relative;
    list-style: none;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
    cursor: pointer;
    transition: color 160ms ease, opacity 160ms ease;
}

.site-nav__link:hover,
.site-nav__item.is-active > .site-nav__link {
    color: var(--accent);
}

.site-nav__link--button {
    appearance: none;
    -webkit-appearance: none;
}

.site-nav__caret {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentcolor;
    border-bottom: 1.5px solid currentcolor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 160ms ease;
}

.site-nav__item--dropdown.is-open .site-nav__caret,
.site-nav__item--dropdown:hover .site-nav__caret {
    transform: rotate(225deg) translateY(-1px);
}

.site-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    display: grid;
    gap: 2px;
    min-width: 280px;
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(12, 12, 16, 0.94);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav__item--dropdown.is-open .site-dropdown,
.site-nav__item--dropdown:hover .site-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-dropdown__link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.45;
    transition: background-color 160ms ease, color 160ms ease;
}

.site-dropdown__link:hover,
.site-dropdown__link.is-active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.site-nav-toggle {
    display: none;
    grid-template-columns: repeat(2, 8px);
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-nav-toggle span {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(207, 254, 37, 0.3);
}

.site-nav-drawer {
    display: none;
}

.site-main {
    position: relative;
    z-index: 1;
}

.section {
    position: relative;
    padding: var(--section-space) 32px;
    overflow: clip;
}

.section-shell {
    position: relative;
    z-index: 2;
    width: min(var(--content-width), 100%);
    margin: 0 auto;
}

.section--hero {
    min-height: 980px;
    padding-top: 180px;
    padding-bottom: 72px;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-backdrop::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 64px;
    width: 188px;
    height: 188px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(207, 254, 37, 0.08) 22%, transparent 72%);
    filter: blur(22px);
    opacity: 0.92;
    animation: hero-glow-pulse 7s ease-in-out infinite;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.05), transparent 24%),
        linear-gradient(180deg, rgba(1, 1, 4, 0.02) 0%, rgba(1, 1, 4, 0.16) 48%, rgba(1, 1, 4, 0.94) 100%);
}

.hero-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.9) 0 1.2px, transparent 1.4px),
        radial-gradient(circle at 27% 9%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.2px),
        radial-gradient(circle at 64% 6%, rgba(255, 255, 255, 0.92) 0 1.3px, transparent 1.5px),
        radial-gradient(circle at 89% 18%, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.3px),
        radial-gradient(circle at 9% 41%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.2px),
        radial-gradient(circle at 77% 36%, rgba(255, 255, 255, 0.88) 0 1.2px, transparent 1.4px),
        radial-gradient(circle at 91% 44%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.2px),
        radial-gradient(circle at 32% 54%, rgba(255, 255, 255, 0.74) 0 1px, transparent 1.2px),
        radial-gradient(circle at 69% 62%, rgba(255, 255, 255, 0.66) 0 1px, transparent 1.2px);
    opacity: 0.8;
    animation: hero-stars-drift 18s linear infinite;
    z-index: 1;
}

.hero-backdrop__planet-shape {
    position: absolute;
    top: 84px;
    left: 50%;
    width: min(68vw, 930px);
    aspect-ratio: 1 / 1;
    transform: translateX(-50%) translateY(26px) scale(1.02);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.96) 0%, rgba(239, 239, 239, 0.9) 14%, rgba(184, 184, 184, 0.48) 28%, rgba(38, 38, 42, 0.34) 44%, rgba(1, 1, 4, 0.94) 60%, rgba(1, 1, 4, 0) 74%),
        radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.08), transparent 16%),
        radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.06), transparent 14%);
    opacity: 0;
    box-shadow:
        0 0 60px rgba(255, 255, 255, 0.05),
        inset 0 -80px 140px rgba(0, 0, 0, 0.6);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, 0.88) 54%, rgba(0, 0, 0, 0.42) 64%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0) 80%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, 0.88) 54%, rgba(0, 0, 0, 0.42) 64%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0) 80%);
    transition: opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1), transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-backdrop__planet-texture {
    position: absolute;
    top: 84px;
    left: 50%;
    width: min(68vw, 930px);
    height: min(68vw, 930px);
    max-width: none;
    object-fit: cover;
    object-position: 50% 16%;
    transform: translateX(-50%) translateY(32px) scale(1.03);
    opacity: 0;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: grayscale(1) contrast(1.24) brightness(0.92);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.98) 46%, rgba(0, 0, 0, 0.84) 54%, rgba(0, 0, 0, 0.38) 64%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0) 80%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.98) 46%, rgba(0, 0, 0, 0.84) 54%, rgba(0, 0, 0, 0.38) 64%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0) 80%);
    transition:
        opacity 1360ms cubic-bezier(0.16, 1, 0.3, 1) 80ms,
        transform 1360ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}

.hero-backdrop__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    z-index: 0;
    mix-blend-mode: normal;
    filter: grayscale(1) saturate(0.8) contrast(1.08) brightness(0.72);
    -webkit-mask-image: none;
    mask-image: none;
}

.media-fallback--orbit {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 23%, rgba(255, 255, 255, 0.26), transparent 19%),
        radial-gradient(circle at 50% 23%, transparent 0 31%, rgba(255, 255, 255, 0.14) 31%, transparent 31.8%),
        radial-gradient(circle at 50% 23%, transparent 0 45%, rgba(207, 254, 37, 0.12) 45%, transparent 45.8%),
        linear-gradient(180deg, rgba(1, 1, 4, 0.88), rgba(1, 1, 4, 1));
}

.hero-particles {
    position: absolute;
    top: 188px;
    left: 50%;
    width: min(720px, 68vw);
    height: min(500px, 42vw);
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
    mix-blend-mode: screen;
    filter: saturate(0.96);
    -webkit-mask-image: radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0.44) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0.44) 78%, rgba(0, 0, 0, 0) 100%);
    transition:
        opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1) 140ms,
        transform 1200ms cubic-bezier(0.16, 1, 0.3, 1) 140ms;
    z-index: 1;
}

.hero-particles__canvas {
    display: block;
    width: 100%;
    height: 100%;
}

body.is-ready .hero-backdrop__planet-shape {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

body.is-ready .hero-backdrop__planet-texture {
    opacity: 0.1;
    transform: translateX(-50%) translateY(0) scale(1);
}

body.is-ready .hero-particles {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.section--hero-has-video .hero-backdrop::before {
    opacity: 0.42;
    filter: blur(28px);
}

.section--hero-has-video .hero-backdrop::after {
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.03), transparent 22%),
        linear-gradient(180deg, rgba(1, 1, 4, 0.02) 0%, rgba(1, 1, 4, 0.18) 46%, rgba(1, 1, 4, 0.94) 100%);
}

.section--hero-has-video .hero-stars {
    opacity: 0.68;
}

.section--hero-has-video .hero-particles {
    width: min(620px, 58vw);
    height: min(420px, 34vw);
    top: 226px;
    filter: saturate(0.9);
}

body.is-ready .section--hero-has-video .hero-particles {
    opacity: 0.52;
}

.section-shell--hero {
    display: flex;
    justify-content: center;
}

.hero-grid,
.hero-copy {
    width: 100%;
}

.hero-copy__surface {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-enter {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: blur(8px);
    transition:
        opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 980ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 980ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--enter-delay, 0s);
    will-change: opacity, transform, filter;
}

body.is-ready .hero-enter {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.eyebrow {
    margin: 0;
    color: var(--accent);
    font-size: 16px;
    line-height: 1.45;
}

.eyebrow--pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(17, 17, 22, 0.72);
    box-shadow: var(--shadow-md);
    color: rgba(243, 255, 155, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.eyebrow--pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.display-title,
.section-title,
.info-card__title,
.office-card__title {
    margin: 0;
    letter-spacing: -0.055em;
}

.display-title {
    max-width: 12ch;
    font-size: clamp(3.35rem, 6.5vw, 5.15rem);
    font-weight: 700;
    line-height: 0.98;
    text-wrap: balance;
}

.section-title {
    max-width: 13ch;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.02;
    text-wrap: balance;
}

.section-copy,
.section-lede,
.hero-caption,
.info-card__copy,
.office-card__text,
.office-card__note,
.office-card__meta,
.footer-copy,
.footer-note,
.footer-statement {
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.section-copy {
    max-width: 720px;
}

.section-copy p,
.section-lede p {
    margin: 0;
}

.section-copy p + p,
.section-lede p + p {
    margin-top: 14px;
}

.section-copy--large {
    max-width: 690px;
}

.section-lede {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.6;
}

.hero-caption {
    color: var(--text-muted);
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-heading--center {
    align-items: center;
    text-align: center;
}

.section-heading--compact {
    gap: 16px;
}

.button-row,
.cta-panel__actions,
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.button-row--center,
.cta-panel__actions {
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 15px 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease;
}

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

.button--primary {
    background: var(--accent);
    color: var(--accent-dark);
    box-shadow: 0 12px 30px rgba(207, 254, 37, 0.16);
}

.button--primary:hover {
    background: var(--accent-soft);
}

.button--ghost,
.button--surface {
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent-dark);
}

.button--ghost:hover,
.button--surface:hover {
    background: #ffffff;
}

.button--small {
    min-height: 48px;
    padding: 12px 22px;
}

.section--content .section-shell,
.section--cta .section-shell,
.section--cards .section-shell,
.section--logos .section-shell,
.section-shell--offices,
.section-shell--form {
    width: min(var(--content-width), 100%);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    align-items: center;
    gap: 72px;
}

.split-grid--reverse > :first-child {
    order: 2;
}

.split-grid--reverse > :last-child {
    order: 1;
}

.section-media {
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(21, 21, 29, 0.86), rgba(7, 7, 10, 0.96));
    box-shadow: var(--shadow-lg);
}

.section-media .media-asset,
.section-media .media-fallback {
    width: 100%;
    min-height: 500px;
    height: 100%;
    object-fit: cover;
}

.media-fallback--grid {
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 15% 15%, rgba(207, 254, 37, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(20, 20, 24, 0.98), rgba(7, 7, 10, 1));
    background-size: 44px 44px, 44px 44px, auto, auto;
}

.card-grid,
.logo-grid,
.office-grid {
    width: 100%;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(144px, 1fr));
    align-items: center;
    gap: 24px 38px;
    margin-top: 34px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.info-card,
.office-card,
.inquiry-form {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(19, 19, 24, 0.94), rgba(8, 8, 11, 0.98)),
        radial-gradient(circle at top left, rgba(207, 254, 37, 0.08), transparent 34%);
    box-shadow: var(--shadow-lg);
}

.info-card,
.office-card {
    padding: 30px;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.info-card:hover,
.office-card:hover {
    transform: translateY(-4px);
    border-color: rgba(207, 254, 37, 0.18);
}

.info-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.info-card__pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(207, 254, 37, 0.08);
}

.icon-mark {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.icon-mark::before,
.icon-mark::after {
    content: "";
    position: absolute;
}

.icon-mark--satellite::before {
    inset: 17px 12px;
    border: 2px solid var(--accent);
    border-radius: 999px;
}

.icon-mark--satellite::after {
    top: 23px;
    left: 24px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text);
}

.icon-mark--chip::before,
.icon-mark--thermal::before,
.icon-mark--materials::before {
    inset: 13px;
    border: 2px solid var(--accent);
    border-radius: 10px;
}

.icon-mark--chip::after {
    inset: 21px;
    border: 2px solid var(--text);
    border-radius: 4px;
}

.icon-mark--ai::before {
    top: 14px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.icon-mark--ai::after {
    left: 18px;
    bottom: 14px;
    width: 18px;
    height: 8px;
    border-top: 2px solid var(--accent);
    border-radius: 999px;
}

.icon-mark--globe::before {
    inset: 11px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.icon-mark--globe::after {
    inset: 11px 24px;
    border-left: 2px solid var(--text);
    border-right: 2px solid var(--text);
    border-radius: 50%;
}

.icon-mark--lab::before {
    top: 12px;
    left: 20px;
    width: 14px;
    height: 24px;
    border: 2px solid var(--accent);
    border-top: 0;
    border-radius: 0 0 10px 10px;
}

.icon-mark--lab::after {
    top: 12px;
    left: 22px;
    width: 10px;
    height: 4px;
    border-radius: 999px;
    background: var(--text);
}

.icon-mark--education::before {
    top: 18px;
    left: 13px;
    width: 28px;
    height: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
}

.icon-mark--education::after {
    top: 30px;
    left: 24px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--text);
}

.icon-mark--industry::before {
    left: 14px;
    bottom: 14px;
    width: 26px;
    height: 20px;
    background: linear-gradient(180deg, var(--accent), var(--accent-soft));
    clip-path: polygon(0 100%, 0 48%, 30% 48%, 30% 28%, 54% 28%, 54% 48%, 100% 48%, 100% 100%);
}

.icon-mark--grant::before {
    inset: 13px;
    border: 2px solid var(--accent);
    border-radius: 8px;
}

.icon-mark--grant::after {
    top: 18px;
    left: 18px;
    width: 18px;
    height: 2px;
    background: var(--text);
    box-shadow: 0 6px 0 var(--text), 0 12px 0 var(--text);
}

.icon-mark--shield::before {
    top: 11px;
    left: 18px;
    width: 18px;
    height: 25px;
    border: 2px solid var(--accent);
    border-radius: 10px 10px 14px 14px;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}

.icon-mark--delivery::before {
    top: 26px;
    left: 14px;
    width: 22px;
    height: 2px;
    background: var(--accent);
}

.icon-mark--delivery::after {
    top: 22px;
    right: 14px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--text);
    border-right: 2px solid var(--text);
    transform: rotate(45deg);
}

.info-card__title,
.office-card__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.04;
}

.info-card__copy,
.office-card__text,
.office-card__note,
.office-card__meta {
    margin-top: 14px;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--accent);
    font-size: 15px;
    line-height: 1.5;
}

.text-link:hover {
    color: var(--accent-soft);
}

.section--logos {
    padding-top: 26px;
    padding-bottom: 92px;
}

.page--home .section--logos {
    margin-top: -14px;
}

.page--home .section--logos .section-heading {
    gap: 10px;
}

.page--home .section--logos .section-title {
    max-width: 34ch;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.35;
}

.page--home .section--logos .section-copy {
    max-width: 720px;
    font-size: 15px;
    color: var(--text-muted);
}

.logo-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0;
    opacity: 0.58;
    filter: grayscale(1);
    transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.logo-tile:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    filter: grayscale(0.2);
}

.logo-tile__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-tile__image {
    max-width: 180px;
    max-height: 38px;
    width: auto;
    height: auto;
}

.logo-tile__wordmark {
    color: rgba(255, 255, 255, 0.68);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.cta-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 46px 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(19, 19, 24, 0.94), rgba(8, 8, 11, 0.98)),
        radial-gradient(circle at top left, rgba(207, 254, 37, 0.08), transparent 38%);
    box-shadow: var(--shadow-lg);
}

.office-card__eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 14px;
    line-height: 1.4;
}

.office-card__meta a:hover {
    color: var(--accent);
}

.inquiry-form {
    display: grid;
    gap: 14px;
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-field {
    display: grid;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.form-field--full {
    display: grid;
}

.inquiry-input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.inquiry-input:focus {
    outline: none;
    border-color: rgba(207, 254, 37, 0.42);
}

.inquiry-input::placeholder {
    color: rgba(224, 224, 224, 0.42);
}

.inquiry-textarea {
    min-height: 150px;
    padding-top: 14px;
    resize: vertical;
}

.status-message {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
}

.status-message--success {
    background: rgba(207, 254, 37, 0.18);
    color: var(--accent-soft);
}

.status-message--error {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.site-footer {
    padding: 118px 32px 30px;
}

.footer-shell {
    display: flex;
    flex-direction: column;
    gap: 52px;
    width: min(var(--content-width), 100%);
}

.footer-shell__top,
.footer-shell__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
}

.footer-shell__grid {
    display: grid;
    grid-template-columns: 27% minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 0.74fr);
    gap: 48px;
}

.footer-brand {
    display: grid;
    align-content: start;
    gap: 18px;
}

.footer-statement {
    max-width: 330px;
    color: var(--text-muted);
}

.footer-link-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.45;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-link-pill:hover {
    color: var(--accent);
    border-color: rgba(207, 254, 37, 0.22);
    transform: translateY(-2px);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 16px;
}

.footer-title {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.footer-links {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links__item {
    list-style: none;
}

.footer-links__link,
.footer-legal a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.55;
}

.footer-links__link:hover,
.footer-legal a:hover {
    color: var(--accent);
}

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

.reveal {
    opacity: 1;
    transform: none;
}

.stagger-item {
    opacity: 0;
    transform: translateY(32px) scale(0.986);
    filter: blur(9px);
    transition:
        opacity 860ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 860ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(0.04s + (var(--stagger-order, 0) * 0.08s));
    will-change: opacity, transform, filter;
}

.reveal.is-visible .stagger-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.section--hero,
.section--hero.reveal {
    opacity: 1;
    transform: none;
}

@keyframes hero-glow-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes hero-stars-drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

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

@media (max-width: 1339.98px) {
    .site-header__inner,
    .section-shell,
    .footer-shell {
        width: min(var(--content-width), calc(100% - 48px));
    }

    .site-nav__list {
        gap: 28px;
    }

    .split-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
        gap: 48px;
    }

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

@media (max-width: 1189.98px) {
    .site-header {
        padding-top: 20px;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
        gap: 20px;
    }

    .site-nav--desktop,
    .site-header__cta {
        display: none;
    }

    .site-header__actions {
        gap: 12px;
    }

    .site-header__actions .language-switcher {
        display: none;
    }

    .site-nav-toggle {
        display: grid;
        justify-self: end;
    }

    .site-nav-drawer {
        position: fixed;
        inset: 0;
        z-index: 65;
        display: block;
        padding: 92px 24px 24px;
        background: rgba(3, 3, 6, 0.78);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
    }

    .site-nav-drawer.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav-drawer__surface {
        display: grid;
        gap: 20px;
        padding: 24px;
        border: 1px solid var(--line);
        border-radius: 28px;
        background: rgba(11, 11, 16, 0.94);
        box-shadow: var(--shadow-lg);
        transform: translateY(22px) scale(0.98);
        transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .site-nav-drawer.is-open .site-nav-drawer__surface {
        transform: translateY(0) scale(1);
    }

    .site-nav-drawer__eyebrow {
        color: var(--text-muted);
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .site-nav-drawer__list {
        display: grid;
        gap: 8px;
    }

    .site-nav-drawer__link {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 10px 14px;
        border-radius: 14px;
        color: rgba(255, 255, 255, 0.84);
        font-size: 17px;
        line-height: 1.45;
    }

    .site-nav-drawer__link:hover,
    .site-nav-drawer__link.is-active {
        background: rgba(255, 255, 255, 0.05);
        color: var(--accent);
    }

    .site-nav-drawer__cta {
        justify-self: start;
    }

    .section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .section--hero {
        min-height: 920px;
        padding-top: 160px;
        padding-bottom: 58px;
    }

    .hero-backdrop__planet-shape {
        top: 134px;
        width: min(96vw, 940px);
    }

    .hero-backdrop__planet-texture {
        top: 132px;
        width: min(96vw, 940px);
        height: min(96vw, 940px);
    }

    .hero-backdrop__video {
        opacity: 0.06;
    }

    .hero-particles {
        top: 210px;
        width: min(76vw, 660px);
        height: min(440px, 46vw);
    }

    .display-title {
        font-size: clamp(3.2rem, 8.2vw, 4.6rem);
    }

    .section-title {
        font-size: clamp(2.45rem, 7vw, 4rem);
    }

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

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

    .split-grid,
    .footer-shell__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 809.98px) {
    .site-header__inner,
    .section-shell,
    .footer-shell {
        width: calc(100% - 32px);
    }

    .site-brand__mark {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .site-brand__text {
        font-size: 17px;
    }

    .section {
        padding-top: 86px;
        padding-bottom: 86px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .section--hero {
        min-height: 844px;
        padding-top: 118px;
        padding-bottom: 74px;
    }

    .hero-backdrop::before {
        top: 14px;
        left: 20px;
        width: 142px;
        height: 142px;
    }

    .hero-backdrop__planet-shape {
        top: 112px;
        width: 174%;
        min-width: 660px;
    }

    .hero-backdrop__planet-texture {
        top: 110px;
        width: 174%;
        height: 174%;
        min-width: 660px;
        min-height: 660px;
    }

    .hero-backdrop__video {
        display: none;
    }

    .hero-particles {
        top: 164px;
        width: calc(100% + 8px);
        max-width: 408px;
        height: 280px;
    }

    .hero-copy__surface {
        gap: 20px;
        max-width: 100%;
    }

    .eyebrow--pill {
        width: 100%;
        max-width: 348px;
        justify-content: center;
        padding: 10px 16px;
    }

    .display-title {
        max-width: 11.4ch;
        font-size: clamp(2.85rem, 11.4vw, 3.7rem);
        line-height: 1.02;
    }

    .section-title {
        max-width: 100%;
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .section-copy,
    .section-copy--large,
    .section-lede {
        font-size: 16px;
        max-width: 100%;
    }

    .button-row,
    .cta-panel__actions,
    .footer-actions {
        gap: 14px;
    }

    .button,
    .button--small {
        min-height: 48px;
        padding: 11px 18px;
        font-size: 15px;
    }

    .button-row {
        flex-wrap: nowrap;
        justify-content: center;
    }

    .split-grid,
    .form-row,
    .card-grid,
    .office-grid {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        display: flex;
        gap: 26px;
        margin: 28px -4px 0;
        padding: 0 4px 2px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .logo-grid::-webkit-scrollbar {
        display: none;
    }

    .logo-tile {
        flex: 0 0 144px;
        min-height: 46px;
        justify-content: flex-start;
    }

    .logo-tile__inner {
        justify-content: flex-start;
    }

    .logo-tile__image {
        max-width: 132px;
        max-height: 32px;
    }

    .section-media,
    .section-media .media-asset,
    .section-media .media-fallback {
        min-height: 320px;
    }

    .info-card,
    .office-card,
    .inquiry-form,
    .cta-panel {
        padding: 24px;
    }

    .info-card__title,
    .office-card__title {
        font-size: 24px;
    }

    .site-footer {
        padding: 90px 16px 28px;
    }

    .footer-shell {
        gap: 42px;
    }

    .footer-shell__top,
    .footer-shell__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-actions,
    .footer-legal {
        justify-content: flex-start;
    }
}

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

    .site-header__inner,
    .site-header__inner > *,
    .hero-backdrop::before,
    .hero-stars,
    .hero-backdrop__planet-shape,
    .hero-backdrop__planet-texture,
    .hero-particles,
    .hero-enter,
    .stagger-item {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}
