/* ================= TOKENS ================= */
:root {
    --white: #FFFFFF;
    --soft: #F6F8FB;
    --navy: #061A40;
    --blue: #0078FF;
    --accent: #4AA8FF;
    --tint: #DCEEFF;
    --ink: #202124;
    --ink-60: rgba(32, 33, 36, .62);
    --ink-40: rgba(32, 33, 36, .42);
    --line: rgba(6, 26, 64, .10);
    --line-soft: rgba(6, 26, 64, .06);
    --display: 'Manrope', sans-serif;
    --body: 'Inter', sans-serif;
    --num: 'Space Grotesk', monospace;
    --max: 1240px;
    --ease: cubic-bezier(.22, .8, .24, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img,
svg {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none
}

ul {
    list-style: none
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.025em;
    line-height: 1.08
}

.num {
    font-family: var(--num)
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 36px
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--blue);
}

.kicker::before {
    content: "";
    width: 34px;
    height: 1.5px;
    background: var(--blue)
}

.kicker.center {
    justify-content: center
}

.kicker.center::after {
    content: "";
    width: 34px;
    height: 1.5px;
    background: var(--blue)
}

/* reveal */
.rv {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.rv.in {
    opacity: 1;
    transform: none
}

.rv.d1 {
    transition-delay: .1s
}

.rv.d2 {
    transition-delay: .2s
}

.rv.d3 {
    transition-delay: .3s
}

.rv.d4 {
    transition-delay: .4s
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    padding: 17px 34px;
    border-radius: 999px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform .35s var(--ease)
}

.btn:hover svg {
    transform: translateX(5px)
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 14px 34px rgba(6, 26, 64, .22)
}

.btn-navy:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(6, 26, 64, .28)
}

.btn-line {
    color: var(--navy);
    border: 1.5px solid var(--line);
    background: transparent
}

.btn-line:hover {
    border-color: var(--navy);
    transform: translateY(-3px)
}

.btn-white {
    background: #fff;
    color: var(--navy)
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25)
}

/* ================= NAV ================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: .4s
}

.nav.solid {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--line-soft), 0 8px 30px rgba(6, 26, 64, .05)
}

.nav-in {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 36px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.wordmark {
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
    letter-spacing: -.02em
}

.wordmark span {
    color: var(--blue)
}

.nav-links {
    display: flex;
    gap: 34px
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-60);
    transition: color .25s
}

.nav-links a:hover {
    color: var(--navy)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px
}

.nav-right .btn {
    padding: 12px 24px;
    font-size: 13.5px
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px
}

.mnav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 190;
    padding: 18px 36px 30px;
    box-shadow: 0 24px 40px rgba(6, 26, 64, .1)
}

.mnav.open {
    display: block
}

.mnav a {
    display: block;
    padding: 13px 0;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--line-soft)
}

/* ================= 1 · HERO ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 150px 0 90px
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.hero-bg .g1 {
    position: absolute;
    width: 900px;
    height: 900px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 238, 255, .9), rgba(220, 238, 255, 0) 65%)
}

.hero-bg .g2 {
    position: absolute;
    width: 700px;
    height: 700px;
    left: -300px;
    bottom: -320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 168, 255, .10), transparent 65%)
}

.blueprint {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(6, 26, 64, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 26, 64, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(1000px 700px at 72% 35%, #000, transparent 78%);
}

.hero-arcs {
    position: absolute;
    right: -4%;
    top: 6%;
    width: 56%;
    opacity: .9
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-left .kicker {
    margin-bottom: 34px
}

.hero h1 {
    font-size: clamp(46px, 6vw, 88px);
    margin-bottom: 36px
}

.hero h1 .ai {
    color: var(--blue);
    position: relative;
    white-space: nowrap
}

.hero h1 .ai::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 14px;
    background: var(--tint);
    z-index: -1;
    border-radius: 4px
}

.hero-p {
    font-size: 18px;
    color: var(--ink-60);
    max-width: 560px;
    margin-bottom: 44px
}

.hero-ctas {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.hero-portrait {
    position: relative;
    justify-self: end
}

.hp-frame {
    position: relative;
    width: min(430px, 86vw);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 50px 110px rgba(6, 26, 64, .22), 0 0 0 1px rgba(6, 26, 64, .05);
    transform: rotate(1.2deg);
    transition: transform .6s var(--ease);
}

.hp-frame:hover {
    transform: rotate(0deg) translateY(-6px)
}

.hp-frame img {
    width: 100%;
    height: auto;
    display: block
}

.hp-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
    pointer-events: none
}

.hp-halo {
    position: absolute;
    z-index: -1;
    right: -70px;
    top: -60px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1.2px dashed rgba(0, 120, 255, .3);
    animation: spin 46s linear infinite;
}

.hp-halo::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--blue);
    top: -6px;
    left: calc(50% - 5px);
    box-shadow: 0 0 0 6px rgba(0, 120, 255, .13)
}

.hp-tag {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 16px 36px rgba(6, 26, 64, .16);
    border-radius: 999px;
    padding: 11px 26px;
    white-space: nowrap;
    font-family: var(--display);
    font-weight: 800;
    font-size: 15px;
    color: var(--navy);
}

.hp-tag em {
    font-style: normal;
    color: var(--blue);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .12em;
    display: block;
    text-align: center
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: .28em;
    color: var(--ink-40);
    z-index: 2;
}

.hero-scroll .line {
    width: 1.5px;
    height: 44px;
    background: linear-gradient(var(--blue), transparent);
    animation: drip 2.2s ease-in-out infinite
}

@keyframes drip {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    55% {
        transform: scaleY(1);
        transform-origin: top
    }

    56% {
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

/* ================= 2 · STORY ================= */
.story {
    padding: 170px 0 150px;
    position: relative
}

