:root {
  --bg-0: #06101c;
  --bg-1: #0a1524;
  --bg-2: #101d31;
  --brand-width: clamp(220px, 20vw, 340px);
  --paper: rgba(10, 21, 36, 0.8);
  --paper-soft: rgba(10, 21, 36, 0.64);
  --paper-strong: rgba(13, 26, 44, 0.94);
  --ink: #edf5ff;
  --muted: #9ab0cd;
  --line: rgba(84, 122, 166, 0.28);
  --line-strong: rgba(143, 227, 255, 0.24);
  --accent: #37b6ff;
  --accent-2: #76c4e2;
  --signal: #59d9a1;
  --card: rgba(15, 27, 47, 0.8);
  --card-strong: rgba(16, 31, 53, 0.92);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 36px rgba(3, 10, 19, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(55, 182, 255, 0.12), transparent 24%),
    radial-gradient(circle at 22% 8%, rgba(143, 227, 255, 0.05), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(120, 170, 214, 0.12), transparent 28%),
    linear-gradient(155deg, var(--bg-0), var(--bg-1) 58%, var(--bg-2));
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(143, 227, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 227, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 74% 20%, rgba(143, 227, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%);
  opacity: 0.6;
  pointer-events: none;
}

::selection {
  color: #071221;
  background: rgba(143, 227, 255, 0.78);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid rgba(143, 227, 255, 0.82);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  position: relative;
  overflow: hidden;
  width: min(1680px, calc(100% - clamp(24px, 4vw, 96px)));
  margin: 0 auto;
  padding: clamp(18px, 2vw, 28px) 0 clamp(32px, 3vw, 44px);
}

.ambient {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.42;
  animation: drift 13s ease-in-out infinite alternate;
}

.ambient-left {
  width: 320px;
  height: 320px;
  top: 110px;
  left: -120px;
  background: radial-gradient(circle, rgba(55, 182, 255, 0.28), transparent 68%);
}

.ambient-right {
  width: 360px;
  height: 360px;
  right: -140px;
  top: 320px;
  background: radial-gradient(circle, rgba(89, 217, 161, 0.2), transparent 70%);
  animation-duration: 16s;
}

.topbar,
.page-main {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 5;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 1.4vw, 24px);
  padding: clamp(14px, 1.4vw, 18px) clamp(18px, 1.8vw, 28px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.9);
  backdrop-filter: blur(12px);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0 18% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 227, 255, 0.8), transparent);
  pointer-events: none;
}

.brand-lockup {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: var(--brand-width);
}

.brand-logo {
  width: 100%;
  min-width: 0;
  max-width: none;
  height: auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.05))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.16));
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 4px;
  border: 1px solid rgba(84, 122, 166, 0.28);
  border-radius: 16px;
  background: rgba(8, 18, 33, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-link {
  padding: 9px 14px;
  border-radius: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  color: var(--ink);
  border-color: rgba(143, 227, 255, 0.28);
}

.nav-link[aria-current="page"] {
  color: #071221;
  border-color: transparent;
  background: linear-gradient(125deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 18px rgba(30, 167, 255, 0.2);
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition:
    transform 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.topbar-status:hover {
  transform: translateY(-1px);
  color: var(--ink);
}

.topbar-status[aria-current="page"] {
  color: var(--ink);
}

.status-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #125f5e;
  box-shadow: 0 0 0 7px rgba(89, 217, 161, 0.14);
  animation: pulse 2.4s ease-in-out infinite;
}

.page-main {
  margin-top: clamp(20px, 2vw, 32px);
}

.home-main {
  display: flex;
}

.home-pane,
.page-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  container-type: inline-size;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(12, 23, 39, 0.9), rgba(8, 16, 29, 0.86)),
    var(--paper);
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -24px 48px rgba(0, 0, 0, 0.08);
}

.home-pane::before,
.page-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(55, 182, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 34%);
  pointer-events: none;
}

.home-pane::after,
.page-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), transparent 24%),
    radial-gradient(circle at 100% 0, rgba(143, 227, 255, 0.04), transparent 22%);
  pointer-events: none;
}

.home-pane {
  width: 100%;
  min-height: calc(100vh - 146px);
  padding: clamp(32px, 3vw, 58px);
  border-radius: 36px;
  display: grid;
  gap: clamp(24px, 1.8vw, 32px);
  align-content: space-between;
}

.page-panel {
  padding: clamp(28px, 2.8vw, 48px);
  border-radius: 34px;
  display: grid;
  gap: clamp(20px, 1.6vw, 28px);
}

.home-grid,
.detail-grid,
.quiet-strip,
.signal-strip,
.signal-stage,
.signal-stage-head,
.signal-stage-frame,
.pane-footer,
.page-head,
.link-grid,
.overview-band,
.overview-links,
.overview-link,
.leadership-line,
.status-panel,
.note-band,
.summary-panel,
.founder-panel,
.founder-meta,
.founder-copy {
  position: relative;
  z-index: 1;
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(440px, 1.04fr);
  gap: clamp(24px, 2vw, 40px);
  align-items: start;
}

.home-copy {
  display: grid;
  align-content: start;
}

.page-home .home-copy {
  max-width: 64rem;
}

.page-thesis .ambient-left {
  background: radial-gradient(circle, rgba(55, 182, 255, 0.24), transparent 68%);
}

.page-framework .ambient-left {
  background: radial-gradient(circle, rgba(55, 182, 255, 0.2), transparent 68%);
}

.page-framework .ambient-right {
  background: radial-gradient(circle, rgba(89, 217, 161, 0.24), transparent 70%);
}

.page-ecosystem .ambient-right {
  background: radial-gradient(circle, rgba(143, 227, 255, 0.22), transparent 70%);
}

.eyebrow,
.section-kicker,
.panel-label,
.card-index,
.nav-card-label,
.footer-note,
.note-band strong,
.quiet-card strong {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: rgba(237, 245, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 500;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "IBM Plex Serif", serif;
  font-weight: 600;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.4rem, 5.6vw, 5.9rem);
  line-height: 0.96;
  max-width: 12.5ch;
}

.page-home h1 {
  font-size: clamp(4.6rem, 6vw, 7.7rem);
  line-height: 0.93;
  max-width: 12.4ch;
}

.page-title {
  max-width: 27ch;
  font-size: clamp(2.9rem, 4vw, 4.65rem);
  line-height: 1;
}

.no-wrap {
  white-space: nowrap;
}

.hero-accent {
  display: inline;
  color: var(--accent-2);
}

.hero-text,
.page-lead,
.nav-card p,
.detail-card p,
.quiet-card p,
.panel-note,
.panel-intro,
.panel-callout p,
.note-band p,
.pane-footer p {
  margin: 0;
  line-height: 1.72;
  color: var(--muted);
}

.hero-text,
.page-lead {
  max-width: 68ch;
  font-size: clamp(1.01rem, 0.96vw, 1.08rem);
  line-height: 1.74;
}

.page-lead {
  max-width: 92ch;
  font-size: clamp(1.03rem, 0.98vw, 1.1rem);
}

.hero-text {
  margin-top: 20px;
  max-width: 68ch;
}

.overview-band-label,
.overview-link-label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237, 245, 255, 0.68);
}

.status-panel {
  min-height: 100%;
  overflow: hidden;
  padding: clamp(22px, 1.6vw, 28px);
  border-radius: 28px;
  border: 1px solid rgba(98, 130, 170, 0.28);
  background: linear-gradient(155deg, rgba(10, 21, 36, 0.98), rgba(14, 28, 48, 0.95));
  display: grid;
  gap: 14px;
  box-shadow:
    0 12px 28px rgba(3, 10, 19, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.status-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
  pointer-events: none;
}

.status-panel > * {
  position: relative;
  z-index: 1;
}

.panel-label,
.card-index,
.nav-card-label,
.note-band strong,
.quiet-card strong {
  display: block;
  font-size: 0.76rem;
  color: rgba(237, 245, 255, 0.72);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-row span {
  color: rgba(237, 245, 255, 0.72);
}

.panel-row strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  max-width: 18ch;
  line-height: 1.26;
  text-align: right;
}

.panel-note {
  margin-top: auto;
  color: rgba(237, 245, 255, 0.78);
}

.summary-panel .panel-callout {
  min-block-size: 108px;
  align-content: start;
}

.summary-panel .panel-callout p {
  font-size: 0.96rem;
  line-height: 1.62;
}

.panel-intro {
  max-width: 34ch;
  font-size: 0.98rem;
}

.hero-status-panel {
  background:
    linear-gradient(160deg, rgba(9, 20, 34, 0.99), rgba(14, 28, 47, 0.96));
}

.hero-status-panel::after {
  content: "";
  position: absolute;
  inset: auto 12% -28px 12%;
  height: 80px;
  background: linear-gradient(90deg, transparent, rgba(143, 227, 255, 0.1), transparent);
  filter: blur(12px);
  pointer-events: none;
}

.panel-callout {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(143, 227, 255, 0.14);
  background: linear-gradient(145deg, rgba(20, 36, 58, 0.94), rgba(12, 24, 42, 0.92));
  display: grid;
  gap: 8px;
}

.panel-callout-label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.page-home .status-panel {
  background:
    linear-gradient(160deg, rgba(9, 20, 34, 0.99), rgba(14, 28, 47, 0.96));
}

.signal-stage {
  display: grid;
  gap: 12px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(98, 130, 170, 0.22);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(11, 22, 38, 0.9), rgba(8, 18, 33, 0.74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 20px rgba(3, 10, 19, 0.08);
}

.signal-stage-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.signal-stage-label,
.signal-stage-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-stage-label {
  color: rgba(237, 245, 255, 0.7);
}

.signal-stage-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(143, 227, 255, 0.76);
}

.signal-stage-meta::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(143, 227, 255, 0.88);
  box-shadow: 0 0 0 6px rgba(143, 227, 255, 0.08);
}

