:root {
  --ink: #111715;
  --ink-soft: #202925;
  --paper: #f4f7f5;
  --white: #ffffff;
  --muted: #65716c;
  --line: #cfd8d3;
  --acid: #c7ff4a;
  --teal: #20b8a5;
  --coral: #ff6d63;
  --blue: #5aa8ff;
  --amber: #f3bc32;
  --magenta: #c75d9c;
  --violet: #9c83e8;
  --page: 1240px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.button,
.eyebrow,
.feature-index,
.performance-grid strong,
.transaction-line strong {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  margin-bottom: 18px;
  font-size: 5.7rem;
  line-height: 0.94;
}

h2 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.page-shell {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 28px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header.nav-visible {
  background: rgba(17, 23, 21, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  text-decoration: none;
}

.brand img {
  display: block;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding-inline: 24px;
}

.site-nav a,
.footer-links a {
  color: inherit;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.78rem;
  text-decoration: none;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.76);
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--acid);
}

.header-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--acid);
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
}

.header-download img,
.button img,
.icon-button img,
.tour-tab img,
.module-card img,
.text-link img,
.check-list img {
  filter: none;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 5px;
  cursor: pointer;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(900px, 90svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  object-fit: cover;
  object-position: center top;
  opacity: 0.56;
  filter: saturate(0.76) contrast(1.18);
  transform: scale(1.02);
}

.hero__veil {
  background: rgba(10, 15, 13, 0.74);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 142px;
}

.eyebrow {
  margin-bottom: 18px;
  color: #0c7469;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--acid);
}

.hero__lede {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 1.7rem;
  font-weight: 650;
  line-height: 1.2;
}

.hero__copy {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.button--ghost {
  color: var(--white);
  background: rgba(17, 23, 21, 0.7);
  border-color: rgba(255, 255, 255, 0.48);
}

.button--ghost img,
.site-header:not(.scrolled) .nav-toggle img,
.button--dark img {
  filter: invert(1);
}

.hero__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.72rem;
}

.human-ai-section {
  padding: 96px 0;
  background: var(--acid);
  border-bottom: 1px solid var(--ink);
}

.human-ai-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.35fr);
  gap: 72px;
  align-items: start;
}

.human-ai-layout h2 {
  margin-bottom: 0;
  font-size: 3.5rem;
}

.human-ai-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.human-ai-flow li {
  display: grid;
  grid-template-columns: 42px 150px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 23, 21, 0.42);
}

.human-ai-flow span,
.human-ai-flow small,
.human-ai-links a {
  font-family: "Cascadia Code", "Aptos Mono", monospace;
}

.benchmark-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
  border: 2px solid var(--ink);
}

.benchmark-strip > div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-right: 1px solid var(--ink);
}

.benchmark-strip > div:nth-child(3) {
  border-right: 0;
}

.benchmark-strip strong {
  font-family: "Bahnschrift", "Aptos Display", sans-serif;
  font-size: 2.7rem;
  line-height: 1;
}

.benchmark-strip span,
.benchmark-strip p {
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.72rem;
}

.benchmark-strip p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 22px;
  border-top: 1px solid var(--ink);
}

.human-ai-flow span {
  font-size: 0.76rem;
  font-weight: 700;
}

.human-ai-flow strong {
  font-family: "Bahnschrift", "Aptos Display", sans-serif;
  font-size: 1.18rem;
}

.human-ai-flow small {
  font-size: 0.78rem;
  line-height: 1.55;
}

.human-ai-links {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.human-ai-links a {
  font-size: 0.78rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.detail-header {
  position: sticky;
  color: var(--white);
  background: var(--ink);
}

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

.detail-hero {
  padding: 156px 0 96px;
  color: var(--white);
  background: var(--ink);
  border-bottom: 8px solid var(--acid);
}

.detail-hero h1 {
  max-width: 1080px;
  font-size: 5.2rem;
}

.detail-hero__lede {
  max-width: 820px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.35rem;
}

.detail-section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

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

.detail-section h2 {
  font-size: 3.35rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-grid article {
  min-height: 230px;
  padding: 30px;
  background: var(--white);
}

.detail-grid article p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.detail-section--dark .detail-grid {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
}

.detail-section--dark .detail-grid article {
  background: var(--ink-soft);
}

.detail-section--dark .detail-grid article p {
  color: rgba(255, 255, 255, 0.68);
}

.detail-section--dark .benchmark-strip {
  border-color: rgba(255, 255, 255, 0.38);
}

.detail-section--dark .benchmark-strip > div {
  border-color: rgba(255, 255, 255, 0.38);
}

.detail-section--dark .benchmark-strip p {
  border-color: rgba(255, 255, 255, 0.38);
}

.detail-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--ink);
}

.detail-steps li {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--ink);
}

