:root {
    --ink: #06111f;
    --blue: #0000ff;
    --blue-rgb: 0, 0, 255;
    --blue-mid: #2f5bff;
    --blue-soft: #7ac4ff;
    --red:#e6222c;
    --gold: #d5b55f;
    --gold-soft: #e7d39a;
    --paper: #f7f4ee;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, .68);
    --muted-strong: rgba(255, 255, 255, .84);
    --line: rgba(255, 255, 255, .16);
    --shadow: 0 34px 90px rgba(0, 0, 0, .28);
    --hero-media-height: clamp(320px, 28vw, 400px);
    --panel-min-height: 118vh;
    --detail-min-height: 620px;
    --body-copy-size: clamp(16px, 1.02vw, 17px);
    --body-copy-line: 1.78;
    --title-size: clamp(40px, 4.2vw, 68px);
    --section-title-size: clamp(34px, 3.5vw, 56px);
    --eyebrow-size: 10px;
    --eyebrow-space: .22em;
    --panel-padding: clamp(28px, 3.2vw, 52px);
    --split-nav-height: 110px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--white);
    background-color: var(--blue);
    background-image:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .18) 0%, transparent 20%),
        radial-gradient(circle at 86% 16%, rgba(122, 196, 255, .34) 0%, transparent 24%),
        radial-gradient(circle at 52% 82%, rgba(7, 28, 166, .46) 0%, transparent 30%),
        linear-gradient(135deg, #0000ff 0%, #1630ff 34%, #2b59ff 64%, #82d3ff 100%);
    font-family: Inter, Arial, Helvetica, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.split-nav-open {
    overflow: hidden;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
}

.split-page {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: var(--panel-min-height);
    align-items: stretch;
    overflow: visible;
}

.split-page::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 8;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .42), transparent);
    content: "";
    pointer-events: none;
}

.split-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .42;
    filter: saturate(1.02) contrast(1.04) brightness(.48);
    pointer-events: none;
}

.split-page::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(2, 7, 19, .22) 0%, rgba(2, 7, 19, .42) 54%, rgba(2, 7, 19, .72) 100%),
        linear-gradient(90deg, rgba(150, 14, 28, .28), rgba(var(--blue-rgb), .34)),
        linear-gradient(180deg, rgba(5, 10, 20, .24), rgba(5, 10, 20, .62));
    content: "";
    pointer-events: none;
}

.split-column {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: minmax(var(--panel-min-height), auto) minmax(var(--detail-min-height), 1fr) auto;
    min-width: 0;
    min-height: 100%;
}

.split-site-header {
    position: relative;
    z-index: 30;
    padding: 14px clamp(16px, 2vw, 28px) 0;
}

.split-site-nav,
.split-nav-menu {
    pointer-events: auto;
}

.split-site-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
    backdrop-filter: blur(22px);
}

.split-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: clamp(33px, 2.85vw, 44px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.split-nav-brand img {
    width: 33px;
    height: 33px;
    transform: translateY(-1px);
}

.split-nav-controls {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.split-language-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    max-width: min(52vw, 680px);
}

.split-language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.split-language-link img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 7px;
    object-fit: cover;
}

.split-language-link:hover,
.split-language-link:focus-visible,
.split-language-link.is-active {
    border-color: rgba(213, 181, 95, .64);
    box-shadow: 0 14px 24px rgba(0, 0, 0, .24);
    outline: none;
    transform: translateY(-1px);
}

.split-nav-toggle,
.split-nav-close {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--white);
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
}

.split-nav-toggle {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.split-nav-toggle-bars {
    display: inline-grid;
    gap: 3px;
}

.split-nav-toggle-bars span {
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
}

.split-nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: clamp(16px, 2vw, 28px);
    left: clamp(16px, 2vw, 28px);
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(var(--blue-rgb), .96), rgba(47, 91, 255, .92), rgba(122, 196, 255, .82));
    box-shadow: 0 40px 90px rgba(0, 0, 0, .34);
    backdrop-filter: blur(24px);
}