.signal-stage-frame {
  position: relative;
  overflow: hidden;
  min-height: 196px;
  border: 1px solid rgba(98, 130, 170, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(8, 17, 30, 0.96), rgba(10, 21, 36, 0.82));
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.signal-stage-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(143, 227, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 227, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 100%);
  pointer-events: none;
}

.signal-stage-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(143, 227, 255, 0.08), transparent);
  transform: translateX(-110%);
  animation: sweep 8s linear infinite;
  will-change: transform;
  pointer-events: none;
}

.signal-stage-frame.is-reacting-signal::after {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(var(--react-color), 0.16),
      rgba(var(--react-color-warm), 0.1),
      transparent
    );
  animation-duration: 4.8s;
}

.signal-canvas {
  display: block;
  width: 100%;
  height: 196px;
}

.signal-stage-frame,
.micro-stage {
  --react-x: 50%;
  --react-y: 50%;
  --react-color: 143, 227, 255;
  --react-color-soft: 118, 196, 226;
  --react-color-warm: 167, 62, 58;
  -webkit-tap-highlight-color: transparent;
}

.signal-stage-frame:hover,
.micro-stage:hover {
  border-color: rgba(118, 196, 226, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(3, 10, 19, 0.12);
}

.signal-stage-frame.is-reacting,
.micro-stage.is-reacting,
.micro-stage.is-reacting-left,
.micro-stage.is-reacting-right {
  border-color: rgba(var(--react-color), 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 16px 30px rgba(3, 10, 19, 0.16),
    0 0 0 1px rgba(var(--react-color-soft), 0.1);
}

.signal-stage-frame,
.micro-stage,
.micro-framework-column,
.eco-node {
  cursor: pointer;
}

.signal-reactor,
.micro-reactor {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.signal-reactor::before,
.signal-reactor::after,
.micro-reactor::before,
.micro-reactor::after {
  content: "";
  position: absolute;
  left: var(--react-x);
  top: var(--react-y);
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.28);
  opacity: 0;
}

.signal-reactor::before,
.micro-reactor::before {
  width: 24px;
  height: 24px;
  background:
    radial-gradient(
      circle,
      rgba(243, 249, 255, 0.96) 0,
      rgba(var(--react-color), 0.46) 34%,
      rgba(var(--react-color), 0) 74%
    );
}

.signal-reactor::after,
.micro-reactor::after {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(var(--react-color), 0.64);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 24px rgba(var(--react-color-soft), 0.24),
    0 0 16px rgba(var(--react-color-warm), 0.12);
}

.signal-reactor.is-active::before,
.micro-reactor.is-active::before {
  animation: stageReactorFlash 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.signal-reactor.is-active::after,
.micro-reactor.is-active::after {
  animation: stageReactorRing 940ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.link-grid,
.detail-grid,
.quiet-strip,
.signal-strip {
  display: grid;
  gap: clamp(14px, 1.1vw, 20px);
}

.link-grid,
.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quiet-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.overview-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(16px, 2vw, 30px);
  padding: 18px 0 2px;
  border-top: 1px solid rgba(84, 122, 166, 0.18);
}

.overview-band-text {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.03rem, 1.05vw, 1.14rem);
  line-height: 1.75;
  max-width: 92ch;
}

.overview-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.2vw, 22px);
}

.overview-link {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 18px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(98, 130, 170, 0.24);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 26, 44, 0.9), rgba(10, 21, 36, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 22px rgba(3, 10, 19, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.overview-link::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(143, 227, 255, 0.9), transparent 75%);
  opacity: 0.56;
}

.overview-link::after {
  content: "->";
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(143, 227, 255, 0.6);
  pointer-events: none;
}

.overview-link:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 227, 255, 0.34);
  background: linear-gradient(180deg, rgba(17, 32, 54, 0.94), rgba(11, 22, 38, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 28px rgba(3, 10, 19, 0.18);
}

.overview-link-featured {
  border-color: rgba(143, 227, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(18, 34, 58, 0.95), rgba(10, 21, 36, 0.78));
}

.overview-link-title {
  font-size: clamp(1.42rem, 1.6vw, 1.78rem);
  line-height: 1.12;
}

.overview-link p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
  max-width: 32ch;
}

.leadership-line {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(84, 122, 166, 0.18);
  color: var(--muted);
  line-height: 1.68;
  max-width: 72ch;
}

.nav-card,
.detail-card,
.quiet-card,
.signal-tile,
.founder-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 1.4vw, 24px);
  border-radius: 24px;
  border: 1px solid rgba(98, 130, 170, 0.24);
  background: linear-gradient(180deg, rgba(16, 29, 49, 0.94), rgba(11, 22, 38, 0.84));
  display: grid;
  gap: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 22px rgba(3, 10, 19, 0.1);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.nav-card {
  min-height: 0;
}

.detail-card {
  min-height: 0;
}

.quiet-card {
  min-height: 0;
}

.nav-card:hover,
.detail-card:hover,
.quiet-card:hover,
.signal-tile:hover,
.founder-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 227, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 26px rgba(5, 12, 20, 0.18);
}

.nav-card-title,
.detail-card h2 {
  font-size: clamp(1.56rem, 1.7vw, 1.84rem);
  line-height: 1.04;
}

.page-head {
  display: grid;
  gap: 14px;
}

.split-head {
  grid-template-columns: minmax(0, 1.68fr) minmax(440px, 1.04fr);
  align-items: start;
  gap: clamp(22px, 2.4vw, 40px);
}

.page-head-copy {
  display: grid;
  gap: 14px;
  max-width: none;
  padding-right: clamp(4px, 0.8vw, 18px);
}

.summary-panel {
  min-height: 100%;
  min-block-size: clamp(316px, 24vw, 356px);
  overflow: hidden;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  padding: clamp(22px, 1.6vw, 28px);
  border-radius: 28px;
  border: 1px solid rgba(98, 130, 170, 0.28);
  display: grid;
  gap: 14px;
  box-shadow:
    0 12px 28px rgba(3, 10, 19, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  align-content: start;
  background:
    linear-gradient(160deg, rgba(9, 20, 34, 0.99), rgba(14, 28, 47, 0.96));
}

.summary-panel > * {
  position: relative;
  z-index: 1;
}

.summary-panel .panel-row,
.hero-status-panel .panel-row {
  gap: 16px;
}

.summary-panel .panel-row span,
.hero-status-panel .panel-row span {
  flex: 0 0 auto;
}

.summary-panel .panel-row strong,
.hero-status-panel .panel-row strong {
  max-width: none;
  flex: 1 1 auto;
}

.summary-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
  pointer-events: none;
}

.summary-panel::after {
  content: "";
  position: absolute;
  inset: auto 12% -28px 12%;
  height: 80px;
  background: linear-gradient(90deg, transparent, rgba(118, 196, 226, 0.1), transparent);
  filter: blur(12px);
  animation: panelGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.note-band {
  max-width: none;
  padding: clamp(22px, 1.8vw, 28px) clamp(22px, 2vw, 30px);
  border-radius: 24px;
  border: 1px solid rgba(143, 227, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(16, 31, 54, 0.96), rgba(12, 24, 42, 0.92));
  display: grid;
  gap: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 20px rgba(3, 10, 19, 0.08);
}

.micro-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 108px;
  border-radius: 24px;
  border: 1px solid rgba(98, 130, 170, 0.22);
  background:
    linear-gradient(180deg, rgba(11, 22, 38, 0.9), rgba(8, 18, 33, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 20px rgba(3, 10, 19, 0.08);
}

.micro-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 84%, transparent);
  pointer-events: none;
}