.detail-steps li:last-child {
  border-right: 0;
}

.detail-steps span {
  display: block;
  margin-bottom: 50px;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.75rem;
}

.detail-steps strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Bahnschrift", "Aptos Display", sans-serif;
  font-size: 1.25rem;
}

.detail-code {
  overflow-x: auto;
  padding: 22px;
  color: var(--acid);
  background: var(--ink);
  border-left: 5px solid var(--teal);
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.82rem;
  white-space: pre-wrap;
}

.detail-prose {
  max-width: 850px;
}

.detail-prose h2,
.detail-prose h3 {
  margin-top: 48px;
}

.detail-prose li {
  margin-bottom: 10px;
}

.hero__proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 96px;
  color: var(--ink);
  background: var(--acid);
}

.hero__proof div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 5vw;
  border-right: 1px solid rgba(17, 23, 21, 0.24);
}

.hero__proof div:last-child {
  border-right: 0;
}

.hero__proof strong {
  font-family: "Bahnschrift", "Aptos Display", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero__proof span {
  margin-top: 5px;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.7rem;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 64px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading--row {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 60px;
}

.section-heading--row h2 {
  margin-bottom: 0;
}

.terminal-release-section {
  color: var(--white);
  background: #18201d;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-release-section {
  background: #dce8f3;
  border-bottom: 1px solid #b8cad8;
}

.major-feature-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 64px;
}

.major-feature-layout--reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.major-feature-copy h2 {
  margin-bottom: 24px;
  font-size: 3.55rem;
}

.major-feature-lede {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.ai-release-section .major-feature-lede {
  color: #41525f;
}

.major-feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.major-feature-list li {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.major-feature-list strong {
  color: var(--acid);
  font-size: 0.96rem;
}

.major-feature-list span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.major-feature-list--dark {
  border-top-color: rgba(17, 23, 21, 0.28);
}

.major-feature-list--dark li {
  border-bottom-color: rgba(17, 23, 21, 0.18);
}

.major-feature-list--dark strong {
  color: #096e63;
}

.major-feature-list--dark span {
  color: #41525f;
}

.major-feature-footnote {
  display: flex;
  gap: 10px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.major-feature-footnote span {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--acid);
  padding: 2px 7px;
  border-radius: 3px;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-weight: 700;
}

.major-feature-visual {
  margin: 0;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.ai-release-section .major-feature-visual {
  box-shadow: 0 32px 80px rgba(40, 67, 84, 0.24);
}

.major-feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.major-feature-stats div {
  min-width: 0;
  padding: 18px 14px;
  border-right: 1px solid rgba(17, 23, 21, 0.3);
}

.major-feature-stats div:last-child {
  border-right: 0;
}

.major-feature-stats strong,
.major-feature-stats span {
  display: block;
}

.major-feature-stats strong {
  margin-bottom: 5px;
  font-family: "Bahnschrift", "Aptos Display", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.major-feature-stats span {
  color: #41525f;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.62rem;
  line-height: 1.4;
}

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

.workspace-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: stretch;
  gap: 26px;
}

.product-frame,
.tour-stage {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #aeb9b3;
  border-radius: 6px;
  box-shadow: 0 26px 70px rgba(17, 23, 21, 0.14);
}

.product-frame img {
  width: 100%;
  height: auto;
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  background: #e8eeea;
  border-bottom: 1px solid #c5d0ca;
}

.frame-bar span {
  width: 9px;
  height: 9px;
  background: #8c9992;
  border-radius: 50%;
}

.frame-bar span:nth-child(1) { background: var(--coral); }
.frame-bar span:nth-child(2) { background: var(--amber); }
.frame-bar span:nth-child(3) { background: var(--teal); }

.frame-bar small {
  margin-left: 5px;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.65rem;
}

.feature-rail {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-rail article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-content: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--acid);
  border-radius: 4px;
}

.feature-index.teal { background: var(--teal); }
.feature-index.coral { background: var(--coral); }

.tour-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tour {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}

.tour-tabs {
  display: grid;
  gap: 4px;
}

.tour-tab {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
}

.tour-tab:hover {
  background: var(--paper);
}

.tour-tab.active {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--ink);
  font-weight: 700;
}

.tour-stage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top;
}

.tour-stage figcaption {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.tour-stage figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.section-heading--dark > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.analyzer-visual {
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.analyzer-visual img {
  width: 100%;
  height: auto;
}

.integration-visual img {
  width: 100%;
  height: auto;
}

.analyzer-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.analyzer-details > div {
  padding: 24px 28px 0 0;
}

.analyzer-details strong {
  display: block;
  margin-bottom: 6px;
}

.analyzer-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.swatch {
  display: inline-block;
  width: 24px;
  height: 5px;
  margin-bottom: 14px;
}

.swatch.blue { background: var(--blue); }
.swatch.magenta { background: var(--magenta); }
.swatch.amber { background: var(--amber); }

.performance-section {
  padding: 128px 0;
  background: var(--acid);
}

.performance-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 58px;
}

.performance-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
  color: #33490b;
}

.performance-heading h2,
.performance-heading p {
  margin-bottom: 0;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 70px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.performance-grid div {
  min-width: 0;
  padding: 28px 4vw;
  border-right: 1px solid rgba(17, 23, 21, 0.42);
}

.performance-grid div:last-child {
  border-right: 0;
}

.performance-grid strong,
.performance-grid span {
  display: block;
}

.performance-grid strong {
  margin-bottom: 7px;
  font-size: 2.3rem;
  line-height: 1;
}

.performance-grid span {
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.68rem;
}

.performance-proof {
  max-width: 1080px;
}

.fine-print {
  max-width: 720px;
  margin: 18px 0 0;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.65rem;
}

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

.transaction-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 72px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.transaction-line li {
  display: grid;
  min-height: 150px;
  align-content: center;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.transaction-line li:last-child {
  border-right: 0;
}

.transaction-line span,
.transaction-line small {
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.67rem;
}

.transaction-line span {
  margin-bottom: 14px;
  color: #0d7569;
}

.transaction-line strong {
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.transaction-line small {
  color: var(--muted);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.module-card {
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top-width: 6px;
  border-radius: 6px;
}

.module-card > img {
  width: 27px;
  height: 27px;
  margin-bottom: 48px;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.accent-green { border-top-color: var(--acid); }
.accent-blue { border-top-color: var(--blue); }
.accent-coral { border-top-color: var(--coral); }
.accent-amber { border-top-color: var(--amber); }
.accent-teal { border-top-color: var(--teal); }
.accent-violet { border-top-color: var(--violet); }

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

.integration-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 70px;
}

.integration-copy h2 {
  font-size: 3.3rem;
}

.integration-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.check-list img {
  flex: 0 0 auto;
  padding: 2px;
  background: var(--acid);
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--acid);
  font-weight: 700;
  text-decoration: none;
}

.text-link img {
  filter: invert(93%) sepia(80%) saturate(744%) hue-rotate(25deg) brightness(106%);
}

.text-link--dark {
  margin-top: 24px;
  color: var(--ink);
}

.text-link--dark img {
  filter: none;
}

.integration-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.download-section {
  padding: 120px 0;
  background: var(--acid);
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.65fr);
  align-items: center;
  gap: 80px;
}

.download-layout h2 {
  margin-bottom: 0;
  font-size: 4.5rem;
}

.download-intro {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1rem;
  line-height: 1.65;
}

.download-panel {
  padding-left: 38px;
  border-left: 2px solid var(--ink);
}

.preview-status {
  display: grid;
  grid-template-columns: 11px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
  padding: 13px 14px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.preview-status__marker {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(196, 255, 61, 0.18);
}

.preview-status strong,
.preview-status span {
  display: block;
}

.preview-status strong {
  margin-bottom: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.preview-status span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  line-height: 1.45;
}

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

.button--wide {
  width: 100%;
}

.download-panel .download-facts {
  margin: 14px 0;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.72rem;
}

.verification-block {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(17, 23, 21, 0.42);
  border-radius: 5px;
}

.verification-block__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 750;
}

.verification-block__heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.verification-block__heading a,
.release-links a {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 750;
  text-underline-offset: 3px;
}

.copy-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: center;
}

.copy-field--checksum {
  margin-top: 14px;
}

.copy-field code {
  min-width: 0;
  overflow: hidden;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(17, 23, 21, 0.5);
  border-radius: 4px;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-field--command code {
  background: var(--ink);
  color: var(--acid);
  border-color: var(--ink);
}

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

.verification-block > small {
  display: block;
  margin-top: 5px;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.65rem;
}

.smartscreen-note {
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 23, 21, 0.3);
  border-bottom: 1px solid rgba(17, 23, 21, 0.3);
}

.smartscreen-note summary {
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 750;
}

.smartscreen-note p {
  margin: 12px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.brand--footer {
  color: var(--white);
}

.footer-layout p,
.footer-layout small {
  margin: 0;
  font-size: 0.76rem;
}

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

.mcp-page {
  background: #f7f9f8;
}

.mcp-masthead {
  min-height: 740px;
  padding: 176px 0 110px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 23, 21, 0.98) 0%, rgba(17, 23, 21, 0.94) 48%, rgba(17, 23, 21, 0.7) 100%),
    url("assets/ai-bridge.png") right center / auto 100% no-repeat,
    var(--ink);
}

.mcp-masthead__inner {
  position: relative;
  z-index: 1;
}

.mcp-masthead h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: 6.2rem;
}

