:root {
  --ink: #e7e8e2;
  --paper: #b8bcb7;
  --muted: #7d8785;
  --dim: #4e5958;
  --base: #07100f;
  --panel: #0b1514;
  --panel-light: #101c1a;
  --line: rgba(208, 218, 211, .14);
  --line-strong: rgba(208, 218, 211, .28);
  --oxide: #d66d42;
  --oxide-soft: #ef9a69;
  --signal: #9fc5a8;
  --data: #78b8c7;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--paper); background: radial-gradient(circle at 76% 8%, rgba(41, 91, 94, .13), transparent 31rem), radial-gradient(circle at 28% 46%, rgba(122, 67, 44, .07), transparent 38rem), var(--base); font: 400 16px/1.65 var(--sans); }
body::before { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; background-image: linear-gradient(rgba(120, 184, 199, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 184, 199, .018) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 72%); }
a { color: inherit; text-decoration: none; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 14px; background: var(--ink); color: var(--base); font: 600 .72rem var(--mono); }
.skip-link:focus { top: 12px; }

.topbar { height: 76px; position: fixed; inset: 0 0 auto; z-index: 15; display: grid; grid-template-columns: 260px 1fr 210px; align-items: stretch; border-bottom: 1px solid var(--line); background: rgba(7, 16, 15, .82); box-shadow: 0 8px 30px rgba(0, 0, 0, .13); backdrop-filter: blur(18px); }
.identity { display: flex; align-items: center; gap: 13px; padding: 0 24px; border-right: 1px solid var(--line); }
.identity-mark { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(120, 184, 199, .42); border-radius: 7px; background: rgba(120, 184, 199, .08); color: var(--ink); font: 600 .75rem var(--mono); position: relative; }
.identity-mark::after { content: ""; width: 5px; height: 5px; position: absolute; right: 3px; bottom: 3px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 8px var(--signal); }
.identity b, .identity small { display: block; }
.identity b { color: var(--ink); font: 600 .72rem var(--mono); letter-spacing: .1em; }
.identity small { margin-top: 2px; color: var(--muted); font: 500 .52rem var(--mono); letter-spacing: .13em; }
.topbar-telemetry { display: flex; justify-content: flex-end; align-items: center; }
.topbar-telemetry span { height: 100%; min-width: 138px; display: flex; flex-direction: column; justify-content: center; padding: 0 19px; border-left: 1px solid var(--line); color: var(--paper); font: 500 .65rem var(--mono); letter-spacing: .04em; }
.topbar-telemetry small { color: var(--dim); font-size: .5rem; letter-spacing: .13em; }
.console-state i, .quick-facts dd i, .contact-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 10px rgba(159, 197, 168, .7); animation: signal 2.2s ease-in-out infinite; }
.topbar-console { display: flex; align-items: center; justify-content: center; gap: 9px; border-left: 1px solid var(--line); color: var(--muted); font: 500 .56rem var(--mono); letter-spacing: .1em; transition: color .2s ease, background .2s ease; }
.topbar-console span { color: var(--oxide-soft); font-size: .66rem; letter-spacing: 0; }
.topbar-console:hover, .topbar-console:focus-visible { color: var(--ink); background: rgba(120, 184, 199, .045); }