.micro-stage::after {
  content: "";
  position: absolute;
  inset: auto 10% -30px 10%;
  height: 72px;
  background: linear-gradient(90deg, transparent, rgba(118, 196, 226, 0.08), transparent);
  filter: blur(14px);
  animation: microStageGlow 6.4s ease-in-out infinite alternate;
  pointer-events: none;
}

.micro-stage-thesis {
  display: flex;
  align-items: center;
  padding: 20px 22px 18px;
  background:
    radial-gradient(circle at 22% 24%, rgba(118, 196, 226, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.92), rgba(8, 18, 33, 0.74));
}

.micro-thesis-scene {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 64px;
  margin-block: auto;
}

.thesis-stable-line,
.thesis-displaced-line,
.thesis-branch-line,
.thesis-threshold-line,
.thesis-threshold-glow {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transition:
    opacity 220ms ease,
    stroke 220ms ease,
    stroke-width 220ms ease,
    filter 220ms ease;
}

.thesis-stable-line {
  stroke: rgba(118, 196, 226, 0.52);
  stroke-width: 1.65;
  stroke-dasharray: 10 18;
  opacity: 0.76;
  animation: thesisStableFlow var(--stable-speed, 5.4s) linear infinite;
}

.stable-line-1 {
  --stable-speed: 5.8s;
}

.stable-line-2 {
  --stable-speed: 5.1s;
}

.stable-line-3 {
  --stable-speed: 5.5s;
}

.stable-line-4 {
  --stable-speed: 4.8s;
}

.thesis-displaced-line {
  stroke-width: 2;
  stroke-dasharray: 11 14;
  opacity: 0.94;
  filter: drop-shadow(0 0 7px rgba(118, 196, 226, 0.1));
  animation: thesisDisplacedFlow var(--displaced-speed, 3.8s) linear infinite;
}

.displaced-line-1 {
  --displaced-speed: 3.4s;
}

.displaced-line-2 {
  --displaced-speed: 4.2s;
}

.displaced-line-3 {
  --displaced-speed: 3.6s;
}

.displaced-line-4 {
  --displaced-speed: 4s;
}

.thesis-branch-line {
  stroke-width: 1.6;
  stroke-dasharray: 9 15;
  opacity: 0.82;
  animation: thesisBranchFlow var(--branch-speed, 3.4s) linear infinite;
}

.branch-line-1 {
  --branch-speed: 3.1s;
}

.branch-line-2 {
  --branch-speed: 3.6s;
}

.thesis-threshold-line {
  stroke: rgba(118, 196, 226, 0.82);
  stroke-width: 1.4;
  stroke-dasharray: 4 12;
  animation: thesisThresholdPulse 2.8s ease-in-out infinite;
}

.thesis-threshold-glow {
  stroke: rgba(118, 196, 226, 0.2);
  stroke-width: 14;
  filter: blur(8px);
  animation: thesisThresholdPulse 2.8s ease-in-out infinite;
}

.thesis-threshold-line.is-reacting {
  stroke: rgba(166, 232, 255, 0.98);
  stroke-width: 2.4;
}

.thesis-threshold-glow.is-reacting {
  stroke: rgba(143, 227, 255, 0.44);
  stroke-width: 24;
  filter: blur(13px);
}

.micro-stage-thesis.is-reacting-left .thesis-stable-line {
  opacity: 1;
}

.micro-stage-thesis.is-reacting-left .thesis-threshold-line {
  stroke: rgba(166, 232, 255, 0.96);
  stroke-width: 2.15;
}

.micro-stage-thesis.is-reacting-left .thesis-threshold-glow {
  stroke: rgba(143, 227, 255, 0.42);
  stroke-width: 24;
  filter: blur(13px);
}

.micro-stage-thesis.is-reacting-right .thesis-displaced-line,
.micro-stage-thesis.is-reacting-right .thesis-branch-line {
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(143, 227, 255, 0.18))
    drop-shadow(0 0 11px rgba(167, 62, 58, 0.12));
}

.micro-stage-thesis.is-reacting-right .thesis-displaced-line {
  stroke-width: 2.5;
}

.micro-stage-thesis.is-reacting-right .thesis-branch-line {
  stroke: rgba(166, 232, 255, 0.84);
}

.thesis-stable-line.is-reacting {
  opacity: 1;
  stroke-width: 1.95;
  filter: drop-shadow(0 0 10px rgba(143, 227, 255, 0.22));
}

.thesis-displaced-line.is-reacting,
.thesis-branch-line.is-reacting {
  opacity: 1;
  stroke-width: 2.22;
  filter: drop-shadow(0 0 12px rgba(143, 227, 255, 0.18))
    drop-shadow(0 0 10px rgba(167, 62, 58, 0.14));
}

.thesis-path-particle {
  pointer-events: none;
}

.thesis-path-particle-stable {
  fill: rgba(244, 249, 255, 0.98);
  filter: drop-shadow(0 0 10px rgba(143, 227, 255, 0.9));
}

.thesis-path-particle-displaced {
  fill: rgba(246, 250, 255, 0.98);
  filter: drop-shadow(0 0 11px rgba(143, 227, 255, 0.86))
    drop-shadow(0 0 10px rgba(167, 62, 58, 0.44));
}

.thesis-path-particle-branch {
  fill: rgba(230, 242, 255, 0.96);
  filter: drop-shadow(0 0 9px rgba(89, 217, 161, 0.82))
    drop-shadow(0 0 8px rgba(167, 62, 58, 0.3));
}

.thesis-node {
  fill: rgba(143, 227, 255, 0.96);
  transform-box: fill-box;
  transform-origin: center;
  animation: thesisNodePulse var(--node-speed, 2.6s) ease-in-out infinite;
}

.node-1 {
  --node-speed: 2.6s;
}

.node-2 {
  --node-speed: 2.2s;
  animation-delay: 0.3s;
}

.node-3 {
  --node-speed: 2.8s;
  animation-delay: 0.6s;
}

.node-4 {
  --node-speed: 2.4s;
  animation-delay: 0.9s;
}

.node-5 {
  --node-speed: 2.7s;
  animation-delay: 1.2s;
}

.micro-stage-framework {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  padding: 20px 22px 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(55, 182, 255, 0.09), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(89, 217, 161, 0.07), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(143, 227, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.92), rgba(8, 18, 33, 0.74));
}

.micro-stage-framework::after {
  background: linear-gradient(90deg, transparent, rgba(55, 182, 255, 0.06), rgba(89, 217, 161, 0.06), rgba(143, 227, 255, 0.05), transparent);
}

.micro-framework-midline {
  position: absolute;
  z-index: 0;
  left: 22px;
  right: 22px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(55, 182, 255, 0), rgba(89, 217, 161, 0.16), rgba(233, 240, 248, 0.42), rgba(89, 217, 161, 0.16), rgba(55, 182, 255, 0));
  box-shadow: 0 0 12px rgba(143, 227, 255, 0.09);
  animation: frameworkCenterPulse 4.8s ease-in-out infinite;
}

.micro-framework-column {
  position: relative;
  z-index: 1;
  min-height: 70px;
  --bar-left: 17%;
  --bar-right: 17%;
  --framework-burst: 0;
  --framework-burst-color: 143, 227, 255;
  background:
    linear-gradient(180deg, rgba(118, 196, 226, 0.1), rgba(233, 240, 248, 0.08) 48%, rgba(118, 196, 226, 0.08))
    50% 50% / 1px 82% no-repeat;
}

.micro-framework-column::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 10% 14% 10%;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(143, 227, 255, 0.12), rgba(89, 217, 161, 0.04)),
    radial-gradient(circle at 50% 50%, rgba(143, 227, 255, 0.12), transparent 72%);
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  pointer-events: none;
}

.micro-framework-column::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 2% 2%;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(var(--framework-burst-color), calc(var(--framework-burst) * 0.28)),
      rgba(var(--framework-burst-color), calc(var(--framework-burst) * 0.12)) 28%,
      rgba(var(--framework-burst-color), 0) 74%
    );
  opacity: calc(var(--framework-burst) * 0.96);
  transform: scaleY(calc(0.84 + var(--framework-burst) * 0.44))
    scaleX(calc(0.88 + var(--framework-burst) * 0.36));
  filter: blur(calc(8px + var(--framework-burst) * 10px));
  transition:
    opacity 120ms linear,
    transform 120ms linear,
    filter 120ms linear;
  pointer-events: none;
}

.micro-stage-framework.is-reacting .micro-framework-midline {
  box-shadow: 0 0 24px rgba(143, 227, 255, 0.22);
}

.micro-stage-framework.is-reacting-positive .micro-framework-midline {
  background: linear-gradient(90deg, rgba(55, 182, 255, 0), rgba(89, 217, 161, 0.22), rgba(233, 240, 248, 0.52), rgba(89, 217, 161, 0.22), rgba(55, 182, 255, 0));
  box-shadow: 0 0 26px rgba(89, 217, 161, 0.24);
}

