@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --ink: #061827;
    --ink-soft: #17364d;
    --blue: #155ca8;
    --blue-bright: #269be8;
    --cyan: #61d2ec;
    --aqua: #9ff1ef;
    --paper: #f5f8fa;
    --white: #ffffff;
    --line: rgba(6, 24, 39, 0.16);
    --shell: min(1180px, calc(100vw - 64px));
    --header-height: 88px;
    --section-space: clamp(88px, 10vw, 156px);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

html.nav-open,
body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--white);
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1001;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--blue-bright));
    transform: scaleX(0);
    transform-origin: left;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 220ms ease, height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    height: 74px;
    background: rgba(6, 24, 39, 0.92);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(170px, 1fr);
    align-items: center;
    height: 100%;
}

.site-header__inner.shell {
    width: 100%;
    max-width: none;
    padding-inline: clamp(24px, 3.2vw, 60px);
}

.site-header__controls {
    display: contents;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 13px;
    color: inherit;
    text-decoration: none;
}

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

.brand span {
    display: flex;
    flex-direction: column;
}

.brand strong {
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: 0.16em;
}

.brand small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    grid-column: 2;
    align-items: center;
    justify-self: center;
    gap: clamp(20px, 2.6vw, 38px);
}

.site-header__partner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    grid-column: 3;
    justify-self: end;
    flex: 0 0 154px;
    width: 154px;
    overflow: hidden;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.site-header__partner img {
    flex: 0 0 auto;
    width: 156px;
    max-width: none;
    height: auto;
    transition: width 220ms ease;
}

.site-header.is-scrolled .site-header__partner {
    flex-basis: 144px;
    width: 144px;
    padding-left: 20px;
}

.site-header.is-scrolled .site-header__partner img {
    width: 142px;
}

.primary-nav > a {
    position: relative;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 180ms ease;
}

