@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #111310;
  --ink-soft: #1b201c;
  --paper: #f2f0e8;
  --paper-deep: #e5e4da;
  --white: #fffef8;
  --signal: #b8ef54;
  --signal-dark: #6c9f14;
  --coral: #ef6f51;
  --blue: #78b6c8;
  --blue-deep: #225a68;
  --text: #171a17;
  --muted: #626962;
  --line: rgba(17, 19, 16, 0.19);
  --line-light: rgba(255, 255, 255, 0.18);
  --header: 78px;
  --content: 1240px;
  --pad: 38px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

.shell {
  width: min(calc(100% - (var(--pad) * 2)), var(--content));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--signal);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  height: var(--header);
  border-bottom: 1px solid var(--line);
  background: rgba(242, 240, 232, 0.96);
  backdrop-filter: blur(16px);
}

.site-header-overlay {
  position: absolute;
  width: 100%;
  border-bottom-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
  backdrop-filter: none;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-symbol {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 6px;
  border: 1px solid currentColor;
}

.brand-symbol span {
  display: block;
  align-self: end;
  background: currentColor;
}

.brand-symbol span:nth-child(1) {
  height: 42%;
}

.brand-symbol span:nth-child(2) {
  height: 80%;
}

.brand-symbol span:nth-child(3) {
  height: 58%;
  background: var(--signal);
}

.brand-name {
  font-size: 18px;
  line-height: 1;
}

.brand-home-label {
  padding-left: 12px;
  border-left: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.68);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.nav-action) {
  position: relative;
  padding-block: 10px;
}

.site-nav > a:not(.nav-action)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--signal-dark);
  transition: transform 160ms ease;
}

.site-header-overlay .site-nav > a:not(.nav-action)::after {
  background: var(--signal);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
}

.site-header-overlay .nav-action {
  background: var(--signal);
  color: var(--ink);
}

.nav-action:hover {
  background: var(--coral);
}

.icon-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: transform 160ms ease;
}

a:hover .icon-arrow,
button:hover .icon-arrow {
  transform: translateX(3px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle > span:nth-child(2) {
  transform: translateY(-4px);
}

.nav-toggle > span:nth-child(3) {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: rotate(-45deg);
}

.home-hero {
  position: relative;
  height: min(760px, calc(100svh - 52px));
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 10, 0.96) 0%, rgba(10, 12, 10, 0.78) 48%, rgba(10, 12, 10, 0.2) 82%),
    linear-gradient(0deg, rgba(10, 12, 10, 0.76) 0%, rgba(10, 12, 10, 0) 42%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: end;
  gap: 70px;
  padding-top: calc(var(--header) + 56px);
  padding-bottom: 62px;
}

.hero-copy {
  max-width: 760px;
}

.kicker,
.section-index,
.system-label,
.method-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.kicker span + span {
  padding-left: 20px;
  border-left: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.58);
}

.kicker-on-dark {
  color: var(--signal);
}

.home-hero h1 {
  margin: 0;
  font-size: 84px;
  font-weight: 700;
  line-height: 0.92;
}

.hero-statement {
  margin: 20px 0 0;
  color: var(--signal);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.08;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.6;
}

.button-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-signal {
  background: var(--signal);
  color: var(--ink);
}

.button-signal:hover {
  background: var(--coral);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(17, 19, 16, 0.24);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(17, 19, 16, 0.7);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--blue-deep);
}

.button-light {
  border-color: var(--ink);
  color: var(--ink);
}

.button-light:hover {
  background: var(--ink);
  color: var(--white);
}

.run-ledger {
  width: 370px;
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 3px solid var(--signal);
  background: rgba(13, 16, 13, 0.9);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.ledger-head,
.ledger-title,
.run-ledger > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.ledger-head {
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.62);
}

.ledger-title {
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
}

.ledger-title strong {
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.run-ledger ol {
  margin: 0;
  padding: 0 18px;
  list-style: none;
}

.run-ledger li {
  min-height: 68px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-light);
}

.run-ledger li > span,
.run-ledger li > i,
.run-ledger small,
.run-ledger > p {
  color: rgba(255, 255, 255, 0.48);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
}

.run-ledger li strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.run-ledger li small {
  display: block;
  margin-top: 2px;
  text-transform: none;
}

