@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
    color: #eefcff;
    background: #02070d;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    --cyan: #18f7ff;
    --cyan-soft: rgba(24, 247, 255, 0.22);
    --text-soft: rgba(223, 248, 255, 0.74);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Scroll-margin for header offset */

section[id] {
    scroll-margin-top: 100px;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 72% 28%,
            rgba(20, 221, 255, 0.2),
            transparent 34%),
        radial-gradient(circle at 15% 20%,
            rgba(113, 249, 255, 0.12),
            transparent 28%),
        linear-gradient(135deg, rgba(2, 7, 13, 0.5) 0%, rgba(5, 17, 29, 0.5) 42%, rgba(2, 7, 13, 0.5) 100%);
}

body::selection {
    color: #001015;
    background: var(--cyan);
}

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

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 60;
    width: min(1180px, calc(100% - 36px));
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 10px 8px 12px;
    transform: translateX(-50%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.site-header.hidden {
    transform: translate(-50%, -150%);
}

.site-header>* {
    pointer-events: auto;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 6px 16px 6px 6px;
    border: 1px solid rgba(157, 251, 255, 0.14);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(3, 13, 22, 0.62), rgba(4, 22, 32, 0.42));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), inset 0 0 24px rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(22px);
}

.site-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 16px 20px;
    border: 1px solid rgba(157, 251, 255, 0.12);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(4, 18, 27, 0.56), rgba(2, 8, 14, 0.44));
    box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.03), 0 12px 40px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.site-brand>span,
.site-footer-brand>span {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(24, 247, 255, 0.32);
    border-radius: 50%;
    color: #cfffff;
    background: rgba(24, 247, 255, 0.07);
    box-shadow:
        inset 0 0 18px rgba(24, 247, 255, 0.08),
        0 0 26px rgba(24, 247, 255, 0.1);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.site-brand strong,
.site-brand small,
.site-footer-brand strong,
.site-footer-brand p {
    display: block;
}

.site-brand strong {
    color: rgba(244, 255, 255, 0.94);
    font-size: 13px;
    line-height: 1.05;
}

.site-brand small {
    margin-top: 3px;
    color: rgba(157, 251, 255, 0.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(157, 251, 255, 0.14);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(3, 13, 22, 0.62), rgba(4, 22, 32, 0.42));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), inset 0 0 24px rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(22px);
}

.site-nav a,
.site-footer-nav a {
    color: rgba(223, 248, 255, 0.68);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        color 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.site-nav a {
    padding: 9px 13px;
    border-radius: 999px;
}

.site-nav a:hover {
    color: #efffff;
    background: rgba(157, 251, 255, 0.09);
}

.site-header-cta {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    border-radius: 999px;
    color: #001015;
    background: linear-gradient(135deg, #eaffff, var(--cyan));
    box-shadow: 0 0 26px rgba(24, 247, 255, 0.28);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.site-header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 34px rgba(24, 247, 255, 0.38);
}

.page-shell {
    position: relative;
    margin: 0;
    padding: 0;
    height: 970dvh;
    overflow: visible;
    background: transparent;
    --intro-release-y: 0px;
    --s0-opacity: 1;
    --s0-transform: translate3d(0, 0, 0);
    --s0-events: auto;
    --s1-opacity: 0;
    --s1-transform: scale(0.96);
    --s1-events: none;
    --s2-opacity: 0;
    --s2-transform: translate3d(100vw, 0, 0);
    --s2-events: none;
    --s3-opacity: 0;
    --s3-transform: translate3d(100vw, 0, 0);
    --s3-events: none;
    --s4-opacity: 0;
    --s4-transform: translate3d(100vw, 0, 0);
    --s4-events: none;
    --s5-opacity: 0;
    --s5-transform: translate3d(100vw, 0, 0);
    --s5-events: none;
}

.seamless-section {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: opacity, transform;
    z-index: 2;
}

.seamless-inner {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
}

.hero-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: clamp(28px, 5vh, 58px) clamp(22px, 7vw, 112px);
}

.empty-continuation-section {
    position: relative;
    min-height: 100dvh;
    margin-top: -1px;
    isolation: isolate;
    overflow: hidden;
    background: rgba(2, 7, 13, 0.7);
    z-index: 10;
}

.empty-continuation-section::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 82% 78%,
            rgba(24, 247, 255, 0.055),
            transparent 48%),
        linear-gradient(180deg,
            rgba(2, 7, 13, 0.15) 0%,
            rgba(2, 7, 13, 0.1) 20%,
            rgba(2, 7, 13, 0.05) 46%,
            rgba(2, 7, 13, 0.02) 100%);
}

.empty-continuation-section::after {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(2, 7, 13, 0.15),
            transparent 34% 74%,
            rgba(2, 7, 13, 0.1));
}

.content-stage {
    position: relative;
    z-index: 4;
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    padding: 0 0 clamp(22px, 4vh, 46px);
}

.section-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(24, 247, 255, 0.22);
    border-radius: 999px;
    color: #bafaff;
    background: rgba(4, 22, 32, 0.52);
    box-shadow: 0 0 38px rgba(24, 247, 255, 0.09);
    backdrop-filter: blur(18px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.program-portal {
    position: relative;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    align-content: center;
    padding: clamp(42px, 8vw, 100px);
    text-align: center;
    isolation: isolate;
    overflow: hidden;
}

.program-portal::before {
    position: absolute;
    content: "";
    width: min(78vw, 920px);
    height: min(48vw, 520px);
    z-index: -1;
    border: 1px solid rgba(24, 247, 255, 0.16);
    border-radius: 54px;
    background:
        linear-gradient(120deg, rgba(24, 247, 255, 0.12), transparent 34%),
        radial-gradient(ellipse at 78% 28%,
            rgba(24, 247, 255, 0.12),
            transparent 48%),
        linear-gradient(135deg, rgba(2, 7, 13, 0.96), rgba(4, 21, 31, 0.72));
    box-shadow:
        inset 0 0 86px rgba(24, 247, 255, 0.08),
        0 0 120px rgba(24, 247, 255, 0.1);
    transform: rotate(-4deg) skewX(-4deg);
    animation: portalPanelBreath 9s ease-in-out infinite alternate;
}

.portal-orbit {
    position: absolute;
    inset: 50% auto auto 50%;
    width: min(82vw, 980px);
    height: min(52vw, 560px);
    translate: -50% -50%;
    pointer-events: none;
    z-index: -1;
}

.portal-orbit span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(24, 247, 255, 0.13);
    border-radius: 48px;
    transform: rotate(var(--orbit-rotation, 0deg)) scale(var(--orbit-scale, 1)) skewX(-5deg);
    animation: orbitPulse 8s ease-in-out infinite alternate;
}

.portal-orbit span:nth-child(1) {
    --orbit-rotation: 18deg;
    --orbit-scale: 0.78;
}

.portal-orbit span:nth-child(2) {
    --orbit-rotation: -21deg;
    --orbit-scale: 0.94;
    animation-delay: -2s;
}

.portal-orbit span:nth-child(3) {
    --orbit-rotation: 38deg;
    --orbit-scale: 1.12;
    animation-delay: -4s;
}

