:root {
    --ink: #f4f0e8;
    --muted: #aaa9ba;
    --space: #080914;
    --space-soft: #0e1021;
    --panel: rgba(18, 20, 40, 0.72);
    --line: rgba(255, 255, 255, 0.13);
    --violet: #a98cff;
    --violet-deep: #7156d9;
    --cyan: #80d7e6;
    --copper: #e1a878;
    --container: 1240px;
    --gutter: clamp(22px, 5vw, 72px);
}

html { scroll-behavior: smooth; }

* { box-sizing: border-box; }

body.site-shell {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--space);
    font-family: "Segoe UI", Inter, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container-fluid {
    width: min(100%, var(--container));
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--space);
    background: var(--ink);
    transform: translateY(-150%);
}

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

.cosmos {
    position: fixed;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -15%, rgba(91, 67, 168, 0.22), transparent 44%),
        linear-gradient(180deg, #080914 0%, #090a17 50%, #070812 100%);
}

.star-field,
.star-field::before,
.star-field::after {
    position: absolute;
    inset: -10%;
    content: "";
    background-repeat: repeat;
}

.star-field--near {
    opacity: .55;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 1.4px),
        radial-gradient(circle, rgba(128,215,230,.9) 0 1px, transparent 1.5px);
    background-position: 17px 31px, 83px 127px;
    background-size: 173px 197px, 269px 241px;
}

.star-field--far {
    opacity: .22;
    background-image: radial-gradient(circle, #fff 0 .7px, transparent 1px);
    background-position: 73px 19px;
    background-size: 97px 113px;
}

.cosmic-glow {
    position: absolute;
    width: 42vw;
    aspect-ratio: 1;
    border-radius: 50%;
    opacity: .18;
}

.cosmic-glow--violet { top: 15%; right: -18%; background: radial-gradient(circle, rgba(127,90,255,.5), transparent 68%); }
.cosmic-glow--blue { bottom: -22%; left: -20%; background: radial-gradient(circle, rgba(58,185,209,.4), transparent 68%); }

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 9, 20, .68);
}

.navbar { min-height: 86px; padding: 0; }

.site-nav { max-width: var(--container); padding: 0 var(--gutter); }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.22rem;
    letter-spacing: .03em;
    text-decoration: none;
}

.brand-mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--violet);
}

.brand-mark svg { width: 100%; height: 100%; overflow: visible; }
.brand-mark circle { fill: currentColor; stroke: none; }
.brand-mark ellipse { fill: none; stroke: currentColor; stroke-width: 1.25; }
.brand-mark path { fill: var(--ink); stroke: none; }

.navbar-nav { gap: clamp(5px, 1vw, 18px); }