.run-ledger li > i {
  text-align: right;
}

.run-ledger li.is-complete > i {
  color: var(--blue);
}

.run-ledger li.is-active {
  position: relative;
}

.run-ledger li.is-active::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: -18px;
  width: 3px;
  background: var(--signal);
}

.run-ledger li.is-active > i {
  color: var(--signal);
}

.run-ledger > p {
  margin: 0;
  justify-content: flex-start;
}

.signal-band {
  min-height: 88px;
  display: flex;
  align-items: stretch;
  background: var(--signal);
  color: var(--ink);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid > div {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  border-left: 1px solid rgba(17, 19, 16, 0.2);
}

.signal-grid > div:last-child {
  border-right: 1px solid rgba(17, 19, 16, 0.2);
}

.signal-grid span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.signal-grid strong {
  font-size: 14px;
}

.section {
  padding: 120px 0;
}

.section-paper {
  background: var(--paper);
}

.section-ink {
  background: var(--ink);
  color: var(--white);
}

.section-index {
  margin: 0;
  color: var(--muted);
}

.section-ink .section-index,
.cta-band .section-index {
  color: var(--signal);
}

.editorial-intro {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.6fr) minmax(280px, 0.7fr);
  align-items: start;
  gap: 48px;
}

.editorial-intro h2,
.section-heading h2,
.control-heading h2,
.cta-layout h2,
.studio-statement blockquote,
.honesty-band h2 {
  margin: 0;
  font-size: 49px;
  font-weight: 560;
  line-height: 1.03;
}

.intro-copy p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.systems-home {
  border-top: 1px solid var(--line);
}

.system-feature {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 96px 0;
}

.system-feature-ever {
  background: var(--coral);
  color: var(--ink);
}

.system-feature-novel {
  background: var(--blue);
  color: var(--ink);
}

.system-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: 90px;
}

.system-label {
  margin: 0 0 34px;
  display: flex;
  gap: 18px;
}

.system-label span + span {
  padding-left: 18px;
  border-left: 1px solid currentColor;
}

.system-copy h2,
.detail-sticky h2 {
  margin: 0;
  font-size: 72px;
  font-weight: 700;
  line-height: 0.94;
}

.system-summary {
  margin: 26px 0 0;
  font-size: 21px;
  line-height: 1.45;
}

.plain-list {
  margin: 30px 0 36px;
  padding: 0;
  border-top: 1px solid rgba(17, 19, 16, 0.25);
  list-style: none;
}

.plain-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(17, 19, 16, 0.25);
  font-size: 14px;
  font-weight: 600;
}

.forge-map,
.context-map {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(17, 19, 16, 0.36);
  background: var(--ink);
  color: var(--white);
  box-shadow: 24px 24px 0 rgba(17, 19, 16, 0.13);
}

.forge-map {
  padding: 24px;
}

.forge-map-head {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.54);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.forge-lane {
  min-height: 80px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
}

.forge-lane span,
.forge-lane i {
  color: rgba(255, 255, 255, 0.5);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.forge-lane strong {
  font-size: 17px;
}

.forge-lane i {
  text-align: right;
}

.forge-lane.is-hot {
  margin-inline: -24px;
  padding-inline: 24px;
  background: var(--signal);
  color: var(--ink);
}

.forge-lane.is-hot span,
.forge-lane.is-hot i {
  color: var(--ink);
}

.context-map {
  min-height: 540px;
  overflow: hidden;
}

.context-map::before,
.context-map::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}

.context-map::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.context-map::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.context-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid var(--signal);
  border-radius: 50%;
  background: var(--ink);
  text-align: center;
}

.context-core span,
.context-core small,
.context-ring span,
.context-ring i {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
}

.context-core strong {
  margin: 3px 0;
  color: var(--signal);
  font-size: 48px;
  line-height: 1;
}

.context-core small {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: none;
}

.context-ring {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: var(--ink-soft);
}

.context-ring i {
  color: var(--blue);
  white-space: nowrap;
}

.ring-one {
  top: 54px;
  right: 40px;
  left: 40px;
}

.ring-two {
  right: 38px;
  bottom: 54px;
  left: 38px;
}

