@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/Newsreader-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Roboto-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/RobotoMono-latin.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --g2-void: #07090f;
  --g2-field: #0d1119;
  --g2-surface: #121824;
  --g2-surface-2: #18202d;
  --g2-bone: #efe8db;
  --g2-bone-muted: #b9b1a4;
  --g2-bone-faint: #948d82;
  --g2-actual: #d7b65a;
  --g2-possible: #78a7e8;
  --g2-conjecture: #a58be2;
  --g2-evidence: #76ceb0;
  --g2-poison: #d97557;
  --g2-rule: #2b3341;
  --g2-rule-strong: #65748c;
  --g2-display: "Newsreader", Georgia, serif;
  --g2-sans: "Roboto", Arial, sans-serif;
  --g2-mono: "Roboto Mono", ui-monospace, monospace;
  --g2-page: min(1180px, calc(100vw - 40px));
  --g2-reading: 760px;
  --g2-nav-h: 72px;
  --g2-motion-fast: 160ms;
  --g2-motion-enter: 460ms;
  --g2-motion-draw: 760ms;
  --g2-ease-emerge: cubic-bezier(.16, 1, .3, 1);
}

html[data-gestalt="v2"] {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--g2-nav-h) + 20px);
  background: var(--g2-void);
}

html[data-gestalt="v2"],
html[data-gestalt="v2"] * {
  box-sizing: border-box;
}

body.g2-page {
  margin: 0;
  min-width: 280px;
  background: var(--g2-void);
  color: var(--g2-bone);
  font: 400 1rem/1.65 var(--g2-sans);
  text-rendering: optimizeLegibility;
}

.g2-page img,
.g2-page svg {
  max-width: 100%;
}

.g2-page a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in srgb, currentColor 55%, transparent);
}

.g2-page a:hover {
  text-decoration-color: currentColor;
}

.g2-page :focus-visible {
  outline: 3px solid var(--g2-evidence);
  outline-offset: 4px;
}

.g2-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--g2-bone);
  color: var(--g2-void) !important;
  transform: translateY(-160%);
}

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

.g2-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--g2-nav-h);
  border-bottom: 1px solid var(--g2-rule);
  margin: 0;
  padding: 0;
  background: rgba(7, 9, 15, 0.94);
  background: color-mix(in srgb, var(--g2-void) 94%, transparent);
  backdrop-filter: blur(16px);
}