.navbar .nav-link {
    position: relative;
    padding: 11px 12px !important;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.navbar .nav-link::after {
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 1px;
    content: "";
    background: var(--violet);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus { color: var(--ink); }
.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after { transform: scaleX(1); transform-origin: left; }

.nav-item--earth { margin-left: 8px; }
.navbar .nav-link--earth {
    padding-right: 18px !important;
    padding-left: 18px !important;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
}
.navbar .nav-link--earth::after { display: none; }
.navbar .nav-link--earth:hover { border-color: rgba(169, 140, 255, .7); background: rgba(169, 140, 255, .08); }

.navbar-toggler {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: none !important;
}
.nav-toggle-line { width: 17px; height: 1px; background: var(--ink); }

.site-content { position: relative; }

.hero {
    display: grid;
    min-height: min(850px, calc(100vh - 86px));
    grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
    align-items: center;
    gap: clamp(40px, 5vw, 90px);
    padding-top: clamp(68px, 8vw, 116px);
    padding-bottom: clamp(80px, 10vw, 150px);
}

.eyebrow,
.section-number {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 26px;
    color: var(--cyan);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.eyebrow > span { width: 28px; height: 1px; background: currentColor; }

.hero h1,
.page-hero h1,
.contact-copy h1 {
    max-width: 700px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.7rem, 6.8vw, 7.25rem);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.055em;
}

.hero h1 em,
.page-hero h1 em,
.contact-copy h1 em,
.section-heading h2 em {
    color: var(--violet);
    font-weight: 400;
}

.hero-intro {
    max-width: 610px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.78;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.button {
    display: inline-flex;
    min-height: 53px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { color: inherit; transform: translateY(-2px); }
.button--primary { color: #10101b; background: var(--ink); }
.button--primary:hover { color: #10101b; background: #fff; }
.button--ghost { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.025); }
.button--ghost:hover { color: var(--ink); border-color: rgba(169,140,255,.65); background: rgba(169,140,255,.08); }

.telemetry {
    display: grid;
    max-width: 610px;
    grid-template-columns: repeat(3, 1fr);
    margin: 58px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.telemetry div { min-width: 0; padding-right: 16px; }
.telemetry dt,
.signal-panel dt {
    margin-bottom: 7px;
    color: #77798e;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.telemetry dd,
.signal-panel dd { margin: 0; color: #d9d6d1; font-size: .76rem; letter-spacing: .04em; }
.status-dot,
.signal i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #70d7ae; box-shadow: 0 0 10px rgba(112,215,174,.8); }

.orbit-stage {
    --pointer-x: 0;
    --pointer-y: 0;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 650px;
    justify-self: center;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(106, 78, 180, .13), transparent 65%);
    transform: translate(calc(var(--pointer-x) * 5px), calc(var(--pointer-y) * 5px));
    transition: transform .35s ease-out;
}
.orbit-stage::before,
.orbit-stage::after {
    position: absolute;
    z-index: -1;
    content: "";
    background: var(--line);
}
.orbit-stage::before { top: 50%; right: -8%; left: -8%; height: 1px; }
.orbit-stage::after { top: -8%; bottom: -8%; left: 50%; width: 1px; }

.orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; transform: translate(-50%, -50%) rotate(-22deg); }
.orbit i { position: absolute; top: 50%; right: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.orbit--outer { width: 84%; height: 42%; }
.orbit--middle { width: 66%; height: 34%; transform: translate(-50%, -50%) rotate(31deg); }
.orbit--middle i { top: auto; right: auto; bottom: 12%; left: 9%; background: var(--violet); box-shadow: 0 0 14px var(--violet); }
.orbit--inner { width: 45%; height: 25%; transform: translate(-50%, -50%) rotate(-55deg); }
.orbit--inner i { top: 1%; right: 18%; width: 5px; height: 5px; background: var(--copper); box-shadow: 0 0 12px var(--copper); }

.planet { position: absolute; top: 50%; left: 50%; width: 36%; aspect-ratio: 1; border-radius: 50%; transform: translate(-50%, -50%); box-shadow: -24px 14px 70px rgba(61,43,113,.5); }
.planet-glow { position: absolute; inset: -18%; border-radius: inherit; background: radial-gradient(circle, rgba(169,140,255,.25), transparent 66%); }
.planet-surface { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; background: radial-gradient(circle at 32% 28%, #d4c3ff 0 2%, #8c72d9 12%, #513d9c 39%, #1b2049 70%, #0a0c1b 100%); box-shadow: inset -28px -15px 38px rgba(0,0,0,.55), inset 8px 8px 22px rgba(255,255,255,.13); }
.planet-surface::before,
.planet-surface::after { position: absolute; content: ""; border: 8px solid rgba(190,174,255,.14); border-radius: 48%; filter: blur(2px); transform: rotate(-19deg); }
.planet-surface::before { width: 145%; height: 34%; top: 21%; left: -32%; }
.planet-surface::after { width: 120%; height: 25%; bottom: 12%; left: -18%; border-width: 5px; }
.planet-shadow { position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(118deg, transparent 34%, rgba(4,5,15,.2) 52%, rgba(4,5,15,.93) 88%); }

.planet-label { position: absolute; right: 8%; bottom: 17%; padding-left: 35px; }
.planet-label::before { position: absolute; top: 11px; left: -45px; width: 67px; height: 1px; content: ""; background: rgba(255,255,255,.4); }
.planet-label span { display: block; margin-bottom: 4px; color: #77798e; font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; }
.planet-label strong { font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-weight: 400; }

.coordinate { position: absolute; color: #5f6175; font-family: Consolas, monospace; font-size: .58rem; letter-spacing: .12em; }
.coordinate--top { top: 6%; left: 50%; transform: translateX(-50%); }
.coordinate--side { top: 50%; right: -2%; transform: rotate(90deg) translateX(50%); }
.constellation { position: absolute; top: 6%; right: 0; width: 29%; overflow: visible; opacity: .42; }
.constellation path { fill: none; stroke: #a8dfe8; stroke-width: .5; }
.constellation circle { fill: #fff; }

.manifest { padding-top: clamp(90px, 12vw, 170px); padding-bottom: clamp(90px, 12vw, 180px); border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: .65fr 1fr; column-gap: 70px; }
.section-heading .section-number { grid-column: 1 / -1; }
.section-heading h2,
.dispatch blockquote,
.home-cta h2,
.page-cta h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5.2vw, 5.6rem);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.04em;
}
.section-heading > p:last-child { max-width: 520px; margin: 12px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.8; }

.manifest-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 86px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.manifest-card { position: relative; min-height: 390px; padding: 34px clamp(24px, 3vw, 40px) 30px; border-right: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.018), transparent); transition: background .3s ease, transform .3s ease; }
.manifest-card:last-child { border-right: 0; }
.manifest-card:hover { z-index: 2; background: rgba(169,140,255,.06); transform: translateY(-7px); }
.card-index { color: #646678; font-family: Consolas, monospace; font-size: .65rem; }
.card-icon { position: relative; width: 80px; height: 80px; margin: 48px 0 34px; }
.card-icon--relay { border: 1px solid rgba(169,140,255,.5); border-radius: 50%; }
.card-icon--relay::before,
.card-icon--relay::after { position: absolute; border: 1px solid rgba(169,140,255,.25); border-radius: 50%; content: ""; }
.card-icon--relay::before { inset: 12px; }
.card-icon--relay::after { inset: 26px; background: var(--violet); box-shadow: 0 0 20px rgba(169,140,255,.8); }
.card-icon--systems i { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px rgba(128,215,230,.6); }
.card-icon--systems i:nth-child(1) { top: 5px; left: 8px; }
.card-icon--systems i:nth-child(2) { top: 32px; right: 2px; }
.card-icon--systems i:nth-child(3) { bottom: 2px; left: 17px; }
.card-icon--systems::before { position: absolute; width: 63px; height: 50px; top: 13px; left: 11px; border: 1px solid rgba(128,215,230,.4); content: ""; transform: rotate(25deg); }
.card-icon--lab { border: 1px solid rgba(225,168,120,.38); transform: rotate(45deg); }
.card-icon--lab::before,
.card-icon--lab::after { position: absolute; content: ""; background: rgba(225,168,120,.45); }
.card-icon--lab::before { top: 50%; left: -15px; width: 108px; height: 1px; }
.card-icon--lab::after { top: -15px; left: 50%; width: 1px; height: 108px; }
.card-icon--lab i { position: absolute; inset: 26px; border-radius: 50%; background: var(--copper); box-shadow: 0 0 18px rgba(225,168,120,.75); }
.manifest-card h3 { margin: 0 0 15px; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 400; }
.manifest-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.card-meta { position: absolute; right: 30px; bottom: 27px; left: 30px; color: #65677a; font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; }

.dispatch { display: grid; grid-template-columns: .62fr 1.38fr; align-items: center; gap: 70px; padding-top: 120px; padding-bottom: 140px; }
.dispatch-mark { position: relative; width: min(330px, 100%); aspect-ratio: 1; }
.dispatch-mark > span { position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(169,140,255,.3); border-radius: 50%; transform: translate(-50%, -50%); }
.dispatch-mark > span:nth-child(1) { width: 100%; height: 42%; transform: translate(-50%, -50%) rotate(-20deg); }
.dispatch-mark > span:nth-child(2) { width: 67%; height: 67%; }
.dispatch-mark > span:nth-child(3) { width: 18%; height: 18%; border: 0; background: radial-gradient(circle at 35% 30%, #d4c3ff, #6048ac 48%, #11152e 75%); box-shadow: 0 0 45px rgba(169,140,255,.45); }
.dispatch blockquote { max-width: 760px; font-size: clamp(2.2rem, 4vw, 4.4rem); }
.dispatch-byline { margin: 28px 0 0; color: var(--muted); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }

.home-cta { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; padding-top: 90px; padding-bottom: 100px; border-top: 1px solid var(--line); }
.home-cta h2 { font-size: clamp(3rem, 5.5vw, 5.7rem); }
.home-cta-action { max-width: 480px; padding-bottom: 6px; }
.home-cta-action > p { margin: 0 0 28px; color: var(--muted); line-height: 1.7; }
.home-cta-action > div { display: flex; flex-wrap: wrap; gap: 28px; }
.text-link { display: inline-flex; gap: 20px; padding-bottom: 7px; border-bottom: 1px solid rgba(169,140,255,.55); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.text-link:hover { color: var(--violet); }

.site-footer { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: rgba(5,6,14,.64); }
.footer-inner { display: flex; min-height: 210px; align-items: flex-end; justify-content: space-between; gap: 40px; padding-top: 60px; padding-bottom: 44px; }
.footer-kicker { margin: 0 0 8px; color: var(--violet); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.footer-signoff { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 2vw, 2rem); }
.footer-meta { margin: 0; color: #797b8d; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-orbit { position: absolute; top: 36px; right: 8%; width: 180px; height: 70px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: rotate(-12deg); }
.footer-orbit span { position: absolute; right: 12px; bottom: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 10px var(--violet); }

.page-hero { display: grid; min-height: 680px; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 80px; padding-top: 90px; padding-bottom: 110px; }
.page-hero h1,
.contact-copy h1 { font-size: clamp(4rem, 7vw, 7.6rem); }
.page-hero-intro { max-width: 470px; margin: 100px 0 0; color: var(--muted); font-size: 1.1rem; line-height: 1.8; }
.about-story { padding-top: 110px; padding-bottom: 130px; border-top: 1px solid var(--line); }
.story-copy { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; margin-top: 65px; }
.story-copy h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.4rem, 6vw, 6.8rem); font-weight: 400; line-height: .9; }
.story-copy > div { max-width: 650px; }
.story-copy p { color: var(--muted); font-size: 1rem; line-height: 1.9; }
.story-copy .story-lead { margin-top: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 2.75rem); line-height: 1.25; }
.principles { padding-top: 110px; padding-bottom: 130px; border-top: 1px solid var(--line); }
.section-heading--compact { grid-template-columns: 1fr; }
.section-heading--compact h2 { font-size: clamp(3rem, 5vw, 5.3rem); }
.principle-list { margin: 80px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.principle-list li { display: grid; grid-template-columns: 90px .75fr 1.25fr; gap: 30px; align-items: baseline; padding: 34px 0; border-bottom: 1px solid var(--line); }
.principle-list li > span { color: var(--violet); font-family: Consolas, monospace; font-size: .68rem; }
.principle-list h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; font-weight: 400; }
.principle-list p { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.7; }
.page-cta { display: grid; grid-template-columns: .45fr 1fr auto; gap: 35px; align-items: center; padding-top: 80px; padding-bottom: 90px; border-top: 1px solid var(--line); }
.page-cta > p { color: var(--cyan); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.page-cta h2 { font-size: clamp(2.4rem, 4vw, 4.2rem); }

.contact-stage { display: grid; min-height: 760px; grid-template-columns: 1fr .8fr; align-items: center; gap: 90px; padding-top: 90px; padding-bottom: 120px; }
.contact-copy > p:not(.eyebrow) { max-width: 590px; margin: 34px 0 36px; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.signal-panel { padding: 45px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(169,140,255,.06), rgba(255,255,255,.018)); }
.signal-radar { position: relative; width: min(370px, 100%); aspect-ratio: 1; margin: 0 auto 42px; overflow: hidden; border: 1px solid rgba(128,215,230,.27); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 18%, rgba(128,215,230,.05) 18.5% 19%); }
.signal-radar::before,
.signal-radar::after { position: absolute; z-index: 2; content: ""; background: rgba(128,215,230,.2); }
.signal-radar::before { top: 50%; right: 0; left: 0; height: 1px; }
.signal-radar::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.radar-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(128,215,230,.12); border-radius: 50%; transform: translate(-50%,-50%); }
.radar-ring--one { width: 35%; height: 35%; }
.radar-ring--two { width: 66%; height: 66%; }
.radar-ring--three { width: 90%; height: 90%; }
.radar-sweep { position: absolute; z-index: 1; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0 75%, rgba(128,215,230,.24) 98%, rgba(128,215,230,.5)); animation: radar-sweep 5s linear infinite; }
.radar-origin { position: absolute; z-index: 3; top: 50%; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); transform: translate(-50%,-50%); }
@keyframes radar-sweep { to { transform: rotate(360deg); } }
.signal-panel dl { margin: 0; }
.signal-panel dl > div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-top: 1px solid var(--line); }
.signal-panel dt { margin: 0; }
.signal-panel dd { text-align: right; }
.contact-note { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; padding-top: 70px; padding-bottom: 85px; border-top: 1px solid var(--line); }
.contact-note > p:last-child { max-width: 680px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 2.5vw, 2.5rem); line-height: 1.35; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.manifest-card:nth-child(2) { transition-delay: .08s; }
.manifest-card:nth-child(3) { transition-delay: .16s; }

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

.mobile-site-nav { display: flex; min-height: 74px; align-items: center; justify-content: space-between; }
.mobile-site-nav > div { display: flex; gap: 17px; }
.mobile-site-nav > div a { color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }

@media (max-width: 991.98px) {
    .hero { grid-template-columns: 1fr; }
    .hero-copy { position: relative; z-index: 2; }
    .orbit-stage { width: min(620px, 88vw); margin-top: 20px; }
    .section-heading { grid-template-columns: 1fr; row-gap: 28px; }
    .manifest-grid { grid-template-columns: 1fr; }
    .manifest-card { min-height: 390px; padding-bottom: 60px; border-right: 0; border-bottom: 1px solid var(--line); }
    .manifest-card:last-child { border-bottom: 0; }
    .card-icon { margin: 35px 0 26px; }
    .dispatch { grid-template-columns: .65fr 1.35fr; gap: 35px; }
    .page-hero,
    .contact-stage { grid-template-columns: 1fr; gap: 30px; }
    .page-hero-intro { margin: 0; }
    .signal-panel { max-width: 650px; width: 100%; margin: 0 auto; }
    .page-cta { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 767.98px) {
    .navbar { min-height: 74px; }
    .navbar-collapse { padding: 20px 0 26px; border-top: 1px solid var(--line); }
    .navbar-nav { align-items: stretch !important; }
    .navbar .nav-link { padding: 13px 0 !important; }
    .navbar .nav-link::after { right: 0; left: 0; }
    .nav-item--earth { margin: 10px 0 0; }
    .navbar .nav-link--earth { display: inline-flex; padding-right: 18px !important; padding-left: 18px !important; }
    .hero { min-height: auto; padding-top: 75px; }
    .hero h1 { font-size: clamp(3.6rem, 16vw, 5.7rem); }
    .telemetry { grid-template-columns: 1fr 1fr; gap: 20px; }
    .telemetry div:last-child { grid-column: 1 / -1; }
    .orbit-stage { width: min(540px, 100%); }
    .manifest { padding-top: 90px; }
    .dispatch { grid-template-columns: 1fr; }
    .dispatch-mark { width: 65vw; justify-self: center; }
    .home-cta { grid-template-columns: 1fr; gap: 45px; }
    .page-hero { min-height: auto; padding-top: 90px; }
    .page-hero h1,
    .contact-copy h1 { font-size: clamp(3.6rem, 15vw, 5.5rem); }
    .story-copy { grid-template-columns: 1fr; }
    .principle-list li { grid-template-columns: 50px 1fr; }
    .principle-list li p { grid-column: 2; }
    .contact-stage { min-height: auto; padding-top: 90px; }
    .contact-note { grid-template-columns: 1fr; gap: 18px; }
    .footer-inner { align-items: flex-start; flex-direction: column; justify-content: flex-end; }
    .footer-orbit { right: -40px; }
}

@media (max-width: 479.98px) {
    :root { --gutter: 20px; }
    .brand { font-size: 1.05rem; }
    .brand-mark { width: 33px; height: 33px; }
    .hero { padding-top: 62px; }
    .hero h1 { font-size: clamp(3.25rem, 17vw, 4.4rem); }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .button { width: 100%; }
    .telemetry dd { font-size: .7rem; }
    .coordinate--side { display: none; }
    .planet-label { right: 1%; bottom: 10%; }
    .manifest-card { padding-right: 25px; padding-left: 25px; }
    .home-cta h2 { font-size: 3.1rem; }
    .signal-panel { padding: 25px 20px; }
    .signal-panel dl > div { align-items: flex-start; flex-direction: column; gap: 6px; }
    .signal-panel dd { text-align: left; word-break: break-word; }
    .principle-list li { grid-template-columns: 34px 1fr; gap: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
}