.ring-three {
  top: 50%;
  right: 36px;
  width: 170px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

.method-section {
  background: var(--paper-deep);
}

.section-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 160px minmax(0, 760px);
  justify-content: space-between;
  gap: 60px;
}

.section-heading p:not(.section-index) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
}

.method-console {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: var(--white);
}

.method-tabs {
  border-right: 1px solid var(--line-light);
}

.method-tabs button {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  text-align: left;
  cursor: pointer;
}

.method-tabs button span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.method-tabs button[aria-selected="true"] {
  background: var(--signal);
  color: var(--ink);
}

.method-panel {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 60px;
  padding: 62px;
}

.method-eyebrow {
  margin: 0 0 22px;
  color: var(--signal);
}

.method-panel h3 {
  max-width: 670px;
  margin: 0;
  font-size: 50px;
  font-weight: 560;
  line-height: 1;
}

.method-panel > div > p:not(.method-eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.artifact-stack {
  border-top: 2px solid var(--signal);
}

.artifact-stack span {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.control-heading,
.control-item {
  min-height: 280px;
  padding: 38px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.control-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink-soft);
}

.control-item > span {
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.control-item h3 {
  margin: 60px 0 12px;
  font-size: 28px;
}

.control-item p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.cta-band {
  padding: 88px 0;
  background: var(--coral);
  color: var(--ink);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 100px;
}

.cta-layout .section-index {
  margin-bottom: 24px;
  color: var(--ink);
}

.cta-layout p:not(.section-index) {
  margin: 0 0 26px;
}

.site-footer {
  padding: 78px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.6fr));
  gap: 54px;
  padding-bottom: 70px;
}

.footer-intro p {
  max-width: 390px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--signal);
}

.footer-contact a {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.42);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.footer-base div {
  display: flex;
  gap: 24px;
}

.page-hero {
  padding: 112px 0 104px;
  background: var(--ink);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 90px;
}

.page-hero .section-index {
  margin-bottom: 34px;
  color: var(--signal);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 65px;
  font-weight: 650;
  line-height: 0.98;
}

.page-hero-grid > p,
.legal-hero > p:not(.section-index) {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.system-detail {
  padding: 120px 0;
}

.system-detail-ever {
  background: var(--paper);
}

.system-detail-novel {
  background: var(--blue);
}

.detail-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: start;
  gap: 120px;
}

.detail-sticky {
  position: sticky;
  top: calc(var(--header) + 30px);
}

.detail-sticky .system-label {
  margin-bottom: 28px;
}

.detail-sticky h2 {
  font-size: 58px;
}

.detail-sticky > p:not(.system-label) {
  margin: 24px 0 30px;
  color: var(--muted);
}

.system-detail-novel .detail-sticky > p:not(.system-label) {
  color: var(--blue-deep);
}

.detail-lead {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.detail-lead h3 {
  margin: 0;
  font-size: 45px;
  font-weight: 560;
  line-height: 1.06;
}

.detail-lead p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
}

.system-detail-novel .detail-lead p {
  color: var(--blue-deep);
}

.vertical-flow {
  margin: 64px 0;
  padding: 0;
  list-style: none;
}

