:root {
  --paper: #f7f8f4;
  --white: #ffffff;
  --ink: #102f24;
  --muted: #52635b;
  --forest: #173b2d;
  --green: #26754b;
  --green-bright: #16864e;
  --mint: #e6eee5;
  --mint-soft: #f0f5ef;
  --border: #d3ded2;
  --border-strong: #b9c9ba;
  --danger: #9f3f32;
  --danger-bg: #f8ece8;
  --code: #10271f;
  --text-primary: var(--ink);
  --text-secondary: var(--muted);
  --text-tertiary: #355144;
  --accent-green: var(--green);
  --accent-green-hover: #12643c;
  --border-subtle: var(--border);
  --border-prominent: var(--border-strong);
  --bg-elevated: var(--white);
  --radius: 14px;
  --shadow:
    0 18px 50px rgba(20, 53, 40, 0.08), 0 2px 5px rgba(20, 53, 40, 0.05);
  --content: 1380px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.backpage {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.backpage::before {
  display: none;
}

.backpage a {
  color: inherit;
}

.backpage :focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.backpage .skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--forest);
  color: white;
  transform: translateY(-160%);
}

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

.backpage .site-header,
.page-shell,
.backpage footer {
  width: min(var(--content), calc(100% - 96px));
  margin-inline: auto;
}

.backpage .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 84px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(211, 222, 210, 0.82);
  background: rgba(247, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.backpage .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 740;
  letter-spacing: 0.13em;
  text-decoration: none;
}

.backpage .brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transform: scale(1.35);
}

.backpage .site-header nav,
.backpage footer nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.backpage .site-header nav a,
.backpage footer nav a {
  color: #17382c;
  font-weight: 540;
  text-decoration: none;
}

.backpage .site-header nav a:hover,
.backpage .site-header nav a[aria-current="page"],
.backpage footer nav a:hover,
.inline-link:hover,
.text-link:hover {
  color: var(--green);
}

.backpage .site-header .nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--green);
  border-radius: 8px;
}

.page-shell {
  padding-bottom: 96px;
}

body.backpage .page-hero {
  min-height: 620px;
  margin-bottom: 0 !important;
  padding: 112px 0 88px !important;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: center;
  border-bottom: 0 !important;
}

.section-kicker,
.page-kicker,
.data-label,
.eyebrow-label {
  margin: 0;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

body.backpage .page-hero .page-kicker {
  max-width: none !important;
  margin: 0 !important;
  color: var(--green) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.page-hero h1 {
  max-width: 850px;
  margin: 20px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 730;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.page-hero h1 span {
  color: var(--green-bright);
}

body.backpage .page-hero .hero-deck {
  max-width: 760px;
  margin: 34px 0 0 !important;
  color: #34483f !important;
  font-size: clamp(20px, 1.6vw, 25px) !important;
  letter-spacing: -0.018em;
  line-height: 1.5 !important;
}

.hero-actions,
.closing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 38px;
}

.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 680;
  text-decoration: none;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

.button-primary {
  background: var(--forest);
  color: white !important;
}

.button-primary:hover {
  background: var(--green);
}

.button-secondary {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--forest);
}

.button-secondary:hover {
  border-color: var(--green);
  background: var(--mint-soft);
}

.text-link,
.inline-link {
  color: #12643c;
  font-weight: 650;
  text-underline-offset: 3px;
}

.hero-index {
  align-self: stretch;
  padding: 32px 0 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border-strong);
}

.hero-index > p:first-child {
  margin-bottom: 28px;
}

.hero-index dl {
  margin: 0;
}

.hero-index dl > div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  border-top: 1px solid var(--border);
}

.hero-index dl > div:last-child {
  border-bottom: 1px solid var(--border);
}