.split-nav-menu-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.split-nav-kicker {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.split-nav-menu-header h2 {
    margin: 0;
    color: var(--white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 3vw, 52px);
    font-weight: 700;
    line-height: .95;
}

.split-nav-close {
    min-width: 46px;
    min-height: 46px;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
}

.split-nav-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.split-nav-group {
    display: grid;
    align-content: start;
    gap: 14px;
}

.split-nav-group h3 {
    margin: 0;
    color: var(--gold-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.split-nav-group h3::after {
    display: block;
    width: 52px;
    height: 2px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--group-color, rgba(255, 255, 255, .24));
    content: "";
}

.split-nav-links {
    display: grid;
    gap: 10px;
}

.split-nav-links a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding-bottom: 10px;
    color: rgba(255, 255, 255, .84);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .18s ease, border-color .18s ease;
}

.split-nav-links a:hover,
.split-nav-links a:focus-visible {
    border-color: rgba(213, 181, 95, .48);
    color: var(--white);
    outline: none;
}

.split-panel {
    position: relative;
    height: var(--panel-min-height);
    min-height: var(--panel-min-height);
    padding: var(--panel-padding);
    overflow: hidden;
}

.split-panel::after {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    content: "";
    pointer-events: none;
}

.split-panel-cert {
    display: grid;
    grid-template-rows: auto 1fr;
    background:
        radial-gradient(ellipse at 22% 18%, rgba(255, 255, 255, .16), transparent 30%),
        radial-gradient(ellipse at 76% 74%, rgba(213, 181, 95, .13), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 31%),
        linear-gradient(32deg, transparent 0 49%, rgba(255, 255, 255, .07) 49.1% 49.35%, transparent 49.45% 100%),
        linear-gradient(180deg, rgba(220, 34, 46, .97) 0%, rgba(111, 5, 17, .99) 100%);
    backdrop-filter: saturate(1.18) contrast(1.06);
    color: var(--white);
}

.split-panel-cert::before {
    position: absolute;
    inset: 12% auto auto -20%;
    width: 70%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    content: "";
}

.split-panel-cert::after {
    position: absolute;
    right: -18%;
    bottom: -26%;
    width: 62%;
    aspect-ratio: 1;
    border: 1px solid rgba(213, 181, 95, .22);
    border-radius: 50%;
    content: "";
}

.split-panel-world {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    border-left: 1px solid var(--line);
    background:
        radial-gradient(ellipse at 74% 24%, rgba(213, 181, 95, .12), transparent 30%),
        radial-gradient(ellipse at 24% 72%, rgba(122, 196, 255, .18), transparent 34%),
        linear-gradient(116deg, rgba(255, 255, 255, .05), transparent 26%),
        linear-gradient(32deg, transparent 0 49%, rgba(213, 181, 95, .08) 49.1% 49.28%, transparent 49.38% 100%),
        linear-gradient(135deg, rgba(var(--blue-rgb), .95) 0%, rgba(47, 91, 255, .92) 52%, rgba(122, 196, 255, .82) 100%);
    backdrop-filter: saturate(1.2) contrast(1.08);
}

.panel-top {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 34px;
}

.panel-top-spacer {
    visibility: hidden;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(18px, 1.7vw, 26px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
    text-decoration: none;
    text-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}

.brand img {
    width: 23px;
    height: 23px;
    transform: translateY(-2px);
}

.panel-count,
.contact-link,
.kicker {
    font-size: var(--eyebrow-size);
    font-weight: 800;
    letter-spacing: var(--eyebrow-space);
    text-transform: uppercase;
}

.panel-count {
    color: rgba(255, 255, 255, .62);
}

.split-panel-world .panel-count,
.contact-link,
.split-panel-world .kicker {
    color: var(--gold);
}

.contact-link {
    text-decoration: none;
}

.cert-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(20px, 2vw, 28px);
    padding: clamp(20px, 2.8vw, 40px) 0;
    min-height: calc(var(--hero-media-height) + 180px);
}

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

.kicker {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .76);
}

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

h1 {
    max-width: 620px;
    margin-bottom: clamp(16px, 2vw, 26px);
    font-size: var(--title-size);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: .96;
    text-transform: none;
    text-wrap: balance;
    text-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.cert-logo-frame {
    position: relative;
    display: grid;
    place-items: center;
    width: var(--hero-media-height);
    min-width: var(--hero-media-height);
    height: var(--hero-media-height);
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    margin: 0 0 0 clamp(8px, 4vw, 74px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .96) 42%, rgba(242, 247, 255, .92) 68%, rgba(224, 236, 255, .88) 100%);
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .85);
    isolation: isolate;
}

