:root {
  --ink: #151b1f;
  --ink-soft: #243039;
  --panel: #2a353d;
  --panel-2: #323e46;
  --night: #172229;
  --night-soft: #222d34;
  --paper: #d8d1c5;
  --paper-warm: #c9bdac;
  --paper-cool: #aeb9b7;
  --clay: #c8b09e;
  --white: #f2ede4;
  --muted: #98a5a7;
  --muted-dark: #4f5959;
  --line: rgba(237, 232, 222, .17);
  --line-dark: rgba(21, 27, 31, .19);
  --acid: #b95d37;
  --acid-soft: #da8a64;
  --accent-ink: #75351f;
  --cyan: #708c92;
  --orange: #b95d37;
  --violet: #8a7d91;
  --radius: 3px;
  --page-pad: clamp(20px, 4vw, 68px);
  --max: 1440px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font-display: "Arial Narrow", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Helvetica Neue", sans-serif;
  --font-mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--night); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--night);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

::selection { background: var(--acid); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-150%);
  transition: transform .2s;
}

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

.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;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .5;
  background-image:
    repeating-radial-gradient(circle at 27% 18%, transparent 0, rgba(255,255,255,.02) .55px, transparent 1.2px, transparent 4px),
    repeating-linear-gradient(112deg, rgba(255,255,255,.012) 0, rgba(255,255,255,.012) 1px, transparent 1px, transparent 5px);
}
/* mix-blend-mode záměrně odstraněn — nutil prohlížeč prolnout celou stránku
   při každém překreslení a zabíjel plynulost scrollování na Hi-DPI displejích. */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(23,34,41,.96), rgba(23,34,41,.66) 70%, rgba(23,34,41,.34));
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: condensed;
  font-size: 20px;
  letter-spacing: -.04em;
}

.brand-slash { color: var(--acid); padding: 0 2px; }

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
}

.brand-mark i {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--acid);
}
.brand-mark i:nth-child(1) { top: 5px; left: 10px; }
.brand-mark i:nth-child(2) { top: 14px; left: 5px; }
.brand-mark i:nth-child(3) { top: 14px; right: 5px; }
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(255,255,255,.4);
  transform-origin: left;
}
.brand-mark::before { width: 10px; left: 7px; top: 9px; transform: rotate(56deg); }
.brand-mark::after { width: 10px; left: 7px; top: 15px; transform: rotate(-56deg); }

.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3.2vw, 52px); }
.desktop-nav a, .desktop-nav .nav-brain {
  position: relative;
  color: #c8cbc7;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .25s;
}
.desktop-nav a::after, .desktop-nav .nav-brain::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--acid);
  transition: right .25s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav .nav-brain:hover, .desktop-nav .nav-brain:focus-visible { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav .nav-brain:hover::after, .desktop-nav .nav-brain:focus-visible::after { right: 0; }
.nav-brain span { color: var(--acid); font-size: 13px; }

.header-cta {
  justify-self: end;
  min-width: 116px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px 0 16px;
  color: var(--white);
  background: rgba(10,11,13,.52);
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
}
.header-cta:hover, .header-cta:focus-visible { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.header-cta .arrow { font-size: 17px; }

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

.hero {
  position: relative;
  isolation: isolate;
  height: max(760px, 100svh);
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 46%, rgba(112,140,146,.2), transparent 34%),
    radial-gradient(circle at 52% 72%, rgba(185,93,55,.11), transparent 27%),
    linear-gradient(120deg, #142028 0%, #1b2931 58%, #202731 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.034) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.2), rgba(0,0,0,.86));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 5;
  left: var(--page-pad);
  right: var(--page-pad);
  top: 82px;
  bottom: 68px;
  border-left: 1px solid rgba(255,255,255,.07);
  border-right: 1px solid rgba(255,255,255,.07);
  pointer-events: none;
}

.graph-shell {
  position: absolute;
  z-index: 2;
  inset: 0 0 0 38%;
  cursor: grab;
  touch-action: none;
}
.graph-shell.is-dragging { cursor: grabbing; }
#knowledge-graph { display: block; width: 100%; height: 100%; }
.graph-fallback {
  position: absolute;
  inset: 15% 4% 10% 2%;
  opacity: .42;
  background:
    radial-gradient(circle at 48% 48%, rgba(185,93,55,.32) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 36%, rgba(255,255,255,.45) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 30%, rgba(255,255,255,.3) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 58%, rgba(255,255,255,.35) 0 2px, transparent 3px),
    radial-gradient(circle at 34% 68%, rgba(255,255,255,.3) 0 2px, transparent 3px);
  background-size: 37px 43px, 61px 67px, 83px 79px, 109px 97px, 127px 113px;
  mask-image: radial-gradient(circle, #000 0 45%, transparent 74%);
}

.graph-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--night) 0%, rgba(23,34,41,.88) 7%, transparent 34%),
    linear-gradient(0deg, var(--night) 0%, transparent 17%),
    radial-gradient(circle at center, transparent 32%, rgba(13,20,25,.46) 100%);
}