.micro-stage-framework.is-reacting-negative .micro-framework-midline {
  background: linear-gradient(90deg, rgba(167, 62, 58, 0), rgba(216, 118, 104, 0.24), rgba(244, 212, 205, 0.5), rgba(216, 118, 104, 0.24), rgba(167, 62, 58, 0));
  box-shadow: 0 0 26px rgba(167, 62, 58, 0.24);
}

.micro-framework-column.is-reacting::before {
  opacity: 0.72;
  transform: scaleX(1.18);
}

.micro-framework-column.is-reacting-positive::before {
  background:
    linear-gradient(180deg, rgba(89, 217, 161, 0.2), rgba(55, 182, 255, 0.08)),
    radial-gradient(circle at 50% 50%, rgba(89, 217, 161, 0.18), transparent 72%);
}

.micro-framework-column.is-reacting-negative::before {
  background:
    linear-gradient(180deg, rgba(244, 212, 205, 0.08), rgba(167, 62, 58, 0.22)),
    radial-gradient(circle at 50% 50%, rgba(216, 118, 104, 0.18), transparent 72%);
}

.micro-framework-bar {
  position: absolute;
  left: var(--bar-left);
  right: var(--bar-right);
  height: 0;
  opacity: 0;
  border: 1px solid transparent;
  pointer-events: none;
  animation: none !important;
}

.micro-framework-bar-positive {
  bottom: 50%;
  border-radius: 14px 14px 4px 4px;
}

.micro-framework-bar-negative {
  top: 50%;
  border-radius: 4px 4px 14px 14px;
}

.micro-framework-spark {
  position: absolute;
  z-index: 2;
  left: calc(var(--bar-left) + 9%);
  right: calc(var(--bar-right) + 9%);
  top: 50%;
  height: 6px;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, rgba(89, 217, 161, 0.12), rgba(233, 240, 248, 0.82), rgba(55, 182, 255, 0.16));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 6px rgba(89, 217, 161, 0.05),
    0 0 12px rgba(55, 182, 255, 0.04);
  transform: translateY(-50%) scaleX(0.46);
  pointer-events: none;
  animation: none !important;
}

.micro-framework-column-1 {
  --bar-speed: 58s;
  --bar-delay: -17s;
  --bar-left: 19%;
  --bar-right: 15%;
  --up-deep-top: 1%;
  --up-mid-top: 11%;
  --up-light-top: 24%;
  --down-light-bottom: 27%;
  --down-mid-bottom: 13%;
  --down-deep-bottom: 4%;
}

.micro-framework-column-1::after {
  animation-name: frameworkBarOscillateA;
}

.micro-framework-column-1 .micro-framework-spark {
  animation-name: frameworkSparkOscillateA;
}

.micro-framework-column-2 {
  --bar-speed: 67s;
  --bar-delay: -41s;
  --bar-left: 16%;
  --bar-right: 18%;
  --up-deep-top: 14%;
  --up-mid-top: 24%;
  --up-light-top: 36%;
  --down-light-bottom: 21%;
  --down-mid-bottom: 7%;
  --down-deep-bottom: 1%;
}

.micro-framework-column-2::after {
  animation-name: frameworkBarOscillateB;
}

.micro-framework-column-2 .micro-framework-spark {
  animation-name: frameworkSparkOscillateB;
}

.micro-framework-column-3 {
  --bar-speed: 53s;
  --bar-delay: -9s;
  --bar-left: 20%;
  --bar-right: 14%;
  --up-deep-top: 3%;
  --up-mid-top: 14%;
  --up-light-top: 30%;
  --down-light-bottom: 33%;
  --down-mid-bottom: 18%;
  --down-deep-bottom: 6%;
}

.micro-framework-column-3::after {
  animation-name: frameworkBarOscillateC;
}

.micro-framework-column-3 .micro-framework-spark {
  animation-name: frameworkSparkOscillateC;
}

.micro-framework-column-4 {
  --bar-speed: 71s;
  --bar-delay: -54s;
  --bar-left: 17%;
  --bar-right: 17%;
  --up-deep-top: 20%;
  --up-mid-top: 31%;
  --up-light-top: 40%;
  --down-light-bottom: 26%;
  --down-mid-bottom: 10%;
  --down-deep-bottom: 2%;
}

.micro-framework-column-4::after {
  animation-name: frameworkBarOscillateD;
}

.micro-framework-column-4 .micro-framework-spark {
  animation-name: frameworkSparkOscillateD;
}

.micro-framework-column-5 {
  --bar-speed: 49s;
  --bar-delay: -27s;
  --bar-left: 15%;
  --bar-right: 20%;
  --up-deep-top: 2%;
  --up-mid-top: 8%;
  --up-light-top: 22%;
  --down-light-bottom: 35%;
  --down-mid-bottom: 17%;
  --down-deep-bottom: 5%;
}

.micro-framework-column-5::after {
  animation-name: frameworkBarOscillateA;
}

.micro-framework-column-5 .micro-framework-spark {
  animation-name: frameworkSparkOscillateA;
}

.micro-framework-column-6 {
  --bar-speed: 63s;
  --bar-delay: -33s;
  --bar-left: 18%;
  --bar-right: 16%;
  --up-deep-top: 12%;
  --up-mid-top: 23%;
  --up-light-top: 35%;
  --down-light-bottom: 23%;
  --down-mid-bottom: 7%;
  --down-deep-bottom: 1%;
}

.micro-framework-column-6::after {
  animation-name: frameworkBarOscillateB;
}

.micro-framework-column-6 .micro-framework-spark {
  animation-name: frameworkSparkOscillateB;
}

.micro-framework-column-7 {
  --bar-speed: 56s;
  --bar-delay: -12s;
  --bar-left: 16%;
  --bar-right: 19%;
  --up-deep-top: 5%;
  --up-mid-top: 17%;
  --up-light-top: 31%;
  --down-light-bottom: 25%;
  --down-mid-bottom: 13%;
  --down-deep-bottom: 4%;
}

.micro-framework-column-7::after {
  animation-name: frameworkBarOscillateD;
}

.micro-framework-column-7 .micro-framework-spark {
  animation-name: frameworkSparkOscillateD;
}

.micro-stage-ecosystem {
  display: flex;
  align-items: center;
  padding: 20px 22px 18px;
  background:
    radial-gradient(circle at 52% 72%, rgba(143, 227, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.92), rgba(8, 18, 33, 0.74));
}

.micro-stage-ecosystem::after {
  background: linear-gradient(90deg, transparent, rgba(143, 227, 255, 0.08), transparent);
}

.micro-eco-scene {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 60px;
  margin-block: auto;
}

.eco-path,
.eco-node-ring,
.eco-node-core {
  vector-effect: non-scaling-stroke;
}

.eco-path {
  fill: none;
  stroke: rgba(143, 227, 255, 0.48);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 5 13;
  opacity: 0.74;
  filter: drop-shadow(0 0 3px rgba(143, 227, 255, 0.08));
  animation: ecoPathDrift var(--eco-path-speed, 4s) linear infinite;
}

.eco-path-spine {
  --eco-path-speed: 4.6s;
}

.eco-path-lattice {
  --eco-path-speed: 4.05s;
}

.eco-path-cross {
  --eco-path-speed: 3.7s;
}

.eco-path-weave {
  --eco-path-speed: 4.15s;
}

.eco-path-secondary {
  opacity: 0.46;
}

.eco-node-tier {
  transform-box: fill-box;
  transform-origin: center;
  animation: none;
  opacity: 1;
}

.eco-node-ring {
  fill: rgba(18, 34, 58, 0.22);
  stroke: rgba(143, 227, 255, 0.3);
  stroke-width: 1.05;
  transition:
    fill 220ms ease,
    stroke 220ms ease,
    stroke-width 220ms ease;
}

.eco-node-ring-soft {
  fill: rgba(18, 34, 58, 0.16);
  stroke-opacity: 0.24;
}

.eco-node-core {
  fill: rgba(170, 236, 255, 0.96);
  stroke: rgba(223, 244, 255, 0.16);
  stroke-width: 0.65;
  transition: fill 220ms ease;
}

.eco-spark {
  animation: ecoSignalPulse 1.7s ease-in-out infinite;
  opacity: 0.92;
  transition:
    fill 220ms ease,
    filter 220ms ease,
    opacity 220ms ease;
}

