:root {
  --bg: #121417;
  --bg-soft: #171a1e;
  --bg-strong: #1e2228;
  --surface: rgba(25, 28, 32, 0.54);
  --surface-strong: rgba(29, 33, 38, 0.74);
  --surface-muted: rgba(33, 37, 42, 0.48);
  --surface-dark: #101215;
  --surface-dark-soft: #171a1d;
  --text: #ede5d8;
  --text-soft: rgba(237, 229, 216, 0.72);
  --text-faint: rgba(237, 229, 216, 0.48);
  --line: rgba(196, 162, 88, 0.2);
  --line-strong: rgba(196, 162, 88, 0.42);
  --blue: #84aec9;
  --blue-soft: rgba(34, 55, 69, 0.92);
  --amber: #c4a258;
  --amber-soft: rgba(70, 52, 26, 0.9);
  --shadow: none;
  --shadow-dark: none;
  --radius: 0;
  --radius-sm: 0;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  font-family: "Spectral", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(circle at top left, rgba(196, 162, 88, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(132, 174, 201, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 26%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 85%);
  opacity: 0.2;
  pointer-events: none;
}

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

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

code,
pre {
  font-family: "JetBrains Mono", monospace;
}

.environment-badge {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.9);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.16);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-shell {
  position: relative;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 40px 22px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(18, 20, 23, 0.82), rgba(18, 20, 23, 0.44) 68%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 48px, black calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 48px, black calc(100% - 48px), transparent 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-family: "EB Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: "EB Garamond", serif;
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--text-faint);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav-backdrop {
  display: none;
}

.site-nav > a:not(.button) {
  color: var(--text-faint);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"] {
  color: var(--text);
}

.site-nav > a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.38rem;
}

.site-nav .button {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--amber);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  box-shadow: none;
}

.site-nav .button:hover {
  color: var(--text);
  transform: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 7px auto;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
}

.button-primary {
  background: rgba(237, 229, 216, 0.94);
  border-color: rgba(237, 229, 216, 0.94);
  color: #121417;
  box-shadow: none;
}

.button-primary:hover {
  background: rgba(237, 229, 216, 1);
  border-color: rgba(237, 229, 216, 1);
  transform: translateY(-1px);
  box-shadow: none;
}

.button-secondary,
.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(17, 17, 17, 0.34);
  transform: translateY(-1px);
}

.button-inline {
  min-height: 46px;
  padding-inline: 18px;
}

.is-placeholder-link {
  opacity: 0.84;
}

main {
  padding-top: 12px;
  padding-bottom: 72px;
}

.page-hero,
.section {
  position: relative;
}

.page-hero {
  padding: 108px 0 44px;
}

.page-hero-narrow .section-heading,
.page-hero-narrow > .lede,
.page-hero-narrow > h1,
.page-hero-narrow > p:not(.eyebrow) {
  max-width: 760px;
}

main {
  display: block;
}

.hero-home {
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 48px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  width: 100%;
}

.hero-copy {
  min-width: 0;
}

.features-hero-copy,
.install-hero-copy,
.research-hero-copy,
.how-hero-copy {
  min-width: 0;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.rule-card h3,
.proof-card h3,
.step-card h3,
.install-step-card h2,
.account-card h2,
.mini-heading,
.closing-card h2,
.license-check-result strong {
  margin: 0;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3.9rem, 8.1vw, 6.85rem);
  line-height: 0.94;
}

.mini-heading {
  font-size: 2.15rem;
  line-height: 1.02;
}

.hero-copy h1 span {
  display: block;
  color: rgba(237, 229, 216, 0.78);
}

.home-page .hero-copy h1 {
  line-height: 0.97;
  margin-bottom: 28px;
}