.mcp-masthead__lede {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
}

.mcp-masthead__copy {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
}

.mcp-stat-band {
  color: var(--ink);
  background: var(--acid);
  border-bottom: 1px solid rgba(17, 23, 21, 0.36);
}

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

.mcp-stat-grid div {
  min-width: 0;
  padding: 30px 24px;
  border-right: 1px solid rgba(17, 23, 21, 0.32);
}

.mcp-stat-grid div:first-child {
  border-left: 1px solid rgba(17, 23, 21, 0.32);
}

.mcp-stat-grid strong,
.mcp-stat-grid span {
  display: block;
}

.mcp-stat-grid strong {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.mcp-stat-grid span {
  margin-top: 8px;
  color: #37423e;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.72rem;
}

.mcp-answer-section {
  background: var(--white);
}

.mcp-answer-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 90px;
}

.mcp-answer-layout .section-heading {
  margin-bottom: 0;
}

.mcp-answer-copy {
  padding-top: 42px;
  border-top: 2px solid var(--ink);
  font-size: 1.12rem;
}

.mcp-answer-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.mcp-evidence-section {
  padding: 128px 0;
  color: var(--white);
  background: #17231f;
}

.mcp-benchmark-table-wrap {
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mcp-benchmark-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  text-align: left;
}