.g2-nav__inner {
  width: var(--g2-page);
  min-height: var(--g2-nav-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.g2-brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  color: var(--g2-bone) !important;
  font: 650 0.9rem/1 var(--g2-mono);
  letter-spacing: 0.08em;
  text-decoration: none !important;
}

.g2-brand__mark {
  color: var(--g2-actual);
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.g2-nav__desktop {
  display: flex;
  align-items: center;
  gap: 2px;
}

.g2-nav__desktop a,
.g2-mobile__direct,
.g2-menu a,
.g2-menu summary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--g2-bone-muted);
  font: 560 0.78rem/1 var(--g2-mono);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.g2-nav a[data-current-section="true"],
.g2-nav a[aria-current="page"] {
  color: var(--g2-bone);
  box-shadow: inset 0 -2px var(--g2-actual);
}

.g2-nav__exit {
  margin-left: 6px;
  border: 1px solid var(--g2-rule-strong);
}

.g2-nav__mobile {
  display: none;
  align-items: center;
}

.g2-menu {
  position: relative;
}

.g2-menu summary {
  cursor: pointer;
  list-style: none;
}

.g2-menu summary::-webkit-details-marker {
  display: none;
}

.g2-menu summary::after {
  content: "+";
  margin-left: 8px;
  color: var(--g2-actual);
}

.g2-menu[open] summary::after {
  content: "−";
}

.g2-menu:not([open]) .g2-menu__panel {
  display: none;
}

.g2-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: min(290px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.g2-menu__panel a {
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid var(--g2-rule);
}

.g2-shell {
  width: var(--g2-page);
  margin-inline: auto;
}

.g2-reading {
  width: min(var(--g2-reading), calc(100vw - 40px));
  margin-inline: auto;
}

.g2-main {
  display: block;
}

.g2-page-hero {
  padding: clamp(76px, 11vw, 148px) 0 clamp(62px, 9vw, 112px);
  border-bottom: 1px solid var(--g2-rule);
}

.g2-page-hero h1 {
  max-width: 14ch;
  margin: 18px 0 24px;
  font-size: clamp(3.6rem, 8vw, 8.2rem);
  line-height: 0.91;
}

.g2-page-hero__lede {
  max-width: 66ch;
  margin: 0;
  color: var(--g2-bone-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.g2-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 34px;
  color: var(--g2-bone-faint);
  font: 550 0.69rem/1.6 var(--g2-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.g2-hero {
  min-height: calc(100svh - var(--g2-nav-h));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(38px, 7vw, 110px);
  padding: clamp(56px, 9vw, 122px) 0;
  border-bottom: 1px solid var(--g2-rule);
}

.g2-kicker,
.g2-eyebrow,
.g2-tier,
.g2-claim-id,
.g2-source,
.g2-legend {
  font: 600 0.72rem/1.6 var(--g2-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g2-kicker,
.g2-eyebrow {
  color: var(--g2-actual);
}

.g2-hero h1,
.g2-section h2,
.g2-page-title,
.g2-page h1,
.g2-page h2 {
  font-family: var(--g2-display);
  font-weight: 430;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.g2-hero h1 {
  margin: 18px 0 24px;
  max-width: 13ch;
  font-size: clamp(3.7rem, 7.3vw, 7.8rem);
  line-height: 0.9;
}

.g2-hero__lede {
  max-width: 54ch;
  margin: 0;
  color: var(--g2-bone-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.g2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.g2-actions--hero {
  margin: 0 0 28px;
}

.g2-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--g2-rule-strong);
  color: var(--g2-bone);
  font: 600 0.78rem/1 var(--g2-mono);
  letter-spacing: 0.04em;
  text-decoration: none !important;
}

.g2-page .g2-button--primary {
  border-color: var(--g2-actual);
  background: var(--g2-actual);
  color: var(--g2-void);
}

.g2-button:hover {
  border-color: var(--g2-bone);
}

.g2-action-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: var(--g2-bone-muted) !important;
  font: 600 0.76rem/1.35 var(--g2-mono);
  letter-spacing: 0.035em;
  text-decoration: underline !important;
  text-decoration-color: var(--g2-rule-strong) !important;
}

.g2-action-link:hover {
  color: var(--g2-bone) !important;
  text-decoration-color: var(--g2-actual) !important;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .g2-button,
  .g2-entry-door,
  .g2-rung,
  .g2-panel a,
  .g2-disclosure summary {
    transition:
      color var(--g2-motion-fast) ease,
      border-color var(--g2-motion-fast) ease,
      background-color var(--g2-motion-fast) ease,
      transform var(--g2-motion-fast) var(--g2-ease-emerge);
  }

  .g2-button:hover,
  .g2-entry-door:hover,
  .g2-rung:hover {
    transform: translateY(-2px);
  }
}

.g2-boundary-glyphs {
  margin-top: 38px;
  color: var(--g2-bone-faint);
  font: 500 1rem/1 var(--g2-mono);
  letter-spacing: 0.65em;
}

.g2-atlas {
  position: relative;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-atlas::before {
  content: "ONTOLOGICAL ATLAS · ONE PRESENT";
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 1;
  color: var(--g2-bone-faint);
  font: 600 0.64rem/1 var(--g2-mono);
  letter-spacing: 0.12em;
}

.g2-atlas svg {
  display: block;
  width: 100%;
  height: auto;
}

.g2-atlas__viewport {
  min-width: 0;
}

.g2-diagram-cue {
  display: none;
}

.g2-atlas .actual-line {
  stroke: var(--g2-actual);
  stroke-width: 3;
  fill: none;
}

.g2-atlas .possible-line {
  stroke: var(--g2-possible);
  stroke-width: 2;
  fill: none;
}

.g2-atlas .conjecture-line {
  stroke: var(--g2-conjecture);
  stroke-width: 2;
  stroke-dasharray: 9 8;
  fill: none;
}

.g2-atlas .evidence-line {
  stroke: var(--g2-evidence);
  stroke-width: 2;
  fill: none;
}

.g2-atlas .guide-line {
  stroke: var(--g2-rule-strong);
  stroke-width: 1;
  stroke-dasharray: 2 7;
}

.g2-atlas text {
  fill: var(--g2-bone-muted);
  font: 500 12px/1 var(--g2-mono);
}

.g2-atlas .label-actual { fill: var(--g2-actual); }
.g2-atlas .label-possible { fill: var(--g2-possible); }
.g2-atlas .label-conjecture { fill: var(--g2-conjecture); }
.g2-atlas .label-evidence { fill: var(--g2-evidence); }

@keyframes g2-boundary-settle {
  from { opacity: .28; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes g2-path-emerge {
  from { stroke-dashoffset: var(--g2-path-length); }
  to { stroke-dashoffset: 0; }
}

html[data-gestalt-motion="active"] [data-g2-reveal][data-g2-emergence="visible"]:not([data-g2-reveal="coins"]),
html[data-gestalt-motion="active"] [data-g2-reveal-group][data-g2-emergence="visible"] > [data-g2-reveal-item] {
  animation: g2-boundary-settle var(--g2-motion-enter) var(--g2-ease-emerge) both;
}

html[data-gestalt-motion="active"] [data-g2-reveal-group][data-g2-emergence="visible"] > [data-g2-reveal-item] {
  animation-delay: calc(var(--g2-order, 0) * 40ms);
}

html[data-gestalt-motion="active"] [data-g2-reveal][data-g2-emergence="visible"]:focus-within,
html[data-gestalt-motion="active"] [data-g2-reveal-group][data-g2-emergence="visible"] > [data-g2-reveal-item]:focus-within {
  animation: none;
  opacity: 1;
  transform: none;
}

html[data-gestalt-motion="active"] [data-g2-draw][data-g2-emergence="visible"] [data-g2-path] {
  stroke-dasharray: var(--g2-path-length);
  animation: g2-path-emerge var(--g2-motion-draw) var(--g2-ease-emerge) both;
  animation-delay: calc(var(--g2-path-order, 0) * 70ms);
}

.g2-atlas__caption {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 8px 18px;
  padding: 15px 18px;
  border-top: 1px solid var(--g2-rule);
  color: var(--g2-bone-faint);
  font: 500 0.66rem/1.5 var(--g2-mono);
}

.g2-key::before {
  content: "";
  width: 24px;
  display: inline-block;
  margin-right: 8px;
  border-top: 2px solid currentColor;
  vertical-align: middle;
}

.g2-key--actual { color: var(--g2-actual); }
.g2-key--possible { color: var(--g2-possible); }
.g2-key--conjecture { color: var(--g2-conjecture); }
.g2-key--conjecture::before { border-top-style: dashed; }
.g2-key--evidence { color: var(--g2-evidence); }

.g2-section {
  padding: clamp(76px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--g2-rule);
}

.g2-section[id] {
  scroll-margin-top: calc(var(--g2-nav-h) + 72px);
}

.g2-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 48px;
}

.g2-section h2 {
  max-width: 15ch;
  margin: 8px 0 0;
  font-size: clamp(2.7rem, 5.7vw, 5.9rem);
  line-height: 0.98;
}

.g2-section__intro {
  max-width: 52ch;
  color: var(--g2-bone-muted);
  margin: 0;
}

.g2-prose {
  width: min(var(--g2-reading), 100%);
}

.g2-prose > *:first-child { margin-top: 0; }
.g2-prose > *:last-child { margin-bottom: 0; }

.g2-prose p,
.g2-prose li {
  color: var(--g2-bone-muted);
}

.g2-prose p {
  margin: 0 0 1.35em;
}

.g2-prose strong { color: var(--g2-bone); }

.g2-prose h3 {
  margin: 2.2em 0 0.65em;
  font: 430 clamp(1.85rem, 3.8vw, 3rem)/1.04 var(--g2-display);
  letter-spacing: -0.025em;
}

.g2-prose code,
.g2-page code {
  color: var(--g2-evidence);
  font-family: var(--g2-mono);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.g2-page .src {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.g2-definition-list {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  border-top: 1px solid var(--g2-rule);
}

.g2-definition-list dt,
.g2-definition-list dd {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--g2-rule);
}

.g2-definition-list dt {
  padding-right: 24px;
  color: var(--g2-bone);
  font: 600 0.72rem/1.55 var(--g2-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.g2-definition-list dd { color: var(--g2-bone-muted); }

.g2-disclosure {
  border-top: 1px solid var(--g2-rule-strong);
  border-bottom: 1px solid var(--g2-rule-strong);
}

.g2-disclosure details {
  border-bottom: 1px solid var(--g2-rule);
}

.g2-disclosure details:last-child { border-bottom: 0; }

.g2-disclosure summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 4px;
  cursor: pointer;
  color: var(--g2-bone);
  font: 600 0.76rem/1.4 var(--g2-mono);
  letter-spacing: 0.04em;
}

.g2-disclosure summary::after {
  content: "+";
  color: var(--g2-actual);
  font-size: 1.2rem;
}

.g2-disclosure details[open] summary::after { content: "−"; }
.g2-disclosure details > :not(summary) { max-width: 72ch; }

.g2-reference-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--g2-rule);
}

.g2-reference-list a {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(170px, 0.38fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--g2-rule);
  text-decoration: none;
}

.g2-reference-list strong { font: 600 0.74rem/1.5 var(--g2-mono); }
.g2-reference-list span { color: var(--g2-bone-muted); }

.g2-spine {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--g2-rule-strong);
  border-bottom: 1px solid var(--g2-rule-strong);
}

.g2-rung {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 18px 14px 22px;
  border-right: 1px solid var(--g2-rule);
  text-decoration: none !important;
}

.g2-rung:last-child { border-right: 0; }
.g2-rung:hover { background: var(--g2-field); }

.g2-rung__id {
  color: var(--g2-actual);
  font: 650 0.72rem/1 var(--g2-mono);
}

.g2-rung:nth-child(6) .g2-rung__id { color: var(--g2-possible); }
.g2-rung:nth-child(7) .g2-rung__id { color: var(--g2-bone-faint); }

.g2-rung strong {
  margin-top: auto;
  font: 420 clamp(1.2rem, 1.8vw, 1.65rem)/1.08 var(--g2-display);
}

.g2-rung small {
  margin-top: 10px;
  color: var(--g2-bone-faint);
  font: 500 0.68rem/1.45 var(--g2-mono);
}

.g2-force-grid,
.g2-fork,
.g2-practice-grid,
.g2-research-grid,
.g2-meta-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--g2-rule);
  background: var(--g2-rule);
}

.g2-force-grid { grid-template-columns: repeat(4, 1fr); }
.g2-fork { grid-template-columns: repeat(3, 1fr); }
.g2-practice-grid { grid-template-columns: repeat(2, 1fr); }
.g2-research-grid { grid-template-columns: repeat(3, 1fr); }
.g2-meta-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }

.g2-panel {
  min-width: 0;
  padding: clamp(22px, 3vw, 38px);
  background: var(--g2-field);
}

.g2-panel h3 {
  margin: 16px 0 12px;
  font: 430 clamp(1.7rem, 2.8vw, 2.65rem)/1.05 var(--g2-display);
  letter-spacing: -0.025em;
}

.g2-panel p,
.g2-panel li {
  color: var(--g2-bone-muted);
}

.g2-panel ul {
  padding-left: 1.2rem;
}

.g2-panel--actual { box-shadow: inset 0 3px var(--g2-actual); }
.g2-panel--possible { box-shadow: inset 0 3px var(--g2-possible); }
.g2-panel--conjecture { box-shadow: inset 0 3px var(--g2-conjecture); }
.g2-panel--evidence { box-shadow: inset 0 3px var(--g2-evidence); }

.g2-transaction-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-rule);
  gap: 1px;
}

.g2-transaction-board {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--g2-rule);
}

.g2-transaction-board::before,
.g2-transaction-board::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.g2-transaction-board::before {
  inset: 50% 0 auto;
  border-top: 1px solid var(--g2-rule-strong);
}

.g2-transaction-board::after {
  inset: 0 auto 0 50%;
  border-left: 1px solid var(--g2-rule-strong);
}

.g2-transaction-sector {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 38px);
  background: var(--g2-field);
}

.g2-transaction-sector--possible {
  background: color-mix(in srgb, var(--g2-possible) 8%, var(--g2-field));
}

.g2-transaction-sector--actual {
  background: color-mix(in srgb, var(--g2-actual) 7%, var(--g2-field));
}

.g2-transaction-sector span,
.g2-transaction-sector small {
  color: var(--g2-bone-faint);
  font: 550 0.66rem/1.5 var(--g2-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.g2-transaction-sector strong {
  margin: 8px 0;
  color: var(--g2-bone);
  font: 430 clamp(1.25rem, 2.1vw, 2rem)/1.05 var(--g2-display);
}

.g2-transaction-coin {
  --coin-size: clamp(58px, 7vw, 82px);
  position: absolute;
  z-index: 3;
  left: var(--coin-x);
  top: var(--coin-y);
  width: var(--coin-size);
  height: var(--coin-size);
  display: grid;
  place-items: center;
  translate: -50% -50%;
  border: 1px solid var(--g2-evidence);
  border-radius: 50%;
  background: color-mix(in srgb, var(--g2-evidence) 15%, var(--g2-void));
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--g2-evidence) 5%, transparent);
  color: var(--g2-bone);
  font: 600 0.62rem/1 var(--g2-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: none;
}

html[data-gestalt-motion="active"] [data-g2-reveal="coins"][data-g2-emergence="visible"] .g2-transaction-coin {
  animation: g2-coin-arrive 700ms var(--g2-ease-emerge) both;
  animation-delay: var(--coin-delay);
}

@keyframes g2-coin-arrive {
  from { opacity: 0; transform: translateY(-110px) rotate(-32deg) scale(.8); }
  to { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

.g2-transaction-packet {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px);
  background: var(--g2-field);
}

.g2-transaction-packet dl {
  margin: 24px 0;
  border-top: 1px solid var(--g2-rule);
}

.g2-transaction-packet dl > div { display: contents; }
.g2-transaction-packet dt,
.g2-transaction-packet dd {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--g2-rule);
}
.g2-transaction-packet dt {
  float: left;
  clear: left;
  width: 35%;
  color: var(--g2-bone-faint);
  font: 600 0.66rem/1.5 var(--g2-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.g2-transaction-packet dd {
  padding-left: 38%;
  color: var(--g2-bone-muted);
}

.g2-transaction-packet p { color: var(--g2-bone-muted); }

.g2-transaction-boundary {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin: 8px 0 24px;
  padding: 15px;
  border: 1px solid var(--g2-rule-strong);
  color: var(--g2-bone-faint);
  font: 550 0.63rem/1.45 var(--g2-mono);
  text-align: center;
  text-transform: uppercase;
}

.g2-transaction-boundary strong { color: var(--g2-actual); }

.g2-tier--actual { color: var(--g2-actual); }
.g2-tier--possible { color: var(--g2-possible); }
.g2-tier--conjecture { color: var(--g2-conjecture); }
.g2-tier--evidence { color: var(--g2-evidence); }

.g2-branch-test {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--g2-rule);
}

.g2-branch-test dt {
  margin-top: 12px;
  color: var(--g2-bone-faint);
  font: 600 0.67rem/1.4 var(--g2-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g2-branch-test dd {
  margin: 4px 0 0;
  color: var(--g2-bone-muted);
}

.g2-equation {
  overflow-x: auto;
  margin: 34px 0 0;
  padding: 20px;
  border-left: 3px solid var(--g2-conjecture);
  background: var(--g2-field);
  color: var(--g2-bone);
  font: 500 clamp(0.78rem, 1.4vw, 1rem)/1.6 var(--g2-mono);
  white-space: nowrap;
}

.g2-ledger-wrap {
  overflow-x: auto;
  border: 1px solid var(--g2-rule);
}

.g2-ledger {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--g2-field);
}

.g2-ledger th,
.g2-ledger td {
  padding: 16px 14px;
  border-right: 1px solid var(--g2-rule);
  border-bottom: 1px solid var(--g2-rule);
  text-align: left;
  vertical-align: top;
}

.g2-ledger th {
  color: var(--g2-bone-faint);
  font: 600 0.67rem/1.4 var(--g2-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.g2-ledger td {
  color: var(--g2-bone-muted);
}

.g2-loop {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--g2-rule);
}

.g2-loop span {
  position: relative;
  min-width: 0;
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border-right: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font: 550 0.75rem/1.4 var(--g2-mono);
}

.g2-loop span:last-child { border-right: 0; }
.g2-loop--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g2-loop--compact span:nth-child(4) { border-right: 0; }
.g2-loop--compact span:nth-child(-n + 4) { border-bottom: 1px solid var(--g2-rule); }
.g2-loop--compact span:last-child { grid-column: span 2; }
.g2-loop span::before {
  content: attr(data-step);
  position: absolute;
  top: 12px;
  left: 14px;
  color: var(--g2-evidence);
}

.g2-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--g2-actual);
  background: var(--g2-field);
  color: var(--g2-bone-muted);
}

.g2-note--conjecture { border-left-color: var(--g2-conjecture); }
.g2-note--evidence { border-left-color: var(--g2-evidence); }

/* Third Churning: a visible audit seam, never a decorative truth machine. */
.g2-churn-seam {
  margin: 0;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-churn-seam > figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font-size: 0.8rem;
}

.g2-churn-seam > figcaption strong {
  color: var(--g2-bone);
  font: 650 0.72rem/1.4 var(--g2-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g2-churn-seam__track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--g2-rule-strong);
  list-style: none;
}

.g2-churn-step {
  position: relative;
  min-width: 0;
  min-height: 130px;
  padding: 46px 14px 18px;
  border-right: 1px solid var(--g2-rule);
}

.g2-churn-step:last-child { border-right: 0; }

.g2-churn-step::before {
  content: attr(data-step);
  position: absolute;
  top: 15px;
  left: 14px;
  color: var(--g2-evidence);
  font: 650 0.65rem/1 var(--g2-mono);
}

.g2-churn-step strong,
.g2-churn-step span {
  display: block;
  overflow-wrap: anywhere;
}

.g2-churn-step strong {
  color: var(--g2-bone);
  font: 650 0.72rem/1.35 var(--g2-mono);
  text-transform: uppercase;
}

.g2-churn-step span {
  margin-top: 8px;
  color: var(--g2-bone-faint);
  font-size: 0.75rem;
}

.g2-churn-branch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--g2-rule);
}

.g2-churn-branch > article {
  min-width: 0;
  padding: clamp(24px, 4vw, 46px);
  background: var(--g2-surface);
}

.g2-churn-branch > article > span,
.g2-drop__meta {
  color: var(--g2-bone-faint);
  font: 650 0.65rem/1.4 var(--g2-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.g2-churn-branch h3 {
  margin: 14px 0 10px;
  font: 430 clamp(1.75rem, 3vw, 2.8rem)/1.05 var(--g2-display);
}

.g2-churn-branch p { color: var(--g2-bone-muted); }
.g2-churn-branch--survivor { box-shadow: inset 4px 0 var(--g2-evidence); }
.g2-churn-branch--survivor h3 { color: var(--g2-evidence); }
.g2-churn-branch--poison { box-shadow: inset 4px 0 var(--g2-poison); }
.g2-churn-branch--poison h3 { color: var(--g2-poison); }

.g2-churn-maxim {
  margin: 28px 0 0;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--g2-rule-strong);
  border-left: 4px solid var(--g2-actual);
  background: var(--g2-void);
}

.g2-churn-maxim p {
  margin: 0;
  color: var(--g2-bone);
  font: 430 clamp(1.75rem, 3.5vw, 3rem)/1.08 var(--g2-display);
}

.g2-churn-maxim footer {
  margin-top: 14px;
  color: var(--g2-bone-faint);
  font: 600 0.65rem/1.45 var(--g2-mono);
}

.g2-drop-ledger {
  display: grid;
  gap: 14px;
}

.g2-drop {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--g2-rule);
  background: var(--g2-field);
}

.g2-drop--survivor { box-shadow: inset 4px 0 var(--g2-evidence); }
.g2-drop--poison { box-shadow: inset 4px 0 var(--g2-poison); }

.g2-drop h2,
.g2-drop h3 {
  margin: 12px 0;
  color: var(--g2-bone);
  font: 430 clamp(1.45rem, 2.4vw, 2.2rem)/1.08 var(--g2-display);
}

.g2-drop p,
.g2-drop dd { color: var(--g2-bone-muted); }

.g2-drop__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--g2-rule);
  background: var(--g2-rule);
}

.g2-drop__grid > * {
  min-width: 0;
  margin: 0;
  padding: 16px;
  background: var(--g2-surface);
}

.g2-drop details {
  margin-top: 18px;
  border-top: 1px solid var(--g2-rule);
}

.g2-drop summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--g2-bone);
  cursor: pointer;
  font: 650 0.7rem/1.4 var(--g2-mono);
}

.g2-corpus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

/* V2.1 ontological-atlas components. Every diagram retains visible text so
   layout, colour, and line style remain supplementary rather than semantic. */
.g2-local-nav {
  position: sticky;
  top: var(--g2-nav-h);
  z-index: 80;
  border-bottom: 1px solid var(--g2-rule);
  background: var(--g2-field);
}

.g2-local-nav__inner {
  width: var(--g2-page);
  min-height: 58px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
}

