:root {
  --bg: #050506;
  --bg-soft: #090b0c;
  --paper: #f0f1ec;
  --paper-soft: #d5d8d1;
  --muted: #8f938f;
  --muted-dark: #5e635e;
  --hair: rgba(240, 241, 236, .13);
  --hair-strong: rgba(240, 241, 236, .28);
  --signal: #a8ffe8;
  --signal-dim: rgba(168, 255, 232, .22);
  --spectral: #afbcff;
  --panel: rgba(9, 11, 12, .86);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--bg); color: var(--paper); scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; overflow-x: hidden; background: radial-gradient(circle at 82% 12%, rgba(106, 126, 255, .08), transparent 26%), radial-gradient(circle at 18% 76%, rgba(92, 255, 209, .06), transparent 28%), var(--bg); font-family: var(--sans); }
button, input, select { font: inherit; }
button { color: inherit; }
a { color: inherit; }
button, a, select, input { -webkit-tap-highlight-color: transparent; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 1px solid var(--signal); outline-offset: 5px; }

#field { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -3; opacity: .72; pointer-events: none; }
.noise { position: fixed; inset: 0; pointer-events: none; z-index: 20; opacity: .032; 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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }

.site-header, .site-footer { position: fixed; left: 0; right: 0; z-index: 10; display: grid; align-items: center; padding: 20px 28px; font: 10px/1.2 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.site-header { top: 0; grid-template-columns: 1fr auto 1fr; border-bottom: 1px solid var(--hair); backdrop-filter: blur(14px); background: rgba(5, 5, 6, .56); }
.site-footer { bottom: 0; grid-template-columns: 1fr auto 1fr; border-top: 1px solid var(--hair); color: var(--muted); background: rgba(5, 5, 6, .78); backdrop-filter: blur(14px); }
.site-footer > span:nth-child(2) { text-align: center; }
.site-footer > span:nth-child(3) { text-align: right; }
.mark { width: 32px; height: 32px; display: inline-grid; place-items: center; text-decoration: none; border: 1px solid var(--hair-strong); font-family: var(--mono); letter-spacing: -.08em; }
.mark i { color: var(--signal); font-style: normal; margin-left: -3px; }
.desktop-nav { display: flex; gap: 28px; }
.desktop-nav button, .mobile-nav button { border: 0; background: transparent; padding: 6px 0; cursor: pointer; font: 10px/1 var(--mono); letter-spacing: .14em; color: #a7aaa6; text-transform: uppercase; transition: color .2s ease; }
.desktop-nav button:hover, .mobile-nav button:hover { color: var(--paper); }
.header-right { justify-self: end; display: flex; align-items: center; gap: 18px; }
.signal { display: flex; align-items: center; gap: 7px; }
.signal-dot, .status-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 14px rgba(168, 255, 232, .8); animation: pulse 2.2s infinite; }
@keyframes pulse { 50% { opacity: .35; box-shadow: 0 0 3px rgba(168, 255, 232, .2); } }
.mobile-toggle { display: none; border: 1px solid var(--hair-strong); background: transparent; padding: 10px; font: 9px/1 var(--mono); letter-spacing: .13em; cursor: pointer; }
.mobile-nav { display: none; }

#app { min-height: 100vh; }
.hero { min-height: 100vh; display: grid; align-items: end; padding: 126px 5vw 92px; position: relative; }
.hero-signal { position: absolute; top: 116px; left: 5vw; display: flex; align-items: center; gap: 11px; color: var(--muted); font: 9px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.signal-ring { width: 7px; height: 7px; border: 1px solid var(--signal); border-radius: 50%; box-shadow: 0 0 16px var(--signal-dim); }
.signal-line { width: 34px; height: 1px; background: var(--hair-strong); }
.hero-orbits { position: absolute; inset: 86px 0 60px; pointer-events: none; overflow: hidden; z-index: -1; }
.orbit-term { position: absolute; font: 10px/1 var(--mono); letter-spacing: .13em; color: rgba(240, 241, 236, .22); text-transform: uppercase; white-space: nowrap; animation: orbit-breathe 9s ease-in-out infinite; }
.orbit-term--2 { animation-delay: -2s; color: rgba(175, 188, 255, .33); }
.orbit-term--3 { animation-delay: -4s; }
.orbit-term--future { color: rgba(168, 255, 232, .17); animation-delay: -6s; }
.orbit-term i { width: 3px; height: 3px; display: inline-block; margin-right: 8px; background: currentColor; vertical-align: 2px; }
@keyframes orbit-breathe { 0%, 100% { transform: translate3d(0, 0, 0); opacity: .52; } 50% { transform: translate3d(7px, -5px, 0); opacity: 1; } }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, .45fr); gap: 5vw; align-items: end; }
.hero-title-wrap { min-width: 0; container-type: inline-size; }
.hero-title { margin: 0; font-size: clamp(42px, 15cqw, 152px); line-height: .95; letter-spacing: -.065em; font-weight: 520; text-transform: uppercase; }
.hero-title > span { display: block; }
.hero-title .line-2 { display: block; color: transparent; -webkit-text-stroke: 1px rgba(240, 241, 236, .74); }
.eyebrow { margin: 0 0 30px; max-width: 270px; color: var(--muted); font: 10px/1.45 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.hero-copy { padding-bottom: 7px; max-width: 420px; }
.hero-stat { display: flex; align-items: end; gap: 13px; margin-bottom: 14px; color: var(--signal); }
.hero-stat strong { font: 500 clamp(44px, 6vw, 76px)/.82 var(--mono); letter-spacing: -.08em; }
.hero-stat span, .hero-last { color: var(--muted); font: 9px/1.35 var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.hero-last { margin-bottom: 30px; }
.hero-last span { color: var(--paper-soft); }
.hero-copy p { margin: 0 0 30px; font-size: clamp(18px, 2vw, 31px); line-height: 1.22; letter-spacing: -.035em; color: var(--paper-soft); }
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.enter, .artifact-link, .random-access, .tx-exit, .panel-action { display: inline-flex; align-items: center; gap: 12px; background: none; border: 0; border-bottom: 1px solid var(--hair-strong); padding: 8px 0; color: var(--paper); cursor: pointer; font: 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }
.enter::after, .artifact-link::after { content: '↗'; color: var(--signal); }
.random-access { color: var(--muted); border-bottom-color: transparent; }
.random-access:hover, .random-access:focus-visible { color: var(--paper); }
.random-mark { color: var(--signal); font-size: 19px; line-height: 0; }
.hero-bottomline { position: absolute; bottom: 28px; left: 5vw; right: 5vw; display: flex; justify-content: space-between; color: var(--muted); font: 9px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.hero-inscription { position: absolute; right: 5vw; bottom: 58px; max-width: 310px; color: rgba(168, 255, 232, .42); font: 10px/1.5 var(--mono); letter-spacing: .08em; text-align: right; }
.noscript-archive { min-height: 100vh; padding: 150px 8vw; color: var(--paper); }
.noscript-archive h1 { max-width: 800px; font-size: clamp(48px, 8vw, 120px); line-height: .9; letter-spacing: -.07em; font-weight: 500; }
.noscript-archive a { color: var(--signal); font-family: var(--mono); }

.view { min-height: 100vh; padding: 122px 5vw 112px; }
.view-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; padding-bottom: 26px; border-bottom: 1px solid var(--hair); }
.view-kicker, .term-kicker, .panel-kicker, .section-label, .tx-overline { font: 10px/1 var(--mono); color: var(--muted); letter-spacing: .15em; text-transform: uppercase; }
.view h1 { margin: 9px 0 0; font-size: clamp(48px, 7.4vw, 114px); letter-spacing: -.065em; line-height: .87; font-weight: 500; }
.view-note { max-width: 390px; color: #a9aca6; line-height: 1.45; font-size: 14px; }
.view-toolbar { display: flex; align-items: center; gap: 22px; padding: 18px 0 12px; border-bottom: 1px solid var(--hair); }
.select-wrap { display: flex; align-items: center; gap: 8px; color: var(--muted); font: 9px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.select-wrap select { color: var(--paper); border: 0; border-bottom: 1px solid var(--hair-strong); background: transparent; padding: 8px 22px 8px 0; outline: none; font: 10px/1 var(--mono); text-transform: uppercase; cursor: pointer; }
.select-wrap select option { background: var(--bg-soft); }
.toolbar-hint { margin-left: auto; color: var(--muted-dark); font: 9px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.lexicon-list { border-top: 1px solid var(--hair); }
.lex-row { width: 100%; display: grid; grid-template-columns: 60px minmax(190px, 1.1fr) 1.4fr 210px; gap: 22px; padding: 27px 0; border: 0; border-bottom: 1px solid var(--hair); align-items: start; background: transparent; text-align: left; cursor: pointer; transition: padding .2s ease, background .2s ease; }
.lex-row:hover { padding-left: 13px; padding-right: 13px; background: rgba(255, 255, 255, .018); }
.lex-index, .lex-meta { font: 10px/1.45 var(--mono); color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.lex-term { font-size: clamp(28px, 3.8vw, 58px); letter-spacing: -.045em; line-height: .95; }
.lex-summary { color: #b6bab4; line-height: 1.46; max-width: 640px; }
.lex-meta { display: grid; gap: 6px; justify-items: start; }
.lex-meta .domain-chip { font-size: 8px; }

.term-view { min-height: 100vh; padding: 124px 5vw 108px; }
.term-topline { display: flex; justify-content: space-between; color: var(--muted); font: 10px/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.term-kicker { margin-top: 13vh; color: var(--signal); }
.term-word { margin: 14px 0 18px; max-width: 1500px; font-size: clamp(60px, 11vw, 180px); letter-spacing: -.075em; line-height: .8; font-weight: 500; }
.term-pron { color: var(--signal); font: 14px/1.2 var(--mono); margin-bottom: 7vh; }
.term-pron span { color: var(--muted); margin-left: 10px; text-transform: uppercase; }
.term-layout { display: grid; grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr); gap: 7vw; border-top: 1px solid var(--hair); padding-top: 32px; }
.term-aside { display: grid; gap: 25px; align-content: start; }
.term-label { margin-bottom: 7px; color: var(--muted); font: 9px/1.2 var(--mono); letter-spacing: .15em; text-transform: uppercase; }
.term-value { font: 12px/1.5 var(--mono); }
.term-definition { max-width: 1050px; font-size: clamp(27px, 4vw, 61px); line-height: 1.08; letter-spacing: -.045em; }
.editorial-note { max-width: 760px; margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--hair); }
.editorial-note p { margin: 0; color: #aeb1ac; line-height: 1.62; }
.source-note { max-width: 860px; margin-top: 30px; padding: 18px 0 0 18px; border-top: 1px solid var(--hair); border-left: 1px solid var(--signal-dim); }
.source-note p { margin: 0; color: #858b86; font: 12px/1.6 var(--mono); }
.term-actions { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 42px; }
.artifact-link--quiet { color: var(--muted); border-bottom-color: var(--hair); }
.term-related { max-width: 760px; margin-top: 72px; padding-top: 18px; border-top: 1px solid var(--hair); }
.related-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 14px; background: var(--hair); }
.related-link { display: flex; justify-content: space-between; gap: 18px; border: 0; padding: 15px; background: var(--bg); text-align: left; cursor: pointer; }
.related-link:hover { background: var(--bg-soft); }
.related-link span { font-size: 17px; }
.related-link small { align-self: end; color: var(--muted); font: 8px/1.2 var(--mono); text-transform: uppercase; }
.term-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 84px; padding-top: 18px; border-top: 1px solid var(--hair); }
.term-nav-link { border: 0; background: transparent; color: var(--muted); padding: 0; font: 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.term-nav-link:hover { color: var(--paper); }

.domain-chip { display: inline-block; color: var(--signal); font: 9px/1.2 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.domain-chip:not(:last-child)::after { content: ' / '; color: var(--muted-dark); }
.source-status { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font: 8px/1.2 var(--mono); letter-spacing: .08em; white-space: nowrap; }
.source-status--verified { color: var(--signal); }
.source-status--pending .status-dot { background: var(--spectral); box-shadow: 0 0 10px rgba(175, 188, 255, .7); }
.source-status--unavailable .status-dot { background: var(--muted-dark); box-shadow: none; animation: none; }

.constellation-wrap { position: relative; min-height: 660px; height: 70vh; margin-top: 26px; overflow: hidden; border-bottom: 1px solid var(--hair); background: radial-gradient(circle at 52% 45%, rgba(168, 255, 232, .045), transparent 27%), linear-gradient(90deg, transparent 49.95%, var(--hair) 50%, transparent 50.05%), linear-gradient(0deg, transparent 49.95%, var(--hair) 50%, transparent 50.05%); }
.constellation-wrap::before, .constellation-wrap::after { content: ''; position: absolute; pointer-events: none; border: 1px solid rgba(168, 255, 232, .08); border-radius: 50%; }
.constellation-wrap::before { width: 66%; height: 68%; left: 17%; top: 16%; }
.constellation-wrap::after { width: 34%; height: 36%; left: 33%; top: 32%; }
.constellation-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.constellation-lines line { stroke: rgba(168, 255, 232, .17); stroke-width: .12; vector-effect: non-scaling-stroke; transition: stroke .25s ease, opacity .25s ease, stroke-width .25s ease; }
.constellation-wrap[data-focus]:not([data-focus=""]) .constellation-lines line { opacity: .08; }
.constellation-wrap[data-focus]:not([data-focus=""]) .constellation-lines line[data-connected="true"] { opacity: .9; stroke: var(--signal); stroke-width: 1.5; }
.constellation-axis { position: absolute; color: rgba(240, 241, 236, .25); font: 9px/1 var(--mono); letter-spacing: .15em; text-transform: uppercase; }
.constellation-axis--left { left: 1%; top: 50%; }
.constellation-axis--right { right: 1%; top: 50%; }
.constellation-axis--top { left: 48%; top: 3%; }
.constellation-axis--bottom { left: 47%; bottom: 3%; }
.constellation-node { position: absolute; z-index: 2; transform: translate(-50%, -50%); display: grid; justify-items: center; gap: 10px; border: 0; background: none; padding: 8px; cursor: pointer; text-align: center; transition: opacity .25s ease, transform .25s ease; }
.constellation-node[data-connected="false"] { opacity: .18; }
.constellation-node[data-connected="true"] { transform: translate(-50%, -50%) scale(1.04); }
.node-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 20px rgba(168, 255, 232, .65); }
.constellation-node[data-slug="paradisepilled"] .node-pulse, .constellation-node[data-slug="frontier-liberation-front"] .node-pulse { background: var(--spectral); box-shadow: 0 0 20px rgba(175, 188, 255, .6); }
.constellation-node[data-slug="thread-line"] .node-pulse, .constellation-node[data-slug="intelligence-abundance"] .node-pulse, .constellation-node[data-slug="broken-waymos-theory"] .node-pulse, .constellation-node[data-slug="safety-cartel"] .node-pulse { background: transparent; border: 1px solid var(--spectral); box-shadow: 0 0 12px rgba(175, 188, 255, .45); }
.node-label { max-width: 160px; color: var(--paper); font: 10px/1.2 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.constellation-panel { position: absolute; z-index: 3; left: 24px; bottom: 22px; width: min(340px, calc(100% - 48px)); padding: 18px; border: 1px solid var(--hair-strong); background: var(--panel); backdrop-filter: blur(14px); }
.constellation-panel h2 { margin: 11px 0 7px; font-size: 27px; line-height: 1; letter-spacing: -.05em; }
.constellation-panel p { margin: 0; color: #aeb1ac; font-size: 13px; line-height: 1.45; }
.panel-action { margin-top: 17px; padding-top: 0; }
.constellation-key { display: flex; gap: 24px; padding: 16px 0; color: var(--muted); font: 9px/1 var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.constellation-key span { display: flex; align-items: center; gap: 8px; }
.key-dot, .key-ring { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--signal); }
.key-ring { border: 1px solid var(--spectral); background: transparent; }
.key-line { width: 18px; height: 1px; display: inline-block; background: var(--signal-dim); }

.timeline { position: relative; margin-top: 70px; padding: 42px 0 80px; }
.timeline::before { content: ''; position: absolute; top: 85px; left: 0; right: 0; height: 1px; background: var(--hair-strong); }
.timeline-axis { display: flex; justify-content: space-between; color: var(--muted); font: 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.timeline-grid { display: grid; grid-template-columns: repeat(4, minmax(170px, 1fr)); gap: 2vw; }
.timeline-item { position: relative; padding-top: 65px; }
.timeline-marker { position: absolute; z-index: 1; top: 37px; left: 0; width: 10px; height: 10px; border: 1px solid var(--signal); border-radius: 50%; background: var(--bg); box-shadow: 0 0 18px rgba(168, 255, 232, .48); cursor: pointer; }
.timeline-marker:hover { background: var(--signal); }
.timeline-date { color: var(--muted); font: 9px/1 var(--mono); letter-spacing: .1em; }
.timeline-term { margin: 12px 0 0; border: 0; padding: 0; background: transparent; color: var(--paper); font-size: clamp(24px, 2.8vw, 43px); letter-spacing: -.04em; line-height: .96; text-align: left; cursor: pointer; }
.timeline-term:hover { color: var(--signal); }
.timeline-summary { max-width: 370px; margin: 14px 0 0; color: #9fa39d; font-size: 13px; line-height: 1.5; }
.undated-signals { padding-top: 22px; border-top: 1px solid var(--hair); }
.signal-list { display: flex; flex-wrap: wrap; gap: 1px; margin-top: 16px; background: var(--hair); }
.signal-list button { display: flex; flex-direction: column; gap: 8px; border: 0; padding: 15px 17px; background: var(--bg); text-align: left; cursor: pointer; }
.signal-list button:hover { background: var(--bg-soft); }
.signal-list span { font-size: 16px; }
.signal-list small { color: var(--muted); font: 8px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }

.transmission { min-height: 100vh; display: grid; place-items: center; padding: 100px 6vw; text-align: center; cursor: none; }
.tx-status { position: fixed; top: 105px; left: 5vw; display: flex; align-items: center; gap: 8px; color: var(--muted); font: 9px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.tx-frame { max-width: 1050px; }
.tx-overline { margin-bottom: 24px; }
.tx-accession { margin-bottom: 14px; color: var(--signal); font: 11px/1 var(--mono); letter-spacing: .16em; }
.tx-word { font-size: clamp(58px, 12vw, 190px); letter-spacing: -.075em; line-height: .85; animation: reveal 7s infinite; }
.tx-def { max-width: 760px; margin: 30px auto 0; color: #aeb1ac; font-size: clamp(16px, 2vw, 26px); line-height: 1.35; animation: reveal 7s .6s infinite; }
.tx-meta { margin-top: 28px; color: var(--signal); font: 10px/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; animation: reveal 7s 1s infinite; }
.tx-exit { position: fixed; right: 5vw; bottom: 82px; cursor: pointer; }
@keyframes reveal { 0%, 8% { opacity: 0; filter: blur(14px); } 18%, 72% { opacity: 1; filter: blur(0); } 88%, 100% { opacity: 0; filter: blur(8px); } }

.search-trigger { position: fixed; right: 28px; bottom: 64px; z-index: 9; width: 44px; height: 44px; border: 1px solid var(--hair-strong); background: rgba(5, 5, 6, .7); color: var(--paper); cursor: pointer; font: 14px/1 var(--mono); backdrop-filter: blur(12px); }
#search-dialog { width: min(900px, 92vw); border: 1px solid var(--hair-strong); background: #070809; color: var(--paper); padding: 0; }
#search-dialog::backdrop { background: rgba(0, 0, 0, .74); backdrop-filter: blur(9px); }
.search-shell { position: relative; padding: 28px; }
.search-label { color: var(--muted); font: 9px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
#search-input { width: 100%; margin-top: 18px; padding: 0 0 19px; border: 0; border-bottom: 1px solid var(--hair-strong); outline: none; background: transparent; color: var(--paper); font-size: clamp(24px, 4vw, 48px); letter-spacing: -.04em; }
#search-input::placeholder { color: #555a56; }
.search-results { display: grid; gap: 7px; padding-top: 20px; }
.search-result { border: 1px solid var(--hair); background: transparent; color: var(--paper); padding: 14px 16px; text-align: left; cursor: pointer; }
.search-result:hover { border-color: var(--signal-dim); background: rgba(168, 255, 232, .035); }
.search-result b { display: block; font-size: 18px; font-weight: 500; }
.search-result span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.search-empty { display: grid; gap: 8px; padding: 20px 0 5px; color: var(--paper-soft); }
.search-empty span { color: var(--muted); font-size: 13px; }
.close-search { position: absolute; top: 20px; right: 20px; border: 0; background: transparent; color: var(--muted); font: 10px/1 var(--mono); cursor: pointer; }
.empty-note { color: var(--muted); font-size: 13px; line-height: 1.5; }
.empty-note--large { padding: 35px 0; }
.not-found h1 { margin: 25px 0 35px; font-size: clamp(50px, 9vw, 120px); letter-spacing: -.06em; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: auto 1fr; }
  .desktop-nav { display: none; }
  .header-right { gap: 12px; }
  .mobile-toggle { display: inline-block; }
  .mobile-nav { position: fixed; z-index: 9; top: 73px; left: 0; right: 0; display: grid; gap: 1px; padding: 12px 20px 18px; border-bottom: 1px solid var(--hair-strong); background: rgba(5, 5, 6, .94); transform: translateY(-130%); transition: transform .25s ease; }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav button { padding: 12px 0; text-align: left; font-size: 11px; }
  .hero { padding-top: 140px; }
  .hero-grid, .term-layout { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(42px, 15cqw, 135px); }
  .hero-copy { max-width: 560px; margin-top: 40px; }
  .view-head { align-items: start; flex-direction: column; }
  .view-toolbar { align-items: start; flex-wrap: wrap; }
  .toolbar-hint { width: 100%; margin-left: 0; }
  .lex-row { grid-template-columns: 45px 1fr; gap: 10px 18px; }
  .lex-summary { grid-column: 2; }
  .lex-meta { display: block; grid-column: 2; }
  .lex-meta .domain-chip { margin-right: 5px; }
  .lex-meta .source-status { display: flex; margin-top: 8px; }
  .term-kicker { margin-top: 9vh; }
  .constellation-wrap { min-height: 600px; height: 72vh; }
  .constellation-axis { font-size: 8px; }
  .node-label { max-width: 110px; font-size: 8px; }
  .timeline { margin-top: 50px; }
  .timeline::before { display: none; }
  .timeline-grid { grid-template-columns: 1fr; gap: 42px; }
  .timeline-item { padding: 0 0 0 24px; }
  .timeline-marker { top: 2px; left: 0; }
  .timeline-date { margin-bottom: 10px; }
  .site-footer { position: relative; grid-template-columns: 1fr; gap: 7px; padding: 16px 20px; }
  .site-footer > span:nth-child(2), .site-footer > span:nth-child(3) { text-align: left; }
  .hero-bottomline { position: relative; left: auto; right: auto; bottom: auto; display: grid; gap: 8px; margin-top: 90px; }
  .transmission { cursor: default; }
  .tx-status { top: 105px; }
  .tx-exit { right: auto; left: 50%; transform: translateX(-50%); bottom: 77px; white-space: nowrap; }
}

@media (max-width: 560px) {
  .site-header, .site-footer { padding-left: 20px; padding-right: 20px; }
  .signal { font-size: 8px; }
  .signal-ring, .signal-line, .header-right .signal-dot { display: none; }
  .view, .term-view { padding-left: 20px; padding-right: 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-signal { left: 20px; right: 20px; gap: 8px; font-size: 8px; }
  .hero-signal span:nth-child(2), .hero-signal span:last-child { white-space: nowrap; }
  .hero-signal .signal-line { width: 15px; }
  .hero-title { font-size: clamp(32px, 15cqw, 100px); }
  .hero-copy p { font-size: 24px; }
  .hero-actions { gap: 15px; }
  .view h1 { font-size: 56px; }
  .view-toolbar { gap: 13px; }
  .select-wrap { display: grid; gap: 6px; }
  .lex-row { padding: 22px 0; }
  .lex-term { font-size: 31px; }
  .lex-summary { font-size: 13px; }
  .term-word { font-size: clamp(52px, 17vw, 88px); line-height: .86; }
  .term-pron { margin-bottom: 48px; font-size: 11px; }
  .term-definition { font-size: 31px; }
  .term-actions { gap: 18px; }
  .related-list { grid-template-columns: 1fr; }
  .constellation-wrap { min-height: 620px; margin-left: -20px; margin-right: -20px; }
  .constellation-panel { left: 16px; bottom: 16px; width: calc(100% - 32px); }
  .constellation-key { display: grid; gap: 11px; }
  .timeline-term { font-size: 31px; }
  .search-shell { padding: 23px 20px; }
  .search-trigger { right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

/* The archive's second edition: readable artifacts and meaningful discovery. */
.hero { display: block; padding-top: 168px; padding-bottom: 48px; }
.hero-grid { align-items: center; }
.hero-inscription, .hero-bottomline { position: static; margin-top: 36px; text-align: left; max-width: none; }
.latest-arrival { display: block; max-width: 1120px; margin-top: 64px; padding: 30px 0; border-block: 1px solid var(--hair-strong); text-decoration: none; }
.arrival-meta { display: flex; align-items: center; gap: 12px; color: var(--signal); font: 12px/1.4 var(--mono); }
.arrival-meta > span:last-child { margin-left: auto; }
.latest-arrival h2 { margin: 22px 0 14px; font-size: clamp(32px, 4vw, 64px); line-height: 1.04; letter-spacing: -.04em; overflow-wrap: anywhere; }
.latest-arrival p { max-width: 760px; color: #c0c8c1; font-size: clamp(17px, 2vw, 22px); line-height: 1.5; }
.arrival-open { color: var(--signal); font: 12px/2 var(--mono); }
.review-stamp { color: #9ba79e; font: 11px/1.7 var(--mono); }
.term-word, .tx-word, .lex-term { overflow-wrap: anywhere; }
.term-word { max-width: 100%; font-size: clamp(46px, 8vw, 120px); line-height: 1; }
.term-topline { gap: 24px; }
.term-topline > span:first-child { flex-shrink: 0; }
.example-note { margin: 28px 0; padding: 22px 24px; border-left: 2px solid var(--signal); background: rgba(168,255,232,.035); }
.example-note p { margin-bottom: 0; color: #c0c8c1; font-size: 18px; line-height: 1.6; }
.related-link p { color: #b8c1ba; font: 14px/1.6 var(--sans); text-transform: none; letter-spacing: 0; }
.term-nav { gap: 24px; }
.term-nav-link { max-width: 48%; line-height: 1.5; text-align: left; }
.term-nav-link:last-child { text-align: right; }
#share-feedback { color: var(--signal); font: 12px/1.6 var(--mono); overflow-wrap: anywhere; }
.search-hint { color: #9ba79e; font-size: 13px; line-height: 1.5; }
.search-result small { display: block; color: var(--signal); margin-top: 10px; font-size: 12px; line-height: 1.5; }
.replay-controls { display: flex; align-items: center; gap: 20px; padding-top: 22px; flex-wrap: wrap; }
.replay-controls label, #replay-count { color: #c0c8c1; font: 11px/1.6 var(--mono); }
#replay-date { flex: 1; min-width: 180px; accent-color: var(--signal); }
.constellation-lines line { stroke-width: 1; }
.constellation-lines line[data-provenance="editorial"] { stroke-dasharray: 4 5; }
.constellation-lines line[data-provenance="author"] { stroke: var(--spectral); stroke-width: 1.5; }
.editorial-key { border-top: 1px dashed var(--signal); background: transparent; }
.constellation-node[hidden] { display: none; }
.constellation-node { width: 150px; }
.constellation-wrap[data-focus=""] .constellation-node { opacity: 1; }
.constellation-panel { position: static; width: 100%; margin-top: 20px; padding: 24px; }
.constellation-panel h2 { font-size: 32px; }
.constellation-panel p { max-width: 75ch; font-size: 16px; }
.panel-connections { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.connection { display: grid; gap: 8px; text-align: left; padding: 12px; color: var(--paper); background: transparent; border: 1px solid var(--hair-strong); cursor: pointer; }
.connection small { color: var(--signal); }
.node-pulse { background: var(--signal) !important; border: 0 !important; }
.about-view { max-width: 1050px; }
.about-view h1 { font-size: clamp(42px, 7vw, 80px); line-height: 1; }
.about-view h2 { margin-top: 40px; }
.about-view p { color: #c0c8c1; font-size: 18px; line-height: 1.7; max-width: 75ch; }
@media (max-width: 560px) {
  .hero { padding-top: 156px; }
  .hero-copy { margin-top: 30px; }
  .latest-arrival { margin-top: 36px; }
  .constellation-panel { width: 100%; padding: 18px; }
  .constellation-wrap { margin-inline: 0; }
  .constellation-node { width: 84px; }
  .node-label { max-width: 72px; font-size: 8px; letter-spacing: 0; overflow-wrap: normal; }
  .replay-controls { gap: 14px; }
  #replay-date { flex-basis: 100%; order: 2; }
}