.mcp-benchmark-table th,
.mcp-benchmark-table td {
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-variant-numeric: tabular-nums;
}

.mcp-benchmark-table th:last-child,
.mcp-benchmark-table td:last-child {
  border-right: 0;
}

.mcp-benchmark-table tbody tr:last-child th,
.mcp-benchmark-table tbody tr:last-child td {
  border-bottom: 0;
}

.mcp-benchmark-table thead th {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.mcp-benchmark-table tbody th {
  color: var(--white);
  font-weight: 650;
}

.proof-pass {
  color: var(--acid);
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.mcp-method-note {
  max-width: 900px;
  margin: 22px 0 62px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.mcp-proof-list {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.mcp-proof-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mcp-proof-list article > span,
.mcp-proof-list article > b {
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.72rem;
}

.mcp-proof-list article > span {
  color: rgba(255, 255, 255, 0.46);
}

.mcp-proof-list article > b {
  color: var(--acid);
}

.mcp-proof-list strong {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-size: 1.08rem;
}

.mcp-proof-list p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.mcp-evidence-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
}

.mcp-evidence-links code {
  margin-left: auto;
  padding: 12px 14px;
  color: var(--acid);
  background: #0d1311;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 0.78rem;
}

.mcp-tool-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mcp-tool-groups article {
  min-height: 260px;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mcp-tool-groups article > span {
  color: #137d70;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mcp-tool-groups h3 {
  margin-top: 42px;
  font-size: 1.55rem;
}

.mcp-tool-groups p {
  margin-bottom: 0;
  color: var(--muted);
}

.mcp-tool-groups code {
  color: var(--ink);
  font-size: 0.82rem;
}

.mcp-security-section {
  color: var(--white);
  background: #182d39;
}

.mcp-security-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 84px;
}

.mcp-security-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.mcp-security-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mcp-security-steps li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 4px;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
}

.mcp-security-steps strong {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-size: 1.15rem;
}

.mcp-security-steps p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.mcp-setup-section {
  background: #f1f0ff;
}

.mcp-setup-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.mcp-setup-line li {
  min-height: 230px;
  padding: 26px 22px;
  border-right: 1px solid rgba(17, 23, 21, 0.28);
}

.mcp-setup-line li:last-child {
  border-right: 0;
}

.mcp-setup-line span,
.mcp-setup-line strong {
  display: block;
}

.mcp-setup-line span {
  color: #6a59b8;
  font-family: "Cascadia Code", "Aptos Mono", monospace;
  font-size: 0.72rem;
}

.mcp-setup-line strong {
  margin: 58px 0 10px;
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-size: 1.4rem;
}

.mcp-setup-line p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mcp-setup-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.mcp-setup-actions .text-link {
  color: var(--ink);
}

.mcp-setup-actions .text-link img {
  filter: none;
}

.mcp-machine-section {
  padding: 104px 0;
  color: var(--white);
  background: #3d202c;
}

.mcp-machine-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
}

.mcp-machine-layout h2 {
  font-size: 3.4rem;
}

.mcp-machine-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.mcp-machine-links a {
  display: flex;
  min-height: 112px;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mcp-machine-links a:hover {
  color: var(--acid);
  background: rgba(255, 255, 255, 0.05);
}

.mcp-machine-links span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  h1 { font-size: 4.8rem; }
  h2 { font-size: 3.4rem; }

  .human-ai-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .human-ai-links {
    grid-column: auto;
  }

  .detail-hero h1 {
    font-size: 4.6rem;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.7rem;
  }

  .workspace-layout,
  .integration-layout,
  .major-feature-layout,
  .major-feature-layout--reverse,
  .mcp-answer-layout,
  .mcp-security-layout,
  .mcp-machine-layout {
    grid-template-columns: 1fr;
  }

  .mcp-answer-layout,
  .mcp-security-layout,
  .mcp-machine-layout {
    gap: 48px;
  }

  .major-feature-layout {
    gap: 42px;
  }

  .feature-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-rail article {
    grid-template-columns: 38px 1fr;
    align-content: start;
    padding-right: 16px;
    border-right: 1px solid var(--line);
  }

  .feature-rail article:last-child {
    border-right: 0;
  }

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

  .integration-visual {
    order: -1;
  }

  .download-layout {
    gap: 42px;
  }

  .download-layout h2 {
    font-size: 3.6rem;
  }

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

  .mcp-setup-line li:nth-child(2) {
    border-right: 0;
  }

  .mcp-setup-line li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 23, 21, 0.28);
  }
}