.program-portal h2,
.audience-sector h2,
.section-heading-center h2,
.module-header h2,
.outcome-lab h2,
.start-dock h2 {
    margin: 0;
    color: #f4ffff;
    font-size: clamp(34px, 5vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.program-portal h2 {
    max-width: 960px;
    margin-top: 22px;
}

.program-portal h2 span {
    display: block;
    color: rgba(238, 252, 255, 0.76);
    font-weight: 400;
}

.program-portal p,
.audience-sector p,
.start-dock-core p {
    max-width: 780px;
    margin: 24px auto 0;
    color: rgba(223, 248, 255, 0.68);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.55;
}

.problem-radar {
    position: relative;
    min-height: 760px;
    display: grid;
    place-items: center;
    margin: clamp(60px, 10vh, 120px) 0;
    isolation: isolate;
}

.problem-radar::before,
.problem-radar::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.problem-radar::before {
    width: min(74vw, 860px);
    height: min(54vw, 420px);
    border: 1px solid rgba(24, 247, 255, 0.12);
    border-radius: 44px;
    background:
        linear-gradient(90deg, rgba(24, 247, 255, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(24, 247, 255, 0.055) 1px, transparent 1px),
        radial-gradient(ellipse at 72% 35%,
            rgba(24, 247, 255, 0.12),
            transparent 54%);
    background-size:
        46px 46px,
        46px 46px,
        auto;
    opacity: 0.82;
    transform: rotate(-3deg);
}

.problem-radar::after {
    width: 12px;
    height: 12px;
    background: #eaffff;
    box-shadow: 0 0 26px rgba(24, 247, 255, 0.9);
    animation: radarDrift 7s ease-in-out infinite alternate;
}

.radar-core {
    position: relative;
    z-index: 2;
    width: min(460px, 78vw);
    min-height: 230px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 34px;
    border: 1px solid rgba(24, 247, 255, 0.28);
    border-radius: 34px;
    text-align: center;
    background:
        radial-gradient(ellipse at 72% 24%,
            rgba(24, 247, 255, 0.16),
            transparent 54%),
        linear-gradient(135deg, rgba(3, 28, 39, 0.76), rgba(3, 15, 24, 0.68));
    box-shadow:
        inset 0 0 46px rgba(24, 247, 255, 0.09),
        0 0 90px rgba(24, 247, 255, 0.14);
    backdrop-filter: blur(20px);
    transform: rotate(-1.5deg);
}

.radar-core span {
    color: rgba(157, 251, 255, 0.74);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.radar-core strong {
    color: #ffffff;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.radar-chip {
    position: absolute;
    z-index: 3;
    width: min(300px, 28vw);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 17px;
    border: 1px solid rgba(157, 251, 255, 0.2);
    border-radius: 24px;
    color: rgba(238, 252, 255, 0.86);
    background: linear-gradient(135deg,
            rgba(8, 37, 52, 0.72),
            rgba(4, 14, 23, 0.52));
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    font-weight: 700;
    line-height: 1.28;
}

.radar-chip span,
.audience-node span,
.outcome-card span {
    flex: 0 0 auto;
    color: #001015;
    background: linear-gradient(135deg, #efffff, #18f7ff);
    box-shadow: 0 0 24px rgba(24, 247, 255, 0.32);
}

.radar-chip span,
.audience-node span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.radar-chip:nth-child(2) {
    left: 5%;
    top: 12%;
}

.radar-chip:nth-child(3) {
    right: 7%;
    top: 13%;
}

.radar-chip:nth-child(4) {
    left: 0;
    bottom: 18%;
}

.radar-chip:nth-child(5) {
    right: 0;
    bottom: 20%;
}

.radar-chip:nth-child(6) {
    left: 50%;
    bottom: 20%;
    translate: -50% 0;
}

.diagnostic-insights {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 4;
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    translate: -50% 0;
}

.diagnostic-insight-card {
    min-height: 160px;
    padding: 18px;
    border: 1px solid rgba(157, 251, 255, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 0%,
            rgba(24, 247, 255, 0.12),
            transparent 44%),
        linear-gradient(145deg, rgba(7, 29, 42, 0.72), rgba(3, 11, 18, 0.62));
    box-shadow:
        inset 0 0 26px rgba(24, 247, 255, 0.045),
        0 20px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.diagnostic-insight-card span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #001015;
    background: linear-gradient(135deg, #efffff, #18f7ff);
    box-shadow: 0 0 22px rgba(24, 247, 255, 0.3);
    font-size: 10px;
    font-weight: 900;
}

.diagnostic-insight-card h3 {
    margin: 14px 0 0;
    color: #f4ffff;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.diagnostic-insight-card p {
    margin: 9px 0 0;
    color: rgba(223, 248, 255, 0.66);
    font-size: 14px;
    line-height: 1.4;
}

.audience-sector {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
    gap: clamp(24px, 5vw, 76px);
    align-items: center;
    margin: clamp(70px, 12vh, 150px) 0;
}

.audience-sector>div:first-child {
    position: sticky;
    top: 90px;
    align-self: start;
}

.audience-sector h2,
.section-heading-center h2,
.outcome-lab h2,
.start-dock h2 {
    margin-top: 18px;
    font-size: clamp(32px, 4vw, 58px);
}

.audience-sector p {
    margin-left: 0;
}

.audience-grid {
    display: grid;
    gap: 16px;
    perspective: 1000px;
}

.glass-node {
    border: 1px solid rgba(157, 251, 255, 0.18);
    background:
        radial-gradient(circle at 100% 0%,
            rgba(24, 247, 255, 0.1),
            transparent 36%),
        linear-gradient(135deg, rgba(8, 37, 52, 0.72), rgba(4, 14, 23, 0.52));
    box-shadow:
        inset 0 0 28px rgba(24, 247, 255, 0.045),
        0 22px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.audience-node {
    min-height: 118px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 28px;
    transform-origin: left center;
}

.audience-node:nth-child(even) {
    margin-left: clamp(0px, 6vw, 86px);
}

.audience-node p {
    margin: 0;
    color: rgba(238, 252, 255, 0.84);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.42;
}

.course-orbits {
    position: relative;
    margin: clamp(80px, 14vh, 180px) 0;
}

.section-heading-center {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-bottom: clamp(28px, 6vh, 70px);
}

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

.course-track-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    perspective: 1200px;
}

.course-track-card {
    position: relative;
    min-height: 430px;
    display: grid;
    align-content: space-between;
    gap: 30px;
    padding: 26px;
    border: 1px solid rgba(157, 251, 255, 0.18);
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 18%,
            rgba(24, 247, 255, 0.16),
            transparent 34%),
        linear-gradient(155deg, rgba(8, 37, 52, 0.74), rgba(2, 8, 14, 0.68));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    transform-style: preserve-3d;
    backdrop-filter: blur(20px);
}

.course-track-card::before {
    position: absolute;
    content: "";
    width: 240px;
    aspect-ratio: 1;
    right: -86px;
    top: -72px;
    border: 1px solid rgba(24, 247, 255, 0.2);
    border-radius: 50%;
    box-shadow: inset 0 0 34px rgba(24, 247, 255, 0.08);
}

.course-track-index {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #001015;
    background: linear-gradient(135deg, #efffff, #18f7ff);
    box-shadow: 0 0 40px rgba(24, 247, 255, 0.34);
    font-size: 18px;
    font-weight: 900;
}

.course-period {
    display: block;
    color: rgba(157, 251, 255, 0.7);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.course-track-card h3,
.module-card h3,
.outcome-card h3,
.final-cta-panel h3 {
    margin: 10px 0 0;
    color: #f4ffff;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.course-track-card p,
.course-track-card strong {
    display: block;
    margin-top: 16px;
    color: rgba(223, 248, 255, 0.67);
    line-height: 1.48;
}

.course-track-card strong {
    color: rgba(234, 255, 255, 0.92);
}

.program-horizontal-sections {
    position: relative;
    min-height: 100dvh;
    display: grid;
    align-content: center;
    margin: clamp(40px, 8vh, 90px) 0;
    background: #02070d;
}

.program-scroll-shell {
    width: min(1160px, 92vw);
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.program-scroll-hint {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -54px;
    /* moved further under the controls to prevent overlap */
    z-index: 7;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    /* slightly more horizontal padding */
    border: 1px solid rgba(157, 251, 255, 0.18);
    border-radius: 999px;
    color: rgba(223, 248, 255, 0.68);
    background: rgba(3, 14, 22, 0.52);
    box-shadow:
        0 0 26px rgba(24, 247, 255, 0.08),
        inset 0 0 18px rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(16px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    pointer-events: none;
    transform: translateX(-50%);
    animation: programScrollHintFloat 3.2s ease-in-out infinite;
}

.program-scroll-hint-track {
    position: relative;
    width: 80px;
    /* made wider from 48px */
    height: 20px;
    border: 1px solid rgba(157, 251, 255, 0.24);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(157, 251, 255, 0.06);
}

.program-scroll-hint-track::before {
    position: absolute;
    content: "";
    inset: 5px auto 5px 7px;
    width: 10px;
    border-radius: 999px;
    background: rgba(186, 250, 255, 0.92);
    box-shadow: 0 0 16px rgba(24, 247, 255, 0.48);
    animation: programScrollHintDot 2.1s cubic-bezier(0.45, 0, 0.22, 1) infinite;
}

.program-horizontal-track {
    display: flex;
    height: calc(100dvh - 82px);
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 4px 18px;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transform: rotateX(180deg);
}

.program-scroll-controls {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 0;
}

.program-scroll-segment {
    position: relative;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(157, 251, 255, 0.14);
    box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.04);
    cursor: pointer;
    overflow: hidden;
    transition:
        background 180ms ease,
        box-shadow 180ms ease,
        opacity 180ms ease;
}

.program-scroll-segment:hover,
.program-scroll-segment:focus-visible {
    background: rgba(157, 251, 255, 0.22);
}

.program-scroll-segment:focus-visible {
    outline: 1px solid rgba(24, 247, 255, 0.65);
    outline-offset: 4px;
}

.program-scroll-segment.is-active {
    background: linear-gradient(90deg,
            rgba(24, 247, 255, 0.72),
            rgba(186, 250, 255, 0.96));
    box-shadow:
        0 0 24px rgba(24, 247, 255, 0.28),
        inset 0 0 12px rgba(255, 255, 255, 0.32);
}

.program-horizontal-track:focus-visible {
    outline: 1px solid rgba(24, 247, 255, 0.42);
    outline-offset: 8px;
    border-radius: 34px;
}

.program-horizontal-track::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.module-constellation {
    position: relative;
    margin: clamp(74px, 13vh, 170px) 0;
}

.program-horizontal-track .module-constellation {
    flex: 0 0 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    margin: 0;
    padding: clamp(16px, 2.5vh, 24px);
    border: 1px solid rgba(157, 251, 255, 0.12);
    border-radius: 38px;
    background: rgba(2, 7, 13, 0.18);
    scroll-snap-align: start;
    overflow: hidden;
    transform: rotateX(180deg);
}

.program-horizontal-track .module-header {
    margin-bottom: clamp(12px, 2vh, 18px);
}

.program-horizontal-track .module-header h2 {
    font-size: clamp(25px, 2.8vw, 42px);
}

.program-horizontal-track .module-grid {
    min-height: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
    gap: 9px;
    overflow: hidden;
}

.program-horizontal-track .module-card,
.program-horizontal-track .module-card:nth-child(5n + 1),
.program-horizontal-track .module-card:nth-child(5n + 3),
.program-horizontal-track .module-card:nth-child(5n + 4) {
    grid-column: auto;
}

.program-horizontal-track .module-card {
    min-height: 0;
    padding: 12px;
    border-radius: 18px;
    overflow: hidden;
}

.program-horizontal-track .module-card h3 {
    font-size: clamp(14px, 1.05vw, 18px);
}

.program-horizontal-track .module-card strong {
    margin-top: 7px;
    font-size: 12px;
}

.program-horizontal-track .module-card ul {
    gap: 5px;
    margin-top: 10px;
}

.program-horizontal-track .module-card li {
    font-size: clamp(10px, 0.76vw, 12px);
    line-height: 1.18;
}

.program-horizontal-track .module-card::before {
    display: none;
}

.module-constellation::before {
    position: absolute;
    content: "";
    left: 30px;
    top: 128px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(180deg, rgba(24, 247, 255, 0.5), transparent);
    opacity: 0.42;
}

.module-header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.module-header>span {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(24, 247, 255, 0.32);
    border-radius: 50%;
    color: #bafaff;
    box-shadow:
        inset 0 0 28px rgba(24, 247, 255, 0.08),
        0 0 32px rgba(24, 247, 255, 0.12);
    font-weight: 900;
}

.module-header p {
    margin: 3px 0 0;
    color: rgba(157, 251, 255, 0.68);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    align-items: stretch;
}

.module-card {
    position: relative;
    min-height: 250px;
    grid-column: span 4;
    padding: 22px;
    border: 1px solid rgba(157, 251, 255, 0.16);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 10%,
            rgba(24, 247, 255, 0.12),
            transparent 32%),
        linear-gradient(145deg, rgba(7, 29, 42, 0.76), rgba(3, 11, 18, 0.62));
    box-shadow:
        inset 0 0 26px rgba(24, 247, 255, 0.045),
        0 24px 80px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.module-card:nth-child(5n + 1),
.module-card:nth-child(5n + 4) {
    grid-column: span 5;
}

.module-card:nth-child(5n + 3) {
    grid-column: span 3;
}

.module-card::before {
    position: absolute;
    content: "";
    right: 18px;
    bottom: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #18f7ff;
    box-shadow: 0 0 18px rgba(24, 247, 255, 0.86);
}

.module-number {
    color: rgba(157, 251, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.module-card strong {
    display: block;
    margin-top: 10px;
    color: #9ffbff;
    font-size: 13px;
    line-height: 1.35;
}

.module-card ul {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.module-card li {
    position: relative;
    padding-left: 15px;
    color: rgba(223, 248, 255, 0.66);
    font-size: 14px;
    line-height: 1.38;
}

.module-card li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0.62em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(24, 247, 255, 0.8);
    box-shadow: 0 0 12px rgba(24, 247, 255, 0.7);
}

.readiness-test {
    position: relative;
    min-height: auto;
    display: grid;
    align-content: center;
    margin: clamp(28px, 5vh, 64px) 0;
    padding: clamp(18px, 3vw, 34px);
    border: 1px solid rgba(157, 251, 255, 0.14);
    border-radius: clamp(30px, 5vw, 58px);
    background:
        radial-gradient(circle at 50% 0%,
            rgba(24, 247, 255, 0.1),
            transparent 38%),
        linear-gradient(145deg, rgba(5, 24, 35, 0.62), rgba(2, 7, 13, 0.4));
    box-shadow: inset 0 0 70px rgba(24, 247, 255, 0.035);
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.readiness-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
}

.readiness-card {
    position: relative;
    min-height: 190px;
    display: grid;
    align-content: start;
    padding: 14px;
    border: 1px solid rgba(157, 251, 255, 0.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 8%,
            rgba(24, 247, 255, 0.1),
            transparent 38%),
        rgba(4, 18, 27, 0.58);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.readiness-card>span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #001015;
    background: linear-gradient(135deg, #efffff, #18f7ff);
    box-shadow: 0 0 24px rgba(24, 247, 255, 0.32);
    font-size: 10px;
    font-weight: 900;
}

.readiness-card h3 {
    margin: 10px 0 0;
    color: #f4ffff;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.readiness-card p,
.readiness-card li {
    color: rgba(223, 248, 255, 0.66);
    font-size: 12px;
    line-height: 1.26;
}

.readiness-card p {
    margin: 8px 0 0;
}

.readiness-card ul {
    display: grid;
    gap: 4px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.readiness-card li {
    position: relative;
    padding-left: 14px;
}

.readiness-card li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0.62em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(24, 247, 255, 0.8);
    box-shadow: 0 0 12px rgba(24, 247, 255, 0.7);
}

.readiness-card strong {
    display: block;
    margin-top: 10px;
    color: #9ffbff;
    font-size: 12px;
    line-height: 1.28;
}

.readiness-summary {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgba(24, 247, 255, 0.22);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(10, 46, 62, 0.62), rgba(4, 14, 23, 0.5));
}

.readiness-summary>span {
    color: rgba(157, 251, 255, 0.74);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.readiness-summary p {
    margin: 0;
    color: rgba(223, 248, 255, 0.76);
    font-size: 14px;
    line-height: 1.34;
}

.readiness-summary div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.readiness-summary strong {
    padding: 7px 10px;
    border: 1px solid rgba(157, 251, 255, 0.18);
    border-radius: 999px;
    color: #f4ffff;
    background: rgba(24, 247, 255, 0.08);
    font-size: 12px;
}

.readiness-show-all,
.outcome-show-all {
    display: none;
}

.outcome-lab {
    position: relative;
    min-height: 100dvh;
    display: grid;
    align-content: center;
    margin: clamp(40px, 8vh, 90px) 0;
    padding: clamp(24px, 4vw, 52px);
    border: 1px solid rgba(157, 251, 255, 0.14);
    border-radius: clamp(30px, 5vw, 58px);
    background:
        radial-gradient(circle at 50% 0%,
            rgba(24, 247, 255, 0.12),
            transparent 38%),
        linear-gradient(145deg, rgba(5, 24, 35, 0.66), rgba(2, 7, 13, 0.42));
    box-shadow: inset 0 0 70px rgba(24, 247, 255, 0.035);
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.outcome-lab::before {
    position: absolute;
    content: "";
    width: 42vw;
    aspect-ratio: 1;
    right: -18vw;
    top: -20vw;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(24, 247, 255, 0.1),
            transparent 68%);
}

.outcome-lab>h2 {
    max-width: 720px;
}

.outcome-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.outcome-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 14px;
    align-items: start;
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(157, 251, 255, 0.16);
    border-radius: 26px;
    background: rgba(4, 18, 27, 0.58);
    backdrop-filter: blur(18px);
}

.outcome-card:nth-child(even) {
    justify-self: stretch;
}

.outcome-card span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
}

.outcome-card h3,
.final-cta-panel h3 {
    margin-top: 0;
}

.outcome-card p,
.final-cta-panel p,
.price-card p {
    margin: 8px 0 0;
    color: rgba(223, 248, 255, 0.66);
    line-height: 1.45;
}

.start-dock {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(22px, 5vw, 70px);
    align-items: center;
    padding-bottom: 0;
}

.start-dock-core p {
    margin-left: 0;
}

.price-orbit {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.price-orbit::before {
    position: absolute;
    content: "";
    inset: 9% 8%;
    z-index: -1;
    border: 1px solid rgba(24, 247, 255, 0.12);
    border-radius: 50%;
    transform: rotate(-11deg);
}

.price-card {
    position: relative;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
    grid-template-areas:
        "label text"
        "price text";
    gap: 8px 16px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(157, 251, 255, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 0%,
            rgba(24, 247, 255, 0.13),
            transparent 42%),
        rgba(4, 18, 27, 0.62);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
    isolation: isolate;
    overflow: hidden;
}

.price-card-button {
    appearance: none;
    width: 100%;
    color: inherit;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.price-card-button::after {
    position: absolute;
    content: "";
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(circle at 92% 50%,
            rgba(24, 247, 255, 0.16),
            transparent 42%);
    opacity: 0.35;
    transition: opacity 180ms ease;
}

.price-card-button:hover {
    transform: translateY(-2px);
    border-color: rgba(24, 247, 255, 0.36);
    background:
        radial-gradient(circle at 90% 0%,
            rgba(24, 247, 255, 0.18),
            transparent 42%),
        rgba(4, 22, 32, 0.74);
    box-shadow:
        0 0 34px rgba(24, 247, 255, 0.16),
        0 24px 78px rgba(0, 0, 0, 0.3);
}

.price-card-button:hover::after {
    opacity: 1;
}

.price-card span {
    grid-area: label;
    color: rgba(157, 251, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.price-card strong {
    grid-area: price;
    display: block;
    color: #ffffff;
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.price-card p {
    grid-area: text;
    margin: 0;
    font-size: 14px;
    line-height: 1.32;
}

.price-payment-button {
    grid-area: action;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    justify-self: start;
    width: max-content;
    max-width: 100%;
    min-height: 38px;
    margin-top: 0;
    padding: 0 14px;
    border: 1px solid rgba(24, 247, 255, 0.3);
    border-radius: 999px;
    color: #001015;
    background: linear-gradient(135deg, #eaffff, var(--cyan));
    box-shadow:
        0 0 26px rgba(24, 247, 255, 0.26),
        0 14px 36px rgba(0, 0, 0, 0.22);
    font-size: 13px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.price-payment-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 34px rgba(24, 247, 255, 0.38),
        0 18px 44px rgba(0, 0, 0, 0.28);
}

.final-cta-panel {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: clamp(34px, 6vh, 70px);
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid rgba(24, 247, 255, 0.26);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(10, 46, 62, 0.72), rgba(4, 14, 23, 0.58)),
        radial-gradient(circle at 82% 12%,
            rgba(24, 247, 255, 0.18),
            transparent 42%);
    box-shadow:
        inset 0 0 44px rgba(24, 247, 255, 0.06),
        0 28px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
}

.final-cta-panel>div {
    max-width: 680px;
}

.primary-button {
    border: 0;
    font-family: inherit;
    cursor: pointer;
}

.payment-modal-lock {
    overflow: hidden;
}

body.payment-modal-lock .site-header {
    opacity: 0;
    transform: translate(-50%, -120%);
    pointer-events: none;
}

.payment-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 18px;
    background:
        radial-gradient(circle at 50% 12%,
            rgba(24, 247, 255, 0.14),
            transparent 34%),
        rgba(1, 7, 12, 0.78);
    backdrop-filter: blur(16px);
}

.payment-modal {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100dvh - 36px);
    overflow-y: auto;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid rgba(157, 251, 255, 0.2);
    border-radius: clamp(26px, 4vw, 44px);
    background:
        radial-gradient(circle at 88% 4%,
            rgba(24, 247, 255, 0.16),
            transparent 36%),
        linear-gradient(145deg, rgba(6, 26, 38, 0.96), rgba(2, 8, 14, 0.96));
    box-shadow:
        inset 0 0 54px rgba(24, 247, 255, 0.05),
        0 34px 110px rgba(0, 0, 0, 0.48);
}

.payment-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(157, 251, 255, 0.2);
    border-radius: 50%;
    color: #dff8ff;
    background: rgba(4, 18, 27, 0.72);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.payment-modal-heading {
    max-width: 680px;
    padding-right: 42px;
}

.payment-modal-heading span {
    color: rgba(157, 251, 255, 0.76);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.payment-modal-heading h2 {
    margin: 10px 0 0;
    color: #f4ffff;
    font-size: clamp(30px, 5vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.payment-modal-heading p {
    margin: 14px 0 0;
    color: rgba(223, 248, 255, 0.68);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.45;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.payment-option-card {
    appearance: none;
    display: grid;
    gap: 8px;
    min-height: 210px;
    padding: 20px;
    border: 1px solid rgba(157, 251, 255, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 0%,
            rgba(24, 247, 255, 0.12),
            transparent 42%),
        rgba(4, 18, 27, 0.66);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
    color: inherit;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.payment-option-card:hover {
    transform: translateY(-3px);
    border-color: rgba(24, 247, 255, 0.38);
    box-shadow:
        0 0 34px rgba(24, 247, 255, 0.16),
        0 24px 78px rgba(0, 0, 0, 0.32);
}

.payment-option-card span {
    color: rgba(157, 251, 255, 0.74);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.payment-option-card strong {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.payment-option-card p {
    margin: 0;
    color: rgba(223, 248, 255, 0.66);
    font-size: 14px;
    line-height: 1.36;
}

.payment-option-card em {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: end;
    width: max-content;
    max-width: 100%;
    padding: 9px 13px;
    border-radius: 999px;
    color: #001015;
    background: linear-gradient(135deg, #eaffff, var(--cyan));
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.payment-checkout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.payment-selected-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(157, 251, 255, 0.18);
    border-radius: 26px;
    background:
        radial-gradient(circle at 92% 0%,
            rgba(24, 247, 255, 0.14),
            transparent 42%),
        rgba(4, 18, 27, 0.7);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.payment-selected-card span,
.payment-email-field span {
    color: rgba(157, 251, 255, 0.76);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.payment-selected-card strong {
    color: #ffffff;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.payment-selected-card p {
    margin: 0;
    color: rgba(223, 248, 255, 0.66);
    font-size: 14px;
    line-height: 1.38;
}

.payment-selected-card em {
    width: max-content;
    padding: 9px 13px;
    border-radius: 999px;
    color: #001015;
    background: linear-gradient(135deg, #eaffff, var(--cyan));
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
}

.payment-email-field {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(157, 251, 255, 0.14);
    border-radius: 26px;
    background: rgba(3, 13, 21, 0.62);
}

.payment-email-field input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(157, 251, 255, 0.22);
    border-radius: 16px;
    outline: none;
    color: #f4ffff;
    background: rgba(0, 0, 0, 0.22);
    font: inherit;
}

.payment-email-field input:focus {
    border-color: rgba(24, 247, 255, 0.62);
    box-shadow: 0 0 0 3px rgba(24, 247, 255, 0.1);
}

.payment-checkout-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.payment-change-button,
.payment-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
}

.payment-change-button {
    border: 1px solid rgba(157, 251, 255, 0.18);
    color: rgba(223, 248, 255, 0.74);
    background: rgba(4, 18, 27, 0.62);
}

.payment-submit-button {
    border: 1px solid rgba(24, 247, 255, 0.3);
    color: #001015;
    background: linear-gradient(135deg, #eaffff, var(--cyan));
    box-shadow:
        0 0 28px rgba(24, 247, 255, 0.28),
        0 16px 42px rgba(0, 0, 0, 0.24);
}

.site-footer {
    position: relative;
    padding: clamp(20px, 3vh, 34px) 22px clamp(22px, 4vh, 44px);
}

.site-footer::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 0;
    width: min(1180px, calc(100% - 44px));
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(157, 251, 255, 0.32),
            transparent);
    transform: translateX(-50%);
}

.site-footer-inner {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: 1.1fr auto 0.85fr;
    gap: 24px;
    align-items: center;
    margin: 0 auto;
}

.site-footer-brand strong {
    color: rgba(244, 255, 255, 0.94);
    font-size: 18px;
    line-height: 1.1;
}

.site-footer-brand p {
    max-width: 430px;
    margin: 5px 0 0;
    color: rgba(223, 248, 255, 0.58);
    font-size: 13px;
    line-height: 1.45;
}

.site-footer-nav {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid rgba(157, 251, 255, 0.12);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(4, 18, 27, 0.56), rgba(2, 8, 14, 0.44));
    box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.03), 0 12px 40px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.site-footer-nav a:hover {
    color: #efffff;
    transform: translateY(-1px);
}

.site-footer-meta {
    display: grid;
    justify-items: end;
    gap: 6px;
    padding: 16px 24px;
    border: 1px solid rgba(157, 251, 255, 0.12);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(4, 18, 27, 0.56), rgba(2, 8, 14, 0.44));
    box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.03), 0 12px 40px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
    color: rgba(157, 251, 255, 0.64);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: right;
    text-transform: uppercase;
}

@keyframes portalPanelBreath {
    from {
        transform: rotate(-4deg) skewX(-4deg) scale(0.98);
        opacity: 0.76;
    }

    to {
        transform: rotate(-2deg) skewX(-4deg) scale(1.02);
        opacity: 1;
    }
}

@keyframes radarDrift {
    from {
        transform: translate(-210px, -120px) scale(0.7);
        opacity: 0.45;
    }

    to {
        transform: translate(220px, 150px) scale(1.2);
        opacity: 1;
    }
}

@keyframes programScrollHintFloat {

    0%,
    100% {
        opacity: 0.58;
        transform: translate(-50%, 0);
    }

    45% {
        opacity: 0.88;
        transform: translate(-50%, -4px);
    }
}

@keyframes programScrollHintDot {
    0% {
        opacity: 0;
        transform: translateX(0);
    }

    18% {
        opacity: 1;
    }

    72% {
        opacity: 1;
        transform: translateX(56px);
        /* increased from 24px */
    }

    100% {
        opacity: 0;
        transform: translateX(62px);
        /* increased from 30px */
    }
}

.hero-section {
    position: sticky;
    top: 0;
    margin: 0;
    height: 100dvh;
    display: flex;
    align-items: center;
    padding: clamp(28px, 5vh, 58px) clamp(22px, 7vw, 112px);
    isolation: isolate;
    overflow: hidden;
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 70% 40%, black, transparent 74%);
    animation: gridDrift 18s linear infinite;
}

.hero-section::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg,
            rgba(2, 7, 13, 0.7) 0%,
            rgba(2, 7, 13, 0.4) 39%,
            rgba(2, 7, 13, 0.05) 72%,
            rgba(2, 7, 13, 0.35) 100%),
        radial-gradient(circle at 78% 48%,
            rgba(24, 247, 255, 0.12),
            transparent 38%);
}

.hero-section::after {
    position: absolute;
    content: "";
    width: 68vw;
    height: 68vw;
    right: -24vw;
    top: 48%;
    z-index: -2;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(24, 247, 255, 0.16),
            transparent 66%);
    filter: blur(8px);
    opacity: 0.42;
    transform: translateY(-50%);
    animation: softGlow 16s ease-in-out infinite alternate;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(24, 247, 255, 0.18);
    border-radius: 999px;
    filter: drop-shadow(0 0 22px rgba(24, 247, 255, 0.2));
    animation: orbitPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-orbit-one {
    width: 52vw;
    height: 52vw;
    right: -12vw;
    top: 9vh;
    transform: rotate(-28deg);
}

.hero-orbit-two {
    width: 34vw;
    height: 34vw;
    right: 12vw;
    bottom: -13vw;
    transform: rotate(24deg);
    animation-delay: -2s;
}

.hero-content {
    width: min(920px, 100%);
    position: relative;
    z-index: 1;
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    margin-bottom: clamp(12px, 2vh, 20px);
    border: 1px solid rgba(24, 247, 255, 0.24);
    border-radius: 999px;
    color: #bafaff;
    background: rgba(4, 22, 32, 0.58);
    box-shadow:
        0 0 44px rgba(24, 247, 255, 0.11),
        inset 0 0 22px rgba(24, 247, 255, 0.05);
    backdrop-filter: blur(18px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    max-width: 960px;
    margin: 0;
    font-size: clamp(38px, 4.8vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.062em;
    font-weight: 800;
}

h1 span {
    display: block;
    white-space: nowrap;
}

.hero-title-light {
    margin-top: clamp(8px, 0.1em, 14px);
    color: rgba(238, 252, 255, 0.92);
    font-weight: 400;
}

.hero-title-strong {
    margin-top: clamp(4px, 0.08em, 10px);
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 0 24px rgba(24, 247, 255, 0.2);
}

.hero-title-accent {
    margin-top: 0;
    padding-bottom: 0.09em;
    line-height: 1.04;
    color: transparent;
    background: linear-gradient(90deg, #ffffff 0%, #82f8ff 38%, #10e7ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 34px rgba(24, 247, 255, 0.28);
}

.hero-lead {
    max-width: 640px;
    margin: clamp(16px, 2.6vh, 24px) 0 0;
    color: var(--text-soft);
    font-size: clamp(16px, 1.55vw, 20px);
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: clamp(20px, 3vh, 30px);
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.primary-button {
    gap: 10px;
    color: #001015;
    background: linear-gradient(135deg, #eaffff, var(--cyan));
    box-shadow:
        0 0 34px rgba(24, 247, 255, 0.38),
        0 18px 46px rgba(0, 0, 0, 0.28);
}

.secondary-button {
    color: #d7fbff;
    border: 1px solid rgba(24, 247, 255, 0.25);
    background: rgba(4, 18, 27, 0.56);
    backdrop-filter: blur(16px);
}

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

.secondary-button:hover {
    border-color: rgba(24, 247, 255, 0.58);
    box-shadow: 0 0 28px rgba(24, 247, 255, 0.14);
}

.signal-card {
    width: min(500px, 100%);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: clamp(18px, 2.8vh, 28px);
    padding: 15px 16px;
    border: 1px solid rgba(24, 247, 255, 0.18);
    border-radius: 24px;
    color: #eaffff;
    background: linear-gradient(135deg,
            rgba(9, 36, 50, 0.7),
            rgba(4, 14, 23, 0.48));
    box-shadow:
        inset 0 0 28px rgba(24, 247, 255, 0.05),
        0 24px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
}

.signal-card svg {
    flex: 0 0 auto;
    color: var(--cyan);
    margin-top: 2px;
}

.signal-card strong,
.signal-card span {
    display: block;
}

.signal-card strong {
    font-size: 15px;
}

.signal-card span {
    margin-top: 5px;
    color: rgba(223, 248, 255, 0.62);
    font-size: 14px;
    line-height: 1.45;
}

.scroll-hint {
    position: absolute;
    left: 7vw;
    bottom: 30px;
    display: none;
    align-items: center;
    gap: 10px;
    color: rgba(223, 248, 255, 0.56);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-hint span {
    width: 7px;
    height: 32px;
    border: 1px solid rgba(24, 247, 255, 0.4);
    border-radius: 999px;
    position: relative;
}

.scroll-hint span::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 6px;
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: var(--cyan);
    transform: translateX(-50%);
    animation: scrollDot 1.6s ease-in-out infinite;
}

.section-morph {
    position: relative;
    height: 260px;
    margin: -130px 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 45%,
            rgba(24, 247, 255, 0.16),
            transparent 28%),
        linear-gradient(180deg,
            rgba(2, 7, 13, 0),
            #02070d 42%,
            rgba(3, 17, 26, 0));
}

.section-morph::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        radial-gradient(circle at 76% 48%,
            rgba(234, 255, 255, 0.34),
            transparent 5%),
        radial-gradient(circle at 74% 50%,
            rgba(24, 247, 255, 0.18),
            transparent 24%),
        radial-gradient(circle at 50% 54%,
            rgba(24, 247, 255, 0.1),
            transparent 42%);
    filter: blur(12px);
    opacity: 0.88;
    animation: morphMist 6s ease-in-out infinite alternate;
}

.section-morph-strand {
    position: absolute;
    left: 58%;
    top: 50%;
    width: 36vw;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            transparent,
            rgba(24, 247, 255, 0.8),
            transparent);
    box-shadow: 0 0 24px rgba(24, 247, 255, 0.36);
    transform-origin: center;
    filter: blur(0.4px);
}

.section-morph-strand-one {
    transform: translate(-50%, -50%) rotate(-14deg);
    animation: morphStrandOne 5.4s ease-in-out infinite;
}

.section-morph-strand-two {
    transform: translate(-50%, -50%) rotate(13deg);
    animation: morphStrandTwo 5.4s ease-in-out infinite;
}

.section-morph-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eaffff;
    box-shadow: 0 0 18px rgba(24, 247, 255, 0.9);
    animation: morphNode 3.6s ease-in-out infinite;
}

.section-morph-node-one {
    left: 52%;
    top: 46%;
}

.section-morph-node-two {
    left: 68%;
    top: 54%;
    animation-delay: -1s;
}

.section-morph-node-three {
    left: 81%;
    top: 48%;
    animation-delay: -2s;
}

.mindmap-section {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    align-content: center;
    gap: clamp(16px, 2.4vh, 28px);
    padding: clamp(34px, 5vh, 62px) clamp(18px, 5vw, 78px);
    isolation: isolate;
    overflow: hidden;
    background: transparent;
    opacity: 0.8;
}

.mindmap-section::before {
    display: none;
    position: absolute;
    content: "";
    inset: 0;
    z-index: -3;
    background-image:
        radial-gradient(circle, rgba(155, 249, 255, 0.12) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size:
        34px 34px,
        68px 68px,
        68px 68px;
    mask-image: radial-gradient(circle at 50% 48%, black, transparent 78%);
    opacity: 0.44;
}

.mindmap-background-grid {
    display: none;
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 50%,
            transparent 0 18%,
            rgba(24, 247, 255, 0.08) 19%,
            transparent 20% 100%),
        radial-gradient(circle at 50% 50%,
            transparent 0 36%,
            rgba(24, 247, 255, 0.05) 37%,
            transparent 38% 100%);
    opacity: 0.72;
}

.mindmap-kicker {
    position: relative;
    z-index: 2;
    order: 2;
    width: fit-content;
    justify-self: center;
    margin-top: clamp(4px, 1.2vh, 14px);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(24, 247, 255, 0.22);
    border-radius: 999px;
    color: #bafaff;
    background: rgba(4, 22, 32, 0.52);
    box-shadow: 0 0 38px rgba(24, 247, 255, 0.09);
    backdrop-filter: blur(18px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.mindmap-web {
    position: relative;
    z-index: 2;
    order: 1;
    width: min(1120px, 100%);
    height: clamp(620px, 82vh, 780px);
    justify-self: center;
}

.mindmap-links {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.mindmap-link-glow,
.mindmap-link {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mindmap-link-glow {
    stroke: rgba(24, 247, 255, 0.2);
    stroke-width: 9;
    filter: url(#neuralGlow);
}

.mindmap-link {
    stroke: rgba(157, 251, 255, 0.58);
    stroke-width: 1.25;
    stroke-dasharray: 0.08 0.04;
    animation: neuralDash 3.8s linear infinite;
}

.mindmap-signal {
    fill: #eaffff;
    filter: drop-shadow(0 0 8px rgba(24, 247, 255, 0.95));
    opacity: 0.86;
}

.mindmap-core {
    position: absolute;
    left: 50%;
    top: 45%;
    width: clamp(230px, 22vw, 310px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    padding: 24px;
    border: 1px solid rgba(24, 247, 255, 0.32);
    border-radius: 50%;
    color: #f2ffff;
    text-align: center;
    background:
        radial-gradient(circle at 50% 42%,
            rgba(24, 247, 255, 0.2),
            transparent 52%),
        rgba(3, 15, 24, 0.35);
    box-shadow:
        inset 0 0 42px rgba(24, 247, 255, 0.12),
        0 0 80px rgba(24, 247, 255, 0.18);
    z-index: 2;
    overflow: hidden;
    backdrop-filter: blur(12px);
    translate: -50% -50%;
}

.mindmap-core strong,
.mindmap-core-accent {
    position: relative;
    z-index: 2;
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: rgba(223, 248, 255, 0.7);
    font-weight: 600;
}

.mindmap-core-divider {
    position: relative;
    z-index: 2;
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(24, 247, 255, 0.6), transparent);
    box-shadow: 0 0 8px rgba(24, 247, 255, 0.3);
}

.mindmap-core small,
.mindmap-core-subtitle {
    position: relative;
    z-index: 2;
    max-width: 80%;
    color: #f2ffff;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.mindmap-core-orbit,
.mindmap-core-pulse {
    position: absolute;
    z-index: 0;
    inset: -14px;
    border: 1px solid rgba(24, 247, 255, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.mindmap-core-orbit {
    animation: mindmapOrbit 9s ease-in-out infinite;
}

.mindmap-core-pulse {
    inset: 18px;
    border-color: rgba(105, 255, 132, 0.2);
    animation: mindmapPulse 2.8s ease-in-out infinite;
}

.mindmap-node {
    position: absolute;
    width: min(310px, 29vw);
    min-height: 98px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 18px;
    border: 1px solid rgba(157, 251, 255, 0.22);
    border-radius: 24px;
    color: #eefcff;
    background:
        linear-gradient(135deg, rgba(8, 37, 52, 0.35), rgba(4, 14, 23, 0.2)),
        radial-gradient(circle at 90% 0%,
            rgba(24, 247, 255, 0.14),
            transparent 46%);
    box-shadow:
        inset 0 0 26px rgba(24, 247, 255, 0.05),
        0 22px 70px rgba(0, 0, 0, 0.28);
    z-index: 2;
    translate: -50% -50%;
}

.mindmap-node:hover {
    border-color: rgba(24, 247, 255, 0.52);
    box-shadow:
        inset 0 0 34px rgba(24, 247, 255, 0.09),
        0 0 46px rgba(24, 247, 255, 0.12),
        0 22px 70px rgba(0, 0, 0, 0.28);
}

.mindmap-node-index {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #001015;
    background: linear-gradient(135deg, #efffff, #18f7ff);
    box-shadow: 0 0 24px rgba(24, 247, 255, 0.32);
    font-size: 12px;
    font-weight: 900;
}

.mindmap-node h3,
.mindmap-node p {
    margin: 0;
}

.mindmap-node h3 {
    font-size: clamp(15px, 1.45vw, 19px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.mindmap-node p {
    margin-top: 7px;
    color: rgba(223, 248, 255, 0.66);
    font-size: 13px;
    line-height: 1.35;
}

.mindmap-node-synapse {
    position: absolute;
    right: 17px;
    bottom: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #18f7ff;
    box-shadow: 0 0 18px rgba(24, 247, 255, 0.86);
    animation: synapsePulse 1.8s ease-in-out infinite;
}

.mindmap-node-one {
    left: 18%;
    top: 20%;
}

.mindmap-node-two {
    left: 82%;
    top: 20%;
}

.mindmap-node-three {
    left: 15%;
    top: 48%;
}

.mindmap-node-four {
    left: 85%;
    top: 48%;
}

.mindmap-node-five {
    left: 15%;
    top: 76%;
}

.mindmap-node-six {
    left: 85%;
    top: 76%;
}

.mindmap-node-seven {
    left: 39%;
    top: 95%;
}

.mindmap-node-eight {
    left: 61%;
    top: 95%;
}

.mindmap-node-subtitle {
    display: block;
    margin-top: 2px;
    color: rgba(24, 247, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Hover effects for mindmap */

.mindmap-section.has-hovered-node .mindmap-node:not(.is-hovered) {
    opacity: 0.3 !important;
    transition: all 0.4s ease;
}

.mindmap-section.has-hovered-node .mindmap-core,
.mindmap-section.has-hovered-node .mindmap-links {
    opacity: 0.3;
    transition: all 0.4s ease;
}

.mindmap-node {
    transition: all 0.4s ease;
    z-index: 2;
}

.mindmap-node.is-hovered {
    z-index: 10;
    scale: 1.05;
}

/* Dropdown hint */

.mindmap-node-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mindmap-node.is-hovered .mindmap-node-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mindmap-node-five .mindmap-node-dropdown,
.mindmap-node-six .mindmap-node-dropdown,
.mindmap-node-seven .mindmap-node-dropdown,
.mindmap-node-eight .mindmap-node-dropdown {
    top: auto;
    bottom: 100%;
    padding-top: 0;
    padding-bottom: 12px;
    transform: translateY(10px);
}

.mindmap-node-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 14px;
    background: rgba(4, 18, 27, 0.85);
    border: 1px solid rgba(24, 247, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mindmap-node-dropdown li {
    color: #eefcff;
    font-size: 13px;
    padding: 8px 12px;
    background: rgba(24, 247, 255, 0.05);
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
    cursor: default;
}

.mindmap-node-dropdown li:hover {
    background: rgba(24, 247, 255, 0.15);
    transform: translateX(4px);
}

@keyframes orbitPulse {
    from {
        opacity: 0.28;
        scale: 0.98;
    }

    to {
        opacity: 0.72;
        scale: 1.02;
    }
}

@keyframes softGlow {
    from {
        transform: translateY(-50%) scale(0.98);
        opacity: 0.34;
    }

    to {
        transform: translateY(-50%) scale(1.06);
        opacity: 0.48;
    }
}

@keyframes gridDrift {
    from {
        background-position:
            0 0,
            0 0;
    }

    to {
        background-position:
            54px 54px,
            54px 54px;
    }
}

@keyframes scrollDot {

    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 0.35;
    }

    50% {
        transform: translate(-50%, 12px);
        opacity: 1;
    }
}

@keyframes morphMist {
    from {
        transform: translateX(-4%) scale(0.96);
        opacity: 0.52;
    }

    to {
        transform: translateX(4%) scale(1.08);
        opacity: 0.95;
    }
}

@keyframes morphStrandOne {

    0%,
    100% {
        width: 22vw;
        opacity: 0.25;
    }

    50% {
        width: 42vw;
        opacity: 0.85;
    }
}

@keyframes morphStrandTwo {

    0%,
    100% {
        width: 28vw;
        opacity: 0.2;
    }

    50% {
        width: 46vw;
        opacity: 0.72;
    }
}

@keyframes morphNode {

    0%,
    100% {
        transform: scale(0.72);
        opacity: 0.22;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.95;
    }
}

@keyframes mindmapFieldTurn {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes neuralDash {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -1;
    }
}

@keyframes mindmapOrbit {

    0%,
    100% {
        transform: rotate(-8deg) scale(0.98);
        opacity: 0.35;
    }

    50% {
        transform: rotate(8deg) scale(1.04);
        opacity: 0.82;
    }
}

@keyframes mindmapPulse {

    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.25;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes synapsePulse {

    0%,
    100% {
        transform: scale(0.86);
        opacity: 0.42;
    }

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

@media (max-width: 1180px) {

    .course-track-grid,
    .start-dock {
        grid-template-columns: 1fr;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .site-footer-meta {
        justify-items: center;
        text-align: center;
    }

    .course-track-card {
        min-height: auto;
    }

}

@media (max-width: 980px) {
    .site-header {
        width: min(720px, calc(100% - 28px));
        gap: 10px;
    }

    .site-brand small,
    .site-nav {
        display: none;
    }

    .content-stage {
        width: min(calc(100% - 32px), 720px);
        padding-top: 0;
    }

    .program-portal {
        min-height: 100dvh;
        padding: 88px 0 72px;
    }

    .problem-radar {
        min-height: auto;
        display: grid;
        gap: 14px;
        margin: 50px 0 80px;
    }

    .problem-radar::before,
    .problem-radar::after {
        display: none;
    }

    .radar-core {
        width: min(320px, 100%);
        aspect-ratio: auto;
        min-height: 230px;
        border-radius: 36px;
        margin-bottom: 8px;
    }

    .radar-chip {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        translate: none !important;
        width: 100%;
    }

    .diagnostic-insights {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        grid-template-columns: 1fr;
        translate: none;
    }

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

    .audience-sector>div:first-child {
        position: relative;
        top: auto;
    }

    .audience-node:nth-child(even) {
        margin-left: 0;
    }

    .course-track-grid,
    .module-grid,
    .price-orbit,
    .readiness-grid {
        grid-template-columns: 1fr;
    }

    .module-card,
    .module-card:nth-child(5n + 1),
    .module-card:nth-child(5n + 3),
    .module-card:nth-child(5n + 4) {
        grid-column: auto;
    }

    .module-constellation::before,
    .price-orbit::before {
        display: none;
    }

    .module-header {
        display: grid;
    }

    .outcome-stack {
        grid-template-columns: 1fr;
    }

    .readiness-test {
        min-height: auto;
    }

    .outcome-card,
    .outcome-card:nth-child(even) {
        width: 100%;
        justify-self: stretch;
    }

    .outcome-card-hidden {
        display: none;
    }

    .outcome-show-all {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        align-self: center;
        width: max-content;
        margin: 10px auto 0;
        padding: 9px 18px;
        border: 1px solid rgba(157, 251, 255, 0.22);
        border-radius: 999px;
        color: rgba(223, 248, 255, 0.82);
        background: rgba(4, 18, 27, 0.62);
        font-family: inherit;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: border-color 180ms ease, background 180ms ease;
    }

    .outcome-show-all:hover {
        border-color: rgba(24, 247, 255, 0.4);
        background: rgba(10, 34, 48, 0.72);
    }

    .outcome-card h3 {
        font-size: clamp(15px, 4.6vw, 19px);
    }

    .outcome-card p {
        font-size: 12px;
        line-height: 1.3;
    }

    .outcome-card span {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .outcome-card {
        grid-template-columns: 40px 1fr;
        gap: 10px;
        padding: 14px;
    }

    .final-cta-panel {
        display: grid;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .payment-option-card {
        min-height: auto;
    }

    .mindmap-section {
        position: absolute;
        inset: 0;
        height: 100dvh;
        min-height: 0;
        padding: 80px 16px 20px;
        gap: 16px;
        align-content: start;
        overflow-y: auto;
        pointer-events: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mindmap-web {
        height: auto;
        display: grid;
        gap: 14px;
        padding-top: 0;
        margin: auto 0;
    }

    .mindmap-links {
        display: none;
    }

    .mindmap-core,
    .mindmap-node {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        translate: none;
        width: min(560px, 100%);
        justify-self: center;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .mindmap-core {
        aspect-ratio: auto;
        min-height: 154px;
        border-radius: 34px;
        background: rgba(10, 15, 24, 0.95) !important;
    }

    .mindmap-node {
        min-height: auto;
        background: rgba(10, 15, 24, 0.95) !important;
    }
}

@media (max-width: 820px) {
    .site-header {
        top: 10px;
        min-height: 52px;
        padding: 7px;
    }

    .site-brand {
        gap: 8px;
    }

    .site-brand>span,
    .site-footer-brand>span {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .site-brand strong {
        max-width: 150px;
        font-size: 11px;
    }

    .site-header-cta {
        min-height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }

    .hero-section {
        align-items: center;
        padding: 28px 22px;
    }

    .hero-section::before {
        background:
            linear-gradient(180deg,
                rgba(2, 7, 13, 0.84) 0%,
                rgba(2, 7, 13, 0.78) 48%,
                rgba(2, 7, 13, 0.94) 100%),
            radial-gradient(circle at 72% 28%,
                rgba(24, 247, 255, 0.16),
                transparent 42%);
    }

    .hero-orbit-one {
        width: 92vw;
        height: 92vw;
        right: -45vw;
        top: 18vh;
    }

    .hero-orbit-two {
        display: none;
    }

    .eyebrow {
        font-size: 10px;
        margin-bottom: 12px;
    }

    h1 {
        font-size: clamp(26px, 8vw, 58px);
        letter-spacing: -0.045em;
    }

    .hero-lead {
        font-size: 15px;
        line-height: 1.38;
    }

    .hero-actions {
        flex-direction: column;
        gap: 9px;
        margin-top: 16px;
    }

    .signal-card {
        margin-top: 14px;
        padding: 13px 14px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        min-height: 44px;
    }

    .scroll-hint {
        left: 22px;
    }

    .site-footer {
        padding-inline: 16px;
    }

    .site-footer-inner {
        padding: 0;
        border-radius: 0;
    }

    .site-footer-brand {
        display: grid;
        justify-items: center;
    }

    .site-footer-nav {
        gap: 10px 14px;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    .hero-section,
    .seamless-section,
    .mindmap-section {
        transform-style: flat;
    }

    .site-brand,
    .site-nav,
    .section-kicker,
    .radar-core,
    .radar-chip,
    .diagnostic-insight-card,
    .audience-node,
    .course-track-card,
    .readiness-test,
    .readiness-card,
    .module-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .program-portal::before,
    .portal-orbit span,
    .radar-core::after,
    .program-scroll-hint,
    .program-scroll-hint-track::before {
        animation: none !important;
    }

    .page-shell {
        height: 870dvh;
        height: 870svh;
        min-height: auto;
    }

    .program-horizontal-sections {
        min-height: 100svh;
    }

    .hero-section {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 5;
        width: 100%;
        height: 100dvh;
        min-height: 0;
        overflow: hidden;
        padding: 64px 16px 34px;
        display: flex;
        align-items: center;
        opacity: 1;
        transition: opacity 0.5s ease;
    }

    .page-shell.is-past-intro .hero-section {
        opacity: 0;
        pointer-events: none;
    }

    .hero-content-wrapper {
        height: 100%;
        min-height: 0;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .seamless-section {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
        padding: 72px 14px 22px;
    }

    .seamless-inner {
        width: min(100%, 720px);
        max-height: calc(100dvh - 104px);
    }

    h1 span {
        white-space: normal;
    }

    .program-portal {
        width: 100%;
        min-height: 0;
        height: 100%;
        padding: 0;
    }

    .program-portal::before {
        width: min(92vw, 520px);
        height: min(68dvh, 460px);
        transform: rotate(-2deg);
    }

    .portal-orbit {
        width: min(96vw, 560px);
        height: min(70dvh, 480px);
    }

    .program-portal h2,
    .audience-sector h2,
    .section-heading-center h2,
    .module-header h2,
    .readiness-test h2,
    .outcome-lab h2,
    .start-dock h2 {
        font-size: clamp(24px, 7.6vw, 36px);
        line-height: 1;
    }

    .program-portal p,
    .audience-sector>div:first-child p,
    .audience-grid,
    .problem-radar,
    .course-track-grid,
    .readiness-grid,
    .program-horizontal-track .module-grid,
    .mindmap-section {
        scroll-behavior: auto;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .program-portal p,
    .audience-sector>div:first-child p,
    .audience-grid,
    .problem-radar,
    .mindmap-section {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .program-portal p::-webkit-scrollbar,
    .audience-sector>div:first-child p::-webkit-scrollbar,
    .audience-grid::-webkit-scrollbar,
    .problem-radar::-webkit-scrollbar,
    .mindmap-section::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .program-portal p,
    .audience-sector p,
    .start-dock-core p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.36;
    }

    .program-portal p {
        max-height: 30dvh;
        overflow-y: auto;
        padding-right: 6px;

    }

    .audience-sector {
        max-height: calc(100dvh - 104px);
        grid-template-rows: auto minmax(0, 1fr);
        align-content: center;
        gap: 12px;
        overflow: hidden;
    }

    .audience-sector .section-kicker,
    .section-heading-center .section-kicker {
        font-size: 10px;
        line-height: 1.15;
        white-space: normal;
        text-align: center;
    }

    .audience-sector h2,
    .section-heading-center h2 {
        margin-top: 10px;
    }

    .audience-sector>div:first-child {
        min-height: 0;
    }

    .audience-sector>div:first-child p {
        max-height: 17dvh;
        overflow-y: auto;
        padding-right: 6px;

    }

    .audience-grid {
        min-height: 0;
        max-height: 46dvh;
        gap: 9px;
        overflow-y: auto;
        padding-right: 4px;

    }

    .audience-node {
        min-height: auto;
        padding: 12px;
        border-radius: 20px;
    }

    .audience-node p {
        font-size: 12px;
        line-height: 1.28;
    }

    .problem-radar {
        max-height: calc(100dvh - 104px);
        align-content: start;
        gap: 9px;
        overflow-y: auto;
        padding-right: 4px;

    }

    .radar-core {
        width: 100%;
        min-height: 138px;
        padding: 18px;
        border-radius: 24px;
        transform: none;
    }

    .radar-core strong {
        font-size: clamp(20px, 6vw, 28px);
    }

    .radar-chip {
        gap: 9px;
        padding: 12px;
        border-radius: 18px;
        font-size: 12px;
        line-height: 1.22;
    }

    .radar-chip span,
    .audience-node span {
        width: 26px;
        height: 26px;
        font-size: 9px;
    }

    .diagnostic-insight-card {
        min-height: auto;
        padding: 14px;
        border-radius: 18px;
    }

    .diagnostic-insight-card h3 {
        font-size: clamp(17px, 5.2vw, 23px);
    }

    .diagnostic-insight-card p {
        font-size: 12px;
        line-height: 1.3;
    }

    .course-orbits {
        max-height: calc(100dvh - 104px);
        display: grid;
        grid-template-rows: auto minmax(0, 1fr);
        overflow: hidden;
    }

    .section-heading-center {
        margin-bottom: 12px;
    }

    .course-track-grid {
        min-height: 0;
        max-height: 55dvh;
        gap: 10px;
        overflow-y: auto;
        padding-right: 4px;

    }

    .course-track-card {
        min-height: auto;
        height: max-content;
        grid-template-columns: auto minmax(0, 1fr);
        align-content: start;
        gap: 12px;
        padding: 14px;
        border-radius: 24px;
        overflow: hidden;
    }

    .course-track-index {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .course-track-card h3 {
        font-size: clamp(18px, 6vw, 26px);
        line-height: 1.08;
    }

    .course-track-card p,
    .course-track-card strong {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.3;
    }

    .start-dock {
        gap: 18px;
    }

    .price-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "label"
            "price"
            "text";
        gap: 7px;
        padding: 14px;
        border-radius: 18px;
    }

    .price-card strong {
        font-size: clamp(26px, 8vw, 38px);
    }

    .price-card p {
        font-size: 12px;
        line-height: 1.28;
    }

    .price-payment-button {
        justify-self: stretch;
        width: 100%;
        min-height: 36px;
        font-size: 12px;
    }

    .payment-modal-overlay {
        align-items: center;
        padding: 10px;
    }

    .payment-modal {
        max-height: calc(100dvh - 20px);
        padding: 20px 14px 14px;
        border-radius: 26px;
    }

    .payment-modal-close {
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .payment-modal-heading {
        padding-right: 38px;
    }

    .payment-modal-heading h2 {
        font-size: clamp(25px, 8vw, 36px);
    }

    .payment-modal-heading p,
    .payment-option-card p {
        font-size: 12px;
        line-height: 1.3;
    }

    .payment-options {
        gap: 9px;
        margin-top: 16px;
    }

    .payment-option-card {
        gap: 7px;
        padding: 14px;
        border-radius: 18px;
    }

    .payment-checkout {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
    }

    .payment-selected-card,
    .payment-email-field {
        padding: 14px;
        border-radius: 18px;
    }

    .payment-selected-card strong {
        font-size: clamp(25px, 7.4vw, 36px);
    }

    .payment-selected-card p {
        font-size: 12px;
        line-height: 1.3;
    }

    .payment-email-field input {
        min-height: 48px;
        border-radius: 14px;
    }

    .payment-checkout-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .payment-change-button,
    .payment-submit-button {
        width: 100%;
        min-height: 42px;
        font-size: 12px;
    }

    .payment-option-card strong {
        font-size: clamp(28px, 8vw, 40px);
    }

    .payment-option-card em {
        width: 100%;
        justify-content: center;
        font-size: 12px;
    }

    .readiness-card-hidden {
        display: none;
    }

    .readiness-show-all {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        align-self: center;
        width: max-content;
        margin: 10px auto 0;
        padding: 9px 18px;
        border: 1px solid rgba(157, 251, 255, 0.22);
        border-radius: 999px;
        color: rgba(223, 248, 255, 0.82);
        background: rgba(4, 18, 27, 0.62);
        font-family: inherit;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: border-color 180ms ease, background 180ms ease;
    }

    .readiness-show-all:hover {
        border-color: rgba(24, 247, 255, 0.4);
        background: rgba(10, 34, 48, 0.72);
    }

    .readiness-test {
        max-height: none;
        padding: 16px 12px;
        border-radius: 24px;
    }

    .readiness-grid {
        max-height: none;
        gap: 8px;
        overflow: visible;
    }

    .readiness-card {
        min-height: auto;
        padding: 12px;
        border-radius: 18px;
    }

    .readiness-card h3 {
        font-size: clamp(15px, 4.8vw, 20px);
    }

    .readiness-card p,
    .readiness-card li,
    .readiness-card strong,
    .readiness-summary strong {
        font-size: 12px;
        line-height: 1.3;
    }

    .readiness-summary {
        padding: 14px;
        border-radius: 20px;
    }

    .program-horizontal-track {
        height: calc(100dvh - 116px);
        height: calc(100svh - 116px);
        gap: 14px;
        padding: 6px 2px 14px;
        scroll-snap-type: x mandatory;
        transform: none;
    }

    .program-horizontal-track .module-constellation {
        padding: 14px;
        border-radius: 26px;
        transform: none;
    }

    .program-horizontal-track .module-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .module-header>span {
        width: 46px;
        height: 46px;
    }

    .program-horizontal-track .module-header h2 {
        font-size: clamp(18px, 5.8vw, 26px);
        line-height: 1.06;
    }

    .module-header p {
        font-size: 10px;
        line-height: 1.2;
    }

    .program-horizontal-track .module-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 10px;
        overflow-y: auto;
        padding-right: 4px;

    }

    .program-horizontal-track .module-card {
        display: grid;
        grid-template-rows: auto auto auto minmax(0, 1fr);
        min-height: 220px;
        padding: 14px;
        border-radius: 18px;
        overflow: hidden;
        transform: none !important;
    }

    .program-horizontal-track .module-card ul {
        display: grid;
        align-content: start;
        gap: 7px;
    }

    .program-horizontal-track .module-card li {
        font-size: 12px;
        line-height: 1.3;
    }

    .program-scroll-segment {
        transition: background 120ms ease;
    }

    .program-scroll-segment.is-active {
        box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.24);
    }
}

/* Loading Overlay */

.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #02070d;
    display: grid;
    place-items: center;
    color: #eaffff;
    font-family: inherit;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.loading-icon {
    color: var(--cyan);
    animation: pulse 2s infinite ease-in-out;
}

.loading-content h2 {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(90deg, #ffffff 0%, #82f8ff 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 24px rgba(24, 247, 255, 0.4);
}

.loading-bar-container {
    width: 100%;
    height: 2px;
    background: rgba(24, 247, 255, 0.08);
    border-radius: 999px;
    position: relative;
}

.loading-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, #10e7ff, #ffffff);
    border-radius: 999px;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 14px rgba(24, 247, 255, 0.8), 0 0 4px #ffffff;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 12px #ffffff, 0 0 24px #10e7ff;
}

.mindmap-node-dropdown li {
  /* pre-line схлопывает лишние пробелы, но переносит строку на \n */
  white-space: pre-line;
}