.side-rail { width: 188px; position: fixed; left: 0; top: 76px; bottom: 0; z-index: 10; padding: 62px 24px 25px 28px; border-right: 1px solid var(--line); background: rgba(7, 16, 15, .48); backdrop-filter: blur(10px); }
.rail-rule { width: 1px; position: absolute; left: 18px; top: 66px; bottom: 114px; background: var(--line); overflow: hidden; }
.rail-rule span { display: block; width: 100%; height: var(--rail-progress, 0%); background: var(--oxide); transition: height .1s linear; }
.side-rail nav { display: grid; gap: 25px; }
.side-rail nav a { display: grid; grid-template-columns: 27px 1fr; align-items: center; color: var(--dim); font: 500 .59rem var(--mono); letter-spacing: .08em; text-transform: uppercase; transition: color .2s ease; }
.side-rail nav a span { color: var(--dim); }
.side-rail nav a::after { content: ""; width: 4px; height: 4px; position: absolute; left: 16px; border-radius: 50%; background: transparent; }
.side-rail nav a:hover, .side-rail nav a.is-active { color: var(--ink); }
.side-rail nav a.is-active::after { background: var(--oxide); box-shadow: 0 0 8px var(--oxide); }
.rail-status { position: absolute; left: 28px; bottom: 28px; }
.rail-status small, .rail-status b { display: block; font: 500 .51rem var(--mono); letter-spacing: .1em; }
.rail-status small { color: var(--dim); margin-top: 9px; }
.rail-status b { color: var(--signal); }
.signal-bars { height: 16px; display: flex; align-items: end; gap: 3px; }
.signal-bars i { width: 3px; background: var(--signal); }
.signal-bars i:nth-child(1) { height: 4px; }.signal-bars i:nth-child(2) { height: 7px; }.signal-bars i:nth-child(3) { height: 11px; }.signal-bars i:nth-child(4) { height: 15px; opacity: .25; }