.story-head {
    max-width: 900px;
    margin-bottom: 90px
}

.story-head h2 {
    font-size: clamp(36px, 4.6vw, 62px);
    margin-top: 26px
}

.story-ed {
    display: grid;
    grid-template-columns: 130px 1fr 380px;
    gap: 56px;
    align-items: start
}

.story-margin {
    position: sticky;
    top: 130px;
    font-family: var(--num);
    font-size: 12.5px;
    color: var(--ink-40);
    letter-spacing: .1em;
    line-height: 2.1;
    border-left: 1.5px solid var(--line);
    padding-left: 18px
}

.story-margin b {
    color: var(--blue);
    font-weight: 700;
    display: block
}

.story-copy p {
    margin-bottom: 30px;
    color: var(--ink-60);
    font-size: 17.5px
}

.story-copy p:first-of-type::first-letter {
    font-family: var(--display);
    font-weight: 800;
    font-size: 76px;
    line-height: .8;
    float: left;
    margin: 8px 16px 0 0;
    color: var(--navy);
}

.story-copy .pull {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(24px, 2.4vw, 32px);
    color: var(--navy);
    line-height: 1.35;
    letter-spacing: -.02em;
    border-left: 4px solid var(--blue);
    padding-left: 28px;
    margin: 48px 0;
}

.story-aside {
    position: sticky;
    top: 130px;
    display: grid;
    gap: 22px
}

.story-photo {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/4.7;
    box-shadow: 0 34px 70px rgba(6, 26, 64, .22);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    color: #fff;
}

.story-photo img.ph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.story-photo .scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, transparent 45%, rgba(6, 26, 64, .82) 96%)
}

.story-photo .cap {
    position: relative;
    font-family: var(--display);
    font-weight: 800;
    font-size: 17px
}

.story-photo .sub {
    position: relative;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .72);
    margin-top: 4px
}

.story-chip {
    background: var(--soft);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    padding: 24px 26px;
}

.story-chip .v {
    font-family: var(--num);
    font-weight: 700;
    font-size: 26px;
    color: var(--navy)
}

.story-chip .l {
    font-size: 13px;
    color: var(--ink-40);
    margin-top: 4px
}