.eco-node {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.micro-stage-ecosystem.is-reacting .eco-path {
  opacity: 0.94;
  filter: drop-shadow(0 0 7px rgba(143, 227, 255, 0.18));
}

.micro-stage-ecosystem.is-reacting-blue .eco-path {
  stroke: rgba(143, 227, 255, 0.62);
}

.micro-stage-ecosystem.is-reacting-green .eco-path {
  stroke: rgba(89, 217, 161, 0.58);
}

.micro-stage-ecosystem.is-reacting-red .eco-path {
  stroke: rgba(216, 118, 104, 0.56);
}

.eco-path.is-reacting {
  opacity: 0.98;
  stroke-width: 2.05;
  filter: drop-shadow(0 0 9px rgba(var(--react-color), 0.24));
}

.micro-stage-ecosystem.is-reacting .eco-spark {
  opacity: 1;
}

.eco-node.is-reacting {
  transform: scale(1.24);
  filter: drop-shadow(0 0 12px rgba(143, 227, 255, 0.28));
}

.eco-node.is-reacting .eco-node-ring {
  fill: rgba(22, 48, 76, 0.42);
  stroke: rgba(var(--react-color), 0.84);
  stroke-width: 1.58;
}

.eco-node.is-reacting .eco-node-core {
  fill: rgba(248, 252, 255, 0.98);
}

.micro-stage-ecosystem.is-reacting .eco-spark-blue {
  filter: drop-shadow(0 0 11px rgba(143, 227, 255, 0.84));
}

.micro-stage-ecosystem.is-reacting .eco-spark-green {
  filter: drop-shadow(0 0 11px rgba(89, 217, 161, 0.82));
}

.micro-stage-ecosystem.is-reacting .eco-spark-red {
  filter: drop-shadow(0 0 11px rgba(167, 62, 58, 0.8));
}

.eco-spark-blue {
  fill: rgba(191, 242, 255, 0.96);
  filter: drop-shadow(0 0 9px rgba(143, 227, 255, 0.72));
}

.eco-spark-green {
  fill: rgba(126, 228, 183, 0.94);
  filter: drop-shadow(0 0 9px rgba(89, 217, 161, 0.68));
}

.eco-spark-red {
  fill: rgba(216, 118, 104, 0.92);
  filter: drop-shadow(0 0 9px rgba(167, 62, 58, 0.64));
}

.eco-spark-main {
  opacity: 1;
}

.eco-spark-soft {
  opacity: 0.86;
}

.eco-path-particle {
  pointer-events: none;
}

.eco-path-particle-blue {
  fill: rgba(244, 249, 255, 0.98);
  filter: drop-shadow(0 0 12px rgba(143, 227, 255, 0.92));
}

.eco-path-particle-green {
  fill: rgba(201, 244, 225, 0.98);
  filter: drop-shadow(0 0 12px rgba(89, 217, 161, 0.9));
}

.eco-path-particle-red {
  fill: rgba(244, 212, 205, 0.96);
  filter: drop-shadow(0 0 12px rgba(167, 62, 58, 0.88));
}

.note-band::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 36%;
  height: 1px;
  background: linear-gradient(90deg, rgba(118, 196, 226, 0.78), transparent);
  transform-origin: left center;
  animation: notePulse 9s ease-in-out infinite;
  pointer-events: none;
}

.detail-card-featured {
  border-color: rgba(143, 227, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(18, 34, 58, 0.98), rgba(11, 22, 38, 0.88));
}

.founder-panel {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.founder-meta {
  display: grid;
  gap: 8px;
  align-content: start;
}

.founder-name {
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
}

.founder-title {
  margin: 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-copy {
  display: grid;
  gap: 12px;
}

.founder-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.signal-tile-label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.signal-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.inquiry-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(340px, 0.9fr);
  gap: clamp(18px, 1.4vw, 24px);
  align-items: start;
}

.inquiry-access-card,
.inquiry-protocol-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 1.7vw, 28px);
  border-radius: 28px;
  border: 1px solid rgba(98, 130, 170, 0.24);
  background:
    linear-gradient(180deg, rgba(16, 29, 49, 0.96), rgba(11, 22, 38, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(3, 10, 19, 0.12);
}

.inquiry-access-card::before,
.inquiry-protocol-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    radial-gradient(circle at 100% 0, rgba(143, 227, 255, 0.06), transparent 24%);
  pointer-events: none;
}

.inquiry-access-card > *,
.inquiry-protocol-card > * {
  position: relative;
  z-index: 1;
}

.inquiry-access-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.inquiry-access-card h2,
.inquiry-modal-copy h2 {
  color: var(--ink);
  font-size: clamp(1.95rem, 2.2vw, 2.58rem);
  line-height: 1.04;
}

.inquiry-access-text,
.inquiry-modal-copy p,
.form-footnote,
.form-status,
.inquiry-qualifier,
.inquiry-inline-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.inquiry-access-list {
  display: grid;
  gap: 12px;
}

.inquiry-access-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(98, 130, 170, 0.2);
  background:
    linear-gradient(180deg, rgba(11, 22, 38, 0.82), rgba(8, 18, 33, 0.68));
}

.inquiry-access-item span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237, 245, 255, 0.68);
}

.inquiry-access-item strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.42;
  color: var(--ink);
}

.inquiry-action-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.inquiry-qualifier {
  max-width: 42ch;
  font-size: 0.96rem;
}

.inquiry-inline-status {
  min-height: 1.5em;
  font-size: 0.95rem;
}

.inquiry-inline-status.is-success {
  color: rgba(126, 228, 183, 0.96);
}

.inquiry-inline-status.is-error {
  color: rgba(244, 212, 205, 0.96);
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.inquiry-form .field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inquiry-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry-form .field span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237, 245, 255, 0.72);
}

.inquiry-form .field input,
.inquiry-form .field select,
.inquiry-form .field textarea {
  width: 100%;
  appearance: none;
  padding: 13px 14px;
  border: 1px solid rgba(98, 130, 170, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(8, 17, 30, 0.98), rgba(10, 21, 36, 0.84));
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.inquiry-form .field input::placeholder,
.inquiry-form .field textarea::placeholder {
  color: rgba(154, 176, 205, 0.72);
}

.inquiry-form .field select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(143, 227, 255, 0.78) 50%),
    linear-gradient(135deg, rgba(143, 227, 255, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.inquiry-form .field textarea {
  min-height: 154px;
  resize: vertical;
}

.inquiry-form .field input:hover,
.inquiry-form .field select:hover,
.inquiry-form .field textarea:hover {
  border-color: rgba(118, 196, 226, 0.34);
}

.inquiry-form .field input:focus,
.inquiry-form .field select:focus,
.inquiry-form .field textarea:focus {
  outline: none;
  border-color: rgba(143, 227, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(10, 21, 36, 1), rgba(13, 26, 44, 0.92));
  box-shadow:
    0 0 0 3px rgba(143, 227, 255, 0.12),
    0 10px 18px rgba(3, 10, 19, 0.12);
}

.inquiry-form .field-wide {
  grid-column: 1 / -1;
}

.inquiry-form .field-honeypot {
  position: absolute;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.form-footnote {
  max-width: 46ch;
  font-size: 0.95rem;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 13px 18px;
  border: 1px solid rgba(118, 196, 226, 0.18);
  border-radius: 999px;
  background: linear-gradient(125deg, rgba(55, 182, 255, 0.96), rgba(118, 196, 226, 0.94));
  color: #071221;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 12px 24px rgba(30, 167, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease,
    opacity 160ms ease;
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 28px rgba(30, 167, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-primary:focus-visible {
  outline: 2px solid rgba(143, 227, 255, 0.78);
  outline-offset: 3px;
}

.button-primary:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  filter: saturate(0.86);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(98, 130, 170, 0.28);
  border-radius: 999px;
  background: rgba(10, 21, 36, 0.68);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 227, 255, 0.3);
  background: rgba(13, 26, 44, 0.84);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.form-status {
  min-height: 1.7em;
  padding: 0 2px;
  font-size: 0.96rem;
}

.form-status.is-success {
  color: rgba(126, 228, 183, 0.96);
}

.form-status.is-error {
  color: rgba(244, 212, 205, 0.96);
}

.inquiry-protocol-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  align-content: start;
}

.inquiry-protocol-card .panel-row {
  gap: 16px;
}

.inquiry-protocol-card .panel-row span {
  flex: 0 0 auto;
}

.inquiry-protocol-card .panel-row strong {
  max-width: none;
  flex: 1 1 auto;
  text-align: right;
}

.inquiry-modal {
  width: min(980px, calc(100% - 32px));
  max-width: none;
  margin: auto;
  padding: 0;
  border: 1px solid rgba(98, 130, 170, 0.24);
  border-radius: 32px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.inquiry-modal::backdrop {
  background:
    radial-gradient(circle at center, rgba(8, 18, 33, 0.58), rgba(6, 12, 20, 0.88));
  backdrop-filter: blur(10px);
}

.inquiry-modal-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2vw, 30px);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(12, 23, 39, 0.98), rgba(8, 16, 29, 0.96));
}

.inquiry-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 10%, rgba(55, 182, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), transparent 30%);
  pointer-events: none;
}