.page-hero h1 {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lede,
.section-heading p,
.split-copy p,
.rule-card p,
.proof-card p,
.step-card p,
.vault-card p,
.install-step-card p,
.account-card p,
.license-check-result p,
.faq-list p,
.hero-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.home-page .cta-row .button-primary,
.home-page .cta-row .button-secondary {
  min-height: 48px;
  padding-inline: 18px;
}

.home-page .cta-row .button-secondary {
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.home-page .cta-row .button-secondary:hover {
  border-color: var(--line-strong);
}

.lede {
  max-width: 660px;
  margin-top: 24px;
  font-size: 1.18rem;
  line-height: 1.82;
}

.hero-home .lede {
  max-width: 31rem;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(237, 229, 216, 0.78);
}

.page-hero .lede {
  max-width: 760px;
}

.hero-price-note {
  margin: 14px 0 0;
  color: var(--text-faint);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.home-page .hero-metrics {
  gap: 16px;
  margin-top: 48px;
  border-top: 0;
}

.mini-note {
  min-width: 0;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .mini-note {
  padding: 18px 18px 20px;
}

.home-page .mini-note + .mini-note {
  border-left: 0;
}

.mini-note strong {
  display: block;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-note span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.58;
}

.mini-note code {
  display: inline;
  margin-top: 0;
}

.artifact-panel,
.rule-card,
.proof-card,
.step-card,
.vault-card,
.install-step-card,
.account-card,
.license-check-card,
.license-check-result,
.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top-width: 1px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.rule-card,
.proof-card,
.step-card,
.vault-card,
.install-step-card,
.account-card,
.license-check-card,
.faq-list details {
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.rule-card:hover,
.proof-card:hover,
.step-card:hover,
.vault-card:hover,
.install-step-card:hover,
.account-card:hover,
.faq-list details:hover {
  border-color: rgba(17, 17, 17, 0.16);
}

.section-panel-dark .rule-card:hover,
.section-panel-dark .step-card:hover,
.section-panel-dark .vault-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.artifact-panel {
  max-width: 560px;
  justify-self: end;
  padding: 28px;
  color: rgba(244, 239, 231, 0.92);
  background:
    radial-gradient(circle at top right, rgba(132, 174, 201, 0.11), transparent 30%),
    radial-gradient(circle at bottom left, rgba(196, 162, 88, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(24, 27, 31, 0.8), rgba(17, 20, 24, 0.9));
  border-color: rgba(196, 162, 88, 0.18);
  border-top-color: rgba(196, 162, 88, 0.34);
  box-shadow: var(--shadow-dark);
}

.artifact-panel::before,
.ink-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}

.artifact-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 239, 231, 0.54);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artifact-media,
.home-architecture-figure,
.home-case-figure {
  margin: 0;
}

.artifact-media img,
.home-architecture-figure img,
.home-case-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.artifact-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.artifact-column {
  min-height: 250px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
}

.artifact-column h3,
.artifact-note strong,
.vault-snippet strong,
.ink-label,
.step-card strong,
.install-step-card strong {
  display: block;
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artifact-column h3,
.artifact-note strong,
.vault-snippet strong,
.ink-label {
  color: rgba(244, 239, 231, 0.62);
}

.artifact-column p {
  margin: 14px 0 0;
  color: rgba(244, 239, 231, 0.82);
  line-height: 1.6;
}

.artifact-list,
.artifact-map,
.artifact-answer {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.artifact-list span,
.artifact-map span,
.artifact-answer span {
  display: block;
  padding: 11px 12px;
  border-radius: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.94rem;
  line-height: 1.45;
}

.artifact-map span {
  border-left: 1px solid rgba(47, 107, 138, 0.82);
}

.artifact-answer span:last-child {
  border-left: 1px solid rgba(194, 122, 44, 0.88);
}

.artifact-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.artifact-note p {
  margin: 10px 0 0;
  color: rgba(244, 239, 231, 0.72);
}

.page-glance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.glance-card,
.signal-card {
  min-width: 0;
  padding: 18px 0 0;
  border: 0;
  border-top-width: 1px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.glance-card:nth-child(2n),
.signal-card:nth-child(2n) {
  border-top-color: rgba(47, 107, 138, 0.6);
}

.glance-card:nth-child(2n + 1),
.signal-card:nth-child(2n + 1) {
  border-top-color: rgba(194, 122, 44, 0.58);
}

.glance-card strong,
.signal-card strong,
.signal-strip-header .eyebrow {
  display: block;
  margin: 0 0 10px;
}

.glance-card p,
.signal-card p,
.signal-strip-header p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.signal-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 38px 34px;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(132, 174, 201, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 54%),
    rgba(25, 28, 32, 0.28);
  box-shadow: none;
}

.signal-strip-header {
  max-width: 420px;
}

.signal-strip-header h2 {
  margin: 0 0 14px;
  font-family: "EB Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.014em;
  line-height: 0.99;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.section {
  padding: 96px 0;
  overflow-x: clip;
  border-top: 1px solid var(--line);
}

.section:first-of-type {
  border-top: 0;
}

.page-hero,
.site-footer {
  overflow-x: clip;
}

.section-panel {
  padding: 52px 0 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(196, 162, 88, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 56%),
    rgba(24, 27, 31, 0.22);
}

.section-panel-dark {
  color: rgba(244, 239, 231, 0.94);
  background:
    radial-gradient(circle at top right, rgba(132, 174, 201, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(20, 23, 27, 0.8), rgba(15, 18, 21, 0.9));
  border-top: 1px solid rgba(196, 162, 88, 0.22);
  border-bottom: 1px solid rgba(196, 162, 88, 0.14);
}

.section-panel-dark .section-heading p,
.section-panel-dark .rule-card p,
.section-panel-dark .step-card p,
.section-panel-dark .proof-card p,
.section-panel-dark .vault-card p,
.section-panel-dark .mini-note span,
.section-panel-dark .mini-note code {
  color: rgba(244, 239, 231, 0.74);
}

.section-panel-dark .section-heading h2,
.section-panel-dark .rule-card h3,
.section-panel-dark .step-card h3,
.section-panel-dark .proof-card h3 {
  color: rgba(248, 245, 238, 0.98);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.45rem, 4.7vw, 4.55rem);
  line-height: 0.98;
}

.home-ledger {
  display: grid;
  gap: 18px;
  border-top: 0;
}

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

.home-ledger-item {
  min-width: 0;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid rgba(196, 162, 88, 0.42);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-width: 0;
}

.home-ledger-item + .home-ledger-item {
  border-left: 0;
}

.home-ledger-item h3 {
  margin: 0 0 12px;
  font-family: "EB Garamond", serif;
  font-size: 1.62rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.08;
}

.home-ledger-item p,
.home-ledger-item ul {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.home-ledger-item ul {
  margin-top: 14px;
  padding-left: 18px;
}

.home-ledger-item ul li + li {
  margin-top: 8px;
}

.home-ledger-item-accent {
  border-top-color: rgba(47, 107, 138, 0.72);
}

.home-band {
  padding: 44px 34px 40px;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(132, 174, 201, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 54%),
    rgba(25, 28, 32, 0.28);
  box-shadow: none;
}

.home-architecture-figure {
  margin: 0 0 30px;
  padding: 18px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.home-evidence {
  padding: 0;
  border: 0;
  background: transparent;
}

.home-evidence h3 {
  margin: 0 0 14px;
  font-family: "EB Garamond", serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.home-evidence p {
  color: var(--text-soft);
}

.home-page .proof-path {
  gap: 12px;
  margin-top: 24px;
  border-top: 0;
}

.home-page .proof-step {
  padding: 16px 18px;
  border-top: 1px solid rgba(196, 162, 88, 0.18);
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(132, 174, 201, 0.72);
  border-radius: 0;
  background: rgba(25, 28, 32, 0.18);
}

.home-page .proof-step:first-child {
  border-top-color: rgba(196, 162, 88, 0.22);
}

.home-page .proof-step:last-child {
  border-left-color: rgba(196, 162, 88, 0.72);
  background: rgba(41, 33, 20, 0.22);
}

.workflow-step {
  position: relative;
  z-index: 1;
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    opacity 260ms ease;
}

.workflow-stack,
.workflow-grid {
  position: relative;
  --workflow-progress: 0;
}

.workflow-stack-vertical {
  padding-left: 28px;
}

.workflow-stack-vertical::before,
.workflow-stack-vertical::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 999px;
}

.workflow-stack-vertical::before {
  width: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.workflow-stack-vertical::after {
  width: 2px;
  background: linear-gradient(180deg, rgba(47, 107, 138, 0.9), rgba(194, 122, 44, 0.86));
  transform: scaleY(var(--workflow-progress, 0));
  transform-origin: top;
}

.workflow-stack-vertical > .workflow-step::before,
.workflow-stack-vertical > .workflow-step::after {
  content: "";
  position: absolute;
}

.workflow-stack-vertical > .workflow-step::before {
  top: 26px;
  left: -18px;
  width: 12px;
  height: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.workflow-stack-vertical > .workflow-step::after {
  top: 21px;
  left: -24px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  background: var(--bg);
  box-shadow: 0 0 0 5px rgba(247, 244, 238, 0.88);
}

.workflow-stack-build {
  padding-top: 28px;
}

.workflow-stack-build::before,
.workflow-stack-build::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 16.666%;
  right: 16.666%;
  border-radius: 999px;
}

.workflow-stack-build::before {
  height: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.workflow-stack-build::after {
  height: 2px;
  background: linear-gradient(90deg, rgba(194, 122, 44, 0.9), rgba(47, 107, 138, 0.92));
  transform: scaleX(var(--workflow-progress, 0));
  transform-origin: left;
}

.workflow-stack-build > .workflow-step::before,
.workflow-stack-build > .workflow-step::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.workflow-stack-build > .workflow-step::before {
  top: -20px;
  width: 1px;
  height: 16px;
  background: rgba(17, 17, 17, 0.12);
}

.workflow-stack-build > .workflow-step::after {
  top: -28px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 0 0 6px rgba(247, 244, 238, 0.86);
}

.workflow-grid {
  padding-top: 18px;
}

.workflow-grid::before,
.workflow-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 999px;
}

.workflow-grid::before {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.workflow-grid::after {
  height: 2px;
  background: linear-gradient(90deg, rgba(194, 122, 44, 0.84), rgba(110, 177, 206, 0.9));
  transform: scaleX(var(--workflow-progress, 0));
  transform-origin: left;
}

.how-process-stack.workflow-stack-vertical::before {
  background: rgba(255, 255, 255, 0.16);
}

.how-process-stack.workflow-stack-vertical > .workflow-step::before {
  background: rgba(255, 255, 255, 0.14);
}

.how-process-stack.workflow-stack-vertical > .workflow-step::after {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(24, 27, 31, 0.98);
  box-shadow: 0 0 0 5px rgba(24, 27, 31, 0.92);
}

.has-scroll-motion .how-process-step.is-scene-active,
.has-scroll-motion .install-step-card.is-scene-active {
  border-color: rgba(110, 177, 206, 0.32);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.has-scroll-motion .how-process-step.is-scene-complete,
.has-scroll-motion .install-step-card.is-scene-complete {
  border-color: rgba(194, 122, 44, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.has-scroll-motion .home-ledger-item.is-scene-active {
  border-top-color: rgba(47, 107, 138, 0.9);
  background: rgba(255, 252, 247, 0.06);
  box-shadow: none;
}

.has-scroll-motion .home-ledger-item.is-scene-complete {
  border-top-color: rgba(194, 122, 44, 0.84);
  background: rgba(255, 252, 247, 0.03);
}

.has-scroll-motion .home-page .proof-step.is-scene-active {
  border-left-color: rgba(47, 107, 138, 0.92);
  background: rgba(219, 233, 239, 0.08);
  box-shadow: none;
}

.has-scroll-motion .home-page .proof-step.is-scene-complete {
  border-left-color: rgba(194, 122, 44, 0.86);
  background: rgba(248, 241, 232, 0.08);
}

.has-scroll-motion .workflow-stack-vertical > .workflow-step.is-scene-active::after,
.has-scroll-motion .workflow-stack-build > .workflow-step.is-scene-active::after {
  border-color: rgba(47, 107, 138, 0.78);
  background: rgba(47, 107, 138, 0.96);
}

.has-scroll-motion .workflow-stack-vertical > .workflow-step.is-scene-complete::after,
.has-scroll-motion .workflow-stack-build > .workflow-step.is-scene-complete::after {
  border-color: rgba(194, 122, 44, 0.76);
  background: rgba(194, 122, 44, 0.94);
}

.home-theory-band {
  padding: 44px 34px 40px;
  border: 1px solid rgba(196, 162, 88, 0.22);
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(132, 174, 201, 0.09), transparent 30%),
    radial-gradient(circle at bottom left, rgba(196, 162, 88, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(24, 27, 31, 0.82), rgba(17, 19, 22, 0.9));
  box-shadow: var(--shadow-dark);
}

.home-theory-band .section-heading,
.home-theory-summary {
  max-width: none;
}

.home-theory-band .section-heading h2,
.home-theory-band .home-theory-card h3 {
  color: rgba(248, 245, 238, 0.98);
}

.home-theory-band .section-heading p,
.home-theory-band .home-theory-card p,
.home-theory-summary p {
  color: rgba(244, 239, 231, 0.72);
}

.home-theory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 320px);
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

.home-theory-summary {
  display: grid;
  gap: 18px;
  padding: 22px 0 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.home-theory-summary p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.72;
}

.home-theory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-theory-card {
  min-width: 0;
  padding: 22px 22px 20px;
  border: 1px solid rgba(196, 162, 88, 0.18);
  border-top: 1px solid rgba(196, 162, 88, 0.42);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
}

.home-theory-card-accent {
  border-top-color: rgba(110, 177, 206, 0.82);
}

.home-theory-card h3 {
  margin: 0 0 12px;
  font-family: "EB Garamond", serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.1;
}

.home-local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
}

.home-local-ledger {
  margin-top: 22px;
}

.home-local-ledger .ledger-row:first-child {
  padding-top: 18px;
}

.home-local-ledger .ledger-row {
  grid-template-columns: 146px 1fr;
  gap: 24px;
  padding: 22px 0;
}

.home-closing {
  max-width: none;
  margin: 0;
  padding: 42px 34px 40px;
  text-align: left;
  border: 1px solid rgba(196, 162, 88, 0.22);
  border-top: 1px solid rgba(196, 162, 88, 0.42);
  border-radius: 0;
  background:
    radial-gradient(circle at top right, rgba(132, 174, 201, 0.1), transparent 30%),
    radial-gradient(circle at bottom left, rgba(196, 162, 88, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(24, 27, 31, 0.82), rgba(17, 19, 22, 0.9));
  box-shadow: var(--shadow-dark);
}

.home-closing .button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(248, 245, 238, 0.94);
}

.home-closing .eyebrow,
.home-closing h2,
.home-closing p {
  position: relative;
  z-index: 1;
}

.home-closing h2 {
  max-width: 860px;
  color: rgba(248, 245, 238, 0.98);
}

.home-closing > p {
  max-width: 680px;
  color: rgba(244, 239, 231, 0.72);
}

.home-closing-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 24px;
  align-items: baseline;
  margin-bottom: 12px;
}

.home-closing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-closing-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(196, 162, 88, 0.18);
  border-radius: 0;
  color: rgba(244, 239, 231, 0.74);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-hero {
  padding-top: 38px;
  padding-bottom: 54px;
}

.how-page .page-hero h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 7vw, 5.8rem);
}

.how-hero-layout,
.how-surface-layout,
.how-vault-layout,
.how-ops-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  gap: 32px;
  align-items: start;
}

.how-hero-copy {
  min-width: 0;
}

.how-hero .page-glance {
  margin-top: 38px;
}

.how-page .cta-row .button-secondary {
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.how-process-band,
.placeholder-panel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.how-process-band {
  max-width: 520px;
  justify-self: end;
  padding: 26px;
  color: rgba(244, 239, 231, 0.92);
  background:
    radial-gradient(circle at top right, rgba(132, 174, 201, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(196, 162, 88, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(24, 27, 31, 0.82), rgba(17, 19, 22, 0.9));
  box-shadow: var(--shadow-dark);
}

.how-process-header p:last-child {
  margin: 0;
  color: rgba(244, 239, 231, 0.74);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.how-process-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.how-process-step {
  padding: 18px 0 16px 18px;
  border: 0;
  border-top: 1px solid rgba(196, 162, 88, 0.18);
  border-left: 1px solid rgba(196, 162, 88, 0.52);
  border-radius: 0;
  background: transparent;
}

.how-process-step-accent {
  border-left-color: rgba(110, 177, 206, 0.82);
}

.how-process-step strong,
.detail-row strong,
.placeholder-panel strong {
  display: block;
  color: rgba(244, 239, 231, 0.9);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-process-step h3,
.chapter-card h3,
.chapter-card-dark h3,
.chapter-intro h2 {
  margin: 0;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.how-process-step h3 {
  margin-top: 12px;
  color: rgba(248, 245, 238, 0.98);
  font-size: 1.65rem;
  line-height: 1.08;
}

.how-process-step p,
.chapter-card p,
.chapter-card-dark p,
.chapter-intro p,
.detail-row p,
.placeholder-panel p {
  margin: 0;
  line-height: 1.66;
}

.how-process-step p {
  margin-top: 10px;
  color: rgba(244, 239, 231, 0.72);
}

.how-chapter-band,
.how-vault-band,
.how-ops-band,
.how-memory-band {
  padding: 44px 34px 40px;
}

.chapter-intro {
  max-width: 780px;
}

.chapter-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4.6vw, 4.45rem);
  line-height: 0.99;
}

.chapter-intro p {
  color: var(--text-soft);
}

.section-panel-dark .chapter-intro p {
  color: rgba(244, 239, 231, 0.72);
}

.section-panel-dark .chapter-intro h2 {
  color: rgba(248, 245, 238, 0.98);
}

.chapter-grid {
  display: grid;
  gap: 18px;
}

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

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

.chapter-card,
.chapter-card-dark {
  min-width: 0;
  padding: 24px 24px 22px;
  border-radius: 0;
}

.chapter-card {
  border: 1px solid rgba(196, 162, 88, 0.18);
  border-top: 1px solid rgba(196, 162, 88, 0.42);
  background: rgba(255, 255, 255, 0.01);
  box-shadow: none;
}

.chapter-card-accent {
  border-top-color: rgba(47, 107, 138, 0.72);
}

.chapter-card h3,
.chapter-card-dark h3 {
  margin-bottom: 12px;
  font-size: 1.66rem;
  line-height: 1.09;
}

.chapter-card p {
  color: var(--text-soft);
}

.chapter-card-dark {
  border: 1px solid rgba(196, 162, 88, 0.18);
  border-top: 1px solid rgba(196, 162, 88, 0.42);
  background: rgba(255, 255, 255, 0.015);
}

.chapter-card-dark-accent {
  border-top-color: rgba(110, 177, 206, 0.82);
}

.chapter-card-dark h3 {
  color: rgba(248, 245, 238, 0.98);
}

.chapter-card-dark p {
  color: rgba(244, 239, 231, 0.72);
}

.how-ledger-band {
  display: grid;
  gap: 28px;
}

.pipeline-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border: 1px solid var(--line);
}

.pipeline-node {
  padding: 32px 24px 28px;
  border-right: 1px solid var(--line);
}

.pipeline-node:last-child {
  border-right: 0;
}

.pipeline-node strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pipeline-node p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.66;
}

.pipeline-node-accent {
  border-top: 2px solid rgba(196, 162, 88, 0.6);
  background: rgba(196, 162, 88, 0.03);
}

.detail-ledger {
  border-top: 1px solid var(--line);
}

.detail-ledger-compact {
  margin-top: 28px;
}

.detail-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row strong {
  color: var(--text);
}

.detail-row strong code {
  font: inherit;
}

.detail-row p {
  color: var(--text-soft);
}

.placeholder-panel {
  margin-top: 28px;
  padding: 26px;
  border: 1px dashed rgba(196, 162, 88, 0.26);
  background: rgba(255, 255, 255, 0.02);
}

.placeholder-panel p {
  margin-top: 10px;
  color: rgba(244, 239, 231, 0.66);
}

.how-surface-layout .chapter-grid {
  align-self: end;
}

.how-closing {
  max-width: none;
}

.research-hero {
  padding-top: 40px;
  padding-bottom: 52px;
}

.research-hero-layout,
.research-memory-layout {
  display: grid;
  gap: 32px;
}

.research-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: start;
}

.research-page .page-hero h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 7vw, 5.85rem);
}

.research-note-band,
.research-thesis-band {
  border-radius: 0;
}

.research-note-band {
  max-width: 500px;
  justify-self: end;
  padding: 26px;
  color: rgba(244, 239, 231, 0.92);
  background:
    radial-gradient(circle at top right, rgba(132, 174, 201, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(196, 162, 88, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(24, 27, 31, 0.82), rgba(17, 19, 22, 0.9));
  box-shadow: var(--shadow-dark);
}

.research-note-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.research-note-card {
  padding: 18px 0 16px 18px;
  border: 0;
  border-top: 1px solid rgba(196, 162, 88, 0.18);
  border-left: 1px solid rgba(196, 162, 88, 0.52);
  border-radius: 0;
  background: transparent;
}

.research-note-card-accent {
  border-left-color: rgba(110, 177, 206, 0.82);
}

.research-note-card strong {
  display: block;
  color: rgba(244, 239, 231, 0.92);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-note-card p {
  margin: 10px 0 0;
  color: rgba(244, 239, 231, 0.72);
  line-height: 1.66;
}

.research-thesis-band {
  padding: 28px 32px;
  border-top: 1px solid rgba(196, 162, 88, 0.42);
  border-bottom: 1px solid var(--line);
  background: rgba(24, 27, 31, 0.16);
}

.research-thesis-band h2 {
  margin: 0 0 14px;
  max-width: 920px;
  font-family: "EB Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.02;
}

.research-thesis-band p {
  max-width: 720px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.research-editorial-band,
.research-product-band,
.research-critique-band {
  padding: 44px 34px 40px;
}

.research-thesis-layout,
.research-critique-layout,
.research-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: start;
}

.research-thesis-ledger,
.research-critique-ledger,
.research-product-ledger {
  margin-top: 30px;
}

.research-side-quote {
  margin: 0;
  align-self: end;
}

.research-side-quote-dark {
  color: rgba(244, 239, 231, 0.74);
  border-top-color: rgba(110, 177, 206, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.research-side-quote-dark strong {
  color: rgba(248, 245, 238, 0.98);
}

.research-memory-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.research-placeholder,
.research-documents-placeholder {
  margin-top: 0;
}

.research-placeholder {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
}

.research-memory-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  grid-column: 1;
}

.research-memory-quote {
  margin: 0;
  align-self: stretch;
}

.research-product-card {
  align-self: end;
}

.research-documents-placeholder {
  max-width: 760px;
  margin-top: 28px;
}

.research-closing {
  max-width: none;
}

.features-hero,
.install-hero {
  padding-top: 40px;
  padding-bottom: 52px;
}

.features-hero-layout,
.features-assets-layout,
.features-command-layout,
.install-hero-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

.features-hero-layout,
.install-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.features-assets-layout,
.features-command-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.features-page .page-hero h1,
.install-page .page-hero h1 {
  max-width: 780px;
  font-size: clamp(3.5rem, 7vw, 5.8rem);
}

.features-note-band,
.install-readiness-band {
  max-width: 500px;
  justify-self: end;
  padding: 26px;
  border-radius: 0;
  color: rgba(244, 239, 231, 0.92);
  background:
    radial-gradient(circle at top right, rgba(132, 174, 201, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(196, 162, 88, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(24, 27, 31, 0.82), rgba(17, 19, 22, 0.9));
  box-shadow: var(--shadow-dark);
}

.features-note-stack,
.install-readiness-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.features-note-card,
.install-readiness-card {
  padding: 18px 0 16px 18px;
  border: 0;
  border-top: 1px solid rgba(196, 162, 88, 0.18);
  border-left: 1px solid rgba(196, 162, 88, 0.52);
  border-radius: 0;
  background: transparent;
}

.features-note-card-accent,
.install-readiness-card-accent {
  border-left-color: rgba(110, 177, 206, 0.82);
}

.features-note-card strong,
.install-readiness-card strong {
  display: block;
  color: rgba(244, 239, 231, 0.92);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.features-note-card p,
.install-readiness-card p {
  margin: 10px 0 0;
  color: rgba(244, 239, 231, 0.72);
  line-height: 1.66;
}

.features-overview-band,
.features-mcp-band,
.features-assets-band,
.install-requirements-band,
.install-provider-band,
.install-troubleshooting-band,
.features-command-band,
.install-flow-band,
.install-license-band {
  padding: 44px 34px 40px;
}

.features-ledger-band {
  display: grid;
  gap: 28px;
}

.features-command-band .chapter-intro h2,
.install-flow-band .chapter-intro h2,
.install-license-band .chapter-intro h2 {
  color: rgba(248, 245, 238, 0.98);
}

.features-command-band .chapter-intro p,
.install-flow-band .chapter-intro p,
.install-license-band .chapter-intro p {
  color: rgba(244, 239, 231, 0.72);
}

.features-docs-placeholder {
  max-width: 760px;
  margin-top: 28px;
}

.features-closing,
.install-closing {
  max-width: none;
}

.install-flow-band .install-step-card {
  padding: 22px;
  border-color: rgba(196, 162, 88, 0.18);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.install-flow-band .install-step-card strong,
.install-flow-band .install-step-card h2 {
  color: rgba(248, 245, 238, 0.98);
}

.install-flow-band .install-step-card p,
.install-flow-band .install-step-card span,
.install-flow-band .install-step-card pre,
.install-flow-band .install-step-card code {
  color: rgba(244, 239, 231, 0.74);
}

.install-license-band .license-check-card,
.install-license-ledger {
  min-width: 0;
}

.install-license-band .license-check-card {
  border-color: rgba(196, 162, 88, 0.18);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.install-license-band .field-label,
.install-license-band .mini-heading,
.install-license-band .license-check-card p,
.install-license-band .field-hint {
  color: rgba(244, 239, 231, 0.78);
}

.install-license-band .license-check-form input {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 245, 238, 0.96);
}

.install-license-band .detail-row strong {
  color: rgba(244, 239, 231, 0.92);
}

.install-license-band .detail-row p {
  color: rgba(244, 239, 231, 0.72);
}

.comparison-grid,
.system-grid,
.memory-grid,
.belief-grid,
.material-grid,
.capability-grid,
.provider-grid,
.account-grid,
.page-links,
.reading-links,
.proof-study,
.split-layout,
.access-grid,
.two-part-grid,
.overview-map,
.install-grid {
  display: grid;
  gap: 18px;
}

.comparison-grid,
.system-grid,
.memory-grid,
.belief-grid,
.capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.material-grid,
.page-links,
.reading-links,
.provider-grid,
.account-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-part-grid,
.access-grid,
.split-layout,
.proof-study,
.vault-layout,
.license-layout,
.install-utility {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.overview-map {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.rule-card,
.step-card,
.vault-card,
.install-step-card,
.account-card {
  padding: 22px 0 0;
}

.rule-card {
  border-top: 1px solid rgba(194, 122, 44, 0.7);
}

.rule-card-accent,
.step-card-accent {
  border-top-color: rgba(47, 107, 138, 0.72);
}

.rule-card h3,
.step-card h3,
.vault-card h3,
.install-step-card h2,
.account-card h2 {
  margin-bottom: 12px;
  font-size: 1.68rem;
  line-height: 1.1;
}

.rule-card p + p,
.proof-card p + p {
  margin-top: 10px;
}

.rule-card ul,
.accent-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.62;
}

.rule-card ul li + li,
.accent-list li + li {
  margin-top: 8px;
}

.section-panel-dark .rule-card,
.section-panel-dark .step-card,
.section-panel-dark .vault-card {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-panel-dark .rule-card {
  border-top-color: rgba(194, 122, 44, 0.8);
}

.section-panel-dark .rule-card-accent,
.section-panel-dark .step-card-accent {
  border-top-color: rgba(110, 177, 206, 0.82);
}

.proof-card,
.ink-panel,
.vault-snippet,
.command-shell {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.proof-card {
  padding: 28px;
}

.home-case-figure {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(47, 107, 138, 0.15), transparent 28%),
    linear-gradient(180deg, #1f2227, #181a1e);
}

.ink-panel,
.vault-snippet,
.command-shell {
  padding: 24px;
  color: rgba(244, 239, 231, 0.88);
  background:
    radial-gradient(circle at top right, rgba(47, 107, 138, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(31, 34, 39, 0.86), rgba(24, 26, 30, 0.9));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.ink-panel p,
.vault-snippet p,
.command-shell p,
.vault-snippet code,
.vault-snippet pre {
  color: rgba(244, 239, 231, 0.76);
}

.ink-label {
  margin-bottom: 16px;
}

.case-stack,
.proof-path,
.command-list,
.vault-column,
.install-sequence {
  display: grid;
  gap: 12px;
}

.case-fragment,
.proof-step,
.command-line,
.command-row,
.vault-line {
  padding: 14px 16px;
  border-radius: 0;
}

.case-fragment,
.command-line,
.vault-line {
  background: rgba(255, 255, 255, 0.05);
}

.case-fragment {
  border-left: 2px solid rgba(194, 122, 44, 0.9);
}

.proof-step {
  background: rgba(34, 55, 69, 0.18);
  border-left: 1px solid var(--blue);
}

.proof-step:last-child {
  background: rgba(70, 52, 26, 0.18);
  border-left-color: var(--amber);
}

.proof-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.command-shell {
  display: grid;
  gap: 12px;
}

.command-shell pre,
.vault-snippet pre,
.install-step-card pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-x: auto;
}

.command-shell pre code,
.vault-snippet pre code,
.install-step-card pre code {
  display: block;
  max-width: 100%;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.command-table,
.asset-ledger,
.ledger,
.install-ledger {
  border-top: 1px solid var(--line);
}

.command-row,
.ledger-row,
.asset-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.command-row code,
.ledger-row strong,
.asset-row strong,
.step-card strong,
.install-step-card strong,
.footer-label {
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ledger-row strong code {
  font: inherit;
}

.command-row span,
.ledger-row p,
.asset-row p {
  color: var(--text-soft);
  line-height: 1.62;
}

.section-panel-dark .command-row,
.section-panel-dark .ledger,
.section-panel-dark .command-table {
  border-color: rgba(255, 255, 255, 0.09);
}

.section-panel-dark .command-row code,
.section-panel-dark .ledger-row strong {
  color: rgba(244, 239, 231, 0.92);
}

.section-panel-dark .command-row span,
.section-panel-dark .ledger-row p {
  color: rgba(244, 239, 231, 0.72);
}

.vault-layout {
  margin-top: 28px;
}

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

.step-card,
.install-step-card {
  border-top: 1px solid rgba(47, 107, 138, 0.72);
}

.step-card strong,
.install-step-card strong {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
}

.section-panel-dark .step-card strong {
  color: #9fcbe0;
}

.pull-quote {
  padding: 26px 0;
  border-top: 1px solid var(--amber);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  font-size: 1.32rem;
  line-height: 1.55;
}

.pull-quote strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  line-height: 1.07;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link:hover {
  color: #23566f;
}

.home-theory-band .text-link {
  color: rgba(159, 203, 224, 0.92);
}

.home-theory-band .text-link:hover {
  color: rgba(199, 228, 241, 0.98);
}

.install-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.install-step-card span {
  display: block;
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.62;
}

.license-check-card {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.license-check-form {
  display: grid;
  gap: 14px;
}

.field-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.license-check-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.license-check-form input:focus {
  outline: 2px solid rgba(47, 107, 138, 0.18);
  border-color: rgba(47, 107, 138, 0.44);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.field-hint {
  margin: 0;
  color: var(--text-faint);
  line-height: 1.58;
}

.license-check-result[hidden] {
  display: none;
}

.license-check-result {
  padding: 20px;
  display: grid;
  gap: 8px;
}

.license-check-result strong {
  font-size: 1.85rem;
  line-height: 1;
}

.license-check-result.is-valid {
  border-color: rgba(47, 107, 138, 0.28);
  background: rgba(219, 233, 239, 0.82);
}

.license-check-result.is-invalid {
  border-color: rgba(194, 122, 44, 0.3);
  background: rgba(241, 225, 207, 0.92);
}

.license-check-result.is-pending {
  background: rgba(255, 255, 255, 0.82);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: "EB Garamond", serif;
  font-size: 1.55rem;
}

.faq-list p {
  margin-top: 12px;
}

.closing-card {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 8px;
  text-align: center;
}

.closing-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.99;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-meta-stack {
  display: grid;
  gap: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--text-faint);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  color: var(--text-faint);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.footer-support-line {
  margin: 0;
  color: var(--text-faint);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.footer-support-line a {
  color: var(--text);
}

.mode-note-panel {
  padding-inline: 0;
}

.js-ready [data-motion] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(0px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.js-ready [data-motion].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}

.js-ready [data-motion="hero-copy"] {
  transform: translate3d(0, 34px, 0);
}

.js-ready [data-motion="hero-accent"] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(6px);
}

.js-ready [data-motion="copy"] {
  transform: translate3d(0, 24px, 0);
}

.js-ready [data-motion="split-left"] {
  transform: translate3d(-34px, 0, 0);
}

.js-ready [data-motion="split-right"] {
  transform: translate3d(34px, 0, 0);
}

.js-ready [data-motion="metric"] {
  transform: translate3d(0, 20px, 0) scale(0.985);
}

.js-ready [data-motion="card"],
.js-ready [data-motion="dark-card"] {
  transform: translate3d(0, 26px, 0) scale(0.985);
}

.js-ready [data-motion="argument"] {
  transform: translate3d(0, 28px, 0) scale(0.982);
}

.js-ready [data-motion="row"] {
  transform: translate3d(-18px, 0, 0);
}

.js-ready [data-motion="panel"] {
  transform: translate3d(0, 24px, 0) scale(0.99);
}

.js-ready [data-motion="label"] {
  transform: translate3d(0, 12px, 0);
  letter-spacing: 0.2em;
}

.js-ready [data-motion="quote"] {
  transform: translate3d(0, 20px, 0);
  clip-path: inset(0 0 100% 0);
}

.js-ready [data-motion="step"] {
  transform: translate3d(24px, 0, 0);
}

.js-ready [data-motion="faq"] {
  transform: translate3d(0, 16px, 0);
}

.js-ready [data-motion="closing"] {
  transform: translate3d(0, 30px, 0) scale(0.99);
}

.has-scroll-motion .home-build-section .home-architecture-figure.is-visible,
.has-scroll-motion .home-build-section .home-ledger-item.is-visible,
.has-scroll-motion .home-example-section .home-case-figure.is-visible,
.has-scroll-motion .home-example-section .home-evidence.is-visible,
.has-scroll-motion .home-example-section .proof-step.is-visible,
.has-scroll-motion .how-memory-band .chapter-card-dark.is-visible,
.has-scroll-motion .how-memory-band .placeholder-panel.is-visible,
.has-scroll-motion .how-ops-band .command-row.is-visible,
.has-scroll-motion .research-memory-layout .chapter-card.is-visible,
.has-scroll-motion .research-memory-layout .placeholder-panel.is-visible,
.has-scroll-motion .features-command-band .command-row.is-visible,
.has-scroll-motion .features-assets-band .vault-snippet.is-visible,
.has-scroll-motion .features-assets-band .detail-row.is-visible,
.has-scroll-motion .install-flow-band .install-step-card.is-visible,
.has-scroll-motion .install-license-band .license-check-card.is-visible,
.has-scroll-motion .install-license-band .detail-row.is-visible {
  transition:
    opacity 240ms linear,
    transform 240ms linear,
    filter 240ms linear,
    border-color 240ms linear;
}

.has-scroll-motion .home-build-section .home-architecture-figure.is-visible,
.has-scroll-motion .home-example-section .home-case-figure.is-visible {
  transform: translate3d(0, calc((1 - var(--scene-progress, 1)) * 28px), 0)
    scale(calc(0.972 + (var(--scene-progress, 1) * 0.028)));
  opacity: calc(0.36 + (var(--scene-progress, 1) * 0.64));
}

.has-scroll-motion .home-build-section .home-ledger-item.is-visible {
  transform: translate3d(0, calc((1 - var(--scene-progress, 1)) * 20px), 0)
    scale(calc(0.986 + (var(--scene-progress, 1) * 0.014)));
  opacity: calc(0.32 + (var(--scene-progress, 1) * 0.68));
}

.has-scroll-motion .home-example-section .home-evidence.is-visible {
  transform: translate3d(calc((1 - var(--scene-progress, 1)) * 18px), 0, 0);
  opacity: calc(0.38 + (var(--scene-progress, 1) * 0.62));
}

.has-scroll-motion .home-example-section .proof-step.is-visible {
  transform: translate3d(calc((1 - var(--scene-progress, 1)) * 24px), 0, 0);
  opacity: calc(0.24 + (var(--scene-progress, 1) * 0.76));
}

.has-scroll-motion .how-memory-band .placeholder-panel.is-visible,
.has-scroll-motion .research-memory-layout .placeholder-panel.is-visible,
.has-scroll-motion .features-assets-band .vault-snippet.is-visible,
.has-scroll-motion .install-license-band .license-check-card.is-visible {
  transform: translate3d(0, calc((1 - var(--scene-progress, 1)) * 24px), 0)
    scale(calc(0.978 + (var(--scene-progress, 1) * 0.022)));
  opacity: calc(0.34 + (var(--scene-progress, 1) * 0.66));
}

.has-scroll-motion .how-memory-band .chapter-card-dark.is-visible,
.has-scroll-motion .research-memory-layout .chapter-card.is-visible,
.has-scroll-motion .install-flow-band .install-step-card.is-visible {
  transform: translate3d(0, calc((1 - var(--scene-progress, 1)) * 18px), 0)
    scale(calc(0.986 + (var(--scene-progress, 1) * 0.014)));
  opacity: calc(0.28 + (var(--scene-progress, 1) * 0.72));
}

.has-scroll-motion .how-ops-band .command-row.is-visible,
.has-scroll-motion .features-command-band .command-row.is-visible,
.has-scroll-motion .features-assets-band .detail-row.is-visible,
.has-scroll-motion .install-license-band .detail-row.is-visible {
  transform: translate3d(calc((1 - var(--scene-progress, 1)) * 20px), 0, 0);
  opacity: calc(0.26 + (var(--scene-progress, 1) * 0.74));
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .home-page [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}


@media (max-width: 1080px) {
  .site-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    top: 0;
    padding: 18px 0 14px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(18, 20, 23, 0.94), rgba(18, 20, 23, 0.7) 72%, transparent);
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 32;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(20, 23, 27, 0.96);
    box-shadow: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-nav-backdrop.is-open {
    display: block;
  }

  .page-hero {
    padding-top: 72px;
  }

  .hero-grid,
  .signal-strip,
  .home-theory-layout,
  .home-local-grid,
  .how-hero-layout,
  .how-surface-layout,
  .how-vault-layout,
  .how-ops-layout,
  .research-hero-layout,
  .research-thesis-layout,
  .research-critique-layout,
  .research-product-layout,
  .research-memory-layout,
  .features-hero-layout,
  .features-assets-layout,
  .features-command-layout,
  .install-hero-layout,
  .two-part-grid,
  .access-grid,
  .split-layout,
  .proof-study,
  .vault-layout,
  .license-layout,
  .install-utility {
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .system-grid,
  .memory-grid,
  .belief-grid,
  .capability-grid,
  .page-glance,
  .signal-grid,
  .chapter-grid-3,
  .research-memory-notes,
  .home-theory-grid,
  .overview-map,
  .install-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artifact-columns,
  .vault-note-grid,
  .material-grid,
  .page-links,
  .reading-links,
  .provider-grid {
    grid-template-columns: 1fr;
  }

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

  .research-placeholder {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-home {
    min-height: auto;
    display: block;
    padding-top: 88px;
  }

  .artifact-panel,
  .how-process-band,
  .research-note-band,
  .features-note-band,
  .install-readiness-band {
    max-width: none;
    justify-self: stretch;
  }

  .how-hero {
    padding-top: 62px;
  }

  .research-hero {
    padding-top: 62px;
  }

  .features-hero,
  .install-hero {
    padding-top: 62px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
    line-height: 0.98;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

  .home-page .mini-note + .mini-note {
    padding-left: 0;
    border-left: 0;
  }

  .home-ledger-3 {
    grid-template-columns: 1fr;
  }

  .home-ledger-item {
    padding: 20px 0 0;
  }

  .home-ledger-item + .home-ledger-item {
    border-left: 0;
    border-top: 1px solid rgba(132, 174, 201, 0.42);
  }

  .home-architecture-figure {
    margin-bottom: 24px;
  }

  .workflow-stack-build {
    padding-top: 0;
    padding-left: 28px;
  }

  .workflow-stack-build::before,
  .workflow-stack-build::after {
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: auto;
  }

  .workflow-stack-build::before {
    width: 1px;
    height: auto;
  }

  .workflow-stack-build::after {
    width: 2px;
    height: auto;
    transform: scaleY(var(--workflow-progress, 0));
    transform-origin: top;
  }

  .workflow-stack-build > .workflow-step::before {
    top: 26px;
    left: -18px;
    width: 12px;
    height: 1px;
    transform: none;
  }

  .workflow-stack-build > .workflow-step::after {
    top: 21px;
    left: -24px;
    transform: none;
    box-shadow: 0 0 0 5px rgba(18, 20, 23, 0.94);
  }

  .signal-strip,
  .home-band,
  .home-theory-band,
  .home-closing,
  .how-chapter-band,
  .how-vault-band,
  .how-ops-band,
  .how-memory-band,
  .research-editorial-band,
  .research-product-band,
  .research-critique-band,
  .features-overview-band,
  .features-mcp-band,
  .features-assets-band,
  .features-command-band,
  .install-requirements-band,
  .install-flow-band,
  .install-provider-band,
  .install-license-band,
  .install-troubleshooting-band {
    padding-inline: 28px;
  }
}

@media (max-width: 980px) {
  .comparison-grid,
  .system-grid,
  .memory-grid,
  .belief-grid,
  .capability-grid,
  .page-glance,
  .signal-grid,
  .chapter-grid-2,
  .chapter-grid-3,
  .home-theory-grid,
  .overview-map,
  .install-grid,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .command-row,
  .ledger-row,
  .asset-row,
  .detail-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-panel {
    padding: 28px 22px 30px;
  }

  .license-check-card,
  .rule-card,
  .proof-card,
  .step-card,
  .vault-card,
  .install-step-card,
  .account-card {
    padding: 20px;
  }

  .footer-meta {
    text-align: left;
  }

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

  .signal-strip,
  .home-band,
  .home-theory-band,
  .home-closing,
  .how-chapter-band,
  .how-vault-band,
  .how-ops-band,
  .how-memory-band,
  .research-editorial-band,
  .research-product-band,
  .research-critique-band,
  .features-overview-band,
  .features-mcp-band,
  .features-assets-band,
  .features-command-band,
  .install-requirements-band,
  .install-flow-band,
  .install-provider-band,
  .install-license-band,
  .install-troubleshooting-band {
    padding: 28px 22px;
  }

  .home-closing-top {
    align-items: flex-start;
  }

  .home-closing .cta-row {
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .artifact-columns {
    grid-template-columns: 1fr;
  }

  .research-memory-notes {
    grid-template-columns: 1fr;
  }

  main {
    grid-template-columns: 1fr;
  }

  main > * {
    grid-column: 1;
  }

  .page-hero {
    padding-left: 0;
  }

  .page-hero .eyebrow,
  .page-hero h1,
  .section-heading .eyebrow,
  .section-heading h2,
  .chapter-intro .eyebrow,
  .chapter-intro h2,
  .research-thesis-band .eyebrow,
  .research-thesis-band h2 {
    margin-left: 0;
  }

  .home-example-section {
    padding-left: 0;
  }

  .home-example-section > .section-heading {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .page-hero {
    padding-top: 56px;
  }

  .hero-home {
    padding-top: 72px;
  }

  .how-hero {
    padding-top: 54px;
  }

  .research-hero {
    padding-top: 54px;
  }

  .features-hero,
  .install-hero {
    padding-top: 54px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 15.4vw, 3.9rem);
    line-height: 1;
  }

  .lede {
    font-size: 1.08rem;
  }

  .hero-home .lede {
    font-size: 1.08rem;
    line-height: 1.72;
  }

  .cta-row {
    gap: 12px 16px;
  }

  .home-page .hero-metrics {
    margin-top: 32px;
  }

  .home-page .mini-note {
    padding-right: 0;
  }

  .site-header {
    top: 0;
    padding: 16px 0 12px;
    border-radius: 0;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .signal-strip,
  .home-band,
  .home-theory-band,
  .home-closing,
  .how-chapter-band,
  .how-vault-band,
  .how-ops-band,
  .how-memory-band,
  .research-editorial-band,
  .research-product-band,
  .research-critique-band,
  .features-overview-band,
  .features-mcp-band,
  .features-assets-band,
  .features-command-band,
  .install-requirements-band,
  .install-flow-band,
  .install-provider-band,
  .install-license-band,
  .install-troubleshooting-band {
    padding: 24px 18px;
  }

  .research-thesis-band {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
