:root {
  color-scheme: light;
  --canvas: #fcfcf9;
  --surface: #ffffff;
  --ink: #17212b;
  --slate: #515d67;
  --muted: #69747d;
  --teal: #0d756b;
  --teal-dark: #095e57;
  --line: #dfe3e1;
  --line-soft: #eceeeb;
  --quiet: #f5f5f1;
  --disabled: #f0f1ee;
  --disabled-text: #5c656b;
  --focus: #0d756b;
  --shell: 1312px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--canvas);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

main,
header,
footer,
section,
article,
aside,
figure,
div,
nav {
  min-width: 0;
}

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

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

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 20;
  top: 10px;
  left: 18px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 4px 18px rgb(23 33 43 / 14%);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

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

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

.review-strip {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--slate);
  background: #f7f7f3;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-align: center;
}

.review-strip span {
  margin-inline: 5px;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--line-soft);
}

.brand-lockup {
  display: flex;
  align-items: baseline;
  justify-self: start;
  gap: 10px;
}

.wordmark {
  color: var(--ink);
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.version-id {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

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

.primary-nav a {
  padding: 10px 2px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--ink);
}

.primary-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.preview-mark {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid #cbd9d5;
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.preview-mark::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.eyebrow,
.panel-label,
.footer-label,
.scenario-status {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 760;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: 60px;
  line-height: 1.04;
}

h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.12;
}

h3 {
  font-size: 23px;
  line-height: 1.22;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 68px;
  min-height: 590px;
  align-items: center;
  padding-block: 50px 42px;
}

.hero-copy h1 {
  max-width: 570px;
  font-size: 58px;
  letter-spacing: -0.047em;
  text-wrap: balance;
}

.hero-summary {
  max-width: 575px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 740;
  line-height: 1.25;
  text-align: center;
}

.button-primary {
  border: 1px solid var(--ink);
  color: var(--surface);
  background: var(--ink);
  text-decoration: none;
}

.button-primary:hover {
  background: #24313d;
}

.button-pending,
.button-dark-pending,
.artifact-actions button {
  border: 1px solid var(--line);
  color: var(--disabled-text);
  background: var(--disabled);
  cursor: not-allowed;
}

.button-pending {
  max-width: 274px;
  text-align: left;
}

.local-statement {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 19px 0 0;
  color: var(--slate);
  font-size: 14px;
  font-weight: 650;
}

.local-statement span {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--teal);
}

.local-statement span::after {
  content: "✓";
  font-size: 12px;
}

.report-proof figcaption,
.report-panel figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate);
  font-size: 12px;
  font-weight: 720;
}

.report-proof > figcaption {
  margin: 0 2px 12px;
}

.report-proof > figcaption span:last-child,
.report-panel figcaption span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
}

.report-proof > figcaption span:last-child::before,
.report-panel figcaption span:last-child::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.report-window,
.report-image,
.example-featured figure img {
  overflow: hidden;
  border: 1px solid #d9dedc;
  border-radius: 14px;
  background: var(--surface);
}

.report-window {
  position: relative;
  box-shadow: 0 18px 50px rgb(23 33 43 / 11%);
}

.image-stamp {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 8px;
  border-radius: 7px;
  color: var(--surface);
  background: #095e57;
  font-size: 12px;
  font-weight: 750;
}

.report-caption {
  margin: 11px 2px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
}

.report-caption b {
  margin-inline: 5px;
  font-weight: inherit;
}

.fact-band {
  min-height: 96px;
  border-block: 1px solid var(--line-soft);
  background: var(--surface);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
  min-height: 96px;
}

.fact-grid p {
  margin-bottom: 0;
}

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

.fact-grid strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.fact-grid span {
  color: var(--slate);
  font-size: 13px;
}

.section {
  padding-block: 96px;
}

#product {
  padding-top: 52px;
}

.section-head {
  margin-bottom: 52px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 80px;
  align-items: end;
}

.split-head > p,
.section-head > p:not(.eyebrow) {
  margin-bottom: 2px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.6;
}

.report-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(0, 0.64fr);
  gap: 28px;
  align-items: start;
}

.report-panel {
  margin: 0;
}

.report-panel figcaption {
  margin-bottom: 12px;
}

.report-panel figcaption b {
  margin-left: 5px;
}

.report-panel > p {
  margin: 13px 2px 0;
  color: var(--slate);
  font-size: 14px;
}

.report-detail-grid {
  display: grid;
  gap: 34px;
}

.report-detail-grid .report-image {
  border-radius: 12px;
}

.provenance-note {
  margin: 36px 0 0;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 650;
}

.section-ruled {
  border-block: 1px solid var(--line-soft);
  background: var(--surface);
}

.ledger-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 80px;
  align-items: end;
}

.ledger-heading .eyebrow {
  margin-bottom: 7px;
}

.capability-ledger,
.tier-ledger,
.evaluation-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-ledger article {
  padding: 28px 34px 4px 0;
  border-top: 1px solid var(--line);
}