#graph-labels { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.node-label {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(-50%, -50%, 0);
  padding: 3px 6px;
  color: rgba(230,233,226,.72);
  background: rgba(10,11,13,.34);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.15;
  letter-spacing: .015em;
  white-space: nowrap;
  opacity: 0;
  will-change: transform;
  transition: color .2s, background .2s;
}
.node-label.major { color: rgba(247,247,242,.9); font-size: 10px; }
.node-label.core {
  padding: 5px 8px;
  color: var(--acid);
  border: 1px solid rgba(226,149,97,.46);
  background: rgba(10,11,13,.76);
  font-size: 11px;
}
.node-label.highlight { color: var(--acid); background: rgba(10,11,13,.88); }

.graph-tooltip {
  position: absolute;
  z-index: 12;
  top: 0;
  left: 0;
  max-width: 220px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.35;
  opacity: 0;
  transform: translate(14px, 14px);
  pointer-events: none;
  transition: opacity .15s;
}
.graph-tooltip.visible { opacity: 1; }

.hero-copy {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: var(--page-pad);
  width: min(620px, 49vw);
  transform: translateY(-48%);
}

.eyebrow, .section-kicker {
  margin: 0 0 24px;
  color: var(--acid-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 800;
  font-stretch: condensed;
  line-height: .84;
  letter-spacing: -.068em;
  text-transform: uppercase;
}
.hero h1 em { color: var(--acid-soft); font-style: normal; }
.hero h1 > span, .hero h1 > em { display: block; }

.hero-lead {
  max-width: 565px;
  margin: 28px 0 0;
  padding-left: 2px;
  color: #b7bbb7;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.button-primary:hover { background: var(--white); border-color: var(--white); }
.button-ghost { color: var(--white); background: rgba(14,16,18,.62); border-color: rgba(255,255,255,.24); }
.button-ghost:hover { border-color: var(--white); }
.button span { font-size: 15px; }

.graph-console {
  position: absolute;
  z-index: 15;
  right: var(--page-pad);
  bottom: 62px;
  width: min(350px, 31vw);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(12,14,16,.92);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.console-heading {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.11);
  color: #8e938e;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.console-heading > span:first-child { color: #c9cdc6; }
.status-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 50% { opacity: .35; } }

.graph-search {
  height: 47px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.11);
  color: #999e99;
}
.graph-search input {
  width: 100%;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-mono);
  font-size: 11px;
}
.graph-search input::placeholder { color: #747974; }
.graph-search kbd {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #727772;
  border: 1px solid rgba(255,255,255,.15);
  font-family: var(--font-mono);
  font-size: 9px;
}
.filter-row { display: flex; gap: 6px; padding: 9px; overflow-x: auto; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-row button {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: #888d88;
  background: transparent;
  border: 1px solid rgba(255,255,255,.11);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: .2s;
}
.filter-row button:hover, .filter-row button.active { color: var(--ink); border-color: var(--acid); background: var(--acid); }

.graph-hint {
  position: absolute;
  z-index: 11;
  right: calc(var(--page-pad) + 370px);
  bottom: 69px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #777d78;
  font-family: var(--font-mono);
  font-size: 8px;
  line-height: 1.5;
  text-transform: uppercase;
}
.mouse-symbol { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }

.hero-index {
  position: absolute;
  z-index: 10;
  left: var(--page-pad);
  bottom: 22px;
  color: #666b67;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.section-pad { padding: clamp(88px, 11vw, 170px) var(--page-pad); }
.intro { background: var(--paper); color: var(--ink); }
.capabilities { background: #c8bdad; color: var(--ink); }
.compare-section { background: var(--paper-cool); color: var(--ink); }
.claude-section { background: #d2c7b8; color: var(--ink); }
.intro .section-kicker, .capabilities .section-kicker, .compare-section .section-kicker, .claude-section .section-kicker { color: var(--accent-ink); }
.intro { position: relative; border-bottom: 1px solid var(--line-dark); }
.intro .section-kicker, .capabilities .section-kicker, .compare-section .section-kicker, .claude-section .section-kicker { color: var(--accent-ink); }

.intro-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, .7fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
}
.intro > .section-kicker { max-width: var(--max); margin-left: auto; margin-right: auto; }

.display-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 6.6vw, 104px);
  font-weight: 800;
  font-stretch: condensed;
  line-height: .94;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.display-title span { color: inherit; -webkit-text-stroke: 0; opacity: 1; }
.intro .display-title span, .capabilities .display-title span, .compare-section .display-title span, .claude-section .display-title span { color: inherit; }
.obsidian-section .display-title span, .agents-section .display-title span { color: var(--acid-soft); }

.intro-copy { padding-bottom: 5px; }
.intro-copy p { margin: 0 0 20px; font-size: clamp(17px, 1.45vw, 22px); line-height: 1.55; }
.intro-copy .muted { color: #686d68; font-size: 14px; }

.signal-strip {
  max-width: var(--max);
  margin: clamp(60px, 8vw, 110px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.signal-strip > div { min-height: 76px; display: flex; align-items: center; gap: 18px; padding: 16px 24px; border-right: 1px solid var(--line-dark); }
.signal-strip > div:last-child { border-right: 0; }
.signal-strip strong { color: var(--accent-ink); font-family: var(--font-mono); font-size: 9px; }
.signal-strip span { font-size: 13px; font-weight: 600; }

.capabilities { border-bottom: 1px solid var(--line-dark); }
.section-head {
  max-width: var(--max);
  margin: 0 auto clamp(55px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1fr minmax(260px, 390px);
  gap: 60px;
  align-items: end;
}
.section-note { margin: 0; color: #676c67; font-size: 15px; line-height: 1.7; }

.capability-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.capability-card {
  grid-column: span 4;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.5vw, 38px);
  color: var(--ink);
  background: rgba(242,237,228,.34);
  border: 1px solid var(--line-dark);
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.capability-card:hover, .capability-card:focus-visible { transform: translateY(-6px); background: rgba(242,237,228,.72); border-color: rgba(21,27,31,.35); }
.capability-card.featured { grid-column: span 8; background: #d4b39f; border-top: 4px solid var(--acid); }
.capability-card.wide { grid-column: span 7; }
.capability-card.dark { grid-column: span 5; color: var(--white); background: #26343d; border-color: #26343d; }
.capability-card.dark:hover { background: #30414b; }
.card-top { display: flex; justify-content: space-between; color: #555b56; font-family: var(--font-mono); font-size: 9px; }
.featured .card-top { color: var(--accent-ink); }
.dark .card-top { color: #a5aaa5; }
.card-icon { font-size: 21px; letter-spacing: -.25em; }
.capability-card h3 { max-width: 620px; margin: auto 0 18px; font-size: clamp(25px, 2.7vw, 43px); line-height: 1.03; letter-spacing: -.045em; }
.capability-card p { max-width: 650px; margin: 0 0 28px; color: #565b56; font-size: 14px; line-height: 1.65; }
.capability-card.featured p { color: #565b56; }
.capability-card.dark p { color: #a8ada7; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.card-tags span { padding: 5px 8px; border: 1px solid currentColor; color: #555b56; font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; }
.featured .card-tags span { color: var(--accent-ink); }
.dark .card-tags span { color: #b2b7b1; }

.obsidian-section { background: #202b33; }
.obsidian-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}
.obsidian-copy .display-title { font-size: clamp(47px, 5.6vw, 86px); }
.large-copy { max-width: 650px; margin: 40px 0; color: #a9aea9; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.65; }
.quote-block { margin-top: 50px; padding: 28px 0 0 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.quote-block > span { color: var(--acid-soft); font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; }
.quote-block blockquote { margin: 16px 0; color: var(--white); font-size: 17px; font-weight: 600; line-height: 1.55; }
.quote-block p { margin: 0; color: #a7aca7; font-size: 13px; }

.brain-launch {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 13px 15px;
  color: var(--white);
  background: rgba(185,93,55,.08);
  border: 1px solid rgba(226,149,97,.45);
  cursor: pointer;
  text-align: left;
  transition: color .25s, background .25s, border-color .25s, transform .25s var(--ease);
}
.brain-launch:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); transform: translateY(-2px); }
.brain-launch > span:nth-child(2) { min-width: 0; }
.brain-launch small { display: block; margin-bottom: 3px; color: #a7aca7; font-family: var(--font-mono); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.brain-launch:hover small { color: #3f2114; }
.brain-launch strong { display: block; font-size: 14px; font-weight: 650; }
.brain-launch > b { font-size: 18px; font-weight: 400; }
.brain-launch-mark { position: relative; width: 34px; height: 34px; display: block; border: 1px solid rgba(226,149,97,.45); border-radius: 50%; }
.brain-launch:hover .brain-launch-mark { border-color: rgba(10,11,13,.3); }
.brain-launch-mark i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--acid-soft); box-shadow: 0 0 7px rgba(185,93,55,.65); }
.brain-launch:hover .brain-launch-mark i { background: var(--ink); box-shadow: none; }
.brain-launch-mark i:nth-child(1) { left: 14px; top: 6px; }
.brain-launch-mark i:nth-child(2) { left: 7px; top: 21px; }
.brain-launch-mark i:nth-child(3) { right: 6px; top: 20px; }
.brain-launch-mark::before, .brain-launch-mark::after { content: ""; position: absolute; left: 10px; top: 14px; width: 14px; height: 1px; background: rgba(226,149,97,.5); transform: rotate(62deg); }
.brain-launch-mark::after { transform: rotate(-58deg); }

.memory-panel { border: 1px solid rgba(255,255,255,.18); background: #28343d; box-shadow: 0 35px 100px rgba(12,20,25,.34); }
.panel-bar, .panel-footer {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 15px;
  color: #a2a8a2;
  border-bottom: 1px solid rgba(255,255,255,.11);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .06em;
}
.panel-live { display: flex; align-items: center; gap: 8px; }
.panel-live i { width: 5px; height: 5px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 8px var(--acid); }
.panel-footer { min-height: 45px; border-top: 1px solid rgba(255,255,255,.11); border-bottom: 0; }
.panel-footer span:last-child { color: #bdc2bb; }
.memory-map { position: relative; aspect-ratio: 1.22 / 1; overflow: hidden; background: radial-gradient(circle at 56% 48%, rgba(185,93,55,.08), transparent 34%); }
.memory-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black, transparent 78%);
}
.memory-map svg { width: 100%; height: 100%; }
.memory-lines line { stroke: rgba(201,208,198,.19); stroke-width: .8; }
.memory-nodes circle { fill: #7d837e; transition: fill .3s; }
.memory-nodes circle.major { fill: var(--acid); filter: drop-shadow(0 0 7px rgba(185,93,55,.72)); }
.memory-nodes text { fill: #999f99; font-family: var(--font-mono); font-size: 8px; }
.memory-nodes text.major { fill: #e7eae4; font-size: 9px; }
.memory-query { position: absolute; left: 18px; bottom: 16px; z-index: 2; width: min(320px, calc(100% - 36px)); padding: 13px 15px; border: 1px solid rgba(226,149,97,.42); background: rgba(10,12,14,.92); }
.memory-query span { display: block; color: #a4aaa4; font-family: var(--font-mono); font-size: 7px; text-transform: uppercase; }
.memory-query strong { display: block; margin-top: 3px; padding-right: 24px; font-size: 11px; font-weight: 500; }
.memory-query i { position: absolute; top: 50%; right: 14px; width: 6px; height: 6px; margin-top: -3px; border-radius: 50%; background: var(--acid); animation: pulse-dot 1.4s infinite; }

.system-section { background: #9eaaa7; color: var(--ink); }
.system-section .section-kicker { color: var(--accent-ink); }
.system-section .section-note { color: #374344; }
.system-stack { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line-dark); }
.system-layer {
  min-height: 154px;
  display: grid;
  grid-template-columns: 70px minmax(260px, .85fr) 1fr 140px;
  gap: 30px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-dark);
}
.layer-index { align-self: start; padding-top: 8px; color: var(--accent-ink); font-family: var(--font-mono); font-size: 9px; }
.layer-title span { display: block; color: var(--accent-ink); font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; }
.layer-title h3 { margin: 8px 0 0; font-size: clamp(25px, 2.4vw, 38px); letter-spacing: -.045em; line-height: 1; }
.system-layer p { margin: 0; max-width: 520px; color: #374344; font-size: 14px; }
.layer-signal { display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.layer-signal i { width: 8px; height: 8px; display: block; border: 1px solid rgba(10,11,13,.42); border-radius: 50%; }
.layer-signal i:first-child { background: var(--ink); }
.system-layer.active { margin: 0 calc(var(--page-pad) * -.25); padding-left: calc(var(--page-pad) * .25); padding-right: calc(var(--page-pad) * .25); color: var(--white); background: #26343d; border-bottom: 0; }
.system-layer.active .layer-index, .system-layer.active .layer-title span { color: var(--acid); }
.system-layer.active p { color: #aeb3ad; }
.system-layer.active .layer-signal i { border-color: #6f756e; }
.system-layer.active .layer-signal i:first-child { background: var(--acid); border-color: var(--acid); box-shadow: 0 0 12px var(--acid); }

.compare-section { border-bottom: 1px solid var(--line-dark); }
.compare-intro { max-width: var(--max); margin: 0 auto clamp(55px, 7vw, 100px); }
.compare-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.compare-card { position: relative; min-height: 580px; display: flex; flex-direction: column; padding: clamp(28px, 4vw, 62px); overflow: hidden; border: 1px solid var(--line-dark); }
.compare-card.cloud { color: var(--white); background: #24323b; }
.compare-card.local { background: #c9bba8; }
.compare-label { position: relative; z-index: 2; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.compare-card.cloud .compare-label { color: var(--acid-soft); }
.compare-card.local .compare-label { color: var(--accent-ink); }
.compare-card h3 { position: relative; z-index: 2; max-width: 520px; margin: auto 0 22px; font-size: clamp(34px, 4vw, 62px); line-height: .98; letter-spacing: -.055em; }
.compare-card p { position: relative; z-index: 2; max-width: 530px; margin: 0 0 35px; color: #4f554f; font-size: 14px; }
.compare-card.cloud p { color: #a6aca7; }
.compare-card ul { position: relative; z-index: 2; margin: 0; padding: 20px 0 0; list-style: none; border-top: 1px solid currentColor; }
.compare-card li { padding: 9px 0 9px 22px; color: #5a605b; font-size: 12px; }
.compare-card.cloud li { color: #a4aaa5; }
.compare-card li::before { content: "+"; position: absolute; margin-left: -20px; font-family: var(--font-mono); }
.compare-orbit {
  position: absolute;
  top: 52px;
  right: 52px;
  width: clamp(150px, 18vw, 220px);
  height: clamp(104px, 12vw, 142px);
  color: rgba(242,237,228,.72);
  border: 1px solid rgba(242,237,228,.2);
  border-radius: 2px;
  background-image:
    linear-gradient(rgba(242,237,228,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,237,228,.055) 1px, transparent 1px);
  background-size: 18px 18px;
}
.local .compare-orbit { color: rgba(21,27,31,.64); border-color: rgba(21,27,31,.2); }
.compare-orbit::before { content: ""; position: absolute; left: 15%; right: 15%; top: 50%; height: 1px; background: currentColor; opacity: .35; }
.compare-orbit::after { content: ""; position: absolute; top: 18%; bottom: 18%; left: 50%; width: 1px; background: currentColor; opacity: .2; }
.compare-orbit span { position: absolute; z-index: 2; left: 50%; top: 50%; width: 48px; height: 48px; display: grid; place-items: center; transform: translate(-50%, -50%); border: 1px solid rgba(242,237,228,.34); border-radius: 2px; background: var(--acid); color: var(--white); font-family: var(--font-mono); font-size: 12px; box-shadow: 0 12px 28px rgba(12,20,25,.2); }
.local .compare-orbit span { background: #657f85; color: var(--white); border-color: rgba(21,27,31,.18); box-shadow: 0 12px 28px rgba(62,79,82,.18); }
.compare-orbit i { position: absolute; z-index: 2; top: calc(50% - 4px); width: 8px; height: 8px; border-radius: 1px; background: currentColor; opacity: .72; animation: none; transform: none; }
.compare-orbit i:nth-of-type(1) { left: calc(15% - 4px); box-shadow: 30px -31px 0 -2px currentColor, 48px 31px 0 -2px currentColor; }
.compare-orbit i:nth-of-type(2) { right: calc(15% - 4px); box-shadow: -30px 31px 0 -2px currentColor, -48px -31px 0 -2px currentColor; }

.hybrid-callout { max-width: var(--max); margin: 12px auto 0; display: grid; grid-template-columns: 86px 1fr; align-items: center; gap: 28px; padding: 22px 28px; color: var(--white); background: #344149; border-top: 2px solid var(--acid); }
.hybrid-mark { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-family: var(--font-mono); font-size: 10px; }
.hybrid-callout p { max-width: 970px; margin: 0; color: #b5bab5; font-size: 14px; }
.hybrid-callout strong { color: var(--white); }

.agents-section { background: #292a33; }
.agents-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(350px, .82fr) minmax(520px, 1.18fr); gap: clamp(60px, 9vw, 150px); align-items: start; }
.agents-sticky { position: sticky; top: 80px; }
.agents-sticky .display-title { font-size: clamp(45px, 5vw, 78px); }
.routine-list { border-top: 1px solid var(--line); }
.routine-item { min-height: 178px; display: grid; grid-template-columns: 64px 1fr 44px; gap: 24px; align-items: center; padding: 25px 0; border-bottom: 1px solid var(--line); }
.routine-time { align-self: start; padding-top: 5px; color: var(--acid-soft); font-family: var(--font-mono); font-size: 10px; }
.routine-item span { color: #a4aaa4; font-family: var(--font-mono); font-size: 8px; letter-spacing: .06em; }
.routine-item h3 { margin: 7px 0 9px; font-size: clamp(21px, 2vw, 29px); line-height: 1.08; letter-spacing: -.035em; }
.routine-item p { margin: 0; color: #8e948f; font-size: 13px; line-height: 1.55; }
.routine-item button { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.18); background: transparent; cursor: pointer; transition: .2s; }
.routine-item button:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }

.honesty-section { padding-top: 0; background: #292a33; }
.honesty-card { max-width: var(--max); margin: 0 auto; padding: clamp(35px, 5vw, 74px); color: var(--ink); background: var(--clay); border-top: 3px solid var(--acid); }
.honesty-label { color: var(--accent-ink); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.honesty-card h2 { max-width: 1120px; margin: 26px 0 clamp(52px, 7vw, 96px); font-family: var(--font-display); font-size: clamp(54px, 8vw, 118px); line-height: .98; letter-spacing: -.065em; text-transform: uppercase; }
.honesty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(10,11,13,.3); }
.honesty-grid > div { padding: 28px 34px 0 0; border-right: 1px solid rgba(10,11,13,.3); }
.honesty-grid > div + div { padding-left: 34px; }
.honesty-grid > div:last-child { border-right: 0; }
.honesty-grid span { color: var(--accent-ink); font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; }
.honesty-grid h3 { margin: 12px 0; font-size: 22px; line-height: 1.1; letter-spacing: -.035em; }
.honesty-grid p { margin: 0; color: #4f534f; font-size: 13px; line-height: 1.65; }

.claude-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 150px); align-items: start; }
.claude-grid .display-title { font-size: clamp(49px, 5.7vw, 88px); }
.capability-ticker { border-top: 1px solid var(--line-dark); }
.ticker-row { min-height: 78px; display: grid; grid-template-columns: 42px 1fr 28px; gap: 18px; align-items: center; border-bottom: 1px solid var(--line-dark); transition: padding .25s, background .25s; }
.ticker-row:hover { padding: 0 12px; background: rgba(255,255,255,.45); }
.ticker-row span { color: #555b56; font-family: var(--font-mono); font-size: 8px; }
.ticker-row strong { font-size: clamp(16px, 1.6vw, 22px); font-weight: 600; letter-spacing: -.025em; }
.ticker-row i { font-style: normal; }

.site-footer {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--page-pad);
  color: #9ea39f;
  background: #202b33;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.node-panel {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
  background: rgba(17,19,23,.97);
  border-left: 1px solid rgba(255,255,255,.16);
  box-shadow: -30px 0 90px rgba(0,0,0,.5);
  transform: translateX(105%);
  transition: transform .5s var(--ease);
}
.node-panel.open { transform: translateX(0); }
.node-panel-close { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; display: grid; place-items: center; color: #b9bdb8; background: transparent; border: 1px solid rgba(255,255,255,.18); cursor: pointer; font-size: 20px; }
.node-panel-index { color: #666c67; font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; }
.node-panel-orbit { position: relative; width: 160px; height: 160px; margin: auto auto 40px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; animation: slow-spin 18s linear infinite; }
.node-panel-orbit::before { content: ""; position: absolute; inset: 25%; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.node-panel-orbit span { position: absolute; left: 50%; top: 50%; width: 28px; height: 28px; margin: -14px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 30px rgba(185,93,55,.4); }
.node-panel-orbit i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #969c96; }
.node-panel-orbit i:nth-child(1) { left: 13%; top: 31%; }.node-panel-orbit i:nth-child(2) { right: 9%; bottom: 35%; }
.node-panel-category { margin: 0 0 10px; color: var(--acid); font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; }
.node-panel h2 { margin: 0; font-family: var(--font-display); font-size: clamp(43px, 5vw, 67px); line-height: .88; letter-spacing: -.06em; text-transform: uppercase; }
.node-panel > p:not(.node-panel-category) { margin: 25px 0; color: #a4aaa5; font-size: 15px; line-height: 1.65; }
.node-panel-links { display: flex; flex-wrap: wrap; gap: 6px; }
.node-panel-links span { padding: 6px 9px; color: #969c96; border: 1px solid rgba(255,255,255,.16); font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; }
.node-panel-cta { margin-top: 35px; display: flex; justify-content: space-between; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); color: var(--white); font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; }

body.brain-open { overflow: hidden; }
.brain-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  overflow: hidden;
  color: var(--white);
  background: #0b0c0f;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(.995);
  transition: opacity .28s var(--ease), transform .38s var(--ease), visibility 0s linear .38s;
}
.brain-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}
.brain-overlay-bar {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 14px 0 18px;
  background: #202b33;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.brain-overlay-title { justify-self: start; display: flex; align-items: center; gap: 11px; }
.brain-overlay-title .brand-mark { width: 28px; height: 28px; }
.brain-overlay-title > span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.brain-overlay-title small { margin-bottom: 4px; color: #676d68; font-family: var(--font-mono); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.brain-overlay-title strong { font-family: var(--font-display); font-size: 18px; letter-spacing: -.03em; text-transform: uppercase; }
.brain-overlay-status { justify-self: center; display: flex; align-items: center; gap: 8px; color: #777d78; font-family: var(--font-mono); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.brain-overlay-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 9px var(--acid); }
.brain-overlay-close {
  justify-self: end;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 6px 0 14px;
  color: #c9cdc8;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s, background .2s, border-color .2s;
}
.brain-overlay-close b { width: 26px; height: 26px; display: grid; place-items: center; font-family: var(--font-body); font-size: 18px; font-weight: 400; }
.brain-overlay-close:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.brain-overlay iframe { position: absolute; z-index: 2; inset: 58px 0 0; width: 100%; height: calc(100% - 58px); display: block; background: #0b0c0f; border: 0; opacity: 0; transition: opacity .28s ease; }
.brain-overlay.ready iframe { opacity: 1; }
.brain-overlay-loader { position: absolute; z-index: 1; inset: 58px 0 0; display: flex; align-items: center; justify-content: center; gap: 12px; color: #737973; background: #0b0c0f; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.brain-overlay-loader i { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); animation: pulse-dot 1.2s ease-in-out infinite; }
.brain-overlay.ready .brain-overlay-loader { opacity: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .graph-shell { left: 31%; }
  .graph-hint { display: none; }
  .capability-card { grid-column: span 6; }
  .capability-card.featured { grid-column: span 6; }
  .capability-card.wide { grid-column: span 6; }
  .capability-card.dark { grid-column: span 6; }
  .system-layer { grid-template-columns: 52px minmax(220px,.8fr) 1fr 90px; }
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; height: 68px; }
  .desktop-nav { display: none; }
  .hero { height: max(820px, 100svh); min-height: 760px; }
  .hero::after { top: 68px; bottom: 55px; }
  .graph-shell { inset: 0; opacity: .8; }
  .graph-vignette { background: linear-gradient(0deg, var(--ink) 0%, rgba(10,11,13,.92) 29%, transparent 64%), radial-gradient(circle at 60% 28%, transparent 16%, rgba(5,6,8,.52) 66%); }
  .hero-copy { top: auto; bottom: 120px; width: calc(100% - var(--page-pad) * 2); transform: none; }
  .hero h1 { font-size: clamp(51px, 11vw, 88px); }
  .hero-lead { max-width: 650px; font-size: 15px; }
  .graph-console { top: 86px; right: var(--page-pad); bottom: auto; width: min(330px, calc(100% - var(--page-pad) * 2)); }
  .graph-console .filter-row { display: none; }
  .graph-hint { display: none; }
  .intro-grid, .section-head, .obsidian-layout, .agents-layout, .claude-grid { grid-template-columns: 1fr; }
  .section-head { gap: 28px; }
  .section-note { max-width: 620px; }
  .signal-strip { grid-template-columns: 1fr 1fr; }
  .signal-strip > div:nth-child(2) { border-right: 0; }
  .signal-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .obsidian-layout { gap: 65px; }
  .agents-sticky { position: static; }
  .agents-layout { gap: 50px; }
  .compare-card { min-height: 520px; }
  .system-layer { grid-template-columns: 45px 1fr 80px; gap: 20px; }
  .system-layer p { grid-column: 2 / 4; }
  .honesty-grid { grid-template-columns: 1fr; }
  .honesty-grid > div, .honesty-grid > div + div { padding: 25px 0; border-right: 0; border-bottom: 1px solid rgba(10,11,13,.3); }
  .honesty-grid > div:last-child { border-bottom: 0; }
}

@media (max-width: 680px) {
  :root { --page-pad: 20px; }
  .site-header { position: absolute; padding: 0 20px; }
  .header-cta { min-width: 93px; height: 36px; }
  .header-cta span:first-child { font-size: 9px; }
  .hero { min-height: 790px; }
  .hero::before { background-size: 46px 46px; }
  .hero::after { left: 20px; right: 20px; }
  .graph-shell { inset: 0; }
  .graph-vignette { background: linear-gradient(0deg, var(--ink) 0%, rgba(10,11,13,.98) 38%, rgba(10,11,13,.3) 72%), radial-gradient(circle at 50% 25%, transparent 8%, rgba(5,6,8,.52) 60%); }
  .graph-console { top: 81px; left: 20px; right: 20px; width: auto; }
  .console-heading { min-height: 31px; }
  .graph-search { height: 42px; }
  .hero-copy { left: 20px; right: 20px; bottom: 62px; width: auto; }
  .eyebrow { margin-bottom: 15px; }
  .hero h1 { font-size: clamp(39px, 10.8vw, 48px); line-height: .88; letter-spacing: -.074em; }
  .hero h1 .hero-line-long { font-size: .78em; letter-spacing: -.06em; }
  .hero-lead { margin-top: 20px; font-size: 14px; line-height: 1.5; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .button { min-height: 48px; }
  .button-ghost { display: none; }
  .hero-index { display: none; }
  .section-pad { padding-top: 78px; padding-bottom: 78px; }
  .section-kicker { margin-bottom: 18px; }
  .display-title { font-size: clamp(41px, 13vw, 60px); }
  .intro-grid { gap: 35px; }
  .intro-copy p { font-size: 16px; }
  .signal-strip { margin-top: 55px; grid-template-columns: 1fr; }
  .signal-strip > div { min-height: 62px; padding: 12px 10px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .signal-strip > div:last-child { border-bottom: 0; }
  .section-head { margin-bottom: 42px; }
  .capability-grid { display: block; }
  .capability-card { min-height: 310px; margin-bottom: 10px; }
  .capability-card h3 { font-size: 30px; }
  .memory-panel { margin-left: -8px; margin-right: -8px; }
  .panel-bar, .panel-footer { padding: 0 10px; }
  .panel-footer span:first-child { display: none; }
  .panel-footer { justify-content: flex-end; }
  .memory-map { aspect-ratio: .92 / 1; }
  .memory-query { left: 10px; right: 10px; bottom: 10px; width: auto; }
  .quote-block { margin-top: 38px; padding-left: 18px; }
  .system-stack { margin-top: 20px; }
  .system-layer { min-height: 164px; grid-template-columns: 30px 1fr 52px; gap: 12px; padding: 20px 0; }
  .layer-title h3 { font-size: 25px; }
  .system-layer p { font-size: 12px; }
  .system-layer.active { margin: 0 -10px; padding-left: 10px; padding-right: 10px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card { min-height: 500px; padding: 28px 24px; }
  .compare-card h3 { font-size: 38px; }
  .compare-orbit { right: 28px; top: 38px; }
  .hybrid-callout { grid-template-columns: 50px 1fr; gap: 14px; padding: 20px 18px; }
  .hybrid-mark { width: 42px; height: 42px; }
  .routine-item { grid-template-columns: 48px 1fr; gap: 13px; }
  .routine-item button { display: none; }
  .routine-time { font-size: 9px; }
  .routine-item h3 { font-size: 21px; }
  .honesty-section { padding-left: 10px; padding-right: 10px; }
  .honesty-card { padding: 32px 22px; }
  .honesty-card h2 { margin-bottom: 48px; font-size: 58px; line-height: .98; }
  .ticker-row { min-height: 68px; grid-template-columns: 28px 1fr 18px; gap: 8px; }
  .site-footer { min-height: 76px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
  .node-panel { top: auto; height: min(680px, 88svh); border-top: 1px solid rgba(255,255,255,.18); border-left: 0; transform: translateY(105%); }
  .node-panel.open { transform: translateY(0); }
  .node-panel-orbit { width: 108px; height: 108px; margin-bottom: 22px; }
  .node-panel h2 { font-size: 43px; }
  .node-panel > p:not(.node-panel-category) { margin: 18px 0; font-size: 14px; }
  .brain-launch { min-height: 72px; }
  .brain-overlay-bar { height: 54px; grid-template-columns: 1fr auto; padding: 0 10px 0 14px; }
  .brain-overlay-status { display: none; }
  .brain-overlay-close { min-width: 39px; min-height: 39px; padding: 0; justify-content: center; }
  .brain-overlay-close span { display: none; }
  .brain-overlay iframe, .brain-overlay-loader { inset: 54px 0 0; height: calc(100% - 54px); }
}

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