.cert-logo-frame::before,
.cert-logo-frame::after,
.seal-ring {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.cert-logo-frame::before {
    inset: -18px;
    z-index: -1;
    border: 1px solid rgba(213, 181, 95, .52);
    opacity: .74;
}

.cert-logo-frame::after {
    inset: 18px;
    border: 1px solid rgba(180, 31, 39, .14);
}

.seal-ring {
    inset: -34px;
    z-index: -2;
    border: 1px dashed rgba(255, 255, 255, .32);
}

.cert-logo-frame img {
    width: 68%;
    max-height: 68%;
    filter: drop-shadow(0 18px 26px rgba(6, 17, 31, .18));
}

.synopsis {
    max-width: 540px;
    margin-bottom: 0;
    color: var(--muted-strong);
    font-size: var(--body-copy-size);
    font-weight: 500;
    line-height: var(--body-copy-line);
    padding-left: clamp(0px, 4vw, 74px);
    text-wrap: pretty;
}

.world-copy {
    position: relative;
    z-index: 3;
    max-width: 620px;
    margin-top: clamp(14px, 2vw, 28px);
}

.world-copy h2 {
    margin-bottom: 20px;
    font-size: var(--title-size);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: .96;
    text-transform: none;
    text-wrap: balance;
    text-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.world-copy p:last-child {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--muted-strong);
    font-size: var(--body-copy-size);
    font-weight: 500;
    line-height: var(--body-copy-line);
    text-wrap: pretty;
}

.world-stage {
    position: relative;
    z-index: 2;
    align-self: start;
    width: min(100%, 900px);
    margin: clamp(10px, 1.6vw, 24px) auto 0;
    aspect-ratio: 1.72;
    min-height: var(--hero-media-height);
    transform: translateX(-54px);
}

.map-orbit {
    position: absolute;
    inset: 12% 5%;
    z-index: 1;
    border: 1px solid rgba(213, 181, 95, .18);
    border-radius: 50%;
    pointer-events: none;
    transform: rotate(-9deg);
}

.map-orbit-two {
    inset: 22% 13%;
    border-color: rgba(255, 255, 255, .12);
    transform: rotate(12deg);
}

.world-map {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
}

.world-map svg {
    display: block;
    width: 104%;
    height: auto;
    max-height: 100%;
    opacity: .92;
    filter: drop-shadow(0 34px 70px rgba(0, 0, 0, .34));
}

.world-map svg path {
    fill: rgba(255, 255, 255, .16) !important;
    stroke: rgba(231, 211, 154, .36) !important;
    stroke-width: .65 !important;
}

.presidio-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.presidio-dot {
    position: absolute;
    left: var(--x);
    top: var(--y);
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    padding: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #ead07d, var(--gold));
    box-shadow: 0 0 0 7px rgba(213, 181, 95, .11), 0 12px 24px rgba(0, 0, 0, .24);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.presidio-dot::after {
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(213, 181, 95, .18);
    border-radius: 50%;
    content: "";
}

.presidio-dot span {
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
}

.presidio-dot:hover,
.presidio-dot:focus-visible,
.presidio-dot.is-active {
    color: var(--white);
    background: linear-gradient(180deg, #d3333c, var(--red));
    box-shadow: 0 0 0 10px rgba(180, 31, 39, .2), 0 18px 32px rgba(0, 0, 0, .34);
    outline: none;
    transform: translate(-50%, -50%) scale(1.16);
}

.presidio-card {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px 22px;
    width: min(440px, 100%);
    margin-top: 24px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(4, 17, 35, .86), rgba(7, 30, 63, .68)),
        radial-gradient(circle at top right, rgba(213, 181, 95, .18), transparent 38%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.presidio-card::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(32deg, transparent 0 49%, rgba(255, 255, 255, .06) 49.1% 49.28%, transparent 49.38% 100%);
    content: "";
    pointer-events: none;
}

.presidio-card span,
.presidio-card strong,
.presidio-card p {
    position: relative;
    z-index: 1;
}

.presidio-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    min-height: 78px;
    padding: 10px 14px;
    border: 1px solid rgba(213, 181, 95, .28);
    border-radius: 50%;
    color: var(--gold-soft);
    background: radial-gradient(circle at 30% 30%, rgba(213, 181, 95, .18), rgba(213, 181, 95, .04));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.presidio-card strong {
    display: block;
    margin: 0 0 4px;
    color: var(--white);
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
    text-wrap: balance;
}

.presidio-card p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.detail-panel {
    position: relative;
    display: grid;
    align-content: center;
    height: 100%;
    min-height: var(--detail-min-height);
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding: clamp(44px, 5vw, 80px);
    overflow: hidden;
}

.detail-panel::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(32deg, transparent 0 49%, rgba(255, 255, 255, .08) 49.1% 49.26%, transparent 49.36% 100%),
        radial-gradient(ellipse at 78% 20%, rgba(213, 181, 95, .16), transparent 34%);
    content: "";
    pointer-events: none;
}

.detail-panel-cert {
    background: linear-gradient(180deg, #8f0a19 0%, #620613 100%);
}

.detail-panel-world {
    border-left: 1px solid rgba(255, 255, 255, .16);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 52%, var(--blue-soft) 100%);
}

.detail-eyebrow {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    color: var(--gold-soft);
    font-size: var(--eyebrow-size);
    font-weight: 800;
    letter-spacing: var(--eyebrow-space);
    text-transform: uppercase;
}

.detail-panel h2,
.detail-panel h3,
.detail-panel p {
    position: relative;
    z-index: 1;
}

.detail-panel h2 {
    max-width: 720px;
    margin: 0 0 26px;
    font-size: var(--section-title-size);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1;
    text-wrap: balance;
}

.detail-panel h3 {
    max-width: 640px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 700;
    line-height: 1.36;
    text-wrap: balance;
}

.detail-panel p:last-child {
    max-width: 660px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .76);
    font-size: var(--body-copy-size);
    font-weight: 500;
    line-height: var(--body-copy-line);
    text-wrap: pretty;
}

.opportunity-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(860px, 100%);
    margin-top: 8px;
}

