:root {
    --navy-950: #050d17;
    --navy-900: #071321;
    --navy-850: #0a1a2d;
    --navy-800: #0b2340;
    --navy-700: #153457;
    --blue: #247ad6;
    --blue-light: #82baff;
    --plaster: #f1f0eb;
    --plaster-soft: #e5e3dd;
    --paper: #f7f6f2;
    --ink: #11213a;
    --muted: #7d899a;
    --gold: #d7af6a;
    --gold-dark: #b7760f;
    --line-dark: rgba(255, 255, 255, 0.13);
    --line-light: rgba(17, 33, 58, 0.15);
    --display: Georgia, "Times New Roman", serif;
    --sans: Inter, "Segoe UI", Arial, sans-serif;
    --container: 1260px;
    --header-height: 96px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--navy-950);
    color: var(--plaster);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button,
select {
    cursor: pointer;
}

:where(a, button, input, select, textarea):focus-visible {
    outline: 2px solid var(--blue-light);
    outline-offset: 4px;
}

::selection {
    background: var(--blue);
    color: #fff;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: #fff;
    color: var(--ink);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

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

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

.section {
    position: relative;
    padding: 150px 0;
}

.kicker,
.section-number,
.eyebrow {
    margin: 0;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.kicker {
    color: var(--blue-light);
}

.section-number {
    display: inline-block;
    color: var(--gold);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.93;
}

h1 em,
h2 em {
    color: var(--blue-light);
    font-weight: 400;
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.095em;
    text-transform: uppercase;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}

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

.ui-icon {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: currentColor;
    transition: transform 0.3s var(--ease);
}

.icon-arrow-up-right::before {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    content: "";
}

.icon-arrow-up-right::after {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 13px;
    height: 1.5px;
    background: currentColor;
    content: "";
    transform: rotate(-45deg);
    transform-origin: center;
}

.icon-arrow-down::before,
.icon-arrow-up::before {
    position: absolute;
    top: 1px;
    left: 7px;
    width: 1.5px;
    height: 13px;
    background: currentColor;
    content: "";
}

.icon-arrow-down::after,
.icon-arrow-up::after {
    position: absolute;
    left: 4px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
}

.icon-arrow-down::after {
    bottom: 1px;
    transform: rotate(45deg);
}

.icon-arrow-up::after {
    top: 1px;
    transform: rotate(225deg);
}

.button:hover .icon-arrow-up-right,
.header-cta:hover .icon-arrow-up-right,
.text-link:hover .icon-arrow-up-right {
    transform: translate(2px, -2px);
}

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

.text-separator {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-inline: 0.85em;
    border: 1px solid currentColor;
    opacity: 0.7;
    transform: rotate(45deg);
    vertical-align: middle;
}

.button-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 18px 45px rgba(36, 122, 214, 0.22);
}

.button-primary:hover {
    background: #3189e6;
}

.button-ghost {
    border-color: var(--line-dark);
    background: rgba(6, 17, 29, 0.42);
    color: #fff;
    backdrop-filter: blur(14px);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.button-outline-dark {
    border-color: rgba(17, 33, 58, 0.28);
    color: var(--ink);
}

.button-outline-dark:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.table-pagination-is-visible {
    display: flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 22px auto 0;
    padding: 6px;
    border: 1px solid rgba(17, 33, 58, 0.12);
    border-radius: 999px;
    background: rgba(247, 246, 242, 0.96);
    box-shadow: 0 12px 30px rgba(5, 13, 23, 0.08);
    color: var(--ink);
}

.table-pagination-is-visible[hidden] {
    display: none;
}

.table-pagination-is-visible ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.table-pagination-is-visible a,
.table-pagination-is-visible button,
.table-pagination-is-visible .page-link {
    display: grid;
    min-width: 38px;
    height: 38px;
    place-items: center;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    font-size: 0.76rem;
    font-weight: 750;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.table-pagination-is-visible a:hover,
.table-pagination-is-visible button:hover,
.table-pagination-is-visible .page-link:hover,
.table-pagination-is-visible .active > a,
.table-pagination-is-visible .active > button,
.table-pagination-is-visible [aria-current="page"] {
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

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

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: height 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
    height: 76px;
    border-color: var(--line-dark);
    background: rgba(5, 13, 23, 0.88);
    backdrop-filter: blur(20px);
}

.header-shell {
    display: flex;
    width: min(calc(100% - 64px), 1380px);
    height: 100%;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
}

.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 178px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.73rem;
    font-weight: 650;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--blue-light);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover {
    color: #fff;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 16px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.header-cta:hover {
    border-color: var(--blue-light);
    background: rgba(36, 122, 214, 0.18);
}

.language-switcher {
    position: relative;
    z-index: 3;
}

.language-switcher summary {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    list-style: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.language-switcher summary::-webkit-details-marker {
    display: none;
}

.language-switcher summary:hover,
.language-switcher[open] summary {
    border-color: var(--blue-light);
    background: rgba(36, 122, 214, 0.16);
}

.language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 180px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 13, 23, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
}

.language-menu a {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
    background: rgba(36, 122, 214, 0.15);
    color: #fff;
}

.language-menu small {
    color: var(--blue-light);
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    background: var(--navy-950);
    isolation: isolate;
}

.hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(5, 13, 23, 0.99) 0%, rgba(5, 13, 23, 0.91) 24%, rgba(5, 13, 23, 0.2) 59%, rgba(5, 13, 23, 0.08) 100%),
        linear-gradient(0deg, var(--navy-950) 0%, transparent 22%);
    background-position: center;
    background-size: cover;
    content: "";
    pointer-events: none;
}