.capability-ledger article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line-soft);
}

.index-number {
  display: block;
  margin-bottom: 24px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 760;
}

.capability-ledger h3 {
  margin-bottom: 12px;
}

.capability-ledger p {
  margin-bottom: 0;
  color: var(--slate);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 100px;
  align-items: start;
}

.audience-grid h2 {
  max-width: 670px;
}

.square-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.square-list li {
  position: relative;
  margin-top: 13px;
  padding-left: 20px;
  color: var(--slate);
}

.square-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.boundary-panel {
  padding: 34px 36px 36px;
  border-left: 3px solid var(--teal);
  background: var(--quiet);
}

.panel-label {
  margin-bottom: 15px;
}

.boundary-panel h3 {
  margin-bottom: 18px;
  font-size: 28px;
}

.boundary-panel > p:last-child {
  margin-bottom: 0;
  color: var(--slate);
}

.access-section {
  border-block: 1px solid var(--line-soft);
  background: var(--quiet);
}

.tier-ledger {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.tier-ledger article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 56px 0 0;
}

.tier-ledger article + article {
  padding-right: 0;
  padding-left: 56px;
  border-left: 1px solid var(--line);
}

.tier-title span,
.tier-title strong {
  display: block;
}

.tier-title span {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.tier-title strong {
  color: var(--slate);
  font-size: 14px;
}

.tier-ledger .square-list {
  margin: 24px 0 30px;
}

.button-dark-pending {
  width: auto;
  max-width: 100%;
  margin-top: auto;
  text-align: left;
}

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

.evaluation-steps li {
  padding: 30px 34px 4px 0;
}

.evaluation-steps li + li {
  padding-left: 34px;
  border-left: 1px solid var(--line-soft);
}

.evaluation-steps strong {
  display: block;
  margin-bottom: 10px;
}

.evaluation-steps p {
  margin-bottom: 0;
  color: var(--slate);
}

.closing-action {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 46px;
}

.closing-action p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 14px;
}

.site-footer {
  padding-block: 56px;
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.2fr;
  gap: 72px;
  color: var(--slate);
  font-size: 13px;
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-wordmark {
  margin-bottom: 8px !important;
  color: var(--ink);
}

.footer-label {
  margin-bottom: 9px !important;
  color: var(--ink);
  font-weight: 740;
}

.footer-grid nav span {
  display: inline-block;
  margin: 0 16px 5px 0;
}

/* Examples route */

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 100px;
  align-items: end;
  padding-block: 92px 86px;
}

.page-intro h1 {
  max-width: 720px;
}

.page-intro > div > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 18px;
}

.provenance-panel {
  padding: 30px 32px;
  border-left: 3px solid var(--teal);
  background: var(--quiet);
}

.provenance-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 16px;
}

.provenance-panel p {
  margin-bottom: 12px;
  color: var(--ink);
}

.provenance-panel span {
  display: block;
  color: var(--slate);
  font-size: 13px;
}

.examples-section {
  border-top: 1px solid var(--line-soft);
}

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

.example-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 46px;
  padding-block: 44px;
  border-bottom: 1px solid var(--line);
}

.example-featured {
  grid-template-columns: 170px minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 42px;
  padding-block: 52px;
}

.scenario-index span,
.scenario-index strong {
  display: block;
}

.scenario-index span {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 760;
}

.scenario-index strong {
  color: var(--slate);
  font-size: 14px;
}

.scenario-status {
  margin-bottom: 10px;
}

.scenario-copy h3 {
  margin-bottom: 12px;
}

.scenario-copy > p:not(.scenario-status) {
  max-width: 650px;
  margin-bottom: 16px;
  color: var(--slate);
}

.scenario-copy code {
  display: block;
  margin-bottom: 20px;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.artifact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.artifact-actions button {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}

.example-featured figure {
  margin: 0;
}

.example-featured figure img {
  box-shadow: 0 14px 38px rgb(23 33 43 / 9%);
}

.example-featured figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.evaluation-grid,
.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 100px;
}

.evaluation-grid > div > p:last-child {
  margin: 22px 0 0;
  color: var(--slate);
}

.evaluation-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.evaluation-grid li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.evaluation-grid .index-number,
.evaluation-grid li p {
  margin: 0;
}

.safety-grid {
  align-items: start;
}

.safety-rule {
  padding: 30px 32px;
  border-left: 3px solid var(--teal);
  background: var(--quiet);
}

.safety-rule strong {
  display: block;
  margin-bottom: 12px;
}