.opportunity-item {
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
    backdrop-filter: blur(10px);
}

.opportunity-item h4 {
    margin: 0 0 10px;
    color: var(--gold-soft);
    font-size: clamp(16px, 1.15vw, 19px);
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.25;
}

.opportunity-item p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: clamp(14px, .98vw, 16px);
    font-weight: 500;
    line-height: 1.68;
    text-wrap: pretty;
}

.detail-cta-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.split-link-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(104px, 9vw, 132px);
    padding: clamp(22px, 3vw, 34px);
    border-top: 1px solid rgba(255, 255, 255, .16);
    overflow: hidden;
}

.split-link-panel::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(32deg, transparent 0 49%, rgba(255, 255, 255, .05) 49.1% 49.28%, transparent 49.38% 100%);
    content: "";
    pointer-events: none;
}

.split-link-panel-cert {
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, .08), transparent 26%),
        linear-gradient(180deg, rgba(129, 8, 20, .98) 0%, rgba(88, 4, 14, 1) 100%);
}

.split-link-panel-world {
    border-left: 1px solid rgba(255, 255, 255, .16);
    background:
        radial-gradient(circle at 82% 22%, rgba(122, 196, 255, .16), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 255, .96) 0%, rgba(29, 57, 255, .98) 58%, rgba(75, 123, 255, .92) 100%);
}

.split-link-panel .detail-cta-row {
    margin-top: 0;
    width: 100%;
}

.detail-cta-link {
    display: inline-flex;
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    min-height: 48px;
    padding: 12px 18px;
    border: 3px solid rgba(255, 255, 255, .96);
    border-radius: 999px;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .24);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
}

.detail-cta-link:hover,
.detail-cta-link:focus-visible {
    outline: none;
    transform: translateY(-2px);
}