.inquiry-modal-panel > * {
  position: relative;
  z-index: 1;
}

.inquiry-modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.inquiry-modal-copy {
  display: grid;
  gap: 10px;
}

.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(98, 130, 170, 0.28);
  border-radius: 999px;
  background: rgba(10, 21, 36, 0.66);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.modal-close span {
  font-size: 1.7rem;
  line-height: 1;
}

.modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 227, 255, 0.34);
  background: rgba(12, 24, 42, 0.88);
}

.modal-close:focus-visible {
  outline: 2px solid rgba(143, 227, 255, 0.82);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pane-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(84, 122, 166, 0.2);
}

.pane-footer p:first-child {
  color: var(--ink);
}

.footer-note {
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 7px rgba(89, 217, 161, 0.14);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(89, 217, 161, 0.08);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(22px, -12px, 0) scale(1.06);
  }
}

@keyframes panelGlow {
  from {
    transform: translate3d(-6px, 0, 0) scale(0.96);
    opacity: 0.42;
  }

  to {
    transform: translate3d(10px, 6px, 0) scale(1.08);
    opacity: 0.82;
  }
}

@keyframes panelSweep {
  to {
    transform: translateX(112%);
  }
}

@keyframes stageReactorFlash {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.24);
  }

  16% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(9.4);
  }
}

@keyframes stageReactorRing {
  0% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.4);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(16.2);
  }
}

@keyframes thesisStableFlow {
  from {
    stroke-dashoffset: 0;
    opacity: 0.54;
  }

  50% {
    opacity: 0.88;
  }

  to {
    stroke-dashoffset: -84;
    opacity: 0.54;
  }
}

@keyframes thesisDisplacedFlow {
  from {
    stroke-dashoffset: 0;
    opacity: 0.76;
  }

  35% {
    opacity: 1;
  }

  to {
    stroke-dashoffset: -125;
    opacity: 0.76;
  }
}

@keyframes thesisBranchFlow {
  from {
    stroke-dashoffset: 0;
    opacity: 0.52;
  }

  45% {
    opacity: 0.94;
  }

  to {
    stroke-dashoffset: -72;
    opacity: 0.52;
  }
}

@keyframes thesisThresholdPulse {
  0%,
  100% {
    stroke-opacity: 0.46;
  }

  50% {
    stroke-opacity: 1;
  }
}

@keyframes thesisNodePulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.62;
  }

  45% {
    transform: scale(1.28);
    opacity: 1;
  }

  68% {
    transform: scale(1.06);
    opacity: 0.92;
  }
}

@keyframes frameworkCenterPulse {
  0%,
  100% {
    opacity: 0.34;
  }

  50% {
    opacity: 0.82;
  }
}

@keyframes frameworkBarOscillateA {
  0%,
  100% {
    top: 49.15%;
    bottom: 50%;
    opacity: 0.2;
    border-color: rgba(75, 178, 203, 0.12);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.1), rgba(55, 182, 255, 0.06)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.03),
      0 0 6px rgba(55, 182, 255, 0.05);
  }

  14% {
    top: var(--up-light-top);
    bottom: 50%;
    opacity: 0.52;
    border-color: rgba(75, 178, 203, 0.16);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.16), rgba(55, 182, 255, 0.08)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 8px rgba(55, 182, 255, 0.08);
  }

  29% {
    top: var(--up-deep-top);
    bottom: 50%;
    opacity: 0.9;
    border-color: rgba(89, 217, 161, 0.24);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.24), rgba(55, 182, 255, 0.14)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 12px rgba(89, 217, 161, 0.12),
      0 0 18px rgba(55, 182, 255, 0.1);
  }

  41% {
    top: var(--up-mid-top);
    bottom: 50%;
    opacity: 0.68;
  }

  47% {
    top: 49.55%;
    bottom: 50%;
    opacity: 0.14;
    border-color: rgba(75, 178, 203, 0.1);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.08), rgba(55, 182, 255, 0.05)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.02),
      0 0 4px rgba(55, 182, 255, 0.04);
  }

  50% {
    top: 49.85%;
    bottom: 50%;
    opacity: 0.08;
  }

  53% {
    top: 50%;
    bottom: 49.55%;
    opacity: 0.14;
    border-color: rgba(193, 90, 84, 0.1);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.06), rgba(167, 62, 58, 0.14)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.02),
      0 0 4px rgba(167, 62, 58, 0.04);
  }

  68% {
    top: 50%;
    bottom: var(--down-light-bottom);
    opacity: 0.56;
    border-color: rgba(193, 90, 84, 0.16);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.08), rgba(167, 62, 58, 0.22)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 8px rgba(167, 62, 58, 0.08);
  }

  84% {
    top: 50%;
    bottom: var(--down-deep-bottom);
    opacity: 0.9;
    border-color: rgba(210, 92, 86, 0.24);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.12), rgba(167, 62, 58, 0.34)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 12px rgba(167, 62, 58, 0.12),
      0 0 18px rgba(140, 38, 44, 0.1);
  }

  94% {
    top: 50%;
    bottom: var(--down-mid-bottom);
    opacity: 0.7;
  }
}

@keyframes frameworkBarOscillateB {
  0%,
  100% {
    top: 50%;
    bottom: 49.55%;
    opacity: 0.14;
    border-color: rgba(193, 90, 84, 0.1);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.06), rgba(167, 62, 58, 0.14)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.02),
      0 0 4px rgba(167, 62, 58, 0.04);
  }

  16% {
    top: 50%;
    bottom: var(--down-light-bottom);
    opacity: 0.56;
    border-color: rgba(193, 90, 84, 0.16);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.08), rgba(167, 62, 58, 0.22)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 8px rgba(167, 62, 58, 0.08);
  }

  31% {
    top: 50%;
    bottom: var(--down-deep-bottom);
    opacity: 0.92;
    border-color: rgba(210, 92, 86, 0.24);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.12), rgba(167, 62, 58, 0.34)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 12px rgba(167, 62, 58, 0.12),
      0 0 18px rgba(140, 38, 44, 0.1);
  }

  43% {
    top: 50%;
    bottom: var(--down-mid-bottom);
    opacity: 0.72;
  }

  47% {
    top: 50%;
    bottom: 49.55%;
    opacity: 0.14;
  }

  50% {
    top: 50%;
    bottom: 49.85%;
    opacity: 0.08;
  }

  53% {
    top: 49.55%;
    bottom: 50%;
    opacity: 0.14;
  }

  56% {
    top: 50%;
    bottom: 50%;
    opacity: 0.08;
  }

  69% {
    top: var(--up-light-top);
    bottom: 50%;
    opacity: 0.52;
    border-color: rgba(75, 178, 203, 0.16);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.16), rgba(55, 182, 255, 0.08)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 8px rgba(55, 182, 255, 0.08);
  }

  84% {
    top: var(--up-deep-top);
    bottom: 50%;
    opacity: 0.9;
    border-color: rgba(89, 217, 161, 0.24);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.24), rgba(55, 182, 255, 0.14)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 12px rgba(89, 217, 161, 0.12),
      0 0 18px rgba(55, 182, 255, 0.1);
  }

  94% {
    top: var(--up-mid-top);
    bottom: 50%;
    opacity: 0.68;
  }
}

@keyframes frameworkBarOscillateC {
  0%,
  100% {
    top: 49.05%;
    bottom: 50%;
    opacity: 0.18;
    border-color: rgba(75, 178, 203, 0.12);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.1), rgba(55, 182, 255, 0.06)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.03),
      0 0 5px rgba(55, 182, 255, 0.05);
  }

  11% {
    top: var(--up-mid-top);
    bottom: 50%;
    opacity: 0.62;
  }

  24% {
    top: var(--up-deep-top);
    bottom: 50%;
    opacity: 0.88;
    border-color: rgba(89, 217, 161, 0.24);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.24), rgba(55, 182, 255, 0.14)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 12px rgba(89, 217, 161, 0.12),
      0 0 18px rgba(55, 182, 255, 0.1);
  }

  37% {
    top: var(--up-light-top);
    bottom: 50%;
    opacity: 0.48;
  }

  46% {
    top: 49.55%;
    bottom: 50%;
    opacity: 0.12;
    border-color: rgba(75, 178, 203, 0.1);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.08), rgba(55, 182, 255, 0.05)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.02),
      0 0 4px rgba(55, 182, 255, 0.04);
  }

  50% {
    top: 49.85%;
    bottom: 50%;
    opacity: 0.07;
  }

  54% {
    top: 50%;
    bottom: 49.55%;
    opacity: 0.12;
    border-color: rgba(193, 90, 84, 0.1);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.06), rgba(167, 62, 58, 0.14)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.02),
      0 0 4px rgba(167, 62, 58, 0.04);
  }

  66% {
    top: 50%;
    bottom: var(--down-light-bottom);
    opacity: 0.54;
    border-color: rgba(193, 90, 84, 0.16);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.08), rgba(167, 62, 58, 0.22)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 8px rgba(167, 62, 58, 0.08);
  }

  81% {
    top: 50%;
    bottom: var(--down-deep-bottom);
    opacity: 0.9;
    border-color: rgba(210, 92, 86, 0.24);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.12), rgba(167, 62, 58, 0.34)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 12px rgba(167, 62, 58, 0.12),
      0 0 18px rgba(140, 38, 44, 0.1);
  }

  93% {
    top: 50%;
    bottom: var(--down-mid-bottom);
    opacity: 0.66;
  }
}