main, footer { margin-left: 188px; }
main { overflow: hidden; }
.hero, .section, footer { padding-left: clamp(34px, 6vw, 96px); padding-right: clamp(34px, 6vw, 96px); }
.hero { min-height: 100vh; display: grid; grid-template-columns: minmax(420px, .95fr) minmax(420px, 1.05fr); gap: clamp(48px, 7vw, 110px); align-items: center; padding-top: 134px; padding-bottom: 72px; position: relative; }
.hero::after { content: "00 / OVERVIEW"; position: absolute; right: 22px; bottom: 14px; color: var(--dim); font: 500 .5rem var(--mono); letter-spacing: .12em; writing-mode: vertical-rl; }
.kicker, .section-header > p, .section-header > div > p, .contact-content > p { margin: 0 0 29px; color: var(--muted); font: 500 .61rem var(--mono); letter-spacing: .12em; }
.kicker span, .section-header p span, .contact-content > p span { margin-right: 16px; color: var(--oxide-soft); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 740px; margin-bottom: 28px; color: var(--ink); font: 500 clamp(3.4rem, 5.5vw, 6.6rem)/.93 var(--sans); letter-spacing: -.067em; text-wrap: balance; }
.hero-lead { max-width: 620px; margin-bottom: 36px; color: #aab0ac; font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 45px; display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; padding: 0 17px; border: 1px solid var(--line-strong); font: 500 .64rem var(--mono); letter-spacing: .065em; text-transform: uppercase; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.button-primary { min-width: 235px; background: var(--oxide); border-color: var(--oxide); color: #120b08; }
.button-primary:hover { background: var(--oxide-soft); border-color: var(--oxide-soft); }
.button-secondary:hover { border-color: var(--paper); color: var(--ink); }
.quick-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 62px 0 0; border-top: 1px solid var(--line); }
.quick-facts div { padding: 15px 12px 0 0; border-right: 1px solid var(--line); }
.quick-facts div + div { padding-left: 15px; }
.quick-facts div:last-child { border-right: 0; }
.quick-facts dt { color: var(--dim); font: 500 .49rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.quick-facts dd { margin: 6px 0 0; color: var(--paper); font: 500 .62rem var(--mono); text-transform: uppercase; }
.quick-facts dd i { display: inline-block; margin-right: 6px; }

.orbit-console { --plot-x: 0px; --plot-y: 0px; width: 100%; max-width: 730px; min-height: 570px; justify-self: end; margin: 0; position: relative; overflow: visible; }
.orbit-console::after { content: "LIVE"; position: absolute; right: 4px; top: 15px; color: var(--signal); font: 500 .43rem var(--mono); letter-spacing: .12em; }
.console-heading { height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 45px 0 10px; font-family: var(--mono); }
.console-heading small, .console-heading b { display: block; }
.console-heading small { color: var(--data); font-size: .48rem; letter-spacing: .11em; }
.console-heading b { color: var(--paper); font-size: .62rem; letter-spacing: .09em; }
.console-state { display: flex; align-items: center; gap: 8px; color: var(--signal); font: 500 .53rem var(--mono); letter-spacing: .11em; }
.plot-grid { height: 470px; position: relative; isolation: isolate; transform: translate(var(--plot-x), var(--plot-y)); transition: transform .18s ease-out; overflow: visible; }
.plot-grid::before { content: ""; position: absolute; inset: -30px; z-index: -1; pointer-events: none; background-image: linear-gradient(rgba(120, 184, 199, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 184, 199, .05) 1px, transparent 1px); background-size: 42px 42px; -webkit-mask-image: radial-gradient(ellipse at center, black 0 46%, rgba(0, 0, 0, .72) 67%, transparent 94%); mask-image: radial-gradient(ellipse at center, black 0 46%, rgba(0, 0, 0, .72) 67%, transparent 94%); }
.axis { position: absolute; z-index: 1; background: rgba(120, 184, 199, .18); }
.axis-x { left: 0; right: 0; top: 50%; height: 1px; }.axis-y { top: 0; bottom: 0; left: 50%; width: 1px; }
.crosshair { width: 12px; height: 12px; position: absolute; border: solid rgba(231, 232, 226, .3); }
.crosshair-a { left: 7%; top: 9%; border-width: 1px 0 0 1px; }.crosshair-b { right: 7%; bottom: 9%; border-width: 0 1px 1px 0; }
.planet { width: 174px; height: 174px; position: absolute; left: 50%; top: 50%; z-index: 3; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(233, 172, 123, .25); background: radial-gradient(circle at 72% 27%, #f3c392 0%, #bd7652 15%, #70412f 36%, #2d211c 62%, #0d1210 82%); box-shadow: -23px 25px 42px rgba(0, 0, 0, .6), 8px -8px 42px rgba(204, 112, 71, .17); }
.planet::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(38deg, rgba(2, 6, 6, .86), transparent 61%); }
.planet::after { content: ""; position: absolute; inset: -2px; border-radius: inherit; border: 2px solid transparent; border-top-color: rgba(255, 213, 171, .45); border-right-color: rgba(242, 162, 112, .2); }
.planet span { position: absolute; inset: -25px; border: 1px solid rgba(214, 109, 66, .08); border-radius: 50%; }
.orbit { position: absolute; left: 50%; top: 50%; z-index: 2; border: 1px solid rgba(184, 196, 187, .2); border-radius: 50%; will-change: transform; }
.orbit-a { width: 300px; height: 300px; transform: translate(-50%, -50%) rotate(var(--orbit-a-angle, 22deg)); }
.orbit-b { width: 450px; height: 258px; transform: translate(-50%, -50%) rotate(var(--orbit-b-angle, -18deg)); }
.tracked-body { width: 7px; height: 7px; position: absolute; left: 50%; top: -4px; border: 1px solid var(--oxide-soft); border-radius: 50%; background: #111816; box-shadow: 0 0 10px rgba(239, 154, 105, .7); }
.body-b { border-color: var(--signal); box-shadow: 0 0 10px rgba(159, 197, 168, .6); }
.craft { width: 54px; height: 28px; position: absolute; left: var(--craft-x, 73%); top: var(--craft-y, 32%); z-index: 5; transform: translate(-50%, -50%) rotate(var(--craft-angle, 45deg)) scale(.76); filter: drop-shadow(0 0 5px rgba(120, 184, 199, .32)); will-change: left, top, transform; }
.craft::before { content: ""; width: 31px; height: 31px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(120, 184, 199, .38); border-radius: 50%; box-shadow: inset 0 0 0 4px rgba(7, 16, 15, .45), 0 0 14px rgba(120, 184, 199, .12); }
.craft::after { content: ""; width: 44px; height: 1px; position: absolute; left: 5px; top: 14px; background: linear-gradient(90deg, transparent, rgba(120, 184, 199, .5) 18%, rgba(120, 184, 199, .5) 82%, transparent); }
.satellite-core { width: 11px; height: 11px; position: absolute; left: 50%; top: 50%; z-index: 3; transform: translate(-50%, -50%) rotate(45deg); border: 1px solid var(--oxide-soft); background: #101a18; box-shadow: inset 0 0 4px rgba(239, 154, 105, .28), 0 0 7px rgba(239, 154, 105, .36); }
.satellite-core::after { content: ""; width: 3px; height: 3px; position: absolute; left: 3px; top: 3px; border-radius: 50%; background: var(--ink); }
.satellite-panel { width: 17px; height: 7px; position: absolute; top: 10px; z-index: 2; border: 1px solid rgba(120, 184, 199, .64); background: repeating-linear-gradient(90deg, rgba(120, 184, 199, .2) 0 3px, transparent 3px 5px); }
.panel-left { left: 0; }.panel-right { right: 0; }
.heading-vector { width: 1px; height: 21px; position: absolute; left: 50%; top: -17px; z-index: 1; transform: translateX(-50%); background: linear-gradient(var(--oxide-soft), rgba(239, 154, 105, .06)); }
.heading-vector::before { content: ""; width: 5px; height: 5px; position: absolute; left: -2px; top: -1px; border-left: 1px solid var(--oxide-soft); border-top: 1px solid var(--oxide-soft); transform: rotate(45deg); }
.plot-label { position: absolute; padding: 2px 4px; border-left: 1px solid var(--oxide); color: var(--muted); font: 500 .47rem var(--mono); letter-spacing: .08em; }
.label-a { left: 11%; top: 17%; }.label-b { right: 8%; bottom: 23%; }.label-c { left: calc(50% + 95px); top: calc(50% + 62px); }
.console-data { height: 52px; display: flex; justify-content: flex-end; gap: 22px; padding-right: 8px; }
.console-data span { min-width: 94px; display: flex; flex-direction: column; justify-content: center; padding-left: 13px; border-left: 1px solid var(--line); }
.console-data small { color: var(--dim); font: 500 .46rem var(--mono); letter-spacing: .1em; }
.console-data b { color: var(--paper); font: 500 .65rem var(--mono); letter-spacing: .08em; }

.section { min-height: 80vh; padding-top: 128px; padding-bottom: 128px; border-top: 1px solid var(--line); position: relative; }
.section::before { content: attr(data-index); position: absolute; left: 18px; top: 22px; color: var(--dim); font: 500 .5rem var(--mono); }
.section-header { margin-bottom: 70px; }
.section-header h2, .contact h2 { max-width: 900px; margin-bottom: 0; color: var(--ink); font: 500 clamp(2.7rem, 5vw, 5.7rem)/.98 var(--sans); letter-spacing: -.06em; text-wrap: balance; }
.section-header-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-note { margin: 0 0 8px; color: var(--dim); font: 500 .56rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.profile-grid { display: grid; grid-template-columns: 1.15fr .85fr; column-gap: clamp(50px, 10vw, 160px); row-gap: 82px; }
.profile-statement { max-width: 780px; color: var(--ink); font-size: clamp(1.55rem, 2.5vw, 2.55rem); line-height: 1.32; letter-spacing: -.03em; }
.profile-copy { max-width: 610px; color: #9aa29e; }
.profile-copy p + p { margin-top: 22px; }
.capability-matrix { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line); }
.capability-matrix div { min-height: 112px; padding: 21px 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-matrix span { color: var(--oxide-soft); font: 500 .52rem var(--mono); letter-spacing: .11em; }
.capability-matrix p { margin: 18px 0 0; color: var(--paper); font: 500 .66rem/1.65 var(--mono); text-transform: uppercase; }

.record-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-strong); }
.record-list > li { display: grid; grid-template-columns: 55px 210px 1fr; gap: 28px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.record-index { color: var(--oxide-soft); font: 500 .57rem var(--mono); }
.record-meta time, .record-meta span { display: block; font: 500 .57rem/1.6 var(--mono); letter-spacing: .07em; }
.record-meta time { color: var(--paper); }.record-meta span { color: var(--dim); }
.record-body { max-width: 850px; }
.record-title { display: flex; align-items: baseline; justify-content: space-between; gap: 25px; margin-bottom: 15px; }
.record-title h3 { margin: 0; color: var(--ink); font-size: 1.35rem; font-weight: 500; letter-spacing: -.025em; }
.record-title p { margin: 0; color: var(--oxide-soft); font: 500 .59rem var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.record-body > p:not(.record-stack), .record-body li { color: #98a19d; }
.record-body > p:not(.record-stack) + p:not(.record-stack) { margin-top: 12px; }
.record-body ul { padding-left: 18px; margin: 14px 0; }
.record-body li + li { margin-top: 8px; }
.record-stack { margin: 22px 0 0; color: var(--dim); font: 500 .54rem var(--mono); letter-spacing: .07em; }

.inline-link { margin-bottom: 8px; padding-bottom: 5px; border-bottom: 1px solid var(--oxide); color: var(--paper); font: 500 .56rem var(--mono); letter-spacing: .09em; }
.project-events { display: grid; grid-template-columns: 190px 1fr; margin-bottom: 18px; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line); background: rgba(7, 16, 15, .36); font-family: var(--mono); }
.event-channel { display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 14px 17px; border-right: 1px solid var(--line); }
.event-channel span { display: flex; align-items: center; gap: 8px; color: var(--paper); font-size: .52rem; font-weight: 500; letter-spacing: .1em; }
.event-channel span i { width: 5px; height: 5px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 9px rgba(159, 197, 168, .7); animation: signal 2.2s ease-in-out infinite; }
.event-channel small { color: var(--dim); font-size: .45rem; letter-spacing: .1em; }
.event-list { min-width: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.system-event { min-width: 0; display: grid; grid-template-columns: auto auto minmax(0, 1fr) auto; align-items: center; gap: 11px; padding: 12px 14px; border-right: 1px solid var(--line); opacity: .22; transform: translateY(7px); transition: opacity .45s ease, transform .45s ease, background .25s ease; }
.system-event:last-child { border-right: 0; }
.system-event.is-received { opacity: 1; transform: translateY(0); }
.system-event.is-focus { background: rgba(120, 184, 199, .065); }
.event-sequence { color: var(--dim); font-size: .46rem; }
.event-signal { width: 12px; height: 16px; display: flex; align-items: center; gap: 2px; }
.event-signal i { width: 2px; height: 4px; background: var(--signal); transform-origin: center; }
.event-signal i:nth-child(2) { height: 10px; }.event-signal i:nth-child(3) { height: 6px; }
.system-event.is-received .event-signal i { animation: eventPulse 1.8s ease-in-out infinite; }
.system-event.is-received .event-signal i:nth-child(2) { animation-delay: -.35s; }.system-event.is-received .event-signal i:nth-child(3) { animation-delay: -.7s; }
.event-archive .event-signal i { background: var(--oxide-soft); }
.event-copy { min-width: 0; }
.event-copy b, .event-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.event-copy b { color: var(--paper); font-size: .49rem; font-weight: 500; letter-spacing: .07em; }
.event-copy small { margin-top: 2px; color: var(--dim); font-size: .42rem; letter-spacing: .08em; }
.system-event time { color: var(--dim); font-size: .43rem; letter-spacing: .05em; }
.systems-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line); }
.system-card { min-height: 530px; display: grid; grid-template-rows: auto 205px 1fr; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(11, 21, 20, .68); backdrop-filter: blur(8px); overflow: hidden; transition: background .3s ease, border-color .3s ease; }
.system-card::before { content: ""; height: 1px; position: absolute; z-index: 4; left: 0; right: 0; top: 48px; pointer-events: none; opacity: 0; background: linear-gradient(90deg, transparent 5%, rgba(120, 184, 199, .65) 50%, transparent 95%); box-shadow: 0 0 12px rgba(120, 184, 199, .24); transform: translateY(0); }
.system-card:hover, .system-card:focus-within { background: rgba(13, 25, 23, .82); border-color: rgba(120, 184, 199, .22); }
.system-card:hover::before, .system-card:focus-within::before { opacity: 1; animation: cardScan 2.6s ease-in-out infinite; }
.system-card-wide { grid-column: 1 / -1; min-height: 440px; grid-template-columns: 1.1fr 1fr; grid-template-rows: auto 1fr; }
.system-code { grid-column: 1 / -1; height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; border-bottom: 1px solid var(--line); background: rgba(16, 28, 26, .5); font: 500 .51rem var(--mono); letter-spacing: .1em; }
.system-code span { color: var(--paper); }.system-code i { color: var(--signal); font-style: normal; }
.system-card-terminal .system-code i { color: var(--oxide-soft); }
.system-diagram { position: relative; min-height: 205px; background-color: #091311; background-image: linear-gradient(rgba(201, 216, 204, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 216, 204, .045) 1px, transparent 1px); background-size: 26px 26px; border-bottom: 1px solid var(--line); }
.system-card-wide .system-diagram { grid-row: 2; border-right: 1px solid var(--line); border-bottom: 0; }
.system-copy { padding: 30px; }
.system-type { color: var(--oxide-soft); font: 500 .51rem var(--mono); letter-spacing: .1em; }
.system-copy h3 { margin-bottom: 15px; color: var(--ink); font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 500; letter-spacing: -.05em; }
.system-copy > p:not(.system-type) { color: #939c98; }
.system-copy > p:not(.system-type) + p:not(.system-type) { margin-top: 12px; }
.system-copy a { display: inline-block; margin-top: 17px; color: var(--paper); border-bottom: 1px solid var(--dim); font: 500 .57rem var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.diagram-pydraw { display: grid; place-items: center; }
.diagram-pydraw b { width: 78px; height: 78px; display: grid; place-items: center; z-index: 2; border: 1px solid var(--oxide-soft); border-radius: 50%; color: var(--ink); font: 600 1.1rem var(--mono); box-shadow: 0 0 35px rgba(214, 109, 66, .12); }
.diagram-pydraw span { position: absolute; border: 1px solid var(--line-strong); border-radius: 50%; }
.diagram-pydraw span:nth-child(1) { width: 140px; height: 140px; }.diagram-pydraw span:nth-child(2) { width: 210px; height: 110px; transform: rotate(25deg); }.diagram-pydraw span:nth-child(3) { width: 280px; height: 160px; transform: rotate(-12deg); }
.diagram-javadraw { display: grid; place-items: center; }
.diagram-javadraw span { width: 67px; height: 67px; display: grid; place-items: center; border: 1px solid var(--paper); color: var(--ink); font: 500 1.3rem var(--mono); }
.diagram-javadraw i, .diagram-javadraw b { position: absolute; background: var(--oxide); }
.diagram-javadraw i { width: 150px; height: 1px; }.diagram-javadraw b { width: 1px; height: 120px; }
.diagram-terminal { padding: 51px 42px; }
.diagram-terminal span { display: block; margin-bottom: 25px; color: var(--signal); font: 500 1.15rem var(--mono); }
.diagram-terminal i { width: 75%; height: 1px; display: block; margin-top: 14px; background: var(--line-strong); }.diagram-terminal i:nth-of-type(2) { width: 53%; }.diagram-terminal i:nth-of-type(3) { width: 68%; background: var(--oxide); }

.contact { min-height: 76vh; display: grid; align-content: center; }
.contact-status { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; margin-bottom: 62px; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line); font: 500 .53rem var(--mono); letter-spacing: .1em; }
.contact-status span { display: flex; align-items: center; gap: 9px; color: var(--signal); }.contact-status small { color: var(--dim); }
.contact-content h2 { max-width: 960px; }
.contact-content > a { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 60px; padding: 21px 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); color: var(--ink); font: 500 clamp(1.15rem, 2.7vw, 2.4rem) var(--mono); letter-spacing: -.04em; transition: color .2s ease, padding .2s ease; }
.contact-content > a:hover { color: var(--oxide-soft); padding-left: 12px; padding-right: 12px; }
footer { min-height: 88px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-top: 1px solid var(--line); color: var(--dim); font: 500 .51rem var(--mono); letter-spacing: .1em; }
footer p { margin: 0; }footer p:nth-child(2) { text-align: center; }footer div { display: flex; justify-content: end; gap: 22px; }footer a:hover { color: var(--ink); }

@keyframes signal { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes eventPulse { 0%, 100% { opacity: .25; transform: scaleY(.55); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes cardScan { 0% { transform: translateY(0); opacity: 0; } 12% { opacity: 1; } 82% { opacity: .65; } 100% { transform: translateY(390px); opacity: 0; } }
@media (max-width: 1180px) {
  .topbar { grid-template-columns: 235px 1fr 185px; }.topbar-telemetry span { min-width: 112px; padding: 0 13px; }
  .side-rail { width: 148px; }.side-rail nav a { grid-template-columns: 24px 1fr; font-size: .52rem; }
  main, footer { margin-left: 148px; }
  .hero { grid-template-columns: 1fr; padding-top: 150px; }.hero-copy { max-width: 900px; }.orbit-console { max-width: none; justify-self: stretch; }
  .project-events { grid-template-columns: 160px 1fr; }.system-event { grid-template-columns: auto auto 1fr; }.system-event time { display: none; }
}
@media (max-width: 800px) {
  .topbar { height: 66px; grid-template-columns: 1fr auto; }.identity { border: 0; }.topbar-telemetry { display: none; }.topbar-console { padding: 0 20px; }
  .side-rail { width: auto; height: 48px; inset: 66px 0 auto; display: flex; align-items: center; padding: 0 19px; border-right: 0; border-bottom: 1px solid var(--line); overflow-x: auto; }
  .side-rail nav { width: 100%; display: flex; justify-content: space-between; gap: 20px; }.side-rail nav a { display: block; white-space: nowrap; }.side-rail nav a span { margin-right: 5px; }.side-rail nav a::after, .rail-rule, .rail-status { display: none; }
  main, footer { margin-left: 0; }.hero { min-height: auto; padding-top: 174px; }.hero, .section, footer { padding-left: 24px; padding-right: 24px; }
  .profile-grid { grid-template-columns: 1fr; gap: 38px; }.capability-matrix { grid-column: auto; grid-template-columns: 1fr; }
  .record-list > li { grid-template-columns: 38px 1fr; }.record-meta { grid-column: 2; }.record-body { grid-column: 2; }
  .systems-grid { grid-template-columns: 1fr; }.system-card-wide { grid-column: auto; min-height: 530px; grid-template-columns: 1fr; grid-template-rows: auto 205px 1fr; }.system-card-wide .system-diagram { grid-row: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .project-events { grid-template-columns: 1fr; }.event-channel { flex-direction: row; align-items: center; justify-content: space-between; border-right: 0; border-bottom: 1px solid var(--line); }.event-list { grid-template-columns: 1fr; }.system-event { border-right: 0; border-bottom: 1px solid var(--line); }.system-event:last-child { border-bottom: 0; }.system-event time { display: block; }
}
@media (max-width: 560px) {
  .identity { padding-left: 16px; }
  .topbar-console { width: 58px; padding: 0; font-size: 0; }.topbar-console span { font-size: .66rem; }
  .side-rail nav a { font-size: 0; }.side-rail nav a span { font-size: .56rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }.hero { gap: 42px; padding-top: 155px; }.hero-actions { display: grid; }.button { width: 100%; }
  .quick-facts { grid-template-columns: 1fr; }.quick-facts div, .quick-facts div + div { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .orbit-console { min-height: 475px; }.plot-grid { height: 374px; }.orbit-a { width: 225px; height: 225px; }.orbit-b { width: 330px; height: 190px; }.planet { width: 128px; height: 128px; }.console-data { height: 48px; justify-content: space-between; gap: 5px; padding: 0; }.console-data span { min-width: 0; padding-left: 8px; }.console-data small { font-size: .4rem; }.console-data b { font-size: .54rem; }
  .section { padding-top: 94px; padding-bottom: 94px; }.section-header { margin-bottom: 48px; }.section-header-row { display: block; }.section-note, .inline-link { display: inline-block; margin-top: 24px; }
  .record-list > li { grid-template-columns: 28px 1fr; gap: 13px; }.record-title { display: block; }.record-title p { margin-top: 4px; }
  .project-events { margin-bottom: 12px; }.event-channel { padding: 11px 13px; }.system-event { padding: 10px 12px; }
  .contact-status { display: grid; gap: 9px; }.contact-content > a { font-size: 1rem; }
  footer { grid-template-columns: 1fr; gap: 8px; padding-top: 25px; padding-bottom: 25px; }footer p:nth-child(2) { text-align: left; }footer div { justify-content: start; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