/* ================= 3 · ORBIT IMPACT ================= */
.orbitsec {
    background: var(--navy);
    color: #fff;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    border-radius: 56px 56px 0 0
}

.orbitsec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 500px at 50% 115%, rgba(0, 120, 255, .24), transparent 65%)
}

.orbitsec .kicker {
    color: var(--accent)
}

.orbitsec .kicker::before,
.orbitsec .kicker.center::after {
    background: var(--accent)
}

.orbit-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    position: relative
}

.orbit-head h2 {
    color: #fff;
    font-size: clamp(34px, 4.4vw, 58px);
    margin-top: 24px
}

.orbit-head p {
    color: rgba(255, 255, 255, .58);
    margin-top: 20px
}

.orbit-stage {
    position: relative;
    width: min(860px, 92vw);
    height: min(860px, 92vw);
    margin: 0 auto
}

.core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 34% 30%, #2F86FF, #0B3D8F 62%, #061A40);
    box-shadow: 0 0 90px rgba(0, 120, 255, .5), inset 0 0 44px rgba(255, 255, 255, .14);
    display: grid;
    place-items: center;
    text-align: center;
    z-index: 5;
}

.core::after {
    content: "";
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 1px solid rgba(74, 168, 255, .35);
    animation: pulse 3.4s ease-out infinite
}

@keyframes pulse {
    0% {
        transform: scale(.9);
        opacity: 1
    }

    100% {
        transform: scale(1.28);
        opacity: 0
    }
}

.core .t {
    font-family: var(--display);
    font-weight: 800;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .02em
}

.core .s {
    font-size: 10.5px;
    letter-spacing: .24em;
    color: rgba(255, 255, 255, .6);
    margin-top: 6px
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12)
}

.ring.r1 {
    width: 62%;
    height: 62%;
    transform: translate(-50%, -50%)
}

.ring.r2 {
    width: 92%;
    height: 92%;
    transform: translate(-50%, -50%);
    border-style: dashed;
    border-color: rgba(255, 255, 255, .09)
}

.orbit-rot {
    position: absolute;
    inset: 0;
    animation: spin 80s linear infinite
}

.orbit-rot.rev {
    animation: spinrev 110s linear infinite
}

@keyframes spinrev {
    to {
        transform: rotate(-360deg)
    }
}

.sat {
    position: absolute;
    top: 50%;
    left: 50%;
    --r: 0px;
    transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)) rotate(calc(var(--a)*-1));
    opacity: 0;
    transition: opacity .6s var(--ease);
}

.sat.placed {
    opacity: 1
}

.sat-in {
    animation: spinrev 80s linear infinite;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    padding: 16px 22px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
    transition: background .3s, border-color .3s;
}

.orbit-rot.rev .sat-in {
    animation: spin 110s linear infinite
}

.sat-in:hover {
    background: rgba(74, 168, 255, .16);
    border-color: rgba(74, 168, 255, .5)
}

.sat .v {
    font-family: var(--num);
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    line-height: 1
}

.sat .v i {
    font-style: normal;
    color: var(--accent)
}

.sat .l {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .55);
    margin-top: 6px;
    letter-spacing: .06em
}

/* ================= 4 · ECOSYSTEM ================= */
.eco {
    padding: 170px 0;
    background: linear-gradient(180deg, #fff, var(--soft) 60%, #fff)
}

.eco-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center
}

.eco h2 {
    font-size: clamp(34px, 4.2vw, 56px);
    margin-top: 24px;
    margin-bottom: 24px
}

.eco p {
    color: var(--ink-60)
}

.eco-note {
    margin-top: 34px;
    display: grid;
    gap: 14px
}

.eco-note .row {
    display: flex;
    gap: 14px;
    align-items: baseline;
    font-size: 15px;
    color: var(--ink-60)
}

.eco-note .row b {
    font-family: var(--display);
    color: var(--navy);
    font-weight: 700
}