.g2-local-nav__label {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--g2-rule);
  color: var(--g2-bone-faint);
  font: 600 0.65rem/1.4 var(--g2-mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.g2-local-nav__links {
  min-width: 0;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.g2-local-nav__links a {
  min-width: max-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--g2-bone-muted);
  font: 560 0.7rem/1.35 var(--g2-mono);
  text-decoration: none;
}

.g2-local-nav__links a:hover,
.g2-local-nav__links a[aria-current] {
  color: var(--g2-bone);
  box-shadow: inset 0 -2px var(--g2-actual);
}

.g2-thesis-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-thesis-band__thesis,
.g2-thesis-band__fence {
  min-width: 0;
  padding: clamp(24px, 4vw, 48px);
}

.g2-thesis-band__thesis {
  box-shadow: inset 4px 0 var(--g2-actual);
}

.g2-thesis-band__fence {
  border-left: 1px solid var(--g2-rule-strong);
  background: var(--g2-surface);
}

.g2-thesis-band__label {
  display: block;
  margin-bottom: 14px;
  color: var(--g2-actual);
  font: 650 0.67rem/1.4 var(--g2-mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.g2-thesis-band__fence .g2-thesis-band__label {
  color: var(--g2-evidence);
}

.g2-thesis-band__statement {
  max-width: 28ch;
  margin: 0;
  color: var(--g2-bone);
  font: 430 clamp(1.8rem, 3.8vw, 3.45rem)/1.04 var(--g2-display);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.g2-thesis-band__fence p {
  max-width: 44ch;
  margin: 0;
  color: var(--g2-bone-muted);
}

.g2-thesis-band a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.g2-g7 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.g2-g7__plane {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-rule-strong);
}

.g2-g7__plane::before,
.g2-g7__plane::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: var(--g2-bone-faint);
  opacity: 0.55;
}

.g2-g7__plane::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.g2-g7__plane::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.g2-g7__quadrant {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 32px);
  background: var(--g2-field);
}

.g2-g7__quadrant--possible {
  box-shadow: inset 0 3px var(--g2-possible);
}

.g2-g7__quadrant--actual {
  box-shadow: inset 0 3px var(--g2-actual);
}

.g2-g7__family,
.g2-g7__signature,
.g2-g7__bearer {
  font-family: var(--g2-mono);
}

.g2-g7__family {
  color: var(--g2-bone);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.g2-g7__signature {
  margin-top: auto;
  padding-top: 30px;
  color: var(--g2-bone-muted);
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  overflow-wrap: anywhere;
}

.g2-g7__bearer {
  margin-top: 10px;
  color: var(--g2-bone-faint);
  font-size: 0.66rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.g2-g7__legend {
  align-self: start;
  padding: 22px;
  border-top: 1px solid var(--g2-rule-strong);
  border-bottom: 1px solid var(--g2-rule-strong);
}

.g2-g7__legend p {
  margin: 0 0 14px;
  color: var(--g2-bone-muted);
}

.g2-g7__legend p:last-child { margin-bottom: 0; }

.g2-titan-axis {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  justify-items: center;
  padding: 18px 0;
}

.g2-titan-axis::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 50%;
  width: 1px;
  background: var(--g2-rule-strong);
}

.g2-titan-axis::after {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(50% - 4px);
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--g2-rule-strong);
  border-left: 1px solid var(--g2-rule-strong);
  transform: rotate(45deg);
}

.g2-titan-axis__station {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100% - 28px));
  min-height: 96px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-titan-axis__station--bottom {
  grid-row: 3;
  align-self: end;
}

.g2-titan-axis__station--centre {
  grid-row: 2;
  align-self: center;
  border-color: var(--g2-evidence);
}

.g2-titan-axis__station--top {
  grid-row: 1;
  align-self: start;
}

.g2-titan-axis__glyph {
  color: var(--g2-actual);
  font: 500 1.4rem/1 var(--g2-mono);
  text-align: center;
}

.g2-titan-axis__station--centre .g2-titan-axis__glyph {
  color: var(--g2-evidence);
}

.g2-titan-axis__name {
  display: block;
  color: var(--g2-bone);
  font: 650 0.72rem/1.4 var(--g2-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.g2-titan-axis__function {
  display: block;
  margin-top: 5px;
  color: var(--g2-bone-muted);
  font-size: 0.86rem;
}

.g2-provenance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 14px 0;
  border-top: 1px solid var(--g2-rule);
  border-bottom: 1px solid var(--g2-rule);
  color: var(--g2-bone-faint);
  font: 550 0.65rem/1.45 var(--g2-mono);
}

.g2-provenance__item {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  overflow-wrap: anywhere;
}

.g2-provenance__label {
  color: var(--g2-bone-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g2-provenance a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--g2-bone-muted);
}

.g2-tier-label {
  --g2-tier-color: var(--g2-bone-muted);
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 8px;
  border: 1px solid var(--g2-tier-color);
  color: var(--g2-tier-color);
  font: 650 0.63rem/1 var(--g2-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.g2-tier-label--a,
.g2-tier-label--s,
.g2-tier-label--b { --g2-tier-color: var(--g2-evidence); }
.g2-tier-label--i { --g2-tier-color: var(--g2-possible); }
.g2-tier-label--c { --g2-tier-color: var(--g2-conjecture); border-style: dashed; }
.g2-tier-label--d { --g2-tier-color: var(--g2-bone-faint); }

.g2-research-sockets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 1px;
  border: 1px solid var(--g2-rule);
  background: var(--g2-rule);
}

.g2-research-socket {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--g2-field);
  box-shadow: inset 0 2px var(--g2-conjecture);
}

.g2-research-socket__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.g2-research-socket__id,
.g2-research-socket__state {
  font: 650 0.64rem/1.4 var(--g2-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.g2-research-socket__id { color: var(--g2-conjecture); }
.g2-research-socket__state { color: var(--g2-bone-faint); }

.g2-research-socket__question {
  margin: 18px 0 12px;
  color: var(--g2-bone);
  font: 430 clamp(1.35rem, 2.3vw, 1.8rem)/1.08 var(--g2-display);
  letter-spacing: -0.018em;
}

.g2-research-socket__meta {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font-size: 0.82rem;
}

.g2-research-socket a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.g2-world-return {
  margin: 0;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-world-return__steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.g2-world-return__step {
  position: relative;
  min-width: 0;
  min-height: 142px;
  padding: 42px 14px 18px;
  border-right: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font: 550 0.72rem/1.45 var(--g2-mono);
  overflow-wrap: anywhere;
}

.g2-world-return__step:last-child { border-right: 0; }

.g2-world-return__step::before {
  content: attr(data-step);
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--g2-evidence);
  font: 650 0.65rem/1 var(--g2-mono);
}

.g2-world-return__step--possible { box-shadow: inset 0 3px var(--g2-possible); }
.g2-world-return__step--actual { box-shadow: inset 0 3px var(--g2-actual); }
.g2-world-return__step--evidence { box-shadow: inset 0 3px var(--g2-evidence); }

.g2-world-return__return {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid var(--g2-evidence);
  color: var(--g2-evidence);
  font: 600 0.7rem/1.45 var(--g2-mono);
}

.g2-world-return__return::before {
  content: "↶";
  flex: 0 0 auto;
  font-size: 1.35rem;
}

.g2-world-return figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--g2-rule);
  color: var(--g2-bone-faint);
  font-size: 0.78rem;
}

.g2-world-return a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

/* Lightweight v2.1 homepage compatibility. */
.g2-atlas-nav {
  position: sticky;
  top: var(--g2-nav-h);
  z-index: 75;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-right: 1px solid var(--g2-rule);
  border-bottom: 1px solid var(--g2-rule);
  border-left: 1px solid var(--g2-rule);
  background: var(--g2-field);
}

.g2-atlas-nav a {
  min-width: 0;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 16px;
  border-right: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font: 650 0.7rem/1.3 var(--g2-mono);
  text-decoration: none;
}

.g2-atlas-nav a:last-child { border-right: 0; }

.g2-atlas-nav a:hover,
.g2-atlas-nav a[aria-current] {
  color: var(--g2-bone);
  box-shadow: inset 0 -2px var(--g2-actual);
}

.g2-atlas-nav small {
  display: block;
  margin-top: 4px;
  color: var(--g2-bone-faint);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.g2-thesis-fence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--g2-rule-strong);
  border-bottom: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-thesis-fence p {
  margin: 0;
  padding: 16px 18px;
  color: var(--g2-bone-muted);
  font-size: 0.86rem;
}

.g2-thesis-fence p:first-child {
  border-right: 1px solid var(--g2-rule);
  box-shadow: inset 3px 0 var(--g2-actual);
}

.g2-thesis-fence p:last-child {
  box-shadow: inset 3px 0 var(--g2-evidence);
}

.g2-thesis-fence .g2-tier {
  display: block;
  margin-bottom: 6px;
}

.g2-power-equation {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr) auto minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: stretch;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-power-equation > span {
  min-width: 0;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.g2-power-equation strong {
  color: var(--g2-bone);
  font: 430 clamp(1.7rem, 3vw, 2.6rem)/1 var(--g2-display);
}

.g2-power-equation span:first-child strong { color: var(--g2-possible); }
.g2-power-equation span:nth-of-type(2) strong { color: var(--g2-evidence); }
.g2-power-equation span:nth-of-type(3) strong,
.g2-power-equation span:last-child strong { color: var(--g2-actual); }

.g2-power-equation small {
  margin-top: 8px;
  color: var(--g2-bone-faint);
  font: 550 0.67rem/1.4 var(--g2-mono);
}

.g2-power-equation > b {
  min-width: 38px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--g2-rule);
  border-left: 1px solid var(--g2-rule);
  color: var(--g2-bone-faint);
  font: 500 1rem/1 var(--g2-mono);
}

/* The homepage compares two registers. Its topology is term/operator/term,
   unlike the seven-track relations on Dasein and Rosetta. Explicit role
   classes keep ontology out of child-position selectors. */
.g2-power-equation--binary {
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  overflow: visible;
}

.g2-power-equation--binary > .g2-power-term {
  min-width: 0;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.4vw, 28px);
}

.g2-power-equation--binary > .g2-power-term--actual {
  border-top: 3px solid var(--g2-actual);
}

.g2-power-equation--binary > .g2-power-term--possible {
  border-top: 3px dashed var(--g2-possible);
}

.g2-power-equation--binary .g2-power-term small {
  margin: 0 0 18px;
}

.g2-power-equation--binary .g2-power-term strong {
  display: grid;
  gap: 0.12em;
  font: 430 clamp(1.65rem, 2.4vw, 2.35rem)/0.96 var(--g2-display);
}

.g2-power-equation--binary .g2-power-term strong > span {
  min-width: 0;
  display: grid;
  grid-template-columns: 0.38em minmax(0, 1fr);
  align-items: baseline;
}

.g2-power-equation--binary .g2-power-term strong > span::before {
  content: "·";
  font-family: var(--g2-mono);
  font-size: 0.58em;
}

.g2-power-equation--binary .g2-power-term--actual strong {
  color: var(--g2-actual);
}

.g2-power-equation--binary .g2-power-term--possible strong {
  color: var(--g2-possible);
}

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