.detail-panel-cert .detail-cta-link {
    background: linear-gradient(135deg, #ff3542 0%, #d62833 54%, #a31222 100%);
    box-shadow: 0 24px 46px rgba(180, 31, 39, .44), inset 0 1px 0 rgba(255, 255, 255, .24);
}

.detail-panel-cert .detail-cta-link:hover,
.detail-panel-cert .detail-cta-link:focus-visible {
    border-color: #ffffff;
    filter: brightness(1.05) saturate(1.05);
    box-shadow: 0 28px 52px rgba(180, 31, 39, .52), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.detail-panel-world .detail-cta-link {
    background: linear-gradient(135deg, #0000ff 0%, #1d39ff 54%, #4b7bff 100%);
    box-shadow: 0 24px 46px rgba(var(--blue-rgb), .42), inset 0 1px 0 rgba(255, 255, 255, .24);
}

.detail-panel-world .detail-cta-link:hover,
.detail-panel-world .detail-cta-link:focus-visible {
    border-color: #ffffff;
    filter: brightness(1.06) saturate(1.05);
    box-shadow: 0 28px 54px rgba(var(--blue-rgb), .5), inset 0 1px 0 rgba(255, 255, 255, .3);
}


.contact-section {
    position: relative;
    background:
        linear-gradient(180deg, #f2eee6 0%, #fbf9f4 100%);
}

.contact-shell {
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(6, 17, 31, .08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(247, 244, 238, .98) 100%);
    box-shadow: 0 28px 80px rgba(6, 17, 31, .08);
}

.contact-form:not(.contact-form-embed) {
    padding: clamp(28px, 4vw, 46px);
}

.contact-form-embed {
    padding: 0;
}

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

.contact-embed {
    display: block;
    width: 100%;
    min-height: 980px;
    border: 0;
    background: #ffffff;
}

.site-footer {
    padding: clamp(34px, 4vw, 54px) clamp(20px, 4vw, 48px) clamp(26px, 3vw, 36px);
    color: rgba(255, 255, 255, .82);
    background:
        linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 52%, var(--blue-soft) 100%);
}

.site-footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(220px, 1fr));
    gap: 32px;
    width: 100%;
    margin: 0 auto;
}

.site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--white);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 800;
    letter-spacing: -.04em;
    text-decoration: none;
}

.site-footer-logo img {
    width: 28px;
    height: 28px;
    transform: translateY(-2px);
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.7;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--white);
    text-decoration: underline;
    outline: none;
}

.site-footer-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: clamp(28px, 3vw, 40px);
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 18px;
}

.site-footer-meta p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    line-height: 1.6;
}

.field {
    display: grid;
    gap: 10px;
}

.field span {
    color: rgba(8, 41, 83, .72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(6, 17, 31, .1);
    padding: 16px 18px;
    color: #122132;
    background: #ffffff;
    font: inherit;
    outline: none;
    appearance: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(18, 33, 50, .42);
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(8, 41, 83, .36);
    box-shadow: 0 0 0 4px rgba(213, 181, 95, .18);
}

.field-full {
    margin-top: 24px;
}

.field textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-top: 30px;
}