.eco-note .row::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex: none;
    transform: translateY(-1px)
}

.eco-viz {
    position: relative
}

.eco-viz svg {
    width: 100%;
    height: auto
}

.eco-viz .node {
    cursor: default
}

.eco-viz .node circle.bg {
    transition: fill .3s, stroke .3s
}

.eco-viz .node:hover circle.bg {
    fill: #EAF4FF;
    stroke: var(--blue)
}

.eco-viz .node text {
    transition: fill .3s
}

.eco-viz .node:hover text {
    fill: var(--blue)
}

/* ================= 5 · MONUMENTS ================= */
.monu {
    padding: 170px 0 190px;
    background: var(--white);
    position: relative;
    overflow: hidden
}

.monu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, var(--tint) 160%)
}

.monu-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 100px;
    position: relative
}

.monu-head h2 {
    font-size: clamp(34px, 4.4vw, 58px);
    margin-top: 24px
}

.monu-head p {
    color: var(--ink-60);
    margin-top: 20px
}

.monu-stage {
    perspective: 1400px;
    position: relative
}

.monu-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    align-items: end;
    transform: rotateX(9deg);
    transform-style: preserve-3d;
}

.slab {
    position: relative;
    border-radius: 20px 20px 8px 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .85), rgba(236, 244, 255, .65));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(6, 26, 64, .09);
    border-top: 3px solid var(--accent);
    box-shadow: 0 34px 60px rgba(6, 26, 64, .12), inset 0 1px 0 rgba(255, 255, 255, .9);
    padding: 26px 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
}

.slab:hover {
    transform: translateY(-16px) translateZ(30px);
    box-shadow: 0 50px 80px rgba(6, 26, 64, .2);
    border-top-color: var(--blue)
}

.slab .step {
    font-family: var(--num);
    font-weight: 700;
    font-size: 13px;
    color: var(--blue);
    letter-spacing: .1em
}

.slab h3 {
    font-size: 16.5px;
    line-height: 1.3;
    margin-top: 12px
}

.slab .d {
    font-size: 12.8px;
    color: var(--ink-60);
    line-height: 1.55;
    margin-top: 10px
}

.slab .base {
    margin-top: 18px;
    font-family: var(--num);
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--ink-40)
}

.s1 {
    height: 300px
}

.s2 {
    height: 340px
}

.s3 {
    height: 380px
}

.s4 {
    height: 420px
}

.s5 {
    height: 460px
}

.s6 {
    height: 500px;
    background: linear-gradient(180deg, #0B2C63, var(--navy));
    border-color: rgba(255, 255, 255, .12);
    border-top-color: var(--accent)
}

.s6 h3 {
    color: #fff
}

.s6 .d {
    color: rgba(255, 255, 255, .62)
}

.s6 .base {
    color: rgba(255, 255, 255, .4)
}

.monu-floor {
    position: relative;
    height: 2px;
    margin-top: -2px;
    background: linear-gradient(90deg, transparent, rgba(6, 26, 64, .2), transparent);
}

.monu-shadow {
    height: 70px;
    background: radial-gradient(60% 100% at 50% 0%, rgba(6, 26, 64, .10), transparent 70%)
}

/* ================= 6 · PHILOSOPHY ================= */
.philo {
    padding: 190px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.philo .halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 820px;
    height: 820px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 238, 255, .8), transparent 65%);
    pointer-events: none
}

.philo blockquote {
    position: relative;
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(30px, 4.6vw, 60px);
    line-height: 1.2;
    letter-spacing: -.025em;
    color: var(--navy);
    max-width: 1060px;
    margin: 0 auto;
}

.philo blockquote em {
    font-style: normal;
    color: var(--blue)
}

.philo .who {
    margin-top: 46px;
    position: relative;
    font-size: 15px;
    color: var(--ink-60)
}

.philo .who b {
    display: block;
    font-family: var(--display);
    font-weight: 800;
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 4px
}

.philo .rule {
    width: 56px;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
    margin: 0 auto 44px;
    position: relative
}