.vertical-flow li {
  min-height: 130px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.vertical-flow li > span {
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.vertical-flow strong {
  display: block;
  font-size: 23px;
}

.vertical-flow p {
  margin: 7px 0 0;
  color: var(--muted);
}

.output-table {
  border-top: 3px solid var(--ink);
}

.output-table > div {
  min-height: 68px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.output-table .output-head {
  min-height: 48px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.output-table strong {
  font-size: 15px;
}

.output-table span {
  color: var(--muted);
  font-size: 14px;
}

.memory-ledger {
  margin: 64px 0;
  padding: 26px;
  border: 1px solid rgba(17, 19, 16, 0.35);
  background: var(--ink);
  color: var(--white);
}

.memory-ledger > div {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) 110px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
}

.memory-ledger .memory-head {
  min-height: 46px;
  grid-template-columns: 1fr auto;
  color: rgba(255, 255, 255, 0.5);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.memory-head strong {
  color: var(--signal);
  font-size: 9px;
  text-transform: uppercase;
}

.memory-ledger > div > span {
  font-size: 14px;
}

.memory-ledger > div > strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 500;
}

.memory-ledger > div > i {
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
}

.detail-pairs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(17, 19, 16, 0.3);
  border-left: 1px solid rgba(17, 19, 16, 0.3);
}

.detail-pairs > div {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid rgba(17, 19, 16, 0.3);
  border-bottom: 1px solid rgba(17, 19, 16, 0.3);
}

.detail-pairs h3 {
  margin: 0 0 60px;
  font-size: 23px;
}

.detail-pairs p {
  margin: 0;
  color: var(--blue-deep);
  font-size: 15px;
}

.control-plane-page {
  background: var(--paper-deep);
}

.principle-rows {
  border-top: 2px solid var(--ink);
}

.principle-rows > div {
  min-height: 118px;
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.principle-rows span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.principle-rows h3 {
  margin: 0;
  font-size: 25px;
}

.principle-rows p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.page-hero-studio {
  padding-bottom: 118px;
  background: var(--paper);
  color: var(--ink);
}

.studio-hero-layout {
  display: grid;
  grid-template-columns: 130px minmax(0, 1.35fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 54px;
}

.page-hero-studio .section-index {
  align-self: start;
  margin: 0;
  color: var(--muted);
}

.page-hero-studio h1 {
  font-size: 65px;
}

.studio-hero-layout > div p {
  margin: 0 0 18px;
  color: var(--muted);
}

.studio-statement {
  display: grid;
  grid-template-columns: 140px minmax(0, 1.35fr) minmax(280px, 0.6fr);
  gap: 54px;
}

.studio-statement blockquote {
  padding: 0;
  color: var(--ink);
}

.studio-statement > p:last-child {
  margin: 0;
  color: var(--muted);
}

.studio-principles {
  padding: 120px 0;
  background: var(--white);
}

.engagement-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: 110px;
}

.engagement-layout h2 {
  margin: 24px 0;
  font-size: 49px;
  line-height: 1.04;
}

.engagement-layout > div > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.engagement-layout ol {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--signal);
  list-style: none;
}

.engagement-layout li {
  min-height: 110px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.engagement-layout li > span {
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.engagement-layout strong {
  font-size: 21px;
}

.engagement-layout li p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.honesty-band {
  padding: 110px 0;
  background: var(--signal);
}

.honesty-band .shell {
  max-width: 920px;
}

.honesty-band h2 {
  margin-top: 26px;
}

.honesty-band p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
}

.page-hero-contact {
  padding-bottom: 120px;
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.55fr);
  align-items: end;
  gap: 100px;
}

.contact-hero-layout h1 {
  max-width: 820px;
}

.contact-hero-layout > div > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.contact-email {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
  padding: 24px;
  border-top: 3px solid var(--signal);
  background: var(--ink-soft);
}

.contact-email span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.5);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.contact-email strong {
  overflow-wrap: anywhere;
  font-size: 18px;
}

.contact-section {
  padding: 110px 0 130px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: start;
  gap: 110px;
}

.contact-aside ul {
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-aside li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.contact-aside li span {
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.response-note {
  color: var(--muted);
  font-size: 13px;
}

.contact-form {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 180px;
  padding: 12px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--signal-dark);
  box-shadow: 0 2px 0 var(--signal-dark);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 8px;
}

.form-footer p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.page-hero-legal {
  background: var(--paper-deep);
  color: var(--ink);
}

.page-hero-legal .section-index {
  color: var(--muted);
}

.legal-hero {
  max-width: 900px;
}

.legal-hero > p:not(.section-index) {
  max-width: 680px;
  margin-top: 28px;
  color: var(--muted);
}

.legal-content {
  padding: 100px 0 130px;
  background: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 100px;
}

.legal-layout aside {
  position: sticky;
  top: calc(var(--header) + 30px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: start;
  font-size: 14px;
}

.legal-layout aside a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.legal-layout aside a:hover {
  border-bottom-color: currentColor;
}

.legal-layout article section {
  padding: 0 0 54px;
  scroll-margin-top: calc(var(--header) + 30px);
}

.legal-layout h2 {
  margin: 0 0 18px;
  font-size: 31px;
}

.legal-layout p {
  color: var(--muted);
}

.legal-layout article a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found {
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: var(--ink);
  color: var(--white);
}

.not-found .section-index {
  color: var(--signal);
}

.not-found h1 {
  max-width: 850px;
  margin: 26px 0 22px;
  font-size: 64px;
  line-height: 1;
}

.not-found p {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
}

.load-in {
  animation: load-in 650ms ease both;
}

.delay-2 {
  animation-delay: 140ms;
}

@keyframes load-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --pad: 28px;
  }

  .site-nav {
    gap: 20px;
  }

  .brand-home-label {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 36px;
  }

  .home-hero h1 {
    font-size: 70px;
  }

  .hero-statement {
    font-size: 30px;
  }

  .run-ledger {
    width: 310px;
  }

  .system-feature-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(430px, 1.25fr);
    gap: 54px;
  }

  .system-copy h2 {
    font-size: 60px;
  }

  .forge-lane {
    grid-template-columns: 72px 1fr 28px;
  }

  .editorial-intro,
  .studio-statement {
    grid-template-columns: 110px minmax(0, 1.4fr) minmax(250px, 0.6fr);
    gap: 36px;
  }

  .editorial-intro h2,
  .section-heading h2,
  .control-heading h2,
  .cta-layout h2,
  .studio-statement blockquote,
  .honesty-band h2,
  .engagement-layout h2 {
    font-size: 43px;
  }

  .detail-grid {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 70px;
  }

  .contact-grid {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 60px;
  }

  .studio-hero-layout {
    grid-template-columns: 100px minmax(0, 1.3fr) minmax(240px, 0.55fr);
    gap: 38px;
  }
}