.safety-rule p {
  margin-bottom: 0;
  color: var(--slate);
}

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

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    justify-self: center;
    gap: 24px;
  }

  .hero {
    gap: 44px;
    min-height: 560px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-copy h1 {
    font-size: 50px;
    letter-spacing: -0.035em;
  }

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

  .split-head,
  .ledger-heading,
  .page-intro,
  .evaluation-grid,
  .safety-grid {
    gap: 54px;
  }

  .report-gallery {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .audience-grid {
    gap: 56px;
  }

  .example-featured {
    grid-template-columns: 140px minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: calc(100% - 40px);
  }

  .review-strip {
    min-height: 34px;
    padding-inline: 12px;
    line-height: 1.35;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
    min-height: 100px;
    padding-block: 14px 12px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
  }

  .primary-nav a {
    padding: 5px 0;
    font-size: 12px;
  }

  .preview-mark {
    padding: 6px 9px;
    font-size: 12px;
  }

  .version-id {
    display: none;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 1.06;
  }

  h2 {
    font-size: 33px;
  }

  h3 {
    font-size: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 44px 50px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .actions {
    gap: 10px;
    margin-top: 26px;
  }

  .button,
  .button-pending {
    width: 100%;
    max-width: none;
  }

  .report-proof > figcaption,
  .report-panel figcaption {
    gap: 10px;
  }

  .image-stamp {
    right: 8px;
    bottom: 8px;
  }

  .fact-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 16px;
  }

  .fact-grid p {
    padding-block: 12px;
  }

  .fact-grid p + p {
    border-top: 1px solid var(--line-soft);
  }

  .section,
  #product {
    padding-block: 72px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .split-head,
  .ledger-heading,
  .audience-grid,
  .evaluation-grid,
  .safety-grid,
  .page-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-head > p,
  .section-head > p:not(.eyebrow) {
    font-size: 16px;
  }

  .report-gallery {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .report-detail-grid {
    gap: 42px;
  }

  .capability-ledger,
  .tier-ledger,
  .evaluation-steps {
    grid-template-columns: 1fr;
  }

  .capability-ledger article,
  .capability-ledger article + article,
  .evaluation-steps li,
  .evaluation-steps li + li {
    padding: 26px 0;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .index-number {
    margin-bottom: 12px;
  }

  .boundary-panel,
  .provenance-panel,
  .safety-rule {
    padding: 27px 24px;
  }

  .tier-ledger article,
  .tier-ledger article + article {
    min-height: 0;
    padding: 32px 0;
    border-left: 0;
  }

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

  .button-dark-pending {
    width: 100%;
    margin-top: 0;
  }

  .closing-action {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .page-intro {
    align-items: start;
    padding-block: 60px 68px;
  }

  .page-intro > div > p:last-child {
    font-size: 16px;
  }

  .example-card,
  .example-featured {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 36px;
  }

  .example-featured figure {
    grid-row: 3;
  }

  .scenario-copy > p:not(.scenario-status) {
    margin-bottom: 14px;
  }

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

  .artifact-actions button {
    min-width: 0;
    padding-inline: 7px;
  }

  .evaluation-grid li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .shell {
    width: calc(100% - 40px);
  }

  .wordmark {
    font-size: 21px;
  }

  .preview-mark {
    gap: 6px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .artifact-actions {
    grid-template-columns: 1fr;
  }
}

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

/* Complete review-site routes */

.section-lead,
.artifact-summary {
  max-width: 760px;
  margin: -24px 0 42px;
  color: var(--slate);
  font-size: 17px;
}

.footer-grid nav a {
  display: inline-block;
  margin: 0 16px 5px 0;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}

.footer-grid nav a:hover {
  text-decoration-color: var(--teal);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
}

.button-secondary:hover {
  border-color: var(--slate);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.content-grid h2,
.legal-copy h2 {
  margin-top: 52px;
  margin-bottom: 18px;
  font-size: 30px;
}

.content-grid p,
.content-grid li,
.legal-copy p,
.legal-copy li {
  color: var(--slate);
  font-size: 17px;
}

.content-grid li,
.legal-copy li {
  margin-bottom: 11px;
}

.content-grid pre {
  overflow-x: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 22px 0 28px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface);
}

code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.roadmap-list {
  display: grid;
  gap: 0;
  max-width: 980px;
}

.roadmap-list article {
  padding-block: 42px;
  border-top: 1px solid var(--line);
}

.roadmap-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.roadmap-list h2 {
  margin-bottom: 15px;
  font-size: 34px;
}

.roadmap-list article > p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 17px;
}

.legal-copy {
  max-width: 920px;
}

.legal-copy > h1 {
  display: none;
}

.legal-copy h2 {
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}

.legal-copy hr {
  margin: 48px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.terms-page .page-intro {
  align-items: start;
}

.no-script-note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .section-lead,
  .artifact-summary {
    margin-top: -12px;
    font-size: 16px;
  }

  .content-grid h2,
  .legal-copy h2 {
    margin-top: 42px;
    font-size: 27px;
  }

  .content-grid p,
  .content-grid li,
  .legal-copy p,
  .legal-copy li,
  .roadmap-list article > p:last-child {
    font-size: 16px;
  }

  .roadmap-list h2 {
    font-size: 29px;
  }

  .closing-action .button-secondary {
    width: 100%;
  }
}