/* ================= 7 · ACHIEVEMENTS ================= */
.blocks {
    padding: 160px 0;
    background: var(--soft)
}

.blocks-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap
}

.blocks-head h2 {
    font-size: clamp(34px, 4.2vw, 56px);
    margin-top: 24px;
    max-width: 560px
}

.blocks-head p {
    color: var(--ink-60);
    max-width: 400px
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.blocks-col {
    display: grid;
    gap: 26px;
    align-content: start
}

.blocks-col.mid {
    margin-top: 64px
}

.block {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 26px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, rgba(74, 168, 255, .10), transparent 46%);
    opacity: 0;
    transition: opacity .5s
}

.block:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px rgba(6, 26, 64, .12)
}

.block:hover::before {
    opacity: 1
}

.block .idx {
    font-family: var(--num);
    font-weight: 700;
    font-size: 13px;
    color: var(--blue);
    letter-spacing: .14em
}

.block h3 {
    font-size: 22px;
    margin: 16px 0 12px
}

.block p {
    font-size: 14.5px;
    color: var(--ink-60);
    position: relative
}

.block .foot {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    align-items: baseline;
    gap: 10px
}

.block .foot .v {
    font-family: var(--num);
    font-weight: 700;
    font-size: 28px;
    color: var(--navy)
}

.block .foot .l {
    font-size: 12.5px;
    color: var(--ink-40)
}

.block.navy {
    background: linear-gradient(165deg, #0B2C63, var(--navy));
    border: none
}

.block.navy h3 {
    color: #fff
}

.block.navy p {
    color: rgba(255, 255, 255, .62)
}

.block.navy .foot {
    border-top-color: rgba(255, 255, 255, .14)
}

.block.navy .foot .v {
    color: #fff
}

.block.navy .foot .l {
    color: rgba(255, 255, 255, .5)
}

.block.navy .idx {
    color: var(--accent)
}

/* ================= 8 · THOUGHT LEADERSHIP ================= */
.mag {
    padding: 170px 0
}

.mag-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 60px;
    margin-top: 80px
}

.feature {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    min-height: 560px;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 52px;
    color: #fff;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 46px 80px rgba(6, 26, 64, .24)
}

.feature .f-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 1.2s var(--ease);
}

.feature:hover .f-img {
    transform: scale(1.045)
}

.feature .f-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, rgba(6, 26, 64, .12) 30%, rgba(4, 13, 33, .9) 92%)
}

.ftag {
    position: relative;
    align-self: flex-start;
    font-family: var(--display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 26px
}

.feature h3 {
    position: relative;
    color: #fff;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1.18;
    max-width: 560px;
    margin-bottom: 18px
}

.feature p {
    position: relative;
    color: rgba(255, 255, 255, .62);
    max-width: 520px;
    font-size: 15.5px
}

.feature .meta {
    position: relative;
    margin-top: 30px;
    display: flex;
    gap: 22px;
    font-family: var(--num);
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .06em
}

.mag-list {
    display: grid;
    align-content: start
}

.mag-item {
    padding: 30px 6px;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 8px;
    transition: padding-left .35s var(--ease)
}

.mag-item:first-child {
    padding-top: 6px
}

.mag-item:hover {
    padding-left: 16px
}

.mag-item .cat {
    font-family: var(--num);
    font-size: 11.5px;
    letter-spacing: .18em;
    color: var(--blue);
    text-transform: uppercase
}

.mag-item h4 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 19px;
    color: var(--navy);
    line-height: 1.35;
    letter-spacing: -.01em
}

.mag-item p {
    font-size: 14px;
    color: var(--ink-60)
}

.mag-item .go {
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 6px
}

.mag-item .go svg {
    width: 13px;
    height: 13px;
    transition: transform .3s var(--ease)
}

.mag-item:hover .go svg {
    transform: translateX(4px)
}

/* ================= 9 · SPEAKING ================= */
.speak {
    padding: 0 0 170px
}