.primary-nav > a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--cyan);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="true"] {
    color: var(--white);
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="true"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-picker {
    display: flex;
    gap: 8px;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.site-picker a {
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    text-decoration: none;
}

.site-picker a[aria-current="page"] {
    color: var(--cyan);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 27px;
    height: 1px;
    margin: 7px auto;
    background: currentColor;
    transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 48%, rgba(38, 155, 232, 0.22), transparent 28%),
        linear-gradient(125deg, #03111d 0%, #061d30 55%, #082c45 100%);
    color: var(--white);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.32) 0.6px, transparent 0.8px);
    background-size: 38px 38px;
    content: "";
    opacity: 0.12;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero__space {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    mix-blend-mode: screen;
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 6vw;
    min-height: calc(100svh - 76px);
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 110px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 28px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow > span {
    color: var(--blue-bright);
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.66);
}

.eyebrow--light > span {
    display: inline-block;
    width: 42px;
    height: 1px;
    background: var(--cyan);
}

.hero__brand {
    margin: 0 0 13px;
    color: var(--cyan);
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 600;
    letter-spacing: 0.22em;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(56px, 6.25vw, 98px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero__lead {
    max-width: 610px;
    margin: 33px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 42px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border: 1px solid currentColor;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button--light:hover {
    background: var(--cyan);
}

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

.text-link {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 6px;
}

.text-link span {
    display: inline-block;
    margin-left: 8px;
    transition: transform 180ms ease;
}

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

.hero__visual {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.hero__visual::before,
.hero__visual::after {
    position: absolute;
    border: 1px solid rgba(159, 241, 239, 0.35);
    border-radius: 50%;
    content: "";
}

.hero__visual::before {
    inset: 8%;
    animation: orbit-spin 26s linear infinite;
    border-style: dashed;
}

.hero__visual::after {
    inset: 22%;
    box-shadow: 0 0 80px rgba(38, 155, 232, 0.18), inset 0 0 60px rgba(38, 155, 232, 0.1);
}

.hero__visual img {
    position: relative;
    z-index: 2;
    width: min(70%, 410px);
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.35));
}

.hero__signal {
    position: absolute;
    z-index: 1;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    animation: signal-pulse 3.2s ease-out infinite;
}

.hero__signal--one {
    width: 78%;
    height: 78%;
}

.hero__signal--two {
    width: 94%;
    height: 94%;
    animation-delay: 1.2s;
}

.hero__coordinate {
    position: absolute;
    z-index: 3;
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    letter-spacing: 0.16em;
    writing-mode: vertical-rl;
}

.hero__coordinate--top {
    top: 12%;
    right: 1%;
}

.hero__coordinate--bottom {
    bottom: 9%;
    left: 1%;
    transform: rotate(180deg);
}

.hero__orbit {
    position: absolute;
    border: 1px solid rgba(97, 210, 236, 0.1);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.hero__orbit--one {
    right: -22vw;
    bottom: -44vw;
    width: 86vw;
    height: 86vw;
}

.hero__orbit--two {
    right: -8vw;
    bottom: -31vw;
    width: 62vw;
    height: 62vw;
}

.hero__foot {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

.section-heading {
    max-width: 900px;
}

.section-heading h2,
.value-intro h2,
.status-copy h2,
.error-page h1 {
    margin: 0;
    font-size: clamp(40px, 5.1vw, 72px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section--mission {
    background: var(--paper);
}

.mission-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(50px, 9vw, 130px);
    margin-top: clamp(54px, 7vw, 94px);
    padding-top: 38px;
    border-top: 1px solid var(--line);
}

.mission-grid__lead {
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(22px, 2.4vw, 34px);
    letter-spacing: -0.025em;
    line-height: 1.4;
}

.mission-grid__body {
    color: #425565;
}

.mission-grid__body p {
    margin: 0 0 22px;
}

.needs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 92px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.needs article {
    min-height: 250px;
    padding: 31px 34px 38px 0;
}

.needs article + article {
    padding-left: 34px;
    border-left: 1px solid var(--line);
}

.needs article > span,
.system-steps li > span {
    color: var(--blue-bright);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.needs h3 {
    margin: 58px 0 13px;
    font-size: 20px;
    font-weight: 600;
}

.needs p {
    margin: 0;
    color: #60727e;
    font-size: 14px;
}

@media (min-width: 821px) {
    .needs {
        row-gap: 16px;
    }

    .needs article:nth-child(n + 4) {
        border-top: 1px solid var(--line);
    }

    .needs article:nth-child(3n + 1) {
        padding-left: 0;
        border-left: 0;
    }
}

.section--system {
    overflow: hidden;
    background: var(--white);
}

.section-heading--split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: clamp(50px, 9vw, 130px);
    max-width: none;
}

.section-heading--split > p {
    margin: 0 0 3px;
    color: #526978;
}

.system-figure,
.status-figure {
    margin: 80px 0 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fbfcfd;
}

.system-figure img,
.status-figure img {
    width: 100%;
    height: auto;
}

.system-figure figcaption,
.status-figure figcaption {
    display: flex;
    justify-content: space-between;
    padding: 17px 0;
    border-top: 1px solid var(--line);
    color: #6a7a84;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.system-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 50px 0 0;
    padding: 0;
    list-style: none;
}

.system-steps li {
    position: relative;
    padding: 8px 28px 8px 0;
}

.system-steps li + li {
    padding-left: 28px;
    border-left: 1px solid var(--line);
}

.system-steps strong {
    display: block;
    margin-top: 30px;
    font-size: 15px;
}

.system-steps p {
    margin: 9px 0 0;
    color: #60727e;
    font-size: 12px;
}

.section--value {
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 10%, rgba(38, 155, 232, 0.18), transparent 30%),
        var(--ink);
    color: var(--white);
}

.section--value::after {
    position: absolute;
    right: -260px;
    bottom: -460px;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(97, 210, 236, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(97, 210, 236, 0.025), 0 0 0 210px rgba(97, 210, 236, 0.018);
    content: "";
}

.value-intro {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 8vw;
}

.value-intro .eyebrow {
    grid-column: 1 / -1;
}

.value-intro > p:last-child {
    align-self: end;
    max-width: 520px;
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.65);
}

.value-list {
    position: relative;
    z-index: 2;
    margin-top: 92px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.value-list > div {
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) 1fr;
    align-items: center;
    min-height: 98px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.value-list strong {
    color: var(--aqua);
    font-size: 17px;
    font-weight: 500;
}

.value-list span {
    color: rgba(255, 255, 255, 0.72);
}

.section--status {
    background: #eaf0f3;
}

.status-heading {
    align-items: start;
}

.status-summary {
    align-self: end;
}

.status-state {
    position: relative;
    padding: 18px 54px 18px 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.status-state > span {
    display: block;
    color: #58707f;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.status-state strong {
    display: block;
    margin-top: 7px;
    font-size: clamp(32px, 3.7vw, 50px);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.status-state .status-pulse {
    right: 4px;
    bottom: 50%;
    transform: translateY(50%);
}

.status-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.status-details p {
    margin: 0;
    padding: 30px 34px 30px 0;
    color: #4d6472;
}

.status-details p + p {
    padding-right: 0;
    padding-left: 34px;
    border-left: 1px solid var(--line);
}

.status-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(60px, 10vw, 150px);
}

.status-display {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 450px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.status-display > span {
    position: absolute;
    top: 23px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.status-display strong {
    font-size: clamp(54px, 6vw, 86px);
    font-weight: 500;
    letter-spacing: -0.06em;
}

.status-pulse {
    position: absolute;
    right: 14px;
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
}

.status-pulse::before,
.status-pulse::after {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--blue-bright);
    border-radius: 50%;
    content: "";
    animation: status-pulse 2.4s ease-out infinite;
}

.status-pulse::after {
    animation-delay: 1.1s;
}

.status-pulse i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.status-copy {
    align-self: center;
}

.status-copy h2 {
    font-size: clamp(38px, 4.2vw, 62px);
}

.status-copy > p:not(.eyebrow) {
    margin: 30px 0 0;
    color: #4d6472;
}

.contractor {
    display: grid;
    grid-template-columns: 0.45fr 0.8fr 0.75fr;
    align-items: center;
    min-height: 220px;
    margin-top: 110px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contractor__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contractor__logo {
    display: grid;
    place-items: center;
    align-self: stretch;
    padding: 28px 45px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: var(--white);
}

.contractor__logo img {
    max-height: 105px;
    object-fit: contain;
}

.contractor__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 45px;
}

.contractor__details strong {
    font-size: 20px;
}

.contractor__details span {
    color: #627580;
    font-size: 13px;
}

.contractor__details a {
    margin-top: 28px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    text-underline-offset: 6px;
}

.site-footer {
    padding: 80px 0 28px;
    background: #03111d;
    color: var(--white);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 0.8fr 0.35fr;
    align-items: start;
    gap: clamp(32px, 4vw, 56px);
}

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

.site-footer__meta,
.site-footer__agreements {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
}

.site-footer__meta span:first-child,
.site-footer__agreements > span {
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__meta a,
.site-footer__agreements a,
.site-footer__agreements button {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer__agreements button {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.site-footer__meta a:hover,
.site-footer__agreements a:hover,
.site-footer__agreements button:hover {
    color: var(--aqua);
}

.site-footer__action {
    text-align: right;
}

.site-footer__action a {
    color: var(--aqua);
    font-size: 13px;
    text-decoration: none;
}

.site-footer__action span {
    margin-left: 8px;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 68px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.34);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-banner[hidden] {
    display: none;
}

.privacy-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    padding-block: 24px;
    border-top: 1px solid rgba(97, 210, 236, 0.4);
    background: rgba(3, 17, 29, 0.97);
    box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.28);
    color: var(--white);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 220ms ease, transform 260ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.privacy-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.privacy-banner__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr) minmax(170px, auto);
    align-items: end;
    gap: clamp(28px, 4vw, 58px);
}

.privacy-banner__eyebrow {
    margin: 0 0 8px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.privacy-banner__intro h2 {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 500;
    letter-spacing: -0.035em;
}

.privacy-banner__intro > p:not(.privacy-banner__eyebrow) {
    max-width: 660px;
    margin: 12px 0 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.65;
}

.privacy-banner__intro a {
    color: var(--aqua);
    font-size: 12px;
    text-underline-offset: 4px;
}

.privacy-banner__categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.privacy-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 54px;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-category strong {
    display: block;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.privacy-category p,
.privacy-category small {
    display: block;
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    line-height: 1.5;
}

.privacy-category--necessary > span {
    flex: 0 0 auto;
    color: var(--aqua);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-category input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.privacy-category i {
    position: relative;
    flex: 0 0 40px;
    width: 40px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    transition: background 180ms ease, border-color 180ms ease;
}

.privacy-category i::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    content: "";
    transition: transform 180ms ease;
}

.privacy-category input:checked + i {
    border-color: var(--cyan);
    background: var(--blue);
}

.privacy-category input:checked + i::after {
    transform: translateX(18px);
}

.privacy-category input:focus-visible + i {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

.privacy-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-button {
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.privacy-button--primary {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.privacy-button--secondary {
    background: transparent;
    color: var(--white);
}

.privacy-button--text {
    min-height: 34px;
    padding: 6px;
    border-color: transparent;
    background: transparent;
    color: var(--aqua);
}

.privacy-button:hover {
    border-color: var(--cyan);
    background: var(--cyan);
    color: var(--ink);
}

.error-page {
    display: grid;
    min-height: calc(100svh - 320px);
    padding: 180px 0 100px;
    background: #eaf0f3;
}

.error-page p:not(.eyebrow) {
    margin: 24px 0 36px;
    color: #546a78;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 700ms cubic-bezier(0.2, 0.65, 0.3, 1), transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes orbit-spin {
    to { transform: rotate(360deg); }
}

@keyframes signal-pulse {
    0% { opacity: 0; transform: scale(0.72); }
    35% { opacity: 0.42; }
    100% { opacity: 0; transform: scale(1.12); }
}

@keyframes status-pulse {
    from { opacity: 0.75; transform: scale(0.2); }
    to { opacity: 0; transform: scale(1.35); }
}

@media (max-width: 1024px) {
    :root {
        --shell: min(100% - 48px, 920px);
    }

    .hero__inner {
        grid-template-columns: 1fr 0.72fr;
        gap: 30px;
    }

    .hero__visual img {
        width: 78%;
    }

    .section-heading--split,
    .value-intro,
    .status-grid {
        grid-template-columns: 1fr;
    }

    .section-heading--split > p,
    .value-intro > p:last-child,
    .status-summary {
        max-width: 650px;
        margin-top: 30px;
    }

    .system-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 0;
    }

    .system-steps li:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .contractor {
        grid-template-columns: 0.4fr 0.8fr 0.8fr;
    }
}

@media (min-width: 821px) and (max-width: 980px) {
    .site-header__inner.shell {
        padding-inline: 24px;
    }

    .brand small {
        display: none;
    }

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

@media (max-width: 820px) {
    :root {
        --header-height: 78px;
    }

    body.nav-open .site-header {
        backdrop-filter: none;
    }

    .site-header__inner {
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .site-header__inner.shell {
        padding-inline: 24px;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 3;
        flex: 0 0 auto;
    }

    .site-header .brand {
        position: relative;
        z-index: 3;
    }

    .site-header__controls {
        display: flex;
        align-items: center;
        gap: 12px;
        height: 100%;
        margin-left: auto;
    }

    .site-header__partner,
    .site-header.is-scrolled .site-header__partner {
        flex-basis: 116px;
        width: 116px;
        padding-left: 14px;
    }

    .site-header__partner img,
    .site-header.is-scrolled .site-header__partner img {
        width: 148px;
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 22px;
        width: 100vw;
        width: 100dvw;
        height: 100vh;
        height: 100dvh;
        min-height: 100svh;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: max(112px, calc(var(--header-height) + env(safe-area-inset-top) + 26px))
            max(32px, calc((100vw - var(--shell)) / 2))
            max(42px, calc(env(safe-area-inset-bottom) + 28px));
        background: rgba(3, 17, 29, 0.98);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
    }

    .primary-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .primary-nav > a {
        font-size: clamp(28px, 7vw, 46px);
        font-weight: 500;
        letter-spacing: -0.03em;
    }

    .primary-nav > a::after {
        display: none;
    }

    .site-picker {
        margin-top: 20px;
        padding: 20px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 0;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        padding-bottom: 130px;
    }

    .hero__copy {
        position: relative;
        z-index: 3;
        padding-top: 26px;
    }

    .hero__visual {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 520px);
        margin: 48px auto 0;
        opacity: 1;
    }

    .hero__lead {
        max-width: 540px;
    }

    .hero__foot span:last-child {
        max-width: 48%;
        text-align: right;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

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

    .needs article {
        min-height: 0;
        padding: 28px 0 34px;
    }

    .needs article + article {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .needs h3 {
        margin-top: 28px;
    }

    .contractor {
        grid-template-columns: 1fr 1.2fr;
        gap: 0;
    }

    .contractor__label {
        grid-column: 1 / -1;
        padding: 22px 0;
        border-bottom: 1px solid var(--line);
    }

    .contractor__logo {
        border-left: 0;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__action {
        grid-column: 2;
        text-align: left;
    }

    .privacy-banner__inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .privacy-banner__intro {
        grid-column: 1 / -1;
    }

    .privacy-banner__categories {
        padding-left: 0;
        border-left: 0;
    }

    .privacy-banner__actions {
        align-self: end;
    }
}

@media (max-width: 600px) {
    :root {
        --shell: calc(100% - 36px);
        --section-space: 82px;
    }

    .site-header__inner.shell {
        padding-inline: 16px;
    }

    .site-header .brand {
        min-width: 0;
        gap: 9px;
    }

    .site-header .brand img {
        width: 38px;
        height: 38px;
    }

    .site-header .brand span {
        display: flex;
        min-width: 0;
    }

    .site-header .brand strong {
        font-size: 14px;
        letter-spacing: 0.12em;
        white-space: nowrap;
    }

    .site-header .brand small {
        display: none;
    }

    .site-header__controls {
        gap: 6px;
    }

    .site-header__partner,
    .site-header.is-scrolled .site-header__partner {
        flex-basis: 82px;
        width: 82px;
        padding-left: 8px;
    }

    .site-header__partner img,
    .site-header.is-scrolled .site-header__partner img {
        width: 112px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .hero__inner {
        min-height: calc(100svh - 62px);
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 135px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 68px);
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        margin-top: 34px;
    }

    .hero__visual {
        width: min(100%, 440px);
        margin-top: 44px;
    }

    .hero__foot {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .hero__foot span:last-child {
        max-width: 100%;
        text-align: left;
    }

    .section-heading h2,
    .value-intro h2,
    .status-copy h2 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .system-figure,
    .status-figure {
        width: calc(100% + 36px);
        margin-left: -18px;
    }

    .system-figure figcaption,
    .status-figure figcaption {
        padding-inline: 18px;
    }

    .system-figure figcaption span:last-child,
    .status-figure figcaption span:last-child {
        display: none;
    }

    .status-details {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .status-details p,
    .status-details p + p {
        padding: 24px 0;
        border-left: 0;
    }

    .status-details p + p {
        border-top: 1px solid var(--line);
    }

    .system-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .system-steps li,
    .system-steps li + li {
        padding: 26px 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .system-steps strong {
        margin-top: 13px;
    }

    .value-intro {
        grid-template-columns: 1fr;
    }

    .value-intro .eyebrow {
        grid-column: auto;
    }

    .value-list > div {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 24px 0;
    }

    .status-display {
        min-height: 310px;
    }

    .status-display strong {
        font-size: 17vw;
    }

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

    .contractor__logo {
        min-height: 160px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .contractor__details {
        padding: 30px 0;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .site-footer__action {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .privacy-banner {
        max-height: calc(100svh - 12px);
        overflow-y: auto;
        padding-block: 18px;
    }

    .privacy-banner__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .privacy-banner__intro {
        grid-column: auto;
    }

    .privacy-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .privacy-button--text {
        grid-column: 1 / -1;
    }
}

@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;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}


@media (max-width: 360px) {
    .site-header__inner.shell {
        padding-inline: 13px;
    }

    .site-header .brand {
        gap: 7px;
    }

    .site-header .brand img {
        width: 36px;
        height: 36px;
    }

    .site-header .brand span {
        display: flex;
    }

    .site-header .brand strong {
        font-size: 13px;
        letter-spacing: 0.1em;
    }

    .site-header__partner,
    .site-header.is-scrolled .site-header__partner {
        flex-basis: 74px;
        width: 74px;
        padding-left: 6px;
    }

    .site-header__partner img,
    .site-header.is-scrolled .site-header__partner img {
        width: 104px;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
    }
}