.hero-media {
    position: absolute;
    z-index: -3;
    inset: -6%;
    overflow: hidden;
    transform: translate3d(
        var(--hero-shift-x, 0px),
        calc(var(--hero-shift-y, 0px) + var(--hero-scroll-y, 0px)),
        0
    );
    transition: transform 0.16s ease-out;
    will-change: transform;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.025);
    transition: transform 1.2s var(--ease);
}

.hero.is-ready .hero-media img {
    transform: scale(1);
}

.hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: radial-gradient(circle at 70% 45%, transparent 0 18%, rgba(5, 13, 23, 0.08) 50%, rgba(5, 13, 23, 0.6) 100%);
    content: "";
    pointer-events: none;
}

.hero-ambient {
    position: absolute;
    z-index: -2;
    top: 12%;
    left: 28%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(36, 122, 214, 0.12);
    filter: blur(120px);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 62%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.6fr);
    gap: 80px;
    padding-top: 120px;
    padding-bottom: 100px;
}

.hero-copy {
    max-width: 775px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.68);
}

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

.hero h1 {
    max-width: 720px;
    margin-bottom: 32px;
    color: #fff;
    font-size: clamp(4.4rem, 7.2vw, 7.5rem);
}

.hero h1 em {
    display: block;
}

.hero-lead {
    max-width: 655px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-aside {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 18px;
}

.hero-side-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-side-note span {
    color: var(--gold);
}

.hero-footer {
    position: absolute;
    bottom: 26px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-footer a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.hero-footer i {
    display: block;
    width: 38px;
    height: 1px;
    background: var(--gold);
}

.manifesto-compact {
    overflow: hidden;
    background: var(--plaster);
    color: var(--ink);
}

.manifesto-compact::before {
    position: absolute;
    top: -260px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(17, 33, 58, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(17, 33, 58, 0.018), 0 0 0 140px rgba(17, 33, 58, 0.012);
    content: "";
}

.compact-heading {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: end;
    padding-bottom: 62px;
    border-bottom: 1px solid var(--line-light);
    grid-template-columns: 0.62fr 1.2fr 0.72fr;
    gap: 48px;
}

.compact-heading .kicker {
    max-width: 250px;
    margin-top: 18px;
    color: var(--blue);
    line-height: 1.6;
}

.compact-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(3.7rem, 6vw, 6.2rem);
}

.compact-heading h2 em {
    color: var(--blue);
}

.compact-heading > p {
    margin: 0;
    color: rgba(17, 33, 58, 0.62);
    font-size: 0.9rem;
    line-height: 1.72;
}

.manifesto-proof {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    padding: 66px 0;
    border-bottom: 1px solid var(--line-light);
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.manifesto-proof blockquote {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--display);
    font-size: clamp(1.7rem, 2.8vw, 2.65rem);
    letter-spacing: -0.04em;
    line-height: 1.18;
}

.compact-stats {
    display: grid;
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
    grid-template-columns: repeat(3, 1fr);
}

.compact-stats > div {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.compact-stats strong {
    color: var(--navy-800);
    font-family: var(--display);
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 1;
}

.compact-stats sup {
    color: var(--blue);
    font-family: var(--sans);
    font-size: 0.85rem;
}

.compact-stats > div > span {
    margin-top: 11px;
    color: rgba(17, 33, 58, 0.48);
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.audience-grid {
    position: relative;
    z-index: 1;
    display: grid;
    margin-top: 34px;
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-card {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    padding: 30px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    background: rgba(255, 255, 255, 0.32);
    transition: background 0.35s ease, transform 0.45s var(--ease);
}

.audience-card::before {
    position: absolute;
    right: -65px;
    bottom: -85px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(36, 122, 214, 0.1);
    border-radius: 50%;
    content: "";
    transition: transform 0.55s var(--ease);
}

.audience-card:hover {
    background: rgba(255, 255, 255, 0.72);
    transform: translateY(-5px);
}

.audience-card:hover::before {
    transform: scale(1.18);
}

.audience-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audience-card-top > span {
    color: var(--gold);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.audience-symbol {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(36, 122, 214, 0.28);
    border-radius: 50%;
}

.audience-symbol::before,
.audience-symbol::after {
    position: absolute;
    content: "";
}

.audience-symbol-builders::before {
    right: 11px;
    bottom: 10px;
    width: 17px;
    height: 18px;
    border-right: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    border-left: 1px solid var(--blue);
}

.audience-symbol-builders::after {
    top: 12px;
    left: 12px;
    width: 4px;
    height: 4px;
    border: 1px solid var(--blue);
    box-shadow: 8px 0 0 -1px var(--paper), 8px 0 0 0 var(--blue), 0 8px 0 -1px var(--paper), 0 8px 0 0 var(--blue);
}

.audience-symbol-diplomats::before {
    inset: 10px;
    border: 1px solid var(--blue);
    border-radius: 50%;
}

.audience-symbol-diplomats::after {
    top: 20px;
    left: 8px;
    width: 24px;
    border-top: 1px solid var(--blue);
    box-shadow: 0 -5px 0 -4px var(--blue), 0 5px 0 -4px var(--blue);
}

.audience-symbol-leaders::before {
    top: 12px;
    left: 12px;
    width: 16px;
    height: 16px;
    border: 1px solid var(--blue);
    transform: rotate(45deg);
}

.audience-symbol-leaders::after {
    top: 20px;
    left: 20px;
    width: 1px;
    height: 1px;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(36, 122, 214, 0.1);
}

.audience-card h3 {
    position: relative;
    margin: 52px 0 12px;
    color: var(--navy-800);
    font-family: var(--display);
    font-size: clamp(1.55rem, 2.3vw, 2.15rem);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.audience-card p {
    position: relative;
    max-width: 310px;
    margin: 0;
    color: rgba(17, 33, 58, 0.54);
    font-size: 0.76rem;
    line-height: 1.65;
}

.ecosystem-compact {
    overflow: hidden;
    background: var(--navy-900);
}

.ecosystem-compact::before {
    position: absolute;
    right: -160px;
    bottom: -280px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(36, 122, 214, 0.09);
    content: "";
    filter: blur(140px);
}

.compact-heading-dark {
    border-color: var(--line-dark);
}

.compact-heading-dark h2 {
    color: #fff;
}

.compact-heading-dark h2 em {
    color: var(--blue-light);
}

.compact-heading-dark .kicker {
    color: var(--blue-light);
}

.compact-heading-dark > p {
    color: rgba(255, 255, 255, 0.55);
}

.ecosystem-cards {
    position: relative;
    z-index: 1;
    display: grid;
    margin-top: 65px;
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
    grid-template-columns: repeat(5, 1fr);
}

.ecosystem-card {
    min-height: 290px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    transition: background 0.35s ease, transform 0.4s var(--ease);
}

.ecosystem-card:hover {
    background: rgba(36, 122, 214, 0.1);
    transform: translateY(-5px);
}

.ecosystem-card-toggle {
    display: block;
    width: 100%;
    padding: 28px 24px 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: default;
    text-align: left;
}

.ecosystem-card-toggle > span {
    color: var(--gold);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.ecosystem-card-toggle h3 {
    min-height: 58px;
    margin: 74px 0 17px;
    font-family: var(--display);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.ecosystem-card-icon {
    display: none;
}

.ecosystem-card-answer p {
    margin: 0;
    padding: 0 24px 28px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
    line-height: 1.62;
}

.platform-compact {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    min-height: 360px;
    overflow: hidden;
    margin-top: 34px;
    border: 1px solid rgba(130, 186, 255, 0.24);
    background:
        radial-gradient(circle at 82% 42%, rgba(36, 122, 214, 0.2), transparent 31%),
        rgba(36, 122, 214, 0.07);
    grid-template-columns: 0.82fr 1.18fr;
}

.platform-compact-copy {
    position: relative;
    z-index: 2;
    padding: 48px;
}

.platform-compact-copy > span {
    color: var(--blue-light);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.platform-compact-copy h3 {
    margin: 16px 0 12px;
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.platform-compact-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    line-height: 1.7;
}

.platform-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 9px 12px;
    border: 1px solid rgba(130, 186, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.6rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.platform-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-light);
    box-shadow: 0 0 0 5px rgba(130, 186, 255, 0.1), 0 0 16px rgba(130, 186, 255, 0.62);
}

.platform-network {
    position: relative;
    min-height: 358px;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-position: center;
    background-size: 42px 42px;
}

.platform-network::before,
.platform-network::after {
    position: absolute;
    top: 50%;
    left: 37%;
    border: 1px solid rgba(130, 186, 255, 0.12);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.platform-network::before {
    width: 210px;
    height: 210px;
}

.platform-network::after {
    width: 310px;
    height: 310px;
}

.platform-network-core {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 37%;
    display: grid;
    width: 106px;
    height: 106px;
    align-items: center;
    justify-items: center;
    padding: 18px;
    border: 1px solid rgba(130, 186, 255, 0.44);
    border-radius: 50%;
    background: rgba(11, 31, 58, 0.92);
    box-shadow: 0 0 0 12px rgba(36, 122, 214, 0.05), 0 24px 60px rgba(0, 0, 0, 0.32);
    transform: translate(-50%, -50%);
}

.platform-network-core img {
    width: 34px;
    height: 34px;
}

.platform-network-core span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.platform-network-node {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 190px;
    min-height: 52px;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(11, 31, 58, 0.84);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    color: rgba(255, 255, 255, 0.73);
    font-size: 0.67rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.platform-network-node::before {
    position: absolute;
    top: 50%;
    right: 100%;
    width: 88px;
    border-top: 1px solid rgba(130, 186, 255, 0.3);
    content: "";
    transform-origin: right center;
}

.platform-network-node > i {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border: 1px solid var(--blue-light);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(130, 186, 255, 0.5);
}

.platform-network-node-one {
    top: 35px;
    right: 26px;
}

.platform-network-node-one::before {
    width: 118px;
    transform: rotate(25deg);
}

.platform-network-node-two {
    top: calc(50% - 26px);
    right: 5px;
}

.platform-network-node-three {
    right: 34px;
    bottom: 35px;
}

.platform-network-node-three::before {
    width: 115px;
    transform: rotate(-25deg);
}

.impact-compact {
    overflow: hidden;
    background: var(--paper);
    color: var(--ink);
}

.impact-heading {
    display: grid;
    align-items: end;
    margin-bottom: 64px;
    grid-template-columns: 0.52fr 1.15fr 0.7fr;
    gap: 48px;
}

.impact-heading h2 {
    margin: 0;
    font-size: clamp(3.4rem, 5.7vw, 5.8rem);
}

.impact-heading > p {
    margin: 0;
    color: rgba(17, 33, 58, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.impact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.impact-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    padding: 48px;
    border: 1px solid var(--line-light);
    transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}

.impact-card::before {
    position: absolute;
    right: -0.03em;
    bottom: -0.2em;
    color: rgba(36, 122, 214, 0.055);
    content: "I";
    font-family: var(--display);
    font-size: 24rem;
    line-height: 0.72;
    pointer-events: none;
}

.impact-card::after {
    position: absolute;
    top: 85px;
    right: -110px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(36, 122, 214, 0.09);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.impact-card > * {
    position: relative;
    z-index: 1;
}

.impact-card:hover {
    z-index: 2;
    box-shadow: 0 30px 70px rgba(11, 31, 58, 0.12);
    transform: translateY(-6px);
}

.impact-card-citizen {
    background: var(--navy-800);
    color: #fff;
}

.impact-card-citizen::before {
    color: rgba(130, 186, 255, 0.035);
}

.impact-card-citizen::after {
    border-color: rgba(130, 186, 255, 0.08);
}

.impact-card-educa {
    background: var(--plaster-soft);
}

.impact-card-educa::before {
    content: "II";
}

.impact-card-mark {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--gold);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.impact-card-mark img {
    width: 55px;
}

.impact-year {
    color: rgba(36, 122, 214, 0.32);
    font-family: var(--display);
    font-size: 3.6rem;
    font-weight: 400;
    letter-spacing: -0.07em;
}

.impact-card h3 {
    margin: 65px 0 20px;
    font-family: var(--display);
    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.impact-card > p {
    max-width: 520px;
    margin-bottom: 38px;
    color: rgba(17, 33, 58, 0.62);
    font-size: 0.88rem;
    line-height: 1.7;
}

.impact-card-citizen > p {
    color: rgba(255, 255, 255, 0.56);
}

.impact-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.impact-card li {
    position: relative;
    padding: 13px 0 13px 22px;
    border-top: 1px solid rgba(17, 33, 58, 0.13);
    color: rgba(17, 33, 58, 0.68);
    font-size: 0.72rem;
}

.impact-card-citizen li {
    border-color: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.66);
}

.impact-card li::before {
    position: absolute;
    top: 50%;
    left: 2px;
    width: 6px;
    height: 6px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.contact {
    overflow: hidden;
    background: var(--navy-950);
}

.contact::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(36, 122, 214, 0.14), transparent 34%),
        linear-gradient(90deg, rgba(5, 13, 23, 0.98), rgba(5, 13, 23, 1));
    content: "";
}

.contact-glow {
    position: absolute;
    top: 15%;
    left: 45%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(36, 122, 214, 0.11);
    filter: blur(130px);
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: start;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 95px;
}

.contact-copy .kicker {
    max-width: 480px;
    margin-top: 20px;
    line-height: 1.55;
}

.contact-copy h2 {
    margin: 25px 0 30px;
    font-size: clamp(3.8rem, 6vw, 6.4rem);
}

.contact-copy > p:not(.kicker) {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.78;
}

.contact-note {
    display: grid;
    max-width: 500px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid var(--line-dark);
    grid-template-columns: 90px 1fr;
    gap: 20px;
}

.contact-note span {
    color: var(--gold);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.47);
    font-size: 0.78rem;
    line-height: 1.6;
}

.contact-journey {
    max-width: 500px;
    margin-top: 28px;
}

.contact-journey > span {
    display: block;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-journey ol {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.contact-journey li {
    display: flex;
    min-height: 66px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 12px 14px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.66rem;
    font-weight: 700;
}

.contact-journey li i {
    color: var(--blue-light);
    font-size: 0.52rem;
    font-style: normal;
    letter-spacing: 0.1em;
}

.contact-form {
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 19, 33, 0.76);
    backdrop-filter: blur(18px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 22px;
}

.contact-form label > span:first-child {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: #fff;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input,
.contact-form select {
    height: 50px;
}

.contact-form textarea {
    min-height: 110px;
    padding-top: 13px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue-light);
}

.contact-form select option {
    background: var(--navy-900);
    color: #fff;
}

.contact-form .consent {
    display: grid;
    align-items: start;
    margin: 8px 0 28px;
    grid-template-columns: 18px 1fr;
    gap: 10px;
}

.contact-form .consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--blue);
}

.contact-form .consent span {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
}

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

.form-submit {
    width: 100%;
    border: 0;
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.form-status {
    min-height: 20px;
    margin: 15px 0 0;
    color: var(--blue-light);
    font-size: 0.76rem;
    line-height: 1.5;
}

.form-status.is-error {
    color: #ff9c9c;
}

.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line-dark);
    background: var(--navy-950);
}

.footer-ambient {
    position: absolute;
    top: -380px;
    left: 12%;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: rgba(36, 122, 214, 0.08);
    filter: blur(140px);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    padding: 88px 0 72px;
    grid-template-columns: minmax(260px, 1.35fr) minmax(130px, 0.48fr) minmax(155px, 0.52fr) minmax(190px, 0.65fr);
    gap: clamp(38px, 5vw, 78px);
}

.footer-brand img {
    width: 220px;
}

.footer-brand > p {
    max-width: 520px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.63);
    font-family: var(--display);
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    letter-spacing: -0.025em;
    line-height: 1.28;
}

.footer-social {
    margin-top: 34px;
}

.footer-social-label {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.footer-social-links a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.62);
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.3s var(--ease);
}

.footer-social-links a:hover {
    border-color: rgba(130, 186, 255, 0.62);
    background: rgba(36, 122, 214, 0.13);
    color: #fff;
    transform: translateY(-3px);
}

.footer-social-links svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.footer-heading {
    display: block;
    margin-bottom: 28px;
    color: var(--gold);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-nav {
    padding-top: 7px;
}

.footer-nav a {
    display: flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.75rem;
    transition: color 0.25s ease, transform 0.3s var(--ease);
}

.footer-nav a i {
    width: 12px;
    height: 1px;
    background: rgba(130, 186, 255, 0.45);
    transition: width 0.3s var(--ease), background 0.25s ease;
}

.footer-nav a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-nav a:hover i {
    width: 20px;
    background: var(--blue-light);
}

.footer-access {
    padding-top: 7px;
}

.footer-ecosystem-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 2px 0 11px;
    border-bottom: 1px solid rgba(130, 186, 255, 0.34);
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--display);
    font-size: 1.08rem;
    line-height: 1.25;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.footer-ecosystem-link:hover {
    border-color: var(--blue-light);
    color: #fff;
}

.footer-ecosystem-link .ui-icon {
    flex: 0 0 auto;
}

.footer-ecosystem-link:hover .ui-icon {
    transform: translate(2px, -2px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 108px;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    border-top: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.57rem;
    font-weight: 650;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-languages {
    display: flex;
    gap: 8px;
}

.footer-languages a {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.34);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.footer-languages a:hover,
.footer-languages a[aria-current="true"] {
    border-color: rgba(130, 186, 255, 0.45);
    color: #fff;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-meta > a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    transition: border-color 0.25s ease, color 0.25s ease, transform 0.3s var(--ease);
}

.footer-meta > a:hover {
    border-color: var(--blue-light);
    color: #fff;
    transform: translateY(-3px);
}

@media (min-width: 821px) and (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .footer-brand,
    .footer-access {
        grid-column: 1 / -1;
    }

    .footer-access {
        padding-top: 32px;
        border-top: 1px solid var(--line-dark);
    }
}

@media (max-width: 1100px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: flex;
        width: 45px;
        height: 45px;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        border: 1px solid var(--line-dark);
        background: transparent;
    }

    .menu-toggle span {
        width: 19px;
        height: 1px;
        background: #fff;
        transition: transform 0.3s ease;
    }

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

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

    .mobile-nav {
        position: fixed;
        z-index: 1;
        inset: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        background: rgba(5, 13, 23, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .mobile-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav a {
        font-family: var(--display);
        font-size: clamp(1.8rem, 5vw, 3rem);
    }

    .mobile-languages {
        display: flex;
        gap: 8px;
        margin-top: 18px;
    }

    .mobile-languages a {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 1px solid var(--line-dark);
        border-radius: 50%;
        color: rgba(255, 255, 255, 0.5);
        font-family: var(--sans);
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .mobile-languages a[aria-current="true"] {
        border-color: var(--blue-light);
        background: rgba(36, 122, 214, 0.18);
        color: #fff;
    }

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

    .contact-grid {
        gap: 55px;
        grid-template-columns: 1fr;
    }
}

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

    .container,
    .header-shell {
        width: min(calc(100% - 36px), var(--container));
    }

    .section {
        padding: 100px 0;
    }

    .brand img {
        width: 150px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero::before {
        background-image:
            linear-gradient(90deg, rgba(5, 13, 23, 0.97) 0%, rgba(5, 13, 23, 0.8) 53%, rgba(5, 13, 23, 0.25) 100%),
            linear-gradient(0deg, var(--navy-950) 0%, transparent 32%);
    }

    .hero-media img {
        object-position: 60% center;
    }

    .hero-content {
        display: block;
        padding-top: calc(var(--header-height) + clamp(28px, 6vh, 62px));
        padding-bottom: clamp(82px, 12vh, 110px);
    }

    .hero-copy {
        max-width: 620px;
    }

    .hero h1 {
        font-size: clamp(4rem, 13vw, 6.2rem);
    }

    .hero-lead {
        max-width: 560px;
    }

    .hero-aside {
        display: none;
    }

    .hero-footer span:last-child {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
        padding-block: 70px 56px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand > p {
        max-width: 620px;
    }

    .footer-access {
        grid-column: 1 / -1;
        padding-top: 32px;
        border-top: 1px solid var(--line-dark);
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        padding-block: 28px;
    }

    .footer-meta {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 560px) {
    .container,
    .header-shell {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 82px 0;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero::before {
        opacity: 0.88;
    }

    .hero-media img {
        object-position: 64% center;
    }

    .hero-content {
        padding-top: calc(var(--header-height) + 24px);
        padding-bottom: 76px;
    }

    .eyebrow {
        max-width: 290px;
        margin-bottom: 23px;
        font-size: 0.61rem;
        line-height: 1.5;
    }

    .hero h1 {
        margin-bottom: 24px;
        font-size: clamp(3.7rem, 18vw, 5rem);
    }

    .hero-lead {
        margin-bottom: 30px;
        font-size: 0.98rem;
    }

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

    .hero-footer {
        bottom: 18px;
    }

    .hero-footer > span:first-child {
        display: none;
    }

    .hero-footer a {
        margin-inline: auto;
    }

    .contact-copy h2 {
        font-size: clamp(3.2rem, 16vw, 4.5rem);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-block: 60px 48px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand img {
        width: 190px;
    }

    .footer-brand > p {
        margin: 28px 0 24px;
        font-size: 1.35rem;
    }

    .footer-bottom {
        margin-top: 0;
    }

    .footer-access {
        grid-column: auto;
    }

    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .footer-meta > a {
        align-self: flex-end;
        margin-top: -54px;
    }
}

@media (max-width: 1100px) {
    .ecosystem-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .platform-compact {
        grid-template-columns: 0.76fr 1.24fr;
    }

    .platform-compact-copy {
        padding: 40px 34px;
    }

    .platform-network-node {
        min-width: 170px;
    }
}

@media (max-width: 820px) {
    .compact-heading,
    .impact-heading {
        align-items: start;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .compact-heading h2,
    .impact-heading h2 {
        font-size: clamp(3.2rem, 12vw, 5rem);
    }

    .compact-heading > p,
    .impact-heading > p {
        max-width: 620px;
    }

    .manifesto-proof {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .audience-card {
        min-height: 225px;
        padding: 25px;
    }

    .audience-card h3 {
        margin-top: 42px;
    }

    .ecosystem-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecosystem-card {
        min-height: 250px;
    }

    .ecosystem-card-toggle h3 {
        margin-top: 48px;
    }

    .platform-compact {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .platform-network {
        min-height: 330px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 0;
    }

    .impact-cards {
        grid-template-columns: 1fr;
    }

    .impact-card {
        min-height: 470px;
    }
}

@media (max-width: 560px) {
    .compact-heading .section-number,
    .impact-heading > .section-number {
        display: block;
        width: 100%;
        text-align: center;
    }

    .compact-stats {
        grid-template-columns: 1fr;
    }

    .compact-stats > div {
        min-height: 118px;
    }

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

    .audience-card {
        min-height: 200px;
        padding: 24px;
    }

    .audience-card:hover {
        transform: none;
    }

    .audience-card h3 {
        margin-top: 34px;
    }

    .ecosystem-cards {
        margin-top: 42px;
        grid-template-columns: 1fr;
    }

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

    .ecosystem-card:hover {
        transform: none;
    }

    .ecosystem-card-toggle {
        display: grid;
        align-items: center;
        padding: 22px 20px;
        cursor: pointer;
        grid-template-columns: 32px minmax(0, 1fr) 18px;
        gap: 14px;
    }

    .ecosystem-card-toggle > span {
        text-align: center;
    }

    .ecosystem-card-toggle h3 {
        min-height: 0;
        margin: 0;
        font-size: 1.35rem;
    }

    .ecosystem-card-icon {
        position: relative;
        display: block;
        width: 14px;
        height: 14px;
    }

    .ecosystem-card-icon::before,
    .ecosystem-card-icon::after {
        position: absolute;
        top: 50%;
        left: 0;
        width: 14px;
        height: 1px;
        background: var(--blue-light);
        content: "";
        transition: transform 0.3s var(--ease);
    }

    .ecosystem-card-icon::after {
        transform: rotate(90deg);
    }

    .ecosystem-card.is-open .ecosystem-card-icon::after {
        transform: rotate(90deg) scaleX(0);
    }

    .ecosystem-card-answer {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.45s var(--ease), opacity 0.3s ease;
    }

    .ecosystem-card.is-open .ecosystem-card-answer {
        max-height: 220px;
        opacity: 1;
    }

    .ecosystem-card-answer p {
        padding: 0 20px 24px 66px;
    }

    .platform-compact {
        padding: 0;
    }

    .platform-compact-copy {
        padding: 30px 22px;
    }

    .platform-status {
        align-items: flex-start;
        border-radius: 18px;
        line-height: 1.45;
    }

    .platform-status i {
        margin-top: 4px;
    }

    .platform-network {
        display: grid;
        min-height: 0;
        padding: 28px 20px;
        background-size: 34px 34px;
        gap: 10px;
    }

    .platform-network::before,
    .platform-network::after {
        display: none;
    }

    .platform-network-core {
        position: relative;
        top: auto;
        left: auto;
        width: 84px;
        height: 84px;
        margin: 0 auto 10px;
        padding: 14px;
        transform: none;
    }

    .platform-network-core img {
        width: 28px;
        height: 28px;
    }

    .platform-network-node {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        min-width: 0;
    }

    .platform-network-node::before {
        display: none;
    }

    .impact-card {
        min-height: 0;
        padding: 36px 26px;
    }

    .impact-card:hover {
        transform: none;
    }

    .impact-card::before {
        font-size: 17rem;
    }

    .impact-card h3 {
        margin-top: 48px;
    }

    .contact-grid {
        gap: 34px;
    }

    .contact-copy h2 {
        margin-bottom: 22px;
        font-size: clamp(3.15rem, 15vw, 4.1rem);
    }

    .contact-note {
        margin-top: 30px;
    }

    .contact-form label {
        margin-bottom: 18px;
    }
}

/* Keep the complete header + hero composition inside shorter screens. */
@media (min-width: 821px) and (max-height: 820px) {
    :root {
        --header-height: 78px;
    }

    .hero-content {
        padding-top: calc(var(--header-height) + 18px);
        padding-bottom: 58px;
    }

    .eyebrow {
        margin-bottom: 18px;
    }

    .hero h1 {
        margin-bottom: 20px;
        font-size: clamp(3.8rem, 10vh, 5.5rem);
    }

    .hero-lead {
        margin-bottom: 26px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-actions .button {
        min-height: 50px;
    }

    .hero-footer {
        bottom: 16px;
    }
}

@media (max-width: 560px) and (max-height: 720px) {
    .hero-content {
        padding-top: calc(var(--header-height) + 12px);
        padding-bottom: 30px;
    }

    .eyebrow {
        margin-bottom: 14px;
    }

    .hero h1 {
        margin-bottom: 16px;
        font-size: clamp(2.8rem, 14vw, 3.8rem);
    }

    .hero-lead {
        margin-bottom: 20px;
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .hero-actions .button {
        min-height: 50px;
    }

    .hero-footer {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::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;
    }
}