.speak-band {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(120deg, var(--navy) 0%, #0A2E66 55%, #0D3E85 100%);
    color: #fff;
    padding: 100px 80px;
}

.speak-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 420px at 84% 20%, rgba(74, 168, 255, .3), transparent 66%)
}

.speak-band .spotlight {
    position: absolute;
    top: 0;
    right: 18%;
    width: 340px;
    height: 100%;
    background: linear-gradient(180deg, rgba(74, 168, 255, .16), transparent 70%);
    clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
    pointer-events: none
}

.speak-grid2 {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    position: relative;
    align-items: center
}

.speak-band .kicker {
    color: var(--accent)
}

.speak-band .kicker::before {
    background: var(--accent)
}

.speak-band h2 {
    color: #fff;
    font-size: clamp(32px, 4vw, 54px);
    margin: 24px 0 22px
}

.speak-band>* {
    position: relative
}

.speak-band .lead {
    color: rgba(255, 255, 255, .62);
    max-width: 480px;
    margin-bottom: 40px
}

.topics {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .14)
}

.topics .tp {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: padding-left .3s var(--ease)
}

.topics .tp:hover {
    padding-left: 16px
}

.topics .n {
    font-family: var(--num);
    font-weight: 700;
    color: var(--accent);
    font-size: 14px
}

.topics .t {
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    color: #fff
}

.speak-cta {
    margin-top: 44px
}

.speak-visual2 {
    display: grid;
    gap: 20px
}

.speak-photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 34px 70px rgba(0, 0, 0, .35);
    transition: transform .5s var(--ease);
}

.speak-photo:hover {
    transform: translateY(-6px)
}

.speak-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.sp-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, transparent 52%, rgba(4, 14, 36, .85) 98%)
}

.sp-cap {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 20px
}

.sp-cap b {
    display: block;
    font-family: var(--display);
    font-weight: 800;
    font-size: 18px;
    color: #fff
}

.sp-cap span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .72)
}

.pod-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.pod-stat {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 18px 16px;
    text-align: center;
    transition: background .3s, transform .4s var(--ease);
}

.pod-stat:hover {
    background: rgba(74, 168, 255, .12);
    transform: translateY(-4px)
}

.pod-stat .v {
    font-family: var(--num);
    font-weight: 700;
    font-size: 26px;
    display: block
}

.pod-stat .l {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.4;
    display: block;
    margin-top: 6px
}

/* ================= 10 · ENDING ================= */
.ending {
    padding: 210px 0 190px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.ending .g {
    position: absolute;
    left: 50%;
    bottom: -360px;
    transform: translateX(-50%);
    width: 900px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 238, 255, .9), transparent 62%);
    pointer-events: none
}

.ending .kicker {
    justify-content: center
}

.ending .kicker::after {
    content: "";
    width: 34px;
    height: 1.5px;
    background: var(--blue)
}

.ending h2 {
    font-size: clamp(40px, 6.4vw, 86px);
    margin: 34px auto 30px;
    max-width: 1000px;
    position: relative
}

.ending h2 em {
    font-style: normal;
    color: var(--blue)
}

.ending p {
    color: var(--ink-60);
    max-width: 520px;
    margin: 0 auto 52px;
    font-size: 17.5px;
    position: relative
}

.ending .row {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative
}

/* ================= FOOTER ================= */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .58);
    padding: 90px 0 40px;
    border-radius: 56px 56px 0 0
}

.f-top {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.f-top h3 {
    color: #fff;
    font-size: clamp(24px, 2.6vw, 34px);
    margin-bottom: 14px
}

.f-top p {
    max-width: 420px;
    font-size: 15px
}

.newsletter {
    display: flex;
    gap: 12px;
    margin-top: 34px;
    max-width: 460px
}

.newsletter input {
    flex: 1;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: 15px 24px;
    color: #fff;
    font: inherit;
    font-size: 14.5px;
    min-width: 0;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, .4)
}

.newsletter input:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px
}