.contact-actions button {
    border: 0;
    padding: 20px 30px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    box-shadow: 0 18px 34px rgba(var(--blue-rgb), .24);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.contact-actions button:hover,
.contact-actions button:focus-visible {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 22px 38px rgba(var(--blue-rgb), .3);
    outline: none;
}

.contact-privacy {
    margin: 18px 0 0;
    color: rgba(18, 33, 50, .54);
    font-size: 11px;
    line-height: 1.6;
}

.contact-linkout {
    padding: 0 clamp(28px, 4vw, 46px) clamp(28px, 4vw, 40px);
}

.contact-linkout a {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 14px 22px;
    border: 1px solid rgba(var(--blue-rgb), .14);
    border-radius: 999px;
    color: var(--blue);
    background: rgba(213, 181, 95, .12);
    box-shadow: 0 12px 28px rgba(var(--blue-rgb), .08);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-word;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-linkout a:hover,
.contact-linkout a:focus-visible {
    background: rgba(213, 181, 95, .2);
    box-shadow: 0 16px 34px rgba(var(--blue-rgb), .12);
    outline: none;
    transform: translateY(-1px);
}

@media (max-height: 920px) and (min-width: 981px) {
    :root {
        --panel-min-height: 100vh;
        --hero-media-height: clamp(238px, 21vw, 308px);
    }

    .split-panel {
        padding: clamp(22px, 2.3vw, 34px);
    }

    .cert-center {
        gap: 16px;
        min-height: calc(var(--hero-media-height) + 118px);
        padding: 10px 0;
    }

    .kicker {
        margin-bottom: 14px;
    }

    .synopsis {
        max-width: 500px;
        font-size: clamp(14px, .92vw, 15px);
        line-height: 1.58;
    }

    .world-stage {
        width: min(100%, 700px);
        margin-top: 2px;
        transform: translateX(-42px);
    }

    .world-copy {
        margin-top: 10px;
    }

    .world-copy h2 {
        margin-bottom: 10px;
        font-size: clamp(32px, 3vw, 46px);
    }

    .world-copy p:last-child {
        font-size: clamp(14px, .92vw, 16px);
        line-height: 1.5;
    }

    .presidio-card {
        width: min(342px, 100%);
        margin-top: 12px;
        padding: 14px 16px;
        gap: 10px 14px;
    }

    .presidio-card span {
        min-width: 54px;
        min-height: 54px;
        font-size: 9px;
    }

    .presidio-card strong {
        font-size: 16px;
        line-height: 1.04;
    }

    .presidio-card p {
        font-size: 10px;
        letter-spacing: .12em;
    }
}

@media (max-height: 820px) and (min-width: 981px) {
    .cert-center {
        min-height: calc(var(--hero-media-height) + 98px);
    }

    .world-stage {
        width: min(100%, 660px);
        transform: translateX(-30px);
    }

    .world-copy h2 {
        font-size: clamp(30px, 2.8vw, 42px);
    }

    .presidio-card {
        width: min(330px, 100%);
        padding: 14px 16px;
    }
}

@media (max-width: 1240px) {
    .split-site-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .split-nav-controls {
        justify-content: space-between;
    }

    .split-language-strip {
        max-width: 100%;
    }

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

@media (max-width: 980px) {
    .split-page::after {
        display: none;
    }

    .split-page {
        grid-template-columns: 1fr;
        align-items: start;
        overflow: visible;
    }

    .split-column {
        grid-template-rows: auto auto auto;
        min-height: auto;
    }

    .split-site-header {
        padding: 12px 12px 0;
    }

    .split-site-nav {
        padding: 14px;
        border-radius: 18px;
    }

    .split-nav-brand {
        font-size: 30px;
    }

    .split-nav-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .split-language-strip {
        justify-content: flex-start;
    }

    .split-nav-toggle {
        justify-content: center;
    }

    .split-nav-menu {
        top: calc(100% + 10px);
        right: 12px;
        left: 12px;
        max-height: calc(100vh - 190px);
        overflow: auto;
    }

    .split-nav-menu-grid {
        grid-template-columns: 1fr;
    }

    .split-panel {
        height: auto;
        min-height: auto;
    }

    .split-panel-cert {
        min-height: 108vh;
    }

    .split-panel-world {
        min-height: 108vh;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .detail-panel-world {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .16);
    }

    .split-link-panel-world {
        border-left: 0;
    }

    .presidio-card {
        width: 100%;
    }

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

    .contact-embed {
        min-height: 1120px;
    }

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

    .site-footer-meta {
        flex-direction: column;
    }

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

    .contact-actions {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .detail-cta-link {
        width: 100%;
        min-height: 44px;
        padding: 10px 16px;
    }
}

@media (max-width: 620px) {
    .split-panel {
        padding: 20px;
    }

    .panel-top {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .panel-top {
        flex-direction: column;
    }

    .split-nav-brand {
        font-size: 28px;
    }

    .split-nav-brand img {
        width: 28px;
        height: 28px;
    }

    .split-language-link {
        width: 32px;
        height: 24px;
    }

    .split-nav-menu-header h2 {
        font-size: clamp(26px, 8vw, 34px);
    }

    h1 {
        font-size: clamp(34px, 11vw, 52px);
    }

    .world-copy h2 {
        font-size: clamp(31px, 10vw, 48px);
        line-height: 1.06;
        text-wrap: pretty;
        padding-bottom: .14em;
    }

    .detail-panel h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .detail-panel h3 {
        font-size: clamp(18px, 5.8vw, 22px);
    }

    .world-stage {
        width: 112%;
        margin-left: -6%;
    }

    .cert-center {
        min-height: auto;
    }

    .cert-logo-frame,
    .synopsis {
        margin-left: 0;
        padding-left: 0;
    }

    .presidio-dot {
        width: 22px;
        height: 22px;
    }

    .presidio-card {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 16px;
        padding: 20px 18px;
    }

    .presidio-card span {
        min-width: 68px;
        min-height: 68px;
        font-size: 11px;
    }

    .presidio-card strong {
        font-size: clamp(16px, 5vw, 20px);
    }

    .contact-form:not(.contact-form-embed) {
        padding: 22px 18px;
    }

    .contact-linkout {
        padding: 0 18px 22px;
    }

    .site-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .field textarea {
        min-height: 132px;
    }
}