@media (max-width: 820px) {
  :root { --header-height: 64px; }

  .page-shell {
    width: min(calc(100% - 32px), var(--page));
  }

  .human-ai-section {
    padding: 74px 0;
  }

  .human-ai-layout h2,
  .detail-section h2 {
    font-size: 3rem;
  }

  .human-ai-flow li {
    grid-template-columns: 38px 120px minmax(0, 1fr);
  }

  .detail-grid,
  .detail-steps,
  .benchmark-strip {
    grid-template-columns: 1fr;
  }

  .benchmark-strip > div {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .detail-steps li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .detail-steps li:last-child {
    border-bottom: 0;
  }

  .detail-steps span {
    margin-bottom: 28px;
  }

  .section,
  .performance-section {
    padding: 88px 0;
  }

  h1 { font-size: 4.4rem; }
  h2 { font-size: 3rem; }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .nav-toggle {
    display: inline-grid;
    color: var(--white);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    height: calc(100svh - var(--header-height));
    align-content: start;
    justify-content: stretch;
    padding: 28px 20px;
    background: var(--ink);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 18px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .header-download {
    display: none;
  }

  .hero {
    min-height: min(860px, 92svh);
  }

  .mcp-masthead {
    min-height: 680px;
    padding-top: 148px;
    background-position: 70% center;
  }

  .mcp-masthead h1 {
    font-size: 5rem;
  }

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

  .mcp-stat-grid div:nth-child(2) {
    border-right: 0;
  }

  .mcp-stat-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 23, 21, 0.32);
  }

  .hero__content {
    padding-top: 72px;
    padding-bottom: 174px;
  }

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

  .hero__proof div {
    min-height: 58px;
    padding: 10px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 23, 21, 0.22);
  }

  .hero__proof div:last-child {
    border-bottom: 0;
  }

  .hero__proof strong { font-size: 1rem; }
  .hero__proof span { margin-top: 2px; }

  .section-heading--row,
  .performance-heading,
  .download-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .download-panel {
    padding: 28px 0 0;
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .section-heading--row {
    align-items: start;
  }

  .major-feature-copy h2 {
    font-size: 3rem;
  }

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

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

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

  .performance-grid div:nth-child(2) {
    border-right: 0;
  }

  .performance-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 23, 21, 0.42);
  }

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

  .transaction-line li:nth-child(2) {
    border-right: 0;
  }

  .transaction-line li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-layout {
    grid-template-columns: 1fr auto;
  }

  .footer-layout p,
  .footer-links {
    grid-column: 1 / -1;
  }

  .mcp-evidence-links {
    flex-wrap: wrap;
  }

  .mcp-evidence-links code {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: 3.15rem; }
  h2 { font-size: 2.55rem; }

  .hero__lede {
    font-size: 1.35rem;
  }

  .hero__copy {
    font-size: 0.95rem;
  }

  .human-ai-layout h2,
  .detail-section h2 {
    font-size: 2.55rem;
  }

  .human-ai-flow li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .human-ai-flow small {
    grid-column: 2;
  }

  .detail-hero {
    padding: 124px 0 72px;
  }

  .detail-hero h1 {
    font-size: 3.15rem;
  }

  .detail-hero__lede {
    font-size: 1.12rem;
  }

  .detail-section {
    padding: 70px 0;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__meta {
    line-height: 1.5;
  }

  .download-section {
    padding: 82px 0;
  }

  .download-layout h2 {
    font-size: 3rem;
  }

  .verification-block__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .feature-rail {
    grid-template-columns: 1fr;
  }

  .feature-rail article {
    border-right: 0;
  }

  .tour-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding-bottom: 4px;
  }

  .tour-tab {
    min-height: 46px;
    min-width: 0;
  }

  .tour-stage figcaption {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .analyzer-details,
  .performance-grid,
  .transaction-line,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .analyzer-details > div {
    padding-right: 0;
  }

  .performance-grid div,
  .performance-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 23, 21, 0.42);
  }

  .performance-grid div:last-child {
    border-bottom: 0;
  }

  .transaction-line li,
  .transaction-line li:nth-child(2) {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .transaction-line li:last-child {
    border-bottom: 0;
  }

  .module-card {
    min-height: 220px;
  }

  .module-card > img {
    margin-bottom: 34px;
  }

  .integration-copy h2,
  .download-layout h2,
  .major-feature-copy h2 {
    font-size: 2.7rem;
  }

  .major-feature-footnote {
    align-items: flex-start;
    flex-direction: column;
  }

  .major-feature-stats {
    grid-template-columns: 1fr;
  }

  .major-feature-stats div,
  .major-feature-stats div:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 23, 21, 0.3);
  }

  .major-feature-stats div:last-child {
    border-bottom: 0;
  }

  .download-panel {
    padding-left: 0;
    padding-top: 30px;
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .mcp-masthead {
    min-height: 620px;
    padding: 128px 0 84px;
    background-image: linear-gradient(rgba(17, 23, 21, 0.94), rgba(17, 23, 21, 0.94));
  }

  .mcp-masthead h1 {
    font-size: 3.6rem;
  }

  .mcp-masthead__lede {
    font-size: 1.3rem;
  }

  .mcp-stat-grid,
  .mcp-tool-groups,
  .mcp-machine-links,
  .mcp-setup-line {
    grid-template-columns: 1fr;
  }

  .mcp-stat-grid div,
  .mcp-stat-grid div:nth-child(2),
  .mcp-stat-grid div:first-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(17, 23, 21, 0.32);
  }

  .mcp-stat-grid div:last-child {
    border-bottom: 0;
  }

  .mcp-answer-copy {
    padding-top: 28px;
  }

  .mcp-proof-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .mcp-proof-list article > b {
    grid-column: 2;
  }

  .mcp-evidence-links .button {
    width: 100%;
  }

  .mcp-tool-groups article {
    min-height: 220px;
    padding: 28px;
  }

  .mcp-security-steps li {
    grid-template-columns: 38px 1fr;
  }

  .mcp-setup-line li,
  .mcp-setup-line li:nth-child(2) {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 23, 21, 0.28);
  }

  .mcp-setup-line li:last-child {
    border-bottom: 0;
  }

  .mcp-setup-line strong {
    margin-top: 36px;
  }

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

  .mcp-machine-layout h2 {
    font-size: 2.7rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-layout p,
  .footer-links {
    grid-column: auto;
  }
}

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