.newsletter .btn {
    padding: 14px 26px;
    font-size: 14px;
    background: var(--blue);
    color: #fff
}

.newsletter .btn:hover {
    background: #0069e0
}

.f-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-content: start
}

.f-col h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px
}

.f-col a {
    display: block;
    font-size: 14.5px;
    padding: 6px 0;
    transition: color .25s
}

.f-col a:hover {
    color: var(--accent)
}

.f-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 34px;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 18px
}

.f-social {
    display: flex;
    gap: 12px
}

.f-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .75);
    transition: all .3s
}

.f-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-3px)
}

.f-social svg {
    width: 16px;
    height: 16px
}

/* ================= RESPONSIVE ================= */
@media (max-width:1120px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 70px
    }

    .hero-portrait {
        justify-self: center
    }

    .story-ed {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .story-margin,
    .story-aside {
        position: static
    }

    .story-aside {
        grid-template-columns: 1fr 1fr;
        align-items: start
    }

    .story-photo {
        aspect-ratio: auto;
        min-height: 380px
    }

    .eco-grid {
        grid-template-columns: 1fr;
        gap: 60px
    }

    .monu-row {
        grid-template-columns: repeat(3, 1fr);
        transform: none;
        gap: 20px
    }

    .s1,
    .s2,
    .s3,
    .s4,
    .s5,
    .s6 {
        height: auto;
        min-height: 250px
    }

    .blocks-grid {
        grid-template-columns: 1fr 1fr
    }

    .blocks-col.mid {
        margin-top: 0
    }

    .mag-grid {
        grid-template-columns: 1fr
    }

    .speak-grid2 {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .f-top {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .nav-links {
        display: none
    }
}

@media (max-width:700px) {

    .hero h1{
        font-size: 35px;
    }

    body {
        font-size: 15.5px
    }

    .wrap {
        padding: 0 22px
    }

    .nav-in {
        padding: 0 22px
    }

    .burger {
        display: flex
    }

    .nav-right .btn {
        display: none
    }

    .hero {
        padding: 130px 0 110px
    }

    .hero-arcs {
        display: none
    }

    .story {
        padding: 120px 0 110px
    }

    .story-aside {
        grid-template-columns: 1fr
    }

    .orbitsec {
        padding: 110px 0;
        border-radius: 36px 36px 0 0
    }

    .orbit-stage {
        height: auto;
        width: 100%
    }

    .core {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 34px
    }

    .ring,
    .orbit-rot {
        display: none
    }

    .sat {
        position: static;
        transform: none
    }

    .sat-in {
        animation: none;
        white-space: normal
    }

    .orbit-fallback {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .eco {
        padding: 120px 0
    }

    .monu {
        padding: 120px 0 130px
    }

    .monu-row {
        grid-template-columns: 1fr 1fr
    }

    .philo {
        padding: 130px 0
    }

    .blocks {
        padding: 110px 0
    }

    .blocks-grid {
        grid-template-columns: 1fr
    }

    .mag {
        padding: 120px 0
    }

    .feature {
        padding: 34px;
        min-height: 440px
    }

    .speak-band {
        padding: 70px 28px;
        border-radius: 30px
    }

    .ending {
        padding: 140px 0 120px
    }

    footer {
        border-radius: 36px 36px 0 0
    }

    .newsletter {
        flex-direction: column
    }

    .f-cols {
        grid-template-columns: 1fr
    }

    /* Tighter section spacing specifically for small screens (override other mobile paddings) */
    .hero,
    .story,
    .orbitsec,
    .eco,
    .monu,
    .philo,
    .blocks,
    .mag,
    .ending {
        padding-top: 60px !important;
        padding-bottom: 48px !important;
    }

    /* Preserve a bit more space for hero and ending visuals while still reducing gaps */
    .hero {
        padding-top: 80px !important;
        padding-bottom: 56px !important;
    }

    .ending {
        padding-top: 80px !important;
        padding-bottom: 60px !important;
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .rv {
        opacity: 1;
        transform: none
    }
}