@media (max-width: 880px) {
  :root {
    --header: 70px;
  }

  .nav-toggle {
    position: relative;
    display: grid;
  }

  .site-header {
    background: var(--paper);
    color: var(--ink);
    backdrop-filter: none;
  }

  .site-header-overlay {
    background: transparent;
    color: var(--white);
  }

  .site-nav {
    position: fixed;
    z-index: 79;
    top: var(--header);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px var(--pad) 40px;
    transform: translateX(100%);
    visibility: hidden;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 160ms ease;
  }

  .site-nav.is-open {
    transform: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.nav-action) {
    min-height: 62px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 24px;
  }

  .site-nav > a:not(.nav-action)::after {
    display: none;
  }

  .site-nav .nav-action {
    min-height: 54px;
    margin-top: 24px;
    justify-content: center;
    background: var(--ink);
    color: var(--white);
  }

  .home-hero {
    min-height: 620px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-bottom: 46px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .run-ledger {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 12, 10, 0.94), rgba(10, 12, 10, 0.42)),
      linear-gradient(0deg, rgba(10, 12, 10, 0.72), rgba(10, 12, 10, 0.08));
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-grid > div:nth-child(3),
  .signal-grid > div:nth-child(4) {
    border-top: 1px solid rgba(17, 19, 16, 0.2);
  }

  .editorial-intro,
  .section-heading,
  .studio-statement,
  .studio-hero-layout,
  .page-hero-grid,
  .contact-hero-layout,
  .contact-grid,
  .legal-layout,
  .cta-layout,
  .engagement-layout {
    grid-template-columns: 1fr;
  }

  .editorial-intro,
  .studio-statement,
  .studio-hero-layout {
    gap: 34px;
  }

  .system-feature {
    min-height: 0;
  }

  .system-feature-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .system-copy {
    max-width: 680px;
  }

  .forge-map,
  .context-map {
    min-height: 480px;
  }

  .method-console {
    grid-template-columns: 1fr;
  }

  .method-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .method-tabs button {
    min-height: 68px;
    grid-template-columns: 28px 1fr;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .method-panel {
    min-height: 500px;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 44px;
  }

  .control-grid {
    grid-template-columns: 1fr;
  }

  .control-heading,
  .control-item {
    min-height: 230px;
  }

  .cta-layout {
    gap: 38px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .detail-sticky {
    position: static;
    max-width: 600px;
  }

  .studio-hero-layout > .section-index {
    align-self: auto;
  }

  .engagement-layout {
    gap: 60px;
  }

  .legal-layout {
    gap: 60px;
  }

  .legal-layout aside {
    position: static;
    display: flex;
    flex-flow: row wrap;
    gap: 12px 22px;
  }
}

@media (max-width: 600px) {
  :root {
    --pad: 18px;
    --header: 68px;
  }

  body {
    font-size: 16px;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 16px;
  }

  .home-hero {
    height: calc(100svh - 42px);
    min-height: 590px;
    max-height: 700px;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-layout {
    padding-top: calc(var(--header) + 34px);
    padding-bottom: 34px;
  }

  .kicker {
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .kicker span + span {
    padding-left: 14px;
  }

  .home-hero h1 {
    font-size: 49px;
    line-height: 0.96;
  }

  .hero-statement {
    max-width: 330px;
    margin-top: 14px;
    font-size: 27px;
  }

  .hero-lead {
    margin-top: 17px;
    font-size: 17px;
    line-height: 1.48;
  }

  .button-row {
    margin-top: 24px;
    display: grid;
  }

  .button {
    width: 100%;
  }

  .signal-grid > div {
    min-height: 72px;
    gap: 12px;
    padding: 12px 14px;
  }

  .signal-grid strong {
    font-size: 12px;
  }

  .section,
  .studio-principles {
    padding: 78px 0;
  }

  .editorial-intro h2,
  .section-heading h2,
  .control-heading h2,
  .cta-layout h2,
  .studio-statement blockquote,
  .honesty-band h2,
  .engagement-layout h2 {
    font-size: 37px;
    line-height: 1.05;
  }

  .system-feature {
    padding: 76px 0;
  }

  .system-copy h2,
  .detail-sticky h2 {
    font-size: 50px;
  }

  .system-summary {
    font-size: 19px;
  }

  .forge-map,
  .context-map {
    min-height: 390px;
    box-shadow: 10px 10px 0 rgba(17, 19, 16, 0.13);
  }

  .forge-map {
    padding: 16px;
  }

  .forge-lane {
    min-height: 62px;
    grid-template-columns: 58px minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .forge-lane strong {
    font-size: 13px;
  }

  .forge-lane.is-hot {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .context-core {
    width: 136px;
    height: 136px;
  }

  .context-core strong {
    font-size: 38px;
  }

  .ring-one {
    top: 32px;
    right: 18px;
    left: 18px;
  }

  .ring-two {
    right: 18px;
    bottom: 32px;
    left: 18px;
  }

  .ring-three {
    right: 10px;
    width: 145px;
  }

  .method-panel {
    min-height: 470px;
    padding: 32px 22px;
  }

  .method-panel h3 {
    font-size: 38px;
  }

  .control-heading,
  .control-item {
    min-height: 210px;
    padding: 28px 22px;
    border-right: 0;
  }

  .control-item h3 {
    margin-top: 42px;
  }

  .cta-band {
    padding: 72px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-intro {
    grid-column: auto;
  }

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

  .page-hero {
    padding: 76px 0 72px;
  }

  .page-hero h1,
  .page-hero-studio h1 {
    font-size: 45px;
    line-height: 1;
  }

  .page-hero-grid,
  .contact-hero-layout {
    gap: 44px;
  }

  .system-detail {
    padding: 80px 0;
  }

  .detail-grid {
    gap: 50px;
  }

  .detail-lead h3 {
    font-size: 36px;
  }

  .vertical-flow li {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .output-table > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .output-table .output-head {
    display: none;
  }

  .memory-ledger {
    margin: 48px 0;
    padding: 16px;
  }

  .memory-ledger > div {
    grid-template-columns: 1fr auto;
    gap: 5px 14px;
    padding: 12px 0;
  }

  .memory-ledger > div > i {
    grid-column: 1 / -1;
    text-align: left;
  }

  .memory-ledger .memory-head {
    grid-template-columns: 1fr;
  }

  .detail-pairs {
    grid-template-columns: 1fr;
  }

  .detail-pairs > div {
    min-height: 190px;
  }

  .principle-rows > div {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 10px 16px;
    padding: 24px 0;
  }

  .principle-rows p {
    grid-column: 2;
  }

  .honesty-band {
    padding: 78px 0;
  }

  .contact-email {
    min-height: 110px;
    padding: 20px;
  }

  .contact-email strong {
    font-size: 15px;
  }

  .contact-section {
    padding: 78px 0 90px;
  }

  .contact-form {
    padding: 26px 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-content {
    padding: 72px 0 90px;
  }

  .not-found h1 {
    font-size: 45px;
  }
}

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

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