@keyframes frameworkBarOscillateD {
  0%,
  100% {
    top: 50%;
    bottom: 49.55%;
    opacity: 0.14;
    border-color: rgba(193, 90, 84, 0.1);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.06), rgba(167, 62, 58, 0.14)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.02),
      0 0 4px rgba(167, 62, 58, 0.04);
  }

  18% {
    top: 50%;
    bottom: var(--down-light-bottom);
    opacity: 0.5;
    border-color: rgba(193, 90, 84, 0.16);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.08), rgba(167, 62, 58, 0.22)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 8px rgba(167, 62, 58, 0.08);
  }

  33% {
    top: 50%;
    bottom: var(--down-deep-bottom);
    opacity: 0.9;
    border-color: rgba(210, 92, 86, 0.24);
    background:
      linear-gradient(180deg, rgba(210, 112, 98, 0.12), rgba(167, 62, 58, 0.34)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 12px rgba(167, 62, 58, 0.12),
      0 0 18px rgba(140, 38, 44, 0.1);
  }

  43% {
    top: 50%;
    bottom: var(--down-mid-bottom);
    opacity: 0.66;
  }

  47% {
    top: 50%;
    bottom: 49.55%;
    opacity: 0.14;
  }

  50% {
    top: 50%;
    bottom: 49.85%;
    opacity: 0.08;
  }

  53% {
    top: 49.55%;
    bottom: 50%;
    opacity: 0.14;
  }

  69% {
    top: var(--up-light-top);
    bottom: 50%;
    opacity: 0.5;
    border-color: rgba(75, 178, 203, 0.16);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.16), rgba(55, 182, 255, 0.08)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 8px rgba(55, 182, 255, 0.08);
  }

  84% {
    top: var(--up-deep-top);
    bottom: 50%;
    opacity: 0.88;
    border-color: rgba(89, 217, 161, 0.24);
    background:
      linear-gradient(180deg, rgba(89, 217, 161, 0.24), rgba(55, 182, 255, 0.14)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 0 12px rgba(89, 217, 161, 0.12),
      0 0 18px rgba(55, 182, 255, 0.1);
  }

  94% {
    top: var(--up-light-top);
    bottom: 50%;
    opacity: 0.56;
  }
}

@keyframes frameworkSparkOscillateA {
  0%,
  100% {
    top: 49.1%;
    opacity: 0.16;
    background: linear-gradient(90deg, rgba(89, 217, 161, 0.12), rgba(233, 240, 248, 0.82), rgba(55, 182, 255, 0.16));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 6px rgba(89, 217, 161, 0.05),
      0 0 12px rgba(55, 182, 255, 0.04);
    transform: translateY(-50%) scaleX(0.46);
  }

  14% {
    top: calc((var(--up-light-top) + 50%) / 2);
    opacity: 0.42;
    transform: translateY(-50%) scaleX(0.62);
  }

  29% {
    top: calc((var(--up-deep-top) + 50%) / 2);
    opacity: 0.84;
    background: linear-gradient(90deg, rgba(89, 217, 161, 0.18), rgba(233, 240, 248, 0.96), rgba(55, 182, 255, 0.24));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 10px rgba(89, 217, 161, 0.12),
      0 0 18px rgba(55, 182, 255, 0.1);
    transform: translateY(-50%) scaleX(0.84);
  }

  41% {
    top: calc((var(--up-mid-top) + 50%) / 2);
    opacity: 0.56;
    transform: translateY(-50%) scaleX(0.68);
  }

  47% {
    top: 50%;
    opacity: 0.08;
    transform: translateY(-50%) scaleX(0.42);
  }

  53% {
    top: 50%;
    opacity: 0.08;
    background: linear-gradient(90deg, rgba(210, 112, 98, 0.12), rgba(255, 235, 230, 0.82), rgba(167, 62, 58, 0.16));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 6px rgba(167, 62, 58, 0.05),
      0 0 12px rgba(140, 38, 44, 0.04);
    transform: translateY(-50%) scaleX(0.42);
  }

  68% {
    top: calc(75% - (var(--down-light-bottom) / 2));
    opacity: 0.42;
    transform: translateY(-50%) scaleX(0.62);
  }

  84% {
    top: calc(75% - (var(--down-deep-bottom) / 2));
    opacity: 0.84;
    background: linear-gradient(90deg, rgba(210, 112, 98, 0.18), rgba(255, 235, 230, 0.96), rgba(167, 62, 58, 0.24));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 10px rgba(167, 62, 58, 0.12),
      0 0 18px rgba(140, 38, 44, 0.1);
    transform: translateY(-50%) scaleX(0.84);
  }

  94% {
    top: calc(75% - (var(--down-mid-bottom) / 2));
    opacity: 0.56;
    transform: translateY(-50%) scaleX(0.68);
  }
}

@keyframes frameworkSparkOscillateB {
  0%,
  100% {
    top: 50%;
    opacity: 0.08;
    background: linear-gradient(90deg, rgba(210, 112, 98, 0.12), rgba(255, 235, 230, 0.82), rgba(167, 62, 58, 0.16));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 6px rgba(167, 62, 58, 0.05),
      0 0 12px rgba(140, 38, 44, 0.04);
    transform: translateY(-50%) scaleX(0.42);
  }

  16% {
    top: calc(75% - (var(--down-light-bottom) / 2));
    opacity: 0.4;
    transform: translateY(-50%) scaleX(0.62);
  }

  31% {
    top: calc(75% - (var(--down-deep-bottom) / 2));
    opacity: 0.84;
    background: linear-gradient(90deg, rgba(210, 112, 98, 0.18), rgba(255, 235, 230, 0.96), rgba(167, 62, 58, 0.24));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 10px rgba(167, 62, 58, 0.12),
      0 0 18px rgba(140, 38, 44, 0.1);
    transform: translateY(-50%) scaleX(0.84);
  }

  43% {
    top: calc(75% - (var(--down-mid-bottom) / 2));
    opacity: 0.54;
    transform: translateY(-50%) scaleX(0.68);
  }

  47% {
    top: 50%;
    opacity: 0.08;
    transform: translateY(-50%) scaleX(0.42);
  }

  53% {
    top: 50%;
    opacity: 0.08;
    background: linear-gradient(90deg, rgba(89, 217, 161, 0.12), rgba(233, 240, 248, 0.82), rgba(55, 182, 255, 0.16));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 6px rgba(89, 217, 161, 0.05),
      0 0 12px rgba(55, 182, 255, 0.04);
    transform: translateY(-50%) scaleX(0.42);
  }

  69% {
    top: calc((var(--up-light-top) + 50%) / 2);
    opacity: 0.4;
    transform: translateY(-50%) scaleX(0.62);
  }

  84% {
    top: calc((var(--up-deep-top) + 50%) / 2);
    opacity: 0.84;
    background: linear-gradient(90deg, rgba(89, 217, 161, 0.18), rgba(233, 240, 248, 0.96), rgba(55, 182, 255, 0.24));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 10px rgba(89, 217, 161, 0.12),
      0 0 18px rgba(55, 182, 255, 0.1);
    transform: translateY(-50%) scaleX(0.84);
  }

  94% {
    top: calc((var(--up-mid-top) + 50%) / 2);
    opacity: 0.56;
    transform: translateY(-50%) scaleX(0.68);
  }
}