.g2-g7-map {
  margin: 0;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-g7-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.g2-g7-map text {
  fill: var(--g2-bone-muted);
  font: 550 13px/1 var(--g2-mono);
}

.g2-map-line {
  stroke: var(--g2-rule-strong);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.g2-map-label {
  fill: var(--g2-bone-faint) !important;
  font-size: 11px !important;
  letter-spacing: 0.06em;
}

.g2-map-cell rect {
  fill: var(--g2-surface);
  stroke: var(--g2-rule-strong);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.g2-map-cell--possible rect { stroke: var(--g2-possible); }
.g2-map-cell--actual rect { stroke: var(--g2-actual); }

.g2-map-cell text:first-of-type {
  fill: var(--g2-bone);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.g2-map-cell--possible text:nth-of-type(2) { fill: var(--g2-possible); }
.g2-map-cell--actual text:nth-of-type(2) { fill: var(--g2-actual); }
.g2-map-cell text:last-of-type { fill: var(--g2-bone-faint); }

.g2-titan-node circle {
  fill: var(--g2-void);
  stroke: var(--g2-actual);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.g2-titan-node > text:not(.g2-titan-caption) {
  fill: var(--g2-actual);
  font-size: 24px;
}

.g2-titan-node--centre circle { stroke: var(--g2-evidence); }
.g2-titan-node--centre > text:not(.g2-titan-caption) { fill: var(--g2-evidence); }

.g2-titan-caption {
  fill: var(--g2-bone-faint) !important;
  font-size: 10px !important;
  letter-spacing: 0.05em;
}

.g2-g7-map figcaption {
  padding: 16px 18px;
  border-top: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font-size: 0.8rem;
}

.g2-atlas .g2-svg-fill--muted { fill: var(--g2-bone-faint); }
.g2-atlas .g2-svg-fill--actual { fill: var(--g2-actual); }
.g2-atlas .g2-svg-node--possible {
  fill: var(--g2-field);
  stroke: var(--g2-possible);
  stroke-width: 2;
}
.g2-atlas .g2-svg-node--evidence {
  fill: var(--g2-field);
  stroke: var(--g2-evidence);
  stroke-width: 2;
}

/* Corrected Burrisphere topology. M4 stays on one bottom action plane; F3
   alone occupies the vertical axis; the rising path carries reading phase. */
.g2-burrisphere-ascent {
  margin: 0;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-burrisphere-ascent__stage {
  position: relative;
  overflow: hidden;
}

.g2-diagram-scroll-cue {
  display: none;
  margin: 0;
  padding: 10px 18px;
  border-top: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font: 600 0.72rem/1.45 var(--g2-mono);
}

.g2-burrisphere-ascent svg {
  display: block;
  width: 100%;
  height: auto;
}

.g2-burrisphere-axis,
.g2-burrisphere-axis-guide,
.g2-burrisphere-path,
.g2-burrisphere-spectrum-line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.g2-burrisphere-axis {
  stroke: var(--g2-bone-muted);
  stroke-width: 2;
}

.g2-burrisphere-axis-guide {
  stroke: var(--g2-rule-strong);
  stroke-width: 1;
  stroke-dasharray: 2 7;
}

.g2-burrisphere-plane-sector {
  stroke: var(--g2-rule-strong);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.g2-burrisphere-plane-sector--possible { fill: color-mix(in srgb, var(--g2-possible) 13%, var(--g2-field)); }
.g2-burrisphere-plane-sector--actual { fill: color-mix(in srgb, var(--g2-actual) 11%, var(--g2-field)); }

.g2-burrisphere-action-outline,
.g2-burrisphere-action-axis,
.g2-burrisphere-action-trace {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.g2-burrisphere-action-outline,
.g2-burrisphere-action-axis {
  stroke: var(--g2-bone-muted);
  stroke-width: 1.5;
}

.g2-burrisphere-action-trace {
  stroke: var(--g2-conjecture);
  stroke-width: 3;
  stroke-dasharray: 7 6;
}

.g2-burrisphere-path {
  stroke: var(--g2-conjecture);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.g2-burrisphere-path--front {
  stroke-dasharray: none;
  opacity: 1;
}

.g2-burrisphere-path--back {
  stroke-dasharray: 8 7;
  opacity: 0.72;
}

.g2-burrisphere-phase circle,
.g2-burrisphere-phase rect {
  fill: var(--g2-field);
  stroke: var(--g2-bone-muted);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.g2-burrisphere-phase--possible circle,
.g2-burrisphere-phase--possible rect { stroke: var(--g2-possible); }
.g2-burrisphere-phase--actual circle,
.g2-burrisphere-phase--actual rect { stroke: var(--g2-actual); }

.g2-burrisphere-phase text,
.g2-burrisphere-phase-label {
  fill: var(--g2-bone);
  font: 650 12px/1 var(--g2-mono);
  letter-spacing: 0.04em;
}

.g2-burrisphere-phase .g2-burrisphere-phase__signature {
  fill: var(--g2-bone-muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.g2-burrisphere-titan circle {
  fill: var(--g2-void);
  stroke: var(--g2-actual);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.g2-burrisphere-titan--centre circle { stroke: var(--g2-evidence); }

.g2-burrisphere-titan text {
  fill: var(--g2-actual);
  font: 650 12px/1 var(--g2-mono);
}

.g2-burrisphere-titan--centre text { fill: var(--g2-evidence); }

.g2-burrisphere-axis-label,
.g2-burrisphere-depth-label,
.g2-burrisphere-line-label,
.g2-burrisphere-spectrum-label {
  fill: var(--g2-bone-faint);
  font: 600 10px/1 var(--g2-mono);
  letter-spacing: 0.06em;
}

.g2-burrisphere-line-label--front { fill: var(--g2-conjecture); }
.g2-burrisphere-line-label--back { fill: var(--g2-bone-muted); }

.g2-burrisphere-ascent__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 14px 18px;
  border-top: 1px solid var(--g2-rule);
  color: var(--g2-bone-faint);
  font: 550 0.66rem/1.5 var(--g2-mono);
}

.g2-burrisphere-key {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.g2-burrisphere-key::before {
  content: "";
  width: 28px;
  border-top: 2px solid var(--g2-rule-strong);
}

.g2-burrisphere-key--axis::before { border-color: var(--g2-bone-muted); }
.g2-burrisphere-key--front::before { border-color: var(--g2-conjecture); }
.g2-burrisphere-key--trace::before {
  border-color: var(--g2-conjecture);
  border-top-style: dashed;
}
.g2-burrisphere-key--back::before {
  border-color: var(--g2-conjecture);
  border-top-style: dashed;
}

.g2-burrisphere-phase-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--g2-rule);
  background: var(--g2-rule);
  list-style: none;
}

.g2-burrisphere-phase-list li {
  min-width: 0;
  padding: 16px;
  background: var(--g2-field);
  color: var(--g2-bone-muted);
  font-size: 0.82rem;
}

.g2-burrisphere-phase-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--g2-bone);
  font: 650 0.7rem/1.35 var(--g2-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.g2-burrisphere-ascent figcaption {
  padding: 16px 18px;
  border-top: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font-size: 0.8rem;
}

/* Reciprocal-chart context remains outside the G7 ascent geometry. */
.g2-reciprocal-spectrum {
  display: grid;
  grid-template-columns: minmax(90px, auto) minmax(0, 1fr) minmax(90px, auto);
  align-items: stretch;
  margin-top: 20px;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-reciprocal-spectrum__pole {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--g2-bone-muted);
  font: 650 0.66rem/1.35 var(--g2-mono);
  text-align: center;
  flex-direction: column;
  gap: 3px;
}

.g2-reciprocal-spectrum__pole:first-child { border-right: 1px solid var(--g2-rule); }
.g2-reciprocal-spectrum__pole:last-child { border-left: 1px solid var(--g2-rule); }

.g2-reciprocal-spectrum__segments {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
}

.g2-reciprocal-spectrum__segment {
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 5px;
  border-right: 1px solid var(--g2-rule);
  color: var(--g2-bone-faint);
  font: 550 0.61rem/1.25 var(--g2-mono);
  text-align: center;
  flex-direction: column;
  gap: 3px;
}

.g2-reciprocal-spectrum__pole > span,
.g2-reciprocal-spectrum__segment > span { display: block; }

.g2-reciprocal-spectrum__segment:last-child { border-right: 0; }
.g2-reciprocal-spectrum__segment--centre {
  color: var(--g2-evidence);
  box-shadow: inset 0 3px var(--g2-evidence);
}

.g2-burrisphere-spectrum-line {
  stroke: var(--g2-rule-strong);
  stroke-width: 2;
}

.g2-burrisphere-spectrum-node {
  fill: var(--g2-field);
  stroke: var(--g2-bone-muted);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.g2-burrisphere-spectrum-node--centre {
  fill: var(--g2-evidence);
  stroke: var(--g2-evidence);
}

/* Existing one-turn homepage markup aliases the Burrisphere roles explicitly. */
.g2-helix {
  margin: 28px 0 0;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-helix__stage {
  position: relative;
  overflow: hidden;
}

.g2-helix svg {
  display: block;
  width: 100%;
  height: auto;
}

.g2-helix__axis,
.g2-helix__latitude,
.g2-helix__front,
.g2-helix__back {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.g2-helix__axis {
  stroke: var(--g2-bone-muted);
  stroke-width: 2;
}

.g2-helix__latitude {
  stroke: var(--g2-rule-strong);
  stroke-width: 1;
  stroke-dasharray: 2 7;
}

.g2-helix__front,
.g2-helix__back {
  stroke: var(--g2-conjecture);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.g2-helix__front {
  stroke-dasharray: none;
  opacity: 1;
}

.g2-helix__back {
  stroke-dasharray: 8 7;
  opacity: 0.72;
}

.g2-helix__frame circle {
  fill: var(--g2-void);
  stroke: var(--g2-actual);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.g2-helix__frame--centre circle { stroke: var(--g2-evidence); }

.g2-helix__frame text {
  fill: var(--g2-bone-muted);
  font: 600 11px/1 var(--g2-mono);
  letter-spacing: 0.04em;
}

.g2-helix__frame > text:first-of-type {
  fill: var(--g2-actual);
  font-size: 22px;
}

.g2-helix__frame--centre > text:first-of-type { fill: var(--g2-evidence); }

.g2-helix__phase circle {
  fill: var(--g2-field);
  stroke: var(--g2-conjecture);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.g2-helix__phase text {
  fill: var(--g2-bone);
  font: 650 12px/1 var(--g2-mono);
  letter-spacing: 0.04em;
}

.g2-helix__phase text:last-of-type {
  fill: var(--g2-bone-muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.g2-helix figcaption {
  padding: 16px 18px;
  border-top: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font-size: 0.8rem;
}

/* Strategy compression is the 2 x 2 product of bearer orientation and raised
   factor channel. Every cell repeats its coordinate and signature in text. */
.g2-strategy-compression {
  display: grid;
  grid-template-columns: minmax(112px, 0.24fr) minmax(0, 1fr);
  grid-template-areas:
    "vertical matrix"
    ". horizontal"
    "fence fence";
  margin-top: 24px;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-strategy-compression__matrix {
  grid-area: matrix;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--g2-rule-strong);
}

.g2-strategy-compression__axes {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 1;
  min-width: 0;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(112px, 0.24fr) minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-strategy-compression__axes > span {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--g2-bone-faint);
  font: 600 0.64rem/1.4 var(--g2-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.g2-strategy-compression__axes > span:first-child {
  border-right: 1px solid var(--g2-rule-strong);
}

.g2-strategy-compression__axes > span:last-child {
  justify-content: center;
  color: var(--g2-bone-muted);
  text-align: center;
}

.g2-strategy-compression__grid {
  grid-column: 1 / -1;
  grid-row: 2;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--g2-rule-strong);
}

.g2-strategy-axis {
  min-width: 0;
  display: grid;
  color: var(--g2-bone-faint);
  font: 600 0.64rem/1.35 var(--g2-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.g2-strategy-axis--vertical {
  grid-area: vertical;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: 18px 14px;
  border-right: 1px solid var(--g2-rule-strong);
}

.g2-strategy-axis--horizontal {
  grid-area: horizontal;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 18px;
  border-top: 1px solid var(--g2-rule-strong);
}

.g2-strategy-axis__label {
  color: var(--g2-bone-muted);
  text-align: center;
}

.g2-strategy-axis__label--start { justify-self: start; text-align: left; }
.g2-strategy-axis__label--end { justify-self: end; text-align: right; }

.g2-strategy-axis__line {
  position: relative;
  min-width: 20px;
  min-height: 20px;
}

.g2-strategy-axis--horizontal .g2-strategy-axis__line::before,
.g2-strategy-axis--vertical .g2-strategy-axis__line::before {
  content: "";
  position: absolute;
  background: var(--g2-rule-strong);
}

.g2-strategy-axis--horizontal .g2-strategy-axis__line::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.g2-strategy-axis--vertical .g2-strategy-axis__line::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.g2-strategy-cell {
  min-width: 0;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.6vw, 28px);
  background: var(--g2-field);
  box-shadow: inset 0 3px var(--g2-rule-strong);
}

.g2-strategy-cell--possible { box-shadow: inset 0 3px var(--g2-possible); }
.g2-strategy-cell--actual { box-shadow: inset 0 3px var(--g2-actual); }

.g2-strategy-cell__coordinate {
  display: block;
  color: var(--g2-bone-faint);
  font: 600 0.62rem/1.4 var(--g2-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.g2-strategy-cell__name {
  margin: 12px 0 0;
  color: var(--g2-bone);
  font: 430 clamp(1.35rem, 2.4vw, 2rem)/1.05 var(--g2-display);
  letter-spacing: -0.018em;
}

.g2-strategy-cell h3 {
  margin: 12px 0 0;
  color: var(--g2-bone);
  font: 430 clamp(1.35rem, 2.4vw, 2rem)/1.05 var(--g2-display);
  letter-spacing: -0.018em;
}

.g2-strategy-cell p {
  margin: 9px 0 0;
  color: var(--g2-bone-muted);
  font-size: 0.82rem;
}

.g2-strategy-cell code {
  color: inherit;
  font-family: var(--g2-mono);
  overflow-wrap: anywhere;
}

.g2-strategy-cell__signature {
  margin: auto 0 0;
  padding-top: 24px;
  color: var(--g2-bone-muted);
  font: 560 clamp(0.68rem, 1.2vw, 0.82rem)/1.5 var(--g2-mono);
  overflow-wrap: anywhere;
}

.g2-strategy-cell__gloss {
  margin: 7px 0 0;
  color: var(--g2-bone-faint);
  font-size: 0.78rem;
}

.g2-strategy-compression__fence {
  grid-area: fence;
  z-index: 1;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid var(--g2-rule-strong);
  background: var(--g2-surface);
  color: var(--g2-bone-muted);
  font-size: 0.78rem;
}

.g2-strategy-compression__fence strong {
  color: var(--g2-evidence);
}

.g2-strategy-compression__fence > * { margin: 0; }

.g2-strategy-fence {
  grid-area: fence;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--g2-rule-strong);
  background: var(--g2-surface);
}

.g2-strategy-fence__item {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font-size: 0.78rem;
}

.g2-strategy-fence__item:last-child { border-right: 0; }

.g2-strategy-fence__item strong,
.g2-strategy-fence__label {
  display: block;
  margin-bottom: 5px;
  color: var(--g2-evidence);
  font: 650 0.62rem/1.35 var(--g2-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.g2-strategy-compression a,
.g2-strategy-fence a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.g2-footer {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--g2-rule);
  background: var(--g2-field);
  font: inherit;
}

.g2-footer__inner {
  width: var(--g2-page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 42px 0;
}

.g2-footer p {
  max-width: 58ch;
  margin: 0;
  color: var(--g2-bone-muted);
}

.g2-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font: 550 0.72rem/1.6 var(--g2-mono);
}

.g2-footer nav a {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--g2-bone);
}

.g2-footer__key {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--g2-rule);
  border-bottom: 1px solid var(--g2-rule);
}

.g2-footer__key-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  padding: 16px 18px;
  border-right: 1px solid var(--g2-rule);
  font-family: var(--g2-mono);
}

.g2-footer__key-item:last-child { border-right: 0; }

.g2-footer__key-item i {
  grid-row: 1 / 3;
  align-self: center;
  width: 26px;
  height: 0;
  border-top: 2px solid currentColor;
  font-style: normal;
  line-height: 1;
}

.g2-footer__key-item b {
  color: var(--g2-bone);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.g2-footer__key-item small {
  margin-top: 3px;
  color: var(--g2-bone-faint);
  font-size: 0.64rem;
  line-height: 1.35;
}

.g2-footer__key-item--actual { color: var(--g2-actual); }
.g2-footer__key-item--possible { color: var(--g2-possible); }
.g2-footer__key-item--possible i {
  border-top-width: 1px;
  border-bottom: 1px solid currentColor;
  height: 7px;
  transform: skewY(-13deg);
}
.g2-footer__key-item--conjecture { color: var(--g2-conjecture); }
.g2-footer__key-item--conjecture i { border-top-style: dashed; }
.g2-footer__key-item--evidence { color: var(--g2-evidence); }
.g2-footer__key-item--evidence i {
  height: auto;
  border: 0;
  font-size: 1.15rem;
}

body[data-living-page="contribute"].g2-page.g2-legacy .contract p,
body[data-living-page="contribute"].g2-page.g2-legacy .contract li {
  color: #4e514d;
}

.g2-footer__boundary {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--g2-rule);
  color: var(--g2-bone-faint);
  font: 500 0.75rem/1.6 var(--g2-mono);
}

/* Existing core pages retain their body copy while receiving the shared atlas shell. */
body.g2-page.g2-legacy > main,
body.g2-page.g2-legacy main.shell,
body.g2-page.g2-legacy main.wrap {
  width: min(980px, calc(100vw - 40px));
  max-width: 980px;
  margin-inline: auto;
  padding-top: clamp(58px, 8vw, 100px);
  padding-bottom: clamp(70px, 10vw, 130px);
}

body.g2-page.g2-legacy h1 {
  max-width: 15ch;
  color: var(--g2-bone);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
}

body.g2-page.g2-legacy h2 {
  color: var(--g2-bone);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

body.g2-page.g2-legacy p,
body.g2-page.g2-legacy li {
  color: var(--g2-bone-muted);
}

body.g2-page.g2-legacy .topbar,
body.g2-page.g2-legacy .site-head,
body.g2-page.g2-legacy .site-footer,
body.g2-page.g2-legacy .foot,
body.g2-page.g2-legacy .footer {
  all: unset;
}

/* v2.2 · public question denominator and typed normative bridge */
.g2-question-domain {
  scroll-margin-top: 92px;
}

.g2-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--g2-rule);
  border: 1px solid var(--g2-rule);
}

.g2-question {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background: var(--g2-surface);
}

.g2-question h3 {
  max-width: 26ch;
  margin: 12px 0 18px;
  color: var(--g2-bone);
  font: 500 clamp(1.3rem, 2vw, 1.8rem)/1.16 var(--g2-display);
}

.g2-question p {
  max-width: 68ch;
  margin: 8px 0 0;
  color: var(--g2-bone-muted);
  font-size: 0.92rem;
}

.g2-question__meta,
.g2-question__source {
  overflow-wrap: anywhere;
}

.g2-question__meta {
  color: var(--g2-possible);
  font: 600 0.69rem/1.55 var(--g2-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.g2-question__source {
  padding-top: 10px;
  border-top: 1px solid var(--g2-rule);
  font-family: var(--g2-mono);
  font-size: 0.75rem !important;
}

.g2-question__adjudication {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--g2-rule-strong);
}

.g2-question__adjudication code { color: var(--g2-evidence); }

.g2-question__adjudication details {
  margin-top: 14px;
  border-top: 1px solid var(--g2-rule);
}

.g2-question__adjudication summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--g2-bone);
  cursor: pointer;
  font: 650 0.68rem/1.4 var(--g2-mono);
}

/* V2.2 executive panorama: four independent entry doors lead to the same
   source-bound worldview without making the homepage repeat every deep route. */
.g2-hero--portal {
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: start;
  gap: clamp(34px, 5vw, 78px);
  padding-block: clamp(34px, 5vw, 68px);
}

.g2-hero--portal .g2-world-figure {
  margin-top: 30px;
}

.g2-world-figure,
.g2-double-atlas {
  margin-inline: 0;
}

.g2-world-figure text,
.g2-double-atlas text {
  font-size: 14px;
}

.g2-hero--portal h1 {
  max-width: 12.5ch;
  font-size: clamp(3.35rem, 5.5vw, 5.8rem);
}

.g2-hero--portal .g2-hero__lede { font-size: clamp(1rem, 1.35vw, 1.16rem); }
.g2-hero--portal .g2-actions + .g2-hero__promise { margin-top: 28px; }

.g2-entry-doors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-rule);
}

.g2-entry-door {
  min-width: 0;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  background: var(--g2-field);
  color: var(--g2-bone);
  text-decoration: none;
}

.g2-entry-door:hover { background: var(--g2-surface); }
.g2-entry-door:focus-visible { position: relative; z-index: 2; }
.g2-entry-door--possible { box-shadow: inset 0 3px var(--g2-possible); }
.g2-entry-door--actual { box-shadow: inset 0 3px var(--g2-actual); }
.g2-entry-door--evidence { box-shadow: inset 0 3px var(--g2-evidence); }

.g2-entry-door span,
.g2-entry-door small,
.g2-role-strip span,
.g2-trust-grid span {
  color: var(--g2-bone-faint);
  font: 600 0.63rem/1.45 var(--g2-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.g2-entry-door strong {
  margin-top: 4px;
  font: 430 clamp(1.25rem, 2vw, 1.7rem)/1.08 var(--g2-display);
}

.g2-entry-door small {
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.g2-hero--portal .g2-source {
  margin-top: 22px;
  line-height: 1.65;
}

.g2-hero__copy,
.g2-world-figure,
.g2-field-kit,
.g2-tier-legend--early {
  min-width: 0;
  max-width: 100%;
}

.g2-field-kit {
  margin-top: 28px;
  padding-block: 20px;
  border-block: 1px solid var(--g2-rule-strong);
}

.g2-field-kit > div > p:not(.g2-field-kit__label),
.g2-field-kit__boundary {
  margin: 8px 0 0;
  color: var(--g2-bone-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.g2-field-kit__label {
  margin: 0;
  color: var(--g2-evidence);
  font: 650 0.64rem/1.4 var(--g2-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g2-field-kit h2 {
  margin: 5px 0 0;
  font: 430 clamp(1.35rem, 2.2vw, 1.7rem)/1.05 var(--g2-display);
  letter-spacing: -0.025em;
}

.g2-field-kit ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0 0;
  padding: 1px;
  background: var(--g2-rule);
  list-style: none;
}

.g2-field-kit li {
  min-width: 0;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 14px;
  background: var(--g2-field);
}

.g2-field-kit li span,
.g2-field-kit li small {
  color: var(--g2-bone-faint);
  font: 600 0.62rem/1.45 var(--g2-mono);
}

.g2-field-kit li span {
  color: var(--g2-actual);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.g2-field-kit li strong {
  margin-top: 6px;
  font-size: 0.88rem;
  line-height: 1.3;
}

.g2-field-kit li small {
  margin-top: 5px;
  letter-spacing: 0;
}

.g2-field-kit__boundary {
  padding-top: 14px;
  border-top: 1px solid var(--g2-rule);
}

.g2-field-kit__boundary a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  color: var(--g2-bone);
  font-family: var(--g2-mono);
  font-size: 0.74rem;
}

.g2-spine--panorama .g2-rung { min-height: 208px; }
.g2-spine--panorama .g2-rung > span {
  color: var(--g2-actual);
  font: 650 0.72rem/1 var(--g2-mono);
}
.g2-spine--panorama .g2-rung:nth-child(6) > span { color: var(--g2-possible); }
.g2-spine--panorama .g2-rung:nth-child(7) > span { color: var(--g2-bone-faint); }

.g2-role-strip,
.g2-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--g2-rule);
  background: var(--g2-rule);
}

.g2-role-strip article,
.g2-trust-grid article {
  min-width: 0;
  padding: clamp(20px, 2.5vw, 30px);
  background: var(--g2-field);
}

.g2-role-strip h3,
.g2-trust-grid h3 {
  margin: 12px 0 10px;
  font: 430 clamp(1.5rem, 2.5vw, 2.15rem)/1.06 var(--g2-display);
  letter-spacing: -0.025em;
}

.g2-role-strip p,
.g2-trust-grid p { margin: 0; color: var(--g2-bone-muted); }

.g2-firewall-grid,
.g2-signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.g2-firewall-grid > *,
.g2-signature-grid > * {
  min-width: 0;
}

.g2-firewall-grid .g2-power-equation { margin: 0; }
.g2-firewall-copy > p { margin: 0 0 24px; color: var(--g2-bone-muted); }
.g2-firewall-copy > p strong { color: var(--g2-bone); }

.g2-burrisphere-preview {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-field);
}

.g2-burrisphere-preview svg { width: 100%; height: auto; display: block; }
.g2-burrisphere-preview text {
  fill: var(--g2-bone-muted);
  font: 600 13px/1 var(--g2-mono);
}
.g2-burrisphere-preview .g2-preview-label { fill: var(--g2-bone-faint); font-size: 11px; }
.g2-preview-sphere,
.g2-preview-equator,
.g2-preview-axis,
.g2-preview-path,
.g2-preview-plane,
.g2-preview-plane-axis {
  fill: none;
  vector-effect: non-scaling-stroke;
}
.g2-preview-sphere { stroke: var(--g2-bone-muted); stroke-width: 1.5; }
.g2-preview-equator { stroke: var(--g2-possible); stroke-width: 1; stroke-dasharray: 6 6; }
.g2-preview-axis { stroke: var(--g2-actual); stroke-width: 2; }
.g2-preview-path { stroke: var(--g2-conjecture); stroke-width: 3; stroke-dasharray: 8 6; }
.g2-preview-plane { stroke-width: 1.5; }
.g2-preview-plane--possible { fill: color-mix(in srgb, var(--g2-possible) 10%, transparent); stroke: var(--g2-possible); }
.g2-preview-plane--actual { fill: color-mix(in srgb, var(--g2-actual) 9%, transparent); stroke: var(--g2-actual); }
.g2-preview-plane-axis { stroke: var(--g2-rule-strong); stroke-width: 1; }
.g2-burrisphere-preview figcaption {
  padding: 18px 20px;
  border-top: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font-size: 0.84rem;
}
.g2-burrisphere-preview figcaption strong { color: var(--g2-bone); }

.g2-signature-copy > p:first-child { color: var(--g2-bone-muted); }
.g2-signature-copy > p:first-child strong { color: var(--g2-bone); }
.g2-signature-copy .g2-equation { margin-top: 22px; }

.g2-horizon-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--g2-rule);
}
.g2-horizon-line > span { display: grid; gap: 4px; }
.g2-horizon-line > span:last-child { text-align: right; }
.g2-horizon-line strong { color: var(--g2-bone); font: 600 0.7rem/1.3 var(--g2-mono); text-transform: uppercase; }
.g2-horizon-line small { color: var(--g2-bone-faint); }
.g2-horizon-line > b { color: var(--g2-actual); font: 600 0.64rem/1 var(--g2-mono); text-transform: uppercase; }

.g2-transaction--compact .g2-transaction-board { min-height: 390px; }
.g2-transaction--compact .g2-transaction-sector { padding: clamp(18px, 2.2vw, 26px); }
.g2-transaction--compact .g2-transaction-packet { padding: clamp(24px, 3vw, 38px); }
.g2-transaction--compact .g2-transaction-coin { --coin-size: clamp(48px, 5.2vw, 62px); font-size: 0.54rem; }

.g2-section--research-sockets .g2-research-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g2-section--research-sockets .g2-research-grid article > p:last-child a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.g2-section--trust .g2-churn-maxim { margin-top: 30px; }

/* V2.4 cartographic spine: one bounded, self-legending atlas. */
.g2-atlas-rail {
  position: sticky;
  top: var(--g2-nav-h);
  z-index: 90;
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border-bottom: 1px solid var(--g2-rule);
  background: rgba(7, 9, 15, 0.96);
  background: color-mix(in srgb, var(--g2-void) 96%, transparent);
  backdrop-filter: blur(14px);
}

.g2-atlas-rail a {
  min-width: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-right: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font: 600 0.66rem/1.2 var(--g2-mono);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.g2-atlas-rail a:last-child { border-right: 0; }
.g2-atlas-rail a:hover { color: var(--g2-bone); background: var(--g2-field); }
.g2-atlas-rail a[aria-current="location"] {
  color: var(--g2-bone);
  background: var(--g2-field);
  box-shadow: inset 0 -3px var(--g2-actual);
}

.g2-hero--cartographic {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: auto;
  gap: clamp(38px, 6vw, 96px);
  padding-block: clamp(42px, 5vw, 72px) 40px;
}

.g2-hero--cartographic h1 {
  max-width: 11.5ch;
  margin-bottom: 12px;
  font-size: clamp(3.5rem, 6vw, 6.25rem);
}

.g2-hero__promise {
  max-width: 24ch;
  margin: 0 0 26px;
  color: var(--g2-bone);
  font: 430 clamp(1.35rem, 2.2vw, 2.05rem)/1.1 var(--g2-display);
}

.g2-hero__thesis {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--g2-bone-muted);
}

.g2-map-maxim {
  max-width: 28ch;
  margin: 28px 0 0;
  color: var(--g2-bone);
  font: 430 clamp(1.55rem, 2.5vw, 2.35rem)/1.08 var(--g2-display);
}

.g2-hero--cartographic .g2-source { margin-top: 22px; line-height: 1.65; }
.g2-double-atlas { min-width: 0; }
.g2-double-atlas::before { content: "DOUBLE ATLAS · ONE POINT · TWO CHARTS"; }
.g2-double-atlas__sphere,
.g2-double-atlas__equator,
.g2-double-atlas__axis,
.g2-double-atlas__plane,
.g2-double-atlas__ray {
  fill: none;
  vector-effect: non-scaling-stroke;
}
.g2-double-atlas__sphere { stroke: var(--g2-bone-muted); stroke-width: 1.5; }
.g2-double-atlas__equator { stroke: var(--g2-rule-strong); stroke-width: 1; stroke-dasharray: 7 7; fill: none; }
.g2-double-atlas__axis { stroke: var(--g2-rule-strong); stroke-width: 1; }
.g2-double-atlas__plane { stroke-width: 1.5; }
.g2-double-atlas__plane--upper { stroke: var(--g2-possible); }
.g2-double-atlas__plane--lower { stroke: var(--g2-evidence); }
.g2-double-atlas__ray { stroke-dasharray: none !important; }

.g2-tier-legend {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 4px;
  border: 1px solid var(--g2-rule-strong);
  background: var(--g2-rule);
  gap: 1px;
}

.g2-tier-legend span {
  min-width: 0;
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  background: var(--g2-field);
  color: var(--g2-bone-faint);
  font: 550 0.66rem/1.4 var(--g2-mono);
}

.g2-tier-legend b { color: var(--g2-bone); font-size: 0.76rem; }
.g2-tier-legend span:nth-child(2) b { color: var(--g2-evidence); }
.g2-tier-legend span:nth-child(5) b { color: var(--g2-conjecture); }

.g2-tier-legend--early {
  width: 100%;
  grid-template-columns: repeat(3, minmax(176px, 1fr));
  margin-top: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.g2-tier-legend--early span {
  min-height: 82px;
  padding: 10px 12px;
}

.g2-transaction-packet .g2-claim-id small {
  display: block;
  margin-top: 4px;
  color: var(--g2-bone-faint);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.g2-seven-acts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 22px;
  border-block: 1px solid var(--g2-rule);
}

.g2-seven-acts span {
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-right: 1px solid var(--g2-rule);
  color: var(--g2-bone-muted);
  font: 550 0.62rem/1.3 var(--g2-mono);
  text-align: center;
}

.g2-seven-acts span:last-child { border-right: 0; }
.g2-fence {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: var(--g2-bone-faint);
  font: 550 0.68rem/1.55 var(--g2-mono);
}

.g2-anchor-alias {
  position: relative;
  top: calc(-1 * var(--g2-nav-h));
  display: block;
  width: 0;
  height: 0;
}

.g2-spine.g2-spine--home {
  grid-template-columns: 1fr;
  align-items: start;
  background: var(--g2-rule);
  gap: 1px;
}

.g2-rung--detail {
  min-width: 0;
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  background: var(--g2-void);
}

.g2-rung--detail:hover { transform: none; }
.g2-rung--detail summary {
  min-height: 84px;
  display: grid;
  grid-template-columns: 58px minmax(180px, 0.62fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
}
.g2-rung--detail summary::-webkit-details-marker { display: none; }
.g2-rung--detail summary::after {
  content: "+ inspect";
  color: var(--g2-bone-faint);
  font: 550 0.62rem/1 var(--g2-mono);
  text-transform: uppercase;
  white-space: nowrap;
}
.g2-rung--detail[open] summary::after { content: "− close"; }
.g2-rung--detail summary > span { color: var(--g2-actual); font: 650 0.72rem/1 var(--g2-mono); }
.g2-rung--detail:nth-child(6) summary > span { color: var(--g2-possible); }
.g2-rung--detail:nth-child(7) summary > span { color: var(--g2-bone-faint); }
.g2-rung--detail summary > strong { margin: 0; }
.g2-rung--detail summary > small { margin: 0; }
.g2-rung--detail > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  border-top: 1px solid var(--g2-rule);
  background: var(--g2-rule);
}
.g2-rung--detail > div p {
  min-width: 0;
  min-height: 118px;
  margin: 0;
  padding: 18px;
  background: var(--g2-field);
  color: var(--g2-bone-muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}
.g2-rung--detail > div b { color: var(--g2-bone); }
.g2-rung__link {
  grid-column: 1 / -1;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: var(--g2-void);
  font: 600 0.68rem/1.3 var(--g2-mono);
  text-decoration: none;
}

.g2-register-hinge {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--g2-rule-strong);
}

.g2-insight-grid,
.g2-frontier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--g2-rule);
  background: var(--g2-rule);
}

.g2-insight-card,
.g2-claim-compact {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  background: var(--g2-field);
}

.g2-insight-card h3,
.g2-claim-compact h3,
.g2-map-act h3 {
  margin: 14px 0 12px;
  font: 430 clamp(1.65rem, 2.7vw, 2.55rem)/1.05 var(--g2-display);
  letter-spacing: -0.025em;
}

.g2-claim-compact h3 {
  font-size: clamp(1.55rem, 2.25vw, 2.15rem);
  overflow-wrap: anywhere;
}

.g2-insight-card p,
.g2-claim-compact p,
.g2-map-act p { color: var(--g2-bone-muted); }
.g2-insight-card p b,
.g2-insight-card p strong,
.g2-map-act p strong { color: var(--g2-bone); }
.g2-insight-card > a,
.g2-claim-compact > a { display: inline-flex; min-height: 48px; align-items: center; font: 600 0.72rem/1.3 var(--g2-mono); }

.g2-map-act {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  margin-top: 30px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--g2-rule-strong);
  box-shadow: inset 3px 0 var(--g2-actual);
  background: var(--g2-field);
}

.g2-map-act > * { min-width: 0; }
.g2-map-act .g2-claim-id { margin: 0; color: var(--g2-actual); }
.g2-map-act h3 { margin-bottom: 0; }
.g2-map-act ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--g2-rule);
  list-style-position: inside;
}
.g2-map-act li { min-height: 48px; padding: 13px 15px; background: var(--g2-void); color: var(--g2-bone-muted); }
.g2-map-act .g2-button { margin-top: 0; justify-self: start; }

.g2-convergence-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--g2-rule);
  background: var(--g2-rule);
}
.g2-convergence-ledger article { min-width: 0; padding: clamp(22px, 2.7vw, 34px); background: var(--g2-field); }
.g2-convergence-ledger span { color: var(--g2-evidence); font: 650 0.62rem/1.4 var(--g2-mono); letter-spacing: 0.06em; }
.g2-convergence-ledger h3 { margin: 16px 0 10px; font: 430 clamp(1.4rem, 2.2vw, 2rem)/1.06 var(--g2-display); }
.g2-convergence-ledger p { margin: 0; color: var(--g2-bone-muted); }

.g2-claim-compact { box-shadow: inset 0 3px var(--g2-conjecture); }
.g2-claim-compact:nth-child(2) { box-shadow: inset 0 3px var(--g2-possible); }
.g2-claim-compact:nth-child(4) { box-shadow: inset 0 3px var(--g2-evidence); }
.g2-claim-compact dl { display: grid; grid-template-columns: minmax(82px, 0.26fr) minmax(0, 1fr); margin: 18px 0; }
.g2-claim-compact dt,
.g2-claim-compact dd { margin: 0; padding: 10px 0; border-top: 1px solid var(--g2-rule); }
.g2-claim-compact dt { color: var(--g2-bone-faint); font: 600 0.64rem/1.45 var(--g2-mono); text-transform: uppercase; }
.g2-claim-compact dd { color: var(--g2-bone-muted); overflow-wrap: anywhere; }

.g2-exit-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(26px, 5vw, 72px);
  border-top: 1px solid var(--g2-rule-strong);
  border-bottom: 1px solid var(--g2-rule-strong);
}
.g2-exit-band > * { min-width: 0; }
.g2-exit-band h2 { max-width: 12ch; }
.g2-exit-band .g2-churn-maxim { margin: 0; align-self: start; }
.g2-workshop-disclosure { grid-column: 1 / -1; border-top: 1px solid var(--g2-rule); border-bottom: 1px solid var(--g2-rule); }
.g2-workshop-disclosure summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; color: var(--g2-bone); font: 600 0.72rem/1.4 var(--g2-mono); text-transform: uppercase; }
.g2-workshop-disclosure summary::after { content: "+"; color: var(--g2-evidence); font-size: 1.1rem; }
.g2-workshop-disclosure[open] summary::after { content: "−"; }
.g2-workshop-disclosure > div { padding: 0 0 24px; }
.g2-workshop-disclosure p { max-width: 72ch; color: var(--g2-bone-muted); }
.g2-workshop-disclosure nav { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.g2-workshop-disclosure a { min-height: 48px; display: inline-flex; align-items: center; font: 600 0.72rem/1.3 var(--g2-mono); }
.g2-authorship { align-self: end; margin: 0; color: var(--g2-bone-muted); }
.g2-exit-band .g2-actions { grid-column: 1 / -1; margin-top: 0; }

/* V2.5 Reciprocal Object: the opening is one thesis and one integrated field.
   Application moves to Practice; epistemic pricing remains complete and early. */
body.g2-page[data-emergentism-surface="panorama"] .g2-atlas-rail {
  min-height: 46px;
  padding-inline: clamp(0px, 2vw, 24px);
}

body.g2-page[data-emergentism-surface="panorama"] .g2-atlas-rail a {
  min-height: 46px;
  border-right: 0;
  font-size: 0.8rem;
}

body.g2-page[data-emergentism-surface="panorama"] .g2-atlas-rail a[aria-current="location"] {
  background: transparent;
  box-shadow: inset 0 -2px var(--g2-actual);
}

body.g2-page[data-emergentism-surface="panorama"] .g2-hero--portal {
  grid-template-areas:
    "opening atlas"
    "context context"
    "legend legend";
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  align-items: center;
  column-gap: clamp(46px, 7vw, 116px);
  row-gap: clamp(34px, 4.5vw, 64px);
  min-height: auto;
  padding-block: clamp(58px, 7vw, 98px) clamp(42px, 6vw, 82px);
}

.g2-hero__opening {
  grid-area: opening;
  align-self: center;
}

.g2-hero__opening .g2-actions {
  align-items: center;
  margin-top: 30px;
}

.g2-hero__actual,
.g2-hero__future {
  display: block;
}

.g2-hero__future {
  position: relative;
  width: fit-content;
  margin: 0.08em 0 0 clamp(0.25em, 2vw, 0.62em);
  color: var(--g2-bone-muted);
  font-size: 0.78em;
  line-height: 0.94;
}

.g2-hero__future::before {
  content: "↗";
  position: absolute;
  top: 0.15em;
  right: calc(100% + 0.5em);
  color: var(--g2-possible);
  font: 650 0.18em/1 var(--g2-mono);
  letter-spacing: 0;
}

body.g2-page[data-emergentism-surface="panorama"] .g2-hero--portal h1 {
  max-width: 11.5ch;
  margin-bottom: 0;
  font-size: clamp(4rem, 6.2vw, 6.65rem);
  line-height: 0.88;
}

body.g2-page[data-emergentism-surface="panorama"] .g2-world-figure {
  grid-area: atlas;
  align-self: center;
  margin-top: 0;
  border: 0;
  background: transparent;
}

body.g2-page[data-emergentism-surface="panorama"] .g2-world-figure::before {
  top: 0;
  left: 0;
}

body.g2-page[data-emergentism-surface="panorama"] .g2-world-figure .g2-atlas__viewport {
  padding-top: 24px;
  border-bottom: 1px solid var(--g2-rule);
}

body.g2-page[data-emergentism-surface="panorama"] .g2-world-figure .g2-atlas__caption {
  padding-inline: 0;
  border-top: 0;
}

.g2-hero__context {
  grid-area: context;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(340px, 1.32fr) minmax(190px, 0.62fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  padding-block: clamp(26px, 3vw, 38px);
  border-block: 1px solid var(--g2-rule-strong);
}

.g2-hero__context p {
  margin: 0;
}

.g2-hero__context-thesis,
.g2-hero__context-definition {
  min-width: 0;
}

.g2-hero__context-thesis {
  display: grid;
  gap: 18px;
}

.g2-hero__context .g2-hero__promise {
  max-width: 25ch;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.g2-hero__context .g2-map-maxim {
  max-width: 28ch;
  margin: 0;
  color: var(--g2-bone-muted);
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
}

.g2-hero__context-definition {
  display: grid;
  gap: 16px;
}

.g2-hero__context .g2-hero__lede,
.g2-hero__context .g2-hero__thesis {
  max-width: 62ch;
  color: var(--g2-bone-muted);
  font-size: 0.98rem;
}

.g2-hero__context .g2-hero__lede strong,
.g2-hero__context .g2-hero__thesis strong {
  color: var(--g2-bone);
}

.g2-hero__context .g2-source {
  align-self: end;
  margin: 0;
  color: var(--g2-bone-faint);
  font-size: 0.72rem;
  line-height: 1.65;
}

body.g2-page[data-emergentism-surface="panorama"] .g2-tier-legend--early {
  grid-area: legend;
  width: 100%;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: -12px;
  overflow: visible;
}

body.g2-page[data-emergentism-surface="panorama"] .g2-tier-legend--early span {
  min-height: 68px;
  padding: 10px 12px;
  font-size: 0.8rem;
}

body.g2-page[data-emergentism-surface="panorama"] .g2-tier-legend--early b {
  font-size: 0.8rem;
}

body.g2-page[data-emergentism-surface="panorama"] .g2-section {
  padding-block: clamp(68px, 7.5vw, 108px);
}

body.g2-page[data-emergentism-surface="panorama"] .g2-section h2 {
  font-size: clamp(2.65rem, 5vw, 5.1rem);
}

.g2-field-kit--practice {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
  margin: 0 0 34px;
  padding-block: 24px;
}

.g2-field-kit--practice > div {
  align-self: center;
}

.g2-field-kit h2,
.g2-field-kit h3 {
  margin: 5px 0 0;
  font: 430 clamp(1.35rem, 2.2vw, 1.7rem)/1.05 var(--g2-display);
  letter-spacing: -0.025em;
}

.g2-field-kit--practice ol {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.g2-field-kit--practice li {
  min-height: 148px;
}

.g2-field-kit--practice .g2-field-kit__boundary {
  grid-column: 1 / -1;
  margin-top: 0;
}

.g2-field-kit li span,
.g2-field-kit li small,
.g2-field-kit__label,
.g2-atlas__caption,
.g2-role-strip span,
.g2-trust-grid span {
  font-size: 0.8rem;
}

.g2-field-kit li span,
.g2-field-kit li small,
.g2-field-kit__label {
  font-size: 0.8rem;
}

@media (max-width: 1020px) {
  .g2-atlas-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .g2-hero--cartographic { grid-template-columns: 1fr; }
  .g2-hero--cartographic .g2-atlas { max-width: 760px; }
  .g2-rung--detail > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g2-tier-legend { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .g2-convergence-ledger { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.g2-page[data-emergentism-surface="panorama"] .g2-hero--portal {
    grid-template-areas:
      "opening"
      "atlas"
      "context"
      "legend";
    grid-template-columns: 1fr;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-world-figure { max-width: 760px; }
  .g2-hero__context { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g2-hero__context .g2-source { grid-column: 1 / -1; }
  body.g2-page[data-emergentism-surface="panorama"] .g2-tier-legend--early {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .g2-field-kit--practice { grid-template-columns: 1fr; }
  .g2-field-kit--practice ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .g2-atlas-rail {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-atlas-rail {
    position: static;
    top: auto;
    min-height: 44px;
    padding-inline: 0;
    backdrop-filter: none;
  }
  .g2-atlas-rail::before {
    content: "Journey";
    position: sticky;
    left: 0;
    z-index: 2;
    flex: 0 0 84px;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-right: 1px solid var(--g2-rule-strong);
    background: var(--g2-void);
    color: var(--g2-actual);
    font: 650 0.58rem/1.25 var(--g2-mono);
    letter-spacing: 0.055em;
    text-transform: uppercase;
  }
  .g2-atlas-rail a { flex: 0 0 92px; min-height: 44px; border-bottom: 0; }
  .g2-atlas-rail a:nth-child(3) { border-right: 1px solid var(--g2-rule); }
  .g2-hero--cartographic { padding-top: 38px; }
  .g2-hero--cartographic h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .g2-tier-legend { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g2-seven-acts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g2-seven-acts span:nth-child(even) { border-right: 0; }
  .g2-seven-acts span { border-bottom: 1px solid var(--g2-rule); }
  .g2-seven-acts span:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .g2-spine--home,
  .g2-insight-grid,
  .g2-convergence-ledger,
  .g2-frontier-grid,
  .g2-map-act,
  .g2-exit-band { grid-template-columns: 1fr; }
  .g2-rung--detail summary {
    min-height: 112px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px;
  }
  .g2-rung--detail summary > small { grid-column: 2 / -1; }
  .g2-rung--detail > div { grid-template-columns: 1fr; }
  .g2-rung--detail > div p { min-height: 0; }
  .g2-register-hinge { margin-top: 24px; padding-top: 24px; }
  .g2-map-act .g2-button { width: 100%; }
  .g2-claim-compact dl { grid-template-columns: 1fr; }
  .g2-claim-compact dt { padding-bottom: 2px; }
  .g2-claim-compact dd { padding-top: 4px; border-top: 0; }
  .g2-exit-band .g2-churn-maxim,
  .g2-workshop-disclosure,
  .g2-exit-band .g2-actions { grid-column: 1; }
  body.g2-page[data-emergentism-surface="panorama"] .g2-hero--portal {
    row-gap: 30px;
    padding-block: 42px 54px;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-hero--portal h1 {
    max-width: 9.6ch;
    font-size: clamp(3.25rem, 15vw, 4.55rem);
  }
  .g2-hero__future {
    margin-left: 0.34em;
    font-size: 0.76em;
  }
  .g2-hero__context { grid-template-columns: 1fr; gap: 18px; }
  .g2-hero__context .g2-source { grid-column: 1; }
  body.g2-page[data-emergentism-surface="panorama"] .g2-tier-legend--early {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    overflow: visible;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-tier-legend--early span {
    min-height: 76px;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-world-figure .g2-atlas__viewport {
    overflow: visible;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-world-figure .g2-atlas__viewport svg {
    width: 100%;
    max-width: 100%;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-world-figure text {
    font-size: 22px;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-world-figure .g2-diagram-cue {
    display: none;
  }
}

@media (max-width: 1020px) {
  .g2-transaction-stage { grid-template-columns: 1fr; }
  .g2-transaction-board { min-height: 500px; }
  .g2-nav__desktop { display: none; }
  .g2-nav__mobile { display: flex; }
  .g2-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .g2-hero--portal .g2-atlas { max-width: 720px; }
  .g2-hero__copy { max-width: 760px; }
  .g2-atlas { max-width: 820px; }
  .g2-spine { grid-template-columns: repeat(4, 1fr); }
  .g2-rung:nth-child(4) { border-right: 0; }
  .g2-rung:nth-child(-n + 4) { border-bottom: 1px solid var(--g2-rule); }
  .g2-force-grid { grid-template-columns: repeat(2, 1fr); }
  .g2-fork,
  .g2-research-grid,
  .g2-meta-grid { grid-template-columns: 1fr; }
  .g2-firewall-grid,
  .g2-signature-grid { grid-template-columns: 1fr; }
  .g2-g7 { grid-template-columns: 1fr; }
  .g2-g7__legend { width: min(100%, 680px); }
  .g2-loop { grid-template-columns: repeat(4, 1fr); }
  .g2-loop span:nth-child(4) { border-right: 0; }
  .g2-loop span:nth-child(-n + 4) { border-bottom: 1px solid var(--g2-rule); }
  .g2-world-return__steps { grid-template-columns: repeat(4, 1fr); }
  .g2-world-return__step:nth-child(4) { border-right: 0; }
  .g2-world-return__step:nth-child(-n + 4) {
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-churn-seam__track { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .g2-churn-step:nth-child(4) { border-right: 0; }
  .g2-churn-step:nth-child(-n + 4) { border-bottom: 1px solid var(--g2-rule); }
}

@media (max-width: 680px) {
  body.g2-page[data-emergentism-surface="panorama"] .g2-hero {
    padding-block: 38px 50px;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-section {
    padding-block: 42px;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-section__head {
    margin-bottom: 24px;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-role-strip,
  body.g2-page[data-emergentism-surface="panorama"] .g2-trust-grid {
    margin-top: 20px;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-role-strip article,
  body.g2-page[data-emergentism-surface="panorama"] .g2-trust-grid article,
  body.g2-page[data-emergentism-surface="panorama"] .g2-research-grid article {
    padding: 15px 14px;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-spine--panorama .g2-rung {
    min-height: 110px;
    padding: 15px 14px;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-transaction-sector {
    min-height: 110px;
  }
  body.g2-page[data-emergentism-surface="panorama"] .g2-transaction-board {
    min-height: 440px;
  }
  .g2-field-kit {
    margin-top: 22px;
    padding-block: 17px;
  }
  .g2-field-kit li {
    min-height: 108px;
    padding: 11px 12px;
  }
  .g2-field-kit ol {
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .g2-tier-legend--early {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
    overflow: visible;
  }
  .g2-atlas__viewport {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .g2-world-figure .g2-atlas__viewport svg,
  .g2-double-atlas .g2-atlas__viewport svg {
    width: 760px;
    max-width: none;
  }
  .g2-diagram-cue {
    min-height: 48px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 14px;
    border-top: 1px solid var(--g2-rule);
    color: var(--g2-bone-faint);
    font: 600 0.62rem/1.4 var(--g2-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .g2-transaction-board {
    min-height: 720px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .g2-transaction-board::before,
  .g2-transaction-board::after { display: none; }
  .g2-transaction-sector { min-height: 170px; }
  .g2-transaction-coin { display: none; }
  .g2-transaction-boundary { grid-template-columns: 1fr; }
  .g2-transaction-boundary b { rotate: 90deg; }
  .g2-question-grid { grid-template-columns: 1fr; }
  .g2-role-strip,
  .g2-trust-grid,
  .g2-section--research-sockets .g2-research-grid { grid-template-columns: 1fr; }
  .g2-entry-door { min-height: 82px; }
  .g2-hero--portal .g2-atlas { margin-top: 4px; }
  .g2-horizon-line { grid-template-columns: 1fr; }
  .g2-horizon-line > span:last-child { text-align: left; }
  .g2-horizon-line > b { display: none; }
  .g2-question { padding: 22px 17px; }
  .g2-churn-seam > figcaption {
    align-items: flex-start;
    flex-direction: column;
  }
  .g2-churn-seam__track { grid-template-columns: 1fr; }
  .g2-churn-step,
  .g2-churn-step:nth-child(4) {
    min-height: 92px;
    padding: 38px 16px 15px;
    border-right: 0;
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-churn-step:last-child { border-bottom: 0; }
  .g2-churn-branch,
  .g2-drop__grid { grid-template-columns: 1fr; }
  :root {
    --g2-page: min(100% - 28px, 1180px);
    --g2-nav-h: 64px;
  }
  .g2-nav__inner { gap: 6px; }
  .g2-brand__mark { display: none; }
  .g2-brand__word { display: inline; font-size: 0.76rem; }
  .g2-mobile__direct,
  .g2-menu summary {
    min-width: 48px;
    justify-content: center;
    padding-inline: 10px;
  }
  .g2-menu__panel {
    position: fixed;
    top: calc(var(--g2-nav-h) + 8px);
    right: 14px;
    left: 14px;
    min-width: 0;
  }
  .g2-atlas-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .g2-atlas-nav a {
    border-right: 1px solid var(--g2-rule);
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-atlas-nav a:nth-child(even) { border-right: 0; }
  .g2-atlas-nav a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .g2-thesis-fence { grid-template-columns: 1fr; }
  .g2-thesis-fence p:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-g7-map,
  .g2-burrisphere-ascent__stage,
  .g2-helix__stage {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }
  .g2-diagram-scroll-cue { display: block; }
  .g2-g7-map svg,
  .g2-burrisphere-ascent svg,
  .g2-helix svg {
    width: 640px;
    max-width: none;
  }
  .g2-burrisphere-phase-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .g2-reciprocal-spectrum {
    grid-template-columns: 1fr;
  }
  .g2-reciprocal-spectrum__pole:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-reciprocal-spectrum__pole:last-child {
    border-top: 1px solid var(--g2-rule);
    border-left: 0;
  }
  .g2-strategy-compression {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .g2-strategy-compression__axes {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .g2-strategy-compression__axes > span { padding-inline: 11px; }
  .g2-strategy-axis--vertical { padding-inline: 10px; }
  .g2-strategy-fence { grid-template-columns: 1fr; }
  .g2-strategy-fence__item {
    border-right: 0;
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-strategy-fence__item:last-child { border-bottom: 0; }
  .g2-local-nav { position: static; }
  .g2-local-nav__inner { grid-template-columns: 1fr; }
  .g2-local-nav__label {
    min-height: 40px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-local-nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
  .g2-local-nav__links a {
    min-width: 0;
    padding-inline: 10px;
    border-right: 1px solid var(--g2-rule);
    border-bottom: 1px solid var(--g2-rule);
    white-space: normal;
  }
  .g2-local-nav__links a:nth-child(even) { border-right: 0; }
  .g2-thesis-band { grid-template-columns: 1fr; }
  .g2-thesis-band__thesis { box-shadow: inset 0 4px var(--g2-actual); }
  .g2-thesis-band__fence {
    border-top: 1px solid var(--g2-rule-strong);
    border-left: 0;
  }
  .g2-g7__plane { grid-template-columns: 1fr; }
  .g2-g7__plane::before,
  .g2-g7__plane::after { display: none; }
  .g2-g7__quadrant { min-height: 150px; }
  .g2-titan-axis { min-height: 440px; }
  .g2-titan-axis__station {
    width: calc(100% - 16px);
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 15px 14px;
  }
  .g2-provenance {
    align-items: flex-start;
    flex-direction: column;
  }
  .g2-world-return__steps { grid-template-columns: 1fr; }
  .g2-world-return__step {
    min-height: 96px;
    padding: 38px 16px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-world-return__step:nth-child(-n + 4) {
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-world-return__step:last-child { border-bottom: 0; }
  .g2-hero { padding: 54px 0 70px; }
  .g2-hero h1 { font-size: clamp(3.1rem, 16vw, 5.1rem); }
  .g2-atlas__caption { grid-template-columns: 1fr 1fr; }
  .g2-section { padding: 72px 0; }
  .g2-section__head { grid-template-columns: 1fr; margin-bottom: 32px; }
  .g2-page-hero h1 { font-size: clamp(3.1rem, 16vw, 5.4rem); }
  .g2-definition-list { grid-template-columns: 1fr; }
  .g2-definition-list dt { padding-bottom: 4px; border-bottom: 0; }
  .g2-definition-list dd { padding-top: 0; }
  .g2-reference-list a { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .g2-spine,
  .g2-force-grid,
  .g2-practice-grid { grid-template-columns: 1fr; }
  .g2-rung {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-rung:last-child { border-bottom: 0; }
  .g2-loop { grid-template-columns: 1fr 1fr; }
  .g2-loop span:nth-child(even) { border-right: 0; }
  .g2-loop span { border-bottom: 1px solid var(--g2-rule); }
  .g2-loop span:last-child { border-bottom: 0; }
  .g2-footer__inner { grid-template-columns: 1fr; }
  .g2-footer nav { justify-content: flex-start; }
  .g2-footer__key { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g2-footer__key-item:nth-child(2) { border-right: 0; }
  .g2-footer__key-item:nth-child(-n+2) { border-bottom: 1px solid var(--g2-rule); }
  .g2-footer__boundary { flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
  body.g2-page[data-emergentism-surface="panorama"] .g2-tier-legend--early,
  .g2-field-kit--practice ol {
    grid-template-columns: 1fr;
  }

  body.g2-page[data-emergentism-surface="panorama"] .g2-tier-legend--early span,
  .g2-field-kit--practice li {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .g2-section__head {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }
}

@media (max-width: 640px) {
  .g2-power-equation { grid-template-columns: 1fr; overflow: visible; }
  .g2-power-equation > span {
    min-height: 88px;
    padding: 15px 16px;
  }
  .g2-power-equation--binary > .g2-power-term { min-height: 176px; }
  .g2-power-equation > b {
    min-width: 0;
    min-height: 36px;
    border-top: 1px solid var(--g2-rule);
    border-right: 0;
    border-bottom: 1px solid var(--g2-rule);
    border-left: 0;
  }
}

@media (max-width: 360px) {
  .g2-mobile__direct { font-size: 0.69rem; padding-inline: 8px; }
  .g2-brand__word { font-size: 0.69rem; letter-spacing: 0.04em; }
  .g2-actions { flex-direction: column; }
  .g2-button { width: 100%; }
  .g2-action-link {
    width: 100%;
    justify-content: flex-start;
  }
  .g2-atlas__caption { grid-template-columns: 1fr; }
  .g2-footer__key { grid-template-columns: 1fr; }
  .g2-footer__key-item,
  .g2-footer__key-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--g2-rule);
  }
  .g2-footer__key-item:last-child { border-bottom: 0; }
  .g2-atlas-nav { grid-template-columns: 1fr; }
  .g2-atlas-nav a,
  .g2-atlas-nav a:nth-child(even) {
    grid-column: auto;
    border-right: 0;
  }
  .g2-thesis-fence p { padding: 15px 14px; }
  .g2-burrisphere-preview figcaption { padding-inline: 14px; }
  .g2-entry-door { min-height: 76px; padding: 12px; }
  .g2-entry-door strong { font-size: 1.05rem; }
  .g2-entry-door small { display: none; }
  body.g2-page[data-emergentism-surface="panorama"] .g2-world-figure text {
    font-size: 25px;
  }
  .g2-g7-map svg,
  .g2-burrisphere-ascent svg,
  .g2-helix svg { width: 560px; }
  .g2-burrisphere-phase-list { grid-template-columns: 1fr; }
  .g2-burrisphere-ascent__legend { flex-direction: column; }
  .g2-reciprocal-spectrum__segments {
    grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
  }
  .g2-strategy-compression {
    display: block;
  }
  .g2-strategy-compression__axes {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .g2-strategy-compression__axes > span {
    min-height: 48px;
    justify-content: flex-start !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--g2-rule);
    text-align: left !important;
  }
  .g2-strategy-compression__grid,
  .g2-strategy-compression__matrix {
    grid-template-columns: 1fr;
  }
  .g2-strategy-axis--vertical,
  .g2-strategy-axis--horizontal {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 6px;
    min-height: 0;
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--g2-rule-strong);
  }
  .g2-strategy-axis__line { display: none; }
  .g2-strategy-axis__label,
  .g2-strategy-axis__label--start,
  .g2-strategy-axis__label--end {
    justify-self: start;
    text-align: left;
  }
  .g2-strategy-cell {
    min-height: 150px;
    padding: 18px 16px;
  }
  .g2-strategy-compression__fence { min-height: 0; }
  .g2-local-nav__links { grid-template-columns: 1fr; }
  .g2-local-nav__links a {
    border-right: 0;
  }
  .g2-thesis-band__thesis,
  .g2-thesis-band__fence { padding: 22px 18px; }
  .g2-g7__quadrant { padding: 19px 16px; }
  .g2-research-socket { padding: 18px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html[data-gestalt="v2"] { scroll-behavior: auto; }
  html[data-gestalt="v2"] *,
  html[data-gestalt="v2"] *::before,
  html[data-gestalt="v2"] *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .g2-burrisphere-path {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
  .g2-helix__front,
  .g2-helix__back {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
  [data-g2-reveal],
  [data-g2-reveal-group] > [data-g2-reveal-item],
  [data-g2-draw] [data-g2-path] {
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

@media (forced-colors: active) {
  .g2-nav,
  .g2-atlas,
  .g2-panel,
  .g2-entry-door,
  .g2-rung,
  .g2-button,
  .g2-field-kit,
  .g2-action-link,
  .g2-note,
  .g2-definition-list,
  .g2-disclosure,
  .g2-power-equation,
  .g2-g7__quadrant,
  .g2-titan-axis__station {
    border-color: CanvasText;
  }
  .g2-page .g2-button--primary {
    border-color: Highlight;
    background: Highlight;
    color: HighlightText;
  }
  .g2-atlas path,
  .g2-atlas circle {
    stroke: CanvasText !important;
  }
  .g2-atlas text {
    fill: CanvasText !important;
  }
  [data-g2-reveal],
  [data-g2-reveal-group] > [data-g2-reveal-item],
  [data-g2-draw] [data-g2-path] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

@media print {
  :root { color-scheme: light; }
  body.g2-page { background: #fff; color: #111; }
  .g2-nav,
  .g2-actions,
  .g2-atlas-nav { display: none !important; }
  .g2-page p,
  .g2-page li { color: #222 !important; }
  .g2-section { break-inside: avoid; }
  .g2-thesis-fence,
  .g2-power-equation,
  .g2-g7-map,
  .g2-burrisphere-ascent,
  .g2-helix,
  .g2-reciprocal-spectrum,
  .g2-burrisphere-phase-list li,
  .g2-strategy-compression,
  .g2-strategy-cell,
  .g2-strategy-compression__fence,
  .g2-strategy-fence__item {
    background: #fff !important;
    color: #111 !important;
    border-color: #777 !important;
  }
  .g2-transaction-stage,
  .g2-transaction-board,
  .g2-transaction-sector,
  .g2-transaction-packet,
  .g2-transaction-boundary {
    background: #fff !important;
    color: #111 !important;
    border-color: #777 !important;
  }
  .g2-g7-map,
  .g2-burrisphere-ascent,
  .g2-helix,
  .g2-strategy-compression { break-inside: avoid; }
  .g2-g7-map text,
  .g2-burrisphere-ascent text,
  .g2-helix text { fill: #111 !important; }
  .g2-map-cell rect,
  .g2-titan-node circle,
  .g2-burrisphere-phase circle,
  .g2-burrisphere-phase rect,
  .g2-burrisphere-titan circle,
  .g2-burrisphere-spectrum-node,
  .g2-helix__frame circle,
  .g2-helix__phase circle {
    fill: #fff !important;
    stroke: #111 !important;
  }
  .g2-map-line,
  .g2-burrisphere-axis,
  .g2-burrisphere-axis-guide,
  .g2-burrisphere-spectrum-line,
  .g2-helix__axis,
  .g2-helix__latitude { stroke: #333 !important; }
  .g2-burrisphere-path,
  .g2-helix__front,
  .g2-helix__back { stroke: #111 !important; }
  .g2-burrisphere-path--back,
  .g2-helix__back { stroke-dasharray: 8 7 !important; }
  .g2-power-equation strong,
  .g2-power-equation small,
  .g2-thesis-fence p,
  .g2-g7-map figcaption,
  .g2-burrisphere-ascent figcaption,
  .g2-helix figcaption,
  .g2-reciprocal-spectrum__pole,
  .g2-reciprocal-spectrum__segment,
  .g2-strategy-axis,
  .g2-strategy-cell__coordinate,
  .g2-strategy-cell__name,
  .g2-strategy-cell h3,
  .g2-strategy-cell p,
  .g2-strategy-cell__signature,
  .g2-strategy-cell__gloss,
  .g2-strategy-compression__fence { color: #111 !important; }
  .g2-strategy-cell { box-shadow: inset 0 2px #111 !important; }
}
