:root {
    --ink: #f3f1ea;
    --muted: #969d99;
    --line: rgba(255, 255, 255, .105);
    --surface: rgba(15, 19, 20, .76);
    --deep: #07090b;
    --ember: #ed8857;
    --frost: #70a8c8;
    --mint: #8bcfa4;
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--deep);
    font: 15px/1.6 "DM Sans", sans-serif;
}
a { color: inherit; }

.scroll-progress {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: var(--scroll, 0%);
    height: 2px;
    background: linear-gradient(90deg, var(--ember), var(--mint), var(--frost));
    box-shadow: 0 0 16px rgba(139, 207, 164, .55);
}
.cursor-light {
    position: fixed;
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    opacity: .16;
    background: radial-gradient(circle, rgba(124, 189, 151, .55), rgba(124, 189, 151, 0) 68%);
    transform: translate3d(calc(var(--mouse-x, 50vw) - 50%), calc(var(--mouse-y, 40vh) - 50%), 0);
    transition: opacity .3s ease;
}
.atmosphere {
    position: fixed;
    z-index: -3;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 73% 12%, rgba(45, 89, 65, .22), transparent 33rem),
        radial-gradient(circle at 10% 74%, rgba(126, 57, 35, .16), transparent 34rem),
        linear-gradient(145deg, #06080a 10%, #0d1212 58%, #07090b);
}
.atmosphere:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.noise {
    position: absolute;
    inset: 0;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.aurora {
    position: absolute;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    filter: blur(75px);
    opacity: .11;
    animation: aurora-drift 18s ease-in-out infinite alternate;
}
.aurora-one { top: -25vw; right: -8vw; background: #4da774; }
.aurora-two { bottom: -30vw; left: -18vw; background: #c46742; animation-delay: -8s; }

.site-header,
main,
footer {
    width: min(1420px, calc(100% - 64px));
    margin-inline: auto;
}
.site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 98px;
    border-bottom: 1px solid var(--line);
}
.brand {
    display: inline-flex;
    width: max-content;
    gap: 12px;
    align-items: center;
    text-decoration: none;
}
.brand-mark {
    position: relative;
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
}
.brand-mark:before {
    content: "";
    position: absolute;
    inset: -3px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    animation: mark-spin 14s linear infinite;
}
.brand img { width: 43px; height: 43px; }
.brand strong, .brand small { display: block; }
.brand strong { font: 700 19px "Space Grotesk", sans-serif; letter-spacing: -.02em; }
.brand small {
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.site-nav { display: flex; gap: 30px; }
.site-nav a {
    position: relative;
    color: #afb5b1;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}
.site-nav a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--mint);
    transform: scaleX(0);
    transition: transform .25s ease;
}
.site-nav a:hover:after { transform: scaleX(1); }
.private-label {
    justify-self: end;
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #d4d6d0;
    background: rgba(255,255,255,.035);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.private-label i,
.live-indicator i,
.availability > i,
.status-tag i,
.future-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9bd678;
    box-shadow: 0 0 0 5px rgba(155,214,120,.09);
    animation: pulse-dot 2.2s ease-out infinite;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
    gap: clamp(50px, 7vw, 120px);
    align-items: center;
    min-height: calc(100vh - 99px);
    padding: 8vh 0 10vh;
}
.eyebrow {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 20px;
    color: #b0c5b3;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .19em;
}
.eyebrow span { color: #66706b; }
.hero h1 {
    max-width: 890px;
    margin: 0;
    font: 600 clamp(58px, 7vw, 108px)/.89 "Space Grotesk", sans-serif;
    letter-spacing: -.068em;
}
.outline-word {
    color: transparent;
    -webkit-text-stroke: 1px rgba(243,241,234,.7);
    background: linear-gradient(90deg, rgba(243,241,234,.12), rgba(243,241,234,.72), rgba(243,241,234,.12));
    background-size: 200% 100%;
    background-clip: text;
    animation: outline-shimmer 7s linear infinite;
}
.lead {
    max-width: 690px;
    margin: 32px 0 0;
    color: #b9bfba;
    font-size: clamp(17px, 1.5vw, 21px);
}
.rotating-word {
    display: inline-block;
    min-width: 122px;
    color: var(--mint);
    font-weight: 600;
}
.rotating-word.swap { animation: word-swap .44s ease both; }
.hero-actions { display: flex; gap: 24px; align-items: center; margin-top: 38px; }
.primary-action {
    display: inline-flex;
    min-width: 250px;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
    padding: 15px 17px 15px 20px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    color: #101614;
    background: #d9e7dc;
    box-shadow: 0 14px 40px rgba(0,0,0,.2);
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, box-shadow .25s ease;
}
.primary-action:hover { background: #f0f6f1; box-shadow: 0 18px 50px rgba(0,0,0,.32); }
.primary-action b {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 8px;
    background: rgba(9,16,13,.1);
}
.availability { display: flex; gap: 12px; align-items: center; color: #d8dbd7; }
.availability span, .availability small { display: block; }
.availability small { color: #737c76; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }

.network-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(19,25,24,.88), rgba(9,12,14,.91));
    box-shadow: 0 40px 100px rgba(0,0,0,.34);
}
.network-stage:before {
    content: "";
    position: absolute;
    inset: 48px 0 62px;
    opacity: .45;
    background-image: radial-gradient(circle, rgba(255,255,255,.11) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
}
.stage-head,
.stage-foot {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stage-head {
    height: 54px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
    color: #909993;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.live-indicator { display: flex; gap: 9px; align-items: center; color: #bfc7c1; }
.live-indicator i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9bd0aa;
    box-shadow: 0 0 0 0 rgba(155,208,170,.45);
    animation: status-pulse 1.8s ease-out infinite;
}
.live-indicator [data-route-label] {
    min-width: 151px;
    text-align: right;
}
.topology { position: relative; height: 470px; }
.connection-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.line {
    fill: none;
    stroke: rgba(142,187,157,.38);
    stroke-width: 1.35;
    stroke-dasharray: 8 10;
    animation: dash-flow 4.2s linear infinite;
}
.line-two, .line-four { animation-direction: reverse; }
.core-node {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 122px;
    height: 122px;
    place-items: center;
    border: 1px solid rgba(156,204,172,.34);
    border-radius: 50%;
    background: rgba(12,19,17,.88);
    box-shadow: 0 0 70px rgba(92,158,116,.18), inset 0 0 30px rgba(92,158,116,.08);
    transform: translate(-50%, -50%);
}
.core-node img { width: 56px; height: 56px; }
.core-scan {
    position: absolute;
    z-index: -1;
    inset: -76px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 78%, rgba(133,198,153,.22) 91%, transparent 100%);
    -webkit-mask: radial-gradient(circle, transparent 0 48%, #000 50% 70%, transparent 72%);
    mask: radial-gradient(circle, transparent 0 48%, #000 50% 70%, transparent 72%);
    animation: core-scan 4.8s linear infinite;
}
.core-node small {
    position: absolute;
    bottom: -27px;
    color: #9ba59e;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em;
}
.core-rings, .core-rings:before {
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(138,201,158,.14);
    border-radius: 50%;
    animation: ring-pulse 3.2s ease-out infinite;
}
.core-rings:before { content: ""; inset: -18px; animation-delay: 1.1s; }
.satellite {
    position: absolute;
    display: flex;
    min-width: 180px;
    gap: 11px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.095);
    border-radius: 13px;
    background: rgba(10,14,15,.88);
    box-shadow: 0 15px 30px rgba(0,0,0,.2);
    animation: satellite-float 5s ease-in-out infinite;
    transition: border-color .35s ease, background-color .35s ease, box-shadow .35s ease, filter .35s ease;
}
.satellite:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4c5851;
    transform: translateY(-50%);
    transition: background-color .35s ease, box-shadow .35s ease;
}
.satellite.is-active {
    border-color: rgba(157,215,176,.58);
    background: rgba(18,31,25,.96);
    box-shadow: 0 15px 30px rgba(0,0,0,.22), 0 0 34px rgba(108,184,133,.2), inset 0 0 20px rgba(116,188,139,.07);
    filter: brightness(1.08);
}
.satellite.is-active:after {
    background: #a7ddb8;
    box-shadow: 0 0 0 5px rgba(144,208,165,.11), 0 0 15px #8ecba1;
}
.satellite.is-active .satellite-icon { animation: active-node 1.15s ease-in-out infinite alternate; }
.satellite strong, .satellite small { display: block; }
.satellite strong { font: 600 12px "Space Grotesk", sans-serif; }
.satellite small { color: #69736d; font-size: 9px; }
.satellite-icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    color: #dca17e;
    background: rgba(229,127,76,.12);
    font: 700 10px "Space Grotesk", sans-serif;
}
.satellite-gh { top: 39px; left: 28px; }
.satellite-mc { top: 46px; right: 26px; animation-delay: -.8s; }
.satellite-data { bottom: 40px; left: 35px; animation-delay: -1.7s; }
.satellite-files { right: 32px; bottom: 36px; animation-delay: -2.5s; }
.creeper { position: relative; background: rgba(115,168,105,.13); }
.creeper i, .creeper-large i { position: absolute; display: block; background: #83b66a; }
.creeper i:nth-child(1) { top: 10px; left: 8px; width: 7px; height: 7px; box-shadow: 13px 0 #83b66a; }
.creeper i:nth-child(2) { top: 17px; left: 14px; width: 8px; height: 6px; }
.creeper i:nth-child(3) { top: 22px; left: 10px; width: 16px; height: 6px; }
.data-icon { gap: 2px; align-content: center; background: rgba(111,166,197,.12); }
.data-icon i { width: 18px; height: 3px; border-radius: 2px; background: var(--frost); }
.folder-icon { position: relative; background: rgba(222,184,99,.1); }
.folder-icon:before {
    content: "";
    width: 19px;
    height: 13px;
    border: 1px solid #d5b873;
    border-radius: 2px;
    background: rgba(213,184,115,.12);
}
.folder-icon:after { content: ""; position: absolute; top: 10px; left: 8px; width: 9px; height: 4px; border-radius: 2px 2px 0 0; background: #d5b873; }
.signal {
    position: absolute;
    z-index: 4;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #a5d7b5;
    box-shadow: 0 0 6px #d8f3e0, 0 0 18px #8dc9a1;
}
.signal-one { animation: signal-one 3.8s linear infinite; }
.signal-two { animation: signal-two 4.6s linear infinite 1s; }
.signal-three { animation: signal-three 4.2s linear infinite .4s; }
.signal-four { animation: signal-four 5s linear infinite 1.8s; }
.route-readout {
    position: absolute;
    z-index: 6;
    bottom: 15px;
    left: 50%;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 7px 11px;
    border: 1px solid rgba(153,200,168,.16);
    border-radius: 999px;
    color: #8f9c94;
    background: rgba(7,11,10,.7);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    transform: translateX(-50%);
    backdrop-filter: blur(8px);
}
.route-readout span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9dd5af;
    box-shadow: 0 0 11px #8ecba1;
}
.route-readout b {
    min-width: 115px;
    font: 600 8px "Space Grotesk", sans-serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.stage-foot {
    height: 63px;
    border-top: 1px solid var(--line);
}
.stage-foot div { flex: 1; padding: 0 18px; border-right: 1px solid var(--line); }
.stage-foot div:last-child { border: 0; }
.stage-foot small, .stage-foot strong { display: block; }
.stage-foot small { color: #68716c; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.stage-foot strong { margin-top: 2px; color: #cbd0cc; font: 600 12px "Space Grotesk", sans-serif; }

.signal-strip {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: rgba(255,255,255,.018);
}
.signal-track {
    display: flex;
    width: max-content;
    gap: 22px;
    align-items: center;
    padding: 13px 0;
    animation: ticker 28s linear infinite;
}
.signal-track span {
    color: #7e8781;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .17em;
}
.signal-track i { width: 4px; height: 4px; border-radius: 50%; background: #668c72; }

.manifesto { padding: 16vh 0; }
.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 8vw;
    align-items: start;
}
.manifesto h2,
.section-heading h2 {
    margin: 0;
    font: 600 clamp(38px, 5vw, 70px)/.98 "Space Grotesk", sans-serif;
    letter-spacing: -.055em;
}
.manifesto-grid > div > p {
    max-width: 620px;
    margin: 8px 0 37px;
    color: #b0b6b2;
    font-size: 18px;
}
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.principles span { padding-top: 15px; border-top: 1px solid var(--line); }
.principles b, .principles small { display: block; }
.principles b { color: #d8dcd8; font: 600 12px "Space Grotesk", sans-serif; }
.principles small { margin-top: 5px; color: #68716b; font-size: 10px; }

.panel-section { padding: 2vh 0 14vh; }
.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}
.section-heading > p { max-width: 500px; margin: 0 0 6px; color: var(--muted); }
.panel-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.panel-card {
    --accent: #bbb;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    isolation: isolate;
    grid-column: span 5;
    min-height: 590px;
    overflow: hidden;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(23,29,28,.94), rgba(10,13,15,.95));
    box-shadow: 0 30px 90px rgba(0,0,0,.25);
    text-decoration: none;
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transition: border-color .25s ease, box-shadow .25s ease, transform .16s ease;
    will-change: transform;
}
.panel-card.ember { --accent: var(--ember); }
.panel-card.frost { --accent: var(--frost); }
.panel-card:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, transparent);
    box-shadow: 0 40px 110px rgba(0,0,0,.42);
}
.card-glow {
    position: absolute;
    z-index: -1;
    top: calc(var(--card-y, 50%) - 220px);
    left: calc(var(--card-x, 50%) - 220px);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    opacity: 0;
    background: radial-gradient(circle, color-mix(in srgb,var(--accent) 25%,transparent), transparent 68%);
    transition: opacity .25s;
}
.panel-card:hover .card-glow { opacity: 1; }
.card-topline { display: flex; justify-content: space-between; align-items: center; }
.status-tag, .future-status {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: #aeb5b0;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
}
.status-tag i { background: var(--accent); box-shadow: 0 0 0 5px color-mix(in srgb,var(--accent) 9%,transparent); }
.arrow {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 17px;
    transition: transform .3s ease, background .3s ease;
}
.panel-card:hover .arrow { background: rgba(255,255,255,.06); transform: translate(3px,-3px) rotate(5deg); }
.panel-identity { display: flex; gap: 17px; align-items: center; margin-top: 48px; }
.game-icon {
    position: relative;
    display: grid;
    width: 66px;
    height: 66px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid color-mix(in srgb,var(--accent) 25%,transparent);
    border-radius: 17px;
    color: var(--accent);
    background: color-mix(in srgb,var(--accent) 10%,transparent);
    font: 700 17px "Space Grotesk", sans-serif;
}
.creeper-large i:nth-child(1) { top: 19px; left: 14px; width: 12px; height: 12px; box-shadow: 26px 0 var(--accent); }
.creeper-large i:nth-child(2) { top: 31px; left: 27px; width: 13px; height: 10px; }
.creeper-large i:nth-child(3) { top: 40px; left: 19px; width: 29px; height: 11px; }
.card-label { margin: 0 0 4px; color: var(--accent); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.panel-card h3, .future-card h3 { margin: 0; font: 600 clamp(31px,3.1vw,47px)/1 "Space Grotesk", sans-serif; letter-spacing: -.05em; }
.card-copy { max-width: 520px; min-height: 72px; margin: 23px 0; color: var(--muted); }
.panel-console {
    overflow: hidden;
    margin: 26px 0 23px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(5,8,10,.58);
}
.console-bar { display: flex; gap: 5px; align-items: center; padding: 10px 11px; border-bottom: 1px solid var(--line); }
.console-bar > span { width: 5px; height: 5px; border-radius: 50%; background: #414845; }
.console-bar small { margin-left: auto; color: #56605a; font: 500 8px "Space Grotesk", sans-serif; letter-spacing: .08em; }
.console-row { display: flex; justify-content: space-between; padding: 7px 12px; color: #68716c; font-size: 9px; }
.console-row strong { color: #b8bfba; font-weight: 600; }
.activity-line { display: flex; height: 43px; gap: 4px; align-items: end; padding: 6px 12px 10px; }
.activity-line span { width: 12%; height: var(--h, 30%); min-height: 5px; border-radius: 2px 2px 0 0; background: color-mix(in srgb,var(--accent) 48%,transparent); animation: bars 1.8s ease-in-out infinite alternate; }
.activity-line i { display: none; }
.activity-line span:nth-of-type(1) { --h:31%; animation-delay:-.3s }.activity-line span:nth-of-type(2) { --h:72%; animation-delay:-1s }.activity-line span:nth-of-type(3) { --h:45%; animation-delay:-.6s }.activity-line span:nth-of-type(4) { --h:89%; animation-delay:-1.4s }.activity-line span:nth-of-type(5) { --h:56%; animation-delay:-.2s }.activity-line span:nth-of-type(6) { --h:76%; animation-delay:-.9s }
.feature-row { display: flex; gap: 7px; flex-wrap: wrap; }
.feature-row span { padding: 6px 8px; border: 1px solid var(--line); border-radius: 7px; color: #afb6b1; font-size: 9px; }

.future-card {
    position: relative;
    grid-column: span 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.023);
}
.future-card:after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -130px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 32px rgba(255,255,255,.018), 0 0 0 64px rgba(255,255,255,.012);
}
.future-orbit { position: relative; display: grid; width: 62px; height: 62px; place-items: center; margin-bottom: 46px; }
.future-orbit:before, .future-orbit i {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
}
.future-orbit i { inset: 8px -8px; transform: rotate(50deg); animation: mark-spin 7s linear infinite; }
.future-orbit b { font: 300 30px "Space Grotesk", sans-serif; }
.future-card .card-label { color: #88908b; }
.future-card h3 { font-size: clamp(27px,2.4vw,39px); }
.future-card > p { position: relative; z-index: 2; color: #737c76; font-size: 12px; }
.future-status { position: relative; z-index: 2; }

footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 32px 0 44px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
}
.footer-brand img { width: 36px; height: 36px; }
footer > div { display: flex; gap: 26px; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2,.72,.22,1);
    transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes aurora-drift { to { transform: translate3d(8vw,5vw,0) scale(1.12); } }
@keyframes mark-spin { to { transform: rotate(360deg); } }
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 8px rgba(155,214,120,0); } }
@keyframes outline-shimmer { to { background-position: -200% 0; } }
@keyframes word-swap { 0% { opacity:1; transform:translateY(0) } 45% { opacity:0; transform:translateY(-8px) } 55% { opacity:0; transform:translateY(8px) } 100% { opacity:1; transform:translateY(0) } }
@keyframes dash-flow { to { stroke-dashoffset: -180; } }
@keyframes ring-pulse { 0% { opacity:0; transform:scale(.7) } 30% { opacity:1 } 100% { opacity:0; transform:scale(1.35) } }
@keyframes satellite-float { 50% { transform: translateY(-7px); } }
@keyframes core-scan { to { transform: rotate(1turn); } }
@keyframes status-pulse { 70% { box-shadow: 0 0 0 7px rgba(155,208,170,0); } 100% { box-shadow: 0 0 0 0 rgba(155,208,170,0); } }
@keyframes active-node { to { box-shadow: 0 0 0 4px rgba(151,207,169,.08), 0 0 19px rgba(139,202,159,.2); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes bars { to { height: calc(var(--h) * .52); opacity: .58; } }
@keyframes signal-one { 0%{left:50%;top:50%;opacity:0} 12%{opacity:1} 100%{left:16%;top:22%;opacity:0} }
@keyframes signal-two { 0%{left:50%;top:50%;opacity:0} 12%{opacity:1} 100%{left:82%;top:23%;opacity:0} }
@keyframes signal-three { 0%{left:17%;top:79%;opacity:0} 12%{opacity:1} 100%{left:50%;top:50%;opacity:0} }
@keyframes signal-four { 0%{left:82%;top:79%;opacity:0} 12%{opacity:1} 100%{left:50%;top:50%;opacity:0} }

@media (max-width: 1160px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-copy { padding-top: 6vh; }
    .network-stage { width: min(100%, 760px); }
    .panel-card { grid-column: span 6; }
    .future-card { grid-column: 1 / -1; min-height: 280px; }
}
@media (max-width: 800px) {
    .site-header, main, footer { width: min(100% - 30px, 1420px); }
    .site-header { grid-template-columns: 1fr auto; }
    .site-nav { display: none; }
    .hero { gap: 55px; padding-top: 7vh; }
    .hero h1 { font-size: clamp(49px, 14vw, 76px); }
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .network-stage { border-radius: 19px; }
    .topology { height: 420px; }
    .satellite { min-width: 151px; padding: 8px; }
    .satellite-gh { left: 12px; }
    .satellite-mc { right: 12px; }
    .satellite-data { left: 13px; }
    .satellite-files { right: 13px; }
    .manifesto { padding: 12vh 0; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 42px; }
    .section-heading { align-items: flex-start; flex-direction: column; }
    .panel-card, .future-card { grid-column: 1 / -1; }
    footer { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
    .private-label { font-size: 0; padding: 10px; }
    .private-label i { width: 8px; height: 8px; }
    .hero h1 {
        font-size: clamp(38px, 10.7vw, 43px);
        letter-spacing: -.06em;
    }
    .outline-word {
        display: block;
        width: fit-content;
    }
    .eyebrow {
        gap: 8px;
        font-size: 9px;
        letter-spacing: .13em;
        white-space: nowrap;
    }
    .lead {
        width: 92%;
        max-width: 330px;
        overflow-wrap: anywhere;
        font-size: 15px;
    }
    .manifesto h2,
    .section-heading h2 {
        max-width: 330px;
        font-size: clamp(31px, 8.6vw, 35px);
        line-height: 1.02;
    }
    .manifesto-title span { display: block; }
    .manifesto-grid > div > p,
    .section-heading > p {
        width: 76%;
        max-width: 275px;
        overflow-wrap: anywhere;
        font-size: 15px;
    }
    .rotating-word { min-width: 0; }
    .primary-action { width: 100%; }
    .topology { height: 490px; }
    .connection-lines, .signal { display: none; }
    .core-node { width: 105px; height: 105px; }
    .core-scan { inset: -57px; }
    .satellite { min-width: 144px; }
    .satellite-gh { top: 22px; left: 10px; }
    .satellite-mc { top: 22px; right: 10px; }
    .satellite-data { bottom: 23px; left: 10px; }
    .satellite-files { right: 10px; bottom: 23px; }
    .stage-foot div { padding-inline: 10px; }
    .principles { grid-template-columns: 1fr; }
    .panel-card { min-height: auto; padding: 21px; }
    .panel-identity { margin-top: 37px; }
    .card-copy { min-height: 0; }
    footer > div { flex-direction: column; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .cursor-light { display: none; }
    .satellite.is-active { border-color: rgba(157,215,176,.7); filter: brightness(1.14); }
}