@keyframes frameworkSparkOscillateC {
  0%,
  100% {
    top: 49.05%;
    opacity: 0.16;
    background: linear-gradient(90deg, rgba(89, 217, 161, 0.12), rgba(233, 240, 248, 0.82), rgba(55, 182, 255, 0.16));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 6px rgba(89, 217, 161, 0.05),
      0 0 12px rgba(55, 182, 255, 0.04);
    transform: translateY(-50%) scaleX(0.46);
  }

  11% {
    top: calc((var(--up-mid-top) + 50%) / 2);
    opacity: 0.5;
    transform: translateY(-50%) scaleX(0.66);
  }

  24% {
    top: calc((var(--up-deep-top) + 50%) / 2);
    opacity: 0.82;
    transform: translateY(-50%) scaleX(0.84);
  }

  37% {
    top: calc((var(--up-light-top) + 50%) / 2);
    opacity: 0.38;
    transform: translateY(-50%) scaleX(0.58);
  }

  46% {
    top: 50%;
    opacity: 0.08;
    transform: translateY(-50%) scaleX(0.42);
  }

  54% {
    top: 50%;
    opacity: 0.08;
    background: linear-gradient(90deg, rgba(210, 112, 98, 0.12), rgba(255, 235, 230, 0.82), rgba(167, 62, 58, 0.16));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 6px rgba(167, 62, 58, 0.05),
      0 0 12px rgba(140, 38, 44, 0.04);
    transform: translateY(-50%) scaleX(0.42);
  }

  66% {
    top: calc(75% - (var(--down-light-bottom) / 2));
    opacity: 0.4;
    transform: translateY(-50%) scaleX(0.62);
  }

  81% {
    top: calc(75% - (var(--down-deep-bottom) / 2));
    opacity: 0.84;
    transform: translateY(-50%) scaleX(0.84);
  }

  93% {
    top: calc(75% - (var(--down-mid-bottom) / 2));
    opacity: 0.56;
    transform: translateY(-50%) scaleX(0.68);
  }
}

@keyframes frameworkSparkOscillateD {
  0%,
  100% {
    top: 50%;
    opacity: 0.08;
    background: linear-gradient(90deg, rgba(210, 112, 98, 0.12), rgba(255, 235, 230, 0.82), rgba(167, 62, 58, 0.16));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 6px rgba(167, 62, 58, 0.05),
      0 0 12px rgba(140, 38, 44, 0.04);
    transform: translateY(-50%) scaleX(0.42);
  }

  18% {
    top: calc(75% - (var(--down-light-bottom) / 2));
    opacity: 0.38;
    transform: translateY(-50%) scaleX(0.6);
  }

  33% {
    top: calc(75% - (var(--down-deep-bottom) / 2));
    opacity: 0.82;
    background: linear-gradient(90deg, rgba(210, 112, 98, 0.18), rgba(255, 235, 230, 0.96), rgba(167, 62, 58, 0.24));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 10px rgba(167, 62, 58, 0.12),
      0 0 18px rgba(140, 38, 44, 0.1);
    transform: translateY(-50%) scaleX(0.84);
  }

  43% {
    top: calc(75% - (var(--down-mid-bottom) / 2));
    opacity: 0.54;
    transform: translateY(-50%) scaleX(0.68);
  }

  47% {
    top: 50%;
    opacity: 0.08;
    transform: translateY(-50%) scaleX(0.42);
  }

  53% {
    top: 50%;
    opacity: 0.08;
    background: linear-gradient(90deg, rgba(89, 217, 161, 0.12), rgba(233, 240, 248, 0.82), rgba(55, 182, 255, 0.16));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 6px rgba(89, 217, 161, 0.05),
      0 0 12px rgba(55, 182, 255, 0.04);
    transform: translateY(-50%) scaleX(0.42);
  }

  69% {
    top: calc((var(--up-light-top) + 50%) / 2);
    opacity: 0.38;
    transform: translateY(-50%) scaleX(0.6);
  }

  84% {
    top: calc((var(--up-deep-top) + 50%) / 2);
    opacity: 0.82;
    background: linear-gradient(90deg, rgba(89, 217, 161, 0.18), rgba(233, 240, 248, 0.96), rgba(55, 182, 255, 0.24));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 10px rgba(89, 217, 161, 0.12),
      0 0 18px rgba(55, 182, 255, 0.1);
    transform: translateY(-50%) scaleX(0.84);
  }

  94% {
    top: calc((var(--up-light-top) + 50%) / 2);
    opacity: 0.5;
    transform: translateY(-50%) scaleX(0.66);
  }
}

@keyframes vectorBreathe {
  0%,
  100% {
    transform: scaleY(0.82);
    opacity: 0.64;
  }

  50% {
    transform: scaleY(1.18);
    opacity: 1;
  }
}

@keyframes vectorSpark {
  0%,
  100% {
    transform: translateY(16px) scaleX(0.54);
    opacity: 0.08;
  }

  38% {
    transform: translateY(-8px) scaleX(1.06);
    opacity: 0.86;
  }

  62% {
    transform: translateY(-14px) scaleX(0.76);
    opacity: 0.42;
  }
}

@keyframes frameworkSweep {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }

  50% {
    transform: translateY(46px);
    opacity: 0.92;
  }
}

@keyframes scanTraverse {
  from {
    transform: translate(-8%, -50%);
    opacity: 0;
  }

  10%,
  82% {
    opacity: 0.92;
  }

  to {
    transform: translate(122%, -50%);
    opacity: 0;
  }
}

@keyframes ecoNodePulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.74;
  }

  42% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes ecoPathDrift {
  from {
    stroke-dashoffset: 0;
    opacity: 0.68;
  }

  50% {
    opacity: 1;
  }

  to {
    stroke-dashoffset: -76;
    opacity: 0.82;
  }
}

@keyframes ecoSignalPulse {
  0%,
  100% {
    opacity: 0.84;
  }

  48% {
    opacity: 1;
  }
}

@keyframes microStageGlow {
  from {
    transform: translateX(-14%) scaleX(0.84);
    opacity: 0.22;
  }

  to {
    transform: translateX(12%) scaleX(1.16);
    opacity: 0.82;
  }
}

@keyframes notePulse {
  0%,
  100% {
    transform: scaleX(0.42);
    opacity: 0.56;
  }

  50% {
    transform: scaleX(0.96);
    opacity: 0.92;
  }
}

@keyframes sweep {
  to {
    transform: translateX(110%);
  }
}

@media (min-width: 1440px) {
  .home-grid {
    grid-template-columns: minmax(0, 1.74fr) minmax(480px, 1.08fr);
  }

  .split-head {
    grid-template-columns: minmax(0, 1.74fr) minmax(480px, 1.08fr);
  }
}

@media (min-width: 1180px) {
  .summary-panel .panel-row span,
  .summary-panel .panel-row strong,
  .hero-status-panel .panel-row span,
  .hero-status-panel .panel-row strong {
    white-space: nowrap;
  }
}

@container (max-width: 980px) {
  .home-grid,
  .detail-grid,
  .quiet-strip,
  .inquiry-access-grid,
  .overview-band,
  .overview-links,
  .split-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 28px;
  }

  .site-nav {
    justify-self: start;
  }

  .topbar-status {
    justify-self: start;
  }

  .home-pane {
    min-height: 0;
  }

  .summary-panel {
    max-width: none;
    justify-self: stretch;
  }

  .home-grid,
  .link-grid,
  .detail-grid,
  .quiet-strip,
  .inquiry-access-grid,
  .signal-strip,
  .signal-stage-head,
  .overview-band,
  .overview-links,
  .split-head,
  .founder-panel {
    grid-template-columns: 1fr;
  }

  .overview-link {
    padding: 18px 18px 16px;
  }

  .signal-stage-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .inquiry-form .field-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-primary {
    width: 100%;
  }

  .inquiry-action-row,
  .inquiry-modal-head {
    grid-template-columns: 1fr;
  }

  .inquiry-modal {
    width: min(100% - 20px, 980px);
    border-radius: 26px;
  }

  .modal-close {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --brand-width: min(240px, 60vw);
  }

  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .brand-logo {
    width: 100%;
  }

  .site-nav {
    width: 100%;
  }

  .nav-link {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
  }

  .home-pane,
  .page-panel {
    padding: 22px;
    border-radius: 26px;
  }

  .signal-stage {
    padding: 16px;
  }

  .micro-stage {
    min-height: 96px;
  }

  .micro-stage-thesis {
    min-height: 96px;
    padding: 18px 16px 14px;
  }

  .micro-stage-framework {
    gap: 8px;
    padding: 18px 16px 14px;
  }

  .micro-stage-ecosystem {
    padding: 18px 16px 14px;
  }

  .micro-framework-midline {
    left: 16px;
    right: 16px;
  }

  .micro-framework-column {
    min-height: 56px;
  }

  .micro-thesis-scene {
    height: 56px;
  }

  .micro-eco-scene {
    height: 56px;
  }

  .signal-stage-frame,
  .signal-canvas {
    min-height: 156px;
    height: 156px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  .page-home h1 {
    font-size: clamp(3.1rem, 16vw, 4.9rem);
  }

  .page-title {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .nav-card-title,
  .detail-card h2 {
    font-size: 1.48rem;
  }

  .pane-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .inquiry-access-card,
  .inquiry-protocol-card {
    padding: 20px;
    border-radius: 24px;
  }

  .inquiry-access-card h2,
  .inquiry-modal-copy h2 {
    font-size: 1.72rem;
  }

  .inquiry-modal-panel {
    padding: 20px;
    border-radius: 26px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