.hero-index dt {
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.hero-index dd {
  margin: 0;
  color: #2d463a;
}

.section-intro {
  padding: 96px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
  border-top: 1px solid var(--border-strong);
}

.section-intro h2,
.section-heading h2,
.closing-panel h2 {
  margin: 14px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.section-intro > p,
.section-heading > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.snapshot {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.snapshot > div {
  min-height: 180px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
}

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

.snapshot dt {
  order: 2;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.snapshot dd {
  margin: 0;
  color: var(--forest);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.snapshot .snapshot-wide dd {
  font-size: clamp(22px, 2.2vw, 34px);
}

.snapshot-note {
  max-width: 920px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.evidence-chain {
  padding: 112px 0;
}

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

.section-heading > p:last-child {
  margin-top: 24px;
}

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

.chain-step {
  min-height: 310px;
  padding: 32px 30px 34px;
  position: relative;
  border-right: 1px solid var(--border);
}

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

.chain-step::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 42px;
  z-index: 2;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
}

.chain-step:last-child::after {
  display: none;
}

.chain-step > span {
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.chain-step h3 {
  margin: 66px 0 14px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.chain-step p {
  margin: 0 0 22px;
  color: var(--muted);
}

.chain-step a {
  color: #12643c;
  font-weight: 650;
  text-underline-offset: 3px;
}

.proof-records,
.build-map {
  padding: 104px 0;
  border-top: 1px solid var(--border-strong);
}

.records-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.record-card {
  min-height: 290px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--white);
}

.record-card .record-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.record-card h3 {
  margin: 42px 0 14px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.record-card p {
  max-width: 610px;
  margin: 0 0 30px;
  color: var(--muted);
}

.record-card a {
  margin-top: auto;
  color: #12643c;
  font-weight: 650;
  text-underline-offset: 3px;
}

.reproduce,
.quickstart {
  margin-inline: calc(50% - 50vw);
  padding: 104px max(48px, calc((100vw - var(--content)) / 2));
  background: var(--code);
  color: #f2f6f1;
}

.dark-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.dark-heading h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.dark-heading > p:last-child {
  margin: 0;
  color: #bdd0c6;
  font-size: 17px;
  line-height: 1.65;
}

.reproduce .section-kicker,
.quickstart .section-kicker {
  color: #78d39f;
}

.code-frame {
  border: 1px solid rgba(196, 224, 208, 0.25);
  border-radius: var(--radius);
  background: #0a1b15;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.code-header {
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(196, 224, 208, 0.18);
  color: #9fb7ab;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.window-dots {
  display: inline-flex;
  gap: 7px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5e786b;
}

.code-frame pre {
  margin: 0;
  padding: 28px;
  overflow-x: auto;
  color: #e8f1eb;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  line-height: 1.75;
  tab-size: 2;
}

.code-frame code {
  font-family: inherit;
}

.code-note {
  margin: 22px 0 0;
  color: #a9beb3;
  font-size: 14px;
}

.limits {
  padding: 112px 0;
}

.limits-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  border: 1px solid #e0c5bd;
  border-radius: var(--radius);
  background: var(--danger-bg);
  overflow: hidden;
}

.limits-heading {
  padding: 42px;
  border-right: 1px solid #e0c5bd;
}

.limits-heading .section-kicker {
  color: var(--danger);
}

.limits-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.limits-list {
  margin: 0;
}

.limits-list > div {
  padding: 26px 32px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  border-bottom: 1px solid #e0c5bd;
}

.limits-list > div:last-child {
  border-bottom: 0;
}

.limits-list dt {
  color: #72342b;
  font-weight: 700;
}

.limits-list dd {
  margin: 0;
  color: #60443c;
}

.closing-panel {
  margin-bottom: 8px;
  padding: 78px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--mint);
}

.closing-panel p {
  margin: 0;
  color: #2c4539;
  font-size: 19px;
  line-height: 1.6;
}

.closing-panel .closing-actions {
  margin-top: 26px;
}

.backpage footer {
  padding: 44px 0 58px;
}

.backpage .footer-main {
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--border-strong);
}

.backpage .footer-main nav {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.backpage .footer-brand {
  font-size: 20px;
}

.backpage .footer-brand img {
  width: 30px;
  height: 30px;
}

.backpage .footer-meta {
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.backpage .footer-meta p {
  margin: 0;
}

/* Build page */
.build-hero .hero-index {
  padding-left: 0;
  border-left: 0;
}

.install-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.install-card header {
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.install-command {
  padding: 30px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--forest);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(15px, 1.5vw, 20px);
  overflow-x: auto;
}

.install-command span {
  color: var(--green-bright);
}

.install-meta {
  margin: 0;
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.build-sequence {
  padding: 106px 0;
  border-top: 1px solid var(--border-strong);
}

.build-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-strong);
}

.build-steps li {
  min-height: 210px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 100px minmax(220px, 0.65fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
  border-bottom: 1px solid var(--border-strong);
}

.build-step-number {
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
}

.build-steps h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.build-step-copy p {
  max-width: 680px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.build-step-copy code,
.map-table code {
  padding: 2px 6px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--mint-soft);
  color: var(--forest);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.86em;
}

.quickstart-grid {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 42px;
}

.code-rail {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rail;
}

.code-rail li {
  min-height: 76px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(196, 224, 208, 0.18);
  color: #a9beb3;
}

.code-rail li::before {
  counter-increment: rail;
  content: "0" counter(rail);
  color: #78d39f;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.map-table {
  border-top: 1px solid var(--border-strong);
}

.map-row {
  min-height: 132px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.1fr;
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid var(--border-strong);
}

.map-row h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.map-row p {
  margin: 0;
  color: var(--muted);
}

.map-row ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.map-row li {
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--white);
  color: #315044;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.build-paths {
  padding: 104px 0;
  border-top: 1px solid var(--border-strong);
}

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

.path-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition:
    border-color 150ms ease,
    transform 150ms ease,
    box-shadow 150ms ease;
}

.path-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.path-card > span:first-child {
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.path-card h3 {
  margin: 70px 0 14px;
  font-size: 29px;
  letter-spacing: -0.035em;
}

.path-card p {
  margin: 0 0 28px;
  color: var(--muted);
}

.path-card strong {
  margin-top: auto;
  color: #12643c;
}

@media (max-width: 1100px) {
  body.backpage .page-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-index {
    padding: 0;
    border-left: 0;
  }

  .hero-index dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-index dl > div:nth-child(odd) {
    border-right: 1px solid var(--border);
    padding-right: 24px;
  }

  .hero-index dl > div:nth-child(even) {
    padding-left: 24px;
  }

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

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

  .snapshot > div:nth-child(n + 4) {
    border-top: 1px solid var(--border);
  }

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

  .chain-step:nth-child(2) {
    border-right: 0;
  }

  .chain-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .chain-step:nth-child(2)::after {
    display: none;
  }

  .build-steps li {
    grid-template-columns: 70px minmax(200px, 0.55fr) minmax(280px, 1fr);
  }
}

@media (max-width: 760px) {
  .backpage .site-header,
  .page-shell,
  .backpage footer {
    width: min(100% - 36px, var(--content));
  }

  .backpage .site-header {
    min-height: 70px;
  }

  .backpage .brand {
    font-size: 18px;
  }

  .backpage .brand img {
    width: 30px;
    height: 30px;
  }

  .backpage .site-header nav {
    gap: 15px;
  }

  .backpage .site-header nav a {
    font-size: 13px;
  }

  .backpage .site-header nav a:first-child {
    display: none;
  }

  .backpage .site-header .nav-cta {
    display: none;
  }

  .page-shell {
    padding-bottom: 58px;
  }

  body.backpage .page-hero {
    padding: 68px 0 58px !important;
    gap: 48px;
  }

  .page-hero h1 {
    font-size: clamp(52px, 16vw, 72px);
    line-height: 0.96;
  }

  body.backpage .page-hero .hero-deck {
    margin-top: 26px !important;
    font-size: 18px !important;
  }

  .hero-actions {
    gap: 18px;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-index dl > div:nth-child(odd),
  .hero-index dl > div:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .section-intro,
  .dark-heading,
  .closing-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-intro {
    padding: 70px 0 38px;
  }

  .section-intro h2,
  .section-heading h2,
  .closing-panel h2,
  .dark-heading h2 {
    font-size: clamp(38px, 11.5vw, 52px);
  }

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

  .snapshot > div,
  .snapshot > div:nth-child(3) {
    min-height: 150px;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  .snapshot > div:nth-child(-n + 2) {
    border-top: 0;
  }

  .snapshot > div:nth-child(even) {
    border-right: 0;
  }

  .snapshot > div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .evidence-chain,
  .proof-records,
  .build-map,
  .build-sequence,
  .build-paths,
  .limits {
    padding: 72px 0;
  }

  .chain-grid,
  .records-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .chain-step,
  .chain-step:nth-child(2) {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .chain-step:last-child {
    border-bottom: 0;
  }

  .chain-step::after {
    display: none;
  }

  .chain-step h3 {
    margin-top: 36px;
  }

  .reproduce,
  .quickstart {
    padding: 72px 18px;
  }

  .code-frame pre {
    padding: 22px 18px;
    font-size: 12px;
  }

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

  .limits-heading {
    border-right: 0;
    border-bottom: 1px solid #e0c5bd;
  }

  .limits-list > div {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .closing-panel {
    padding: 42px 26px;
  }

  .backpage .footer-main,
  .backpage .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .backpage .footer-main nav {
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .quickstart-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .code-rail li {
    min-height: 0;
    padding: 10px;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid rgba(196, 224, 208, 0.18);
  }

  .build-steps li {
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }

  .build-step-copy {
    grid-column: 2;
  }

  .map-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

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