:root {
  --ink: #1b211c;
  --ink-soft: #566057;
  --paper: #f7f4ed;
  --paper-deep: #eeeae0;
  --surface: #fffdf8;
  --sage: #dfe5dc;
  --sage-deep: #a8b5a3;
  --ochre: #dbad58;
  --line: #d8d5ca;
  --success: #2f6a43;
  --error: #a43c31;
  --page: min(91vw, 84rem);
  --route-hero-height: clamp(34rem, 61vh, 41rem);
  --radius: 1rem;
  --shadow: 0 24px 70px rgb(31 37 31 / 10%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

button,
select {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.4rem;
  background: var(--ink);
  color: white;
}

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

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgb(247 244 237 / 94%);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  min-height: 5.25rem;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.wordmark {
  width: max-content;
  font-size: 1.45rem;
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}

.primary-nav,
.header-actions {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.primary-nav a,
.footer-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 680;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.52rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  content: "";
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-actions {
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 0.45rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

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

.button--small {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

.mobile-menu-button {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.mobile-menu-button span,
.mobile-menu-button::before,
.mobile-menu-button::after {
  display: block;
  width: 1.3rem;
  height: 1px;
  margin-inline: auto;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-button span {
  margin-block: 0.3rem;
}

.mobile-menu-button[aria-expanded="true"]::before {
  transform: translateY(0.37rem) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"]::after {
  transform: translateY(-0.37rem) rotate(-45deg);
}

.route-hero {
  display: grid;
  min-height: clamp(36rem, 66vh, 42rem);
  grid-template-columns: minmax(0, 0.96fr) minmax(24rem, 1.04fr);
  overflow: hidden;
  margin-block: clamp(1.25rem, 2.5vw, 2rem) clamp(5rem, 9vw, 8rem);
  border-radius: var(--radius);
  background: var(--sage);
  box-shadow: var(--shadow);
}

.route-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.route-hero__visual {
  position: relative;
  min-height: 100%;
  background: #c8c1b4;
}

.route-hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.route-hero--home .route-hero__visual {
  display: grid;
  min-width: 0;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  place-items: center;
  background: #ece8df;
}

.route-hero--home .route-hero__visual > picture {
  display: block;
  width: 100%;
}

.route-hero--home .route-hero__visual > picture img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 1.44;
  border: 1px solid rgb(27 33 28 / 10%);
  border-radius: 0.55rem;
  object-fit: contain;
  box-shadow: 0 18px 50px rgb(31 37 31 / 12%);
}

.route-hero__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
  background: #253027;
  color: #f9f7f1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.route-hero__panel .eyebrow,
.dark-section .eyebrow,
.site-footer .eyebrow {
  color: #bdc9bc;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 735;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h1 {
  max-width: 13.5ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.85rem, 4vw, 4.15rem);
}

.route-hero--docs h1 {
  max-width: none;
  font-size: clamp(2.8rem, 3.7vw, 3.75rem);
  letter-spacing: -0.06em;
}

.route-hero--contact h1 {
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.route-hero__lede {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: #4f5850;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.media-badge {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgb(29 33 29 / 14%);
  font-size: 0.7rem;
  font-weight: 740;
  backdrop-filter: blur(12px);
}

.media-badge::before {
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--ochre);
  content: "";
}

.section {
  padding-block: clamp(4.5rem, 10vw, 9rem);
}

.section--compact {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.6fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.section-heading p:last-child {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.overview-statement {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.overview-statement h2 {
  margin-bottom: 0;
}

.overview-statement__copy {
  max-width: 44rem;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.48;
}

.capability-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 4rem;
  border-block: 1px solid var(--line);
}

.capability-line span {
  flex: 1 1 12rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 720;
  text-align: center;
}

.capability-line span:last-child {
  border-right: 0;
}

.feature-editorial {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.feature-editorial__intro {
  position: sticky;
  top: 2rem;
}

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

.feature-item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--line);
}

.feature-item__number {
  color: #626b63;
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.08em;
}

.feature-item h3 {
  margin-bottom: 0.6rem;
}

.feature-item p {
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.preview-stage {
  position: relative;
  padding: clamp(1rem, 2vw, 1.75rem);
  background: var(--ink);
}

.preview-stage > img {
  width: 100%;
  border-radius: 0.45rem;
}

.preview-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.25rem 0;
  color: #d9ded7;
  font-size: 0.74rem;
}

.preview-caption span:last-child {
  color: #97a197;
}

.preview-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 3vw, 2.5rem);
}

.preview-pair figure {
  margin: 0;
}

.preview-pair img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgb(31 37 31 / 8%);
}

.mobile-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: center;
  margin-top: clamp(4rem, 9vw, 8rem);
}

.mobile-preview__device {
  width: min(100%, 23rem);
  margin-inline: auto;
  padding: 0.55rem;
  border-radius: 2rem;
  background: #151a16;
  box-shadow: 0 28px 70px rgb(31 37 31 / 18%);
}

.mobile-preview__device img {
  border-radius: 1.5rem;
}

.dark-section {
  background: var(--ink);
  color: #f7f4ed;
}

.dark-section p {
  color: #bdc4bd;
}

.dark-section .section-heading p:last-child {
  color: #bdc4bd;
}

.cta-panel {
  display: grid;
  min-height: 28rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
  padding: clamp(2rem, 6vw, 6rem);
}

.cta-panel h2 {
  max-width: 10ch;
  margin-bottom: 1rem;
}

.cta-panel p {
  max-width: 36rem;
}

.dark-section .button {
  border-color: #f7f4ed;
  background: #f7f4ed;
  color: var(--ink);
}

.dark-section .button--secondary {
  background: transparent;
  color: #f7f4ed;
}

.hero-steps {
  width: min(100%, 30rem);
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.hero-steps li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid #475149;
  counter-increment: steps;
}

.hero-steps li::before {
  color: var(--ochre);
  content: "0" counter(steps);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.hero-steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
}

.hero-steps span {
  color: #b8c1b9;
  font-size: 0.82rem;
}

.docs-mobile-index {
  display: none;
}

.docs-shell {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  padding-bottom: 8rem;
}

.docs-sidebar {
  position: sticky;
  top: 1.5rem;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding-right: 1rem;
  scrollbar-width: thin;
}

.docs-sidebar p {
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.docs-sidebar nav {
  display: grid;
  gap: 0.1rem;
}

.docs-sidebar a {
  padding: 0.42rem 0;
  color: #667067;
  font-size: 0.78rem;
  font-weight: 620;
  text-decoration: none;
}

.docs-sidebar a:hover,
.docs-sidebar a[aria-current="location"] {
  color: var(--ink);
}

.docs-content {
  min-width: 0;
  max-width: 52rem;
}

.docs-content > section {
  padding-block: 0 5.5rem;
  scroll-margin-top: 2rem;
}

.docs-content > section + section {
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.docs-content h2 {
  max-width: 14ch;
  margin: 2.5rem 0 1.5rem;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.docs-content h3 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  scroll-margin-top: 2rem;
}

.docs-content h4 {
  margin: 2rem 0 0.55rem;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.docs-content p,
.docs-content li {
  color: #4f5951;
}

.docs-content ul,
.docs-content ol {
  padding-left: 1.25rem;
}

.docs-content li + li {
  margin-top: 0.45rem;
}

.doc-lede {
  max-width: 42rem;
  font-size: 1.18rem;
}

.note {
  margin-block: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--ochre);
  background: #efebe1;
}

.note strong {
  color: var(--ink);
}

.setting-list {
  margin-block: 2rem;
  border-top: 1px solid var(--line);
}

.setting-list > div {
  display: grid;
  grid-template-columns: minmax(10rem, 0.36fr) minmax(0, 0.64fr);
  gap: 2rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.setting-list dt {
  font-size: 0.86rem;
  font-weight: 740;
}

.setting-list dd {
  margin: 0;
  color: #566057;
  font-size: 0.9rem;
}

.docs-figure {
  margin: 2.5rem 0;
}

.docs-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
}

.docs-figure figcaption {
  margin-top: 0.65rem;
  color: #626b63;
  font-size: 0.75rem;
}

.faq-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-weight: 720;
  line-height: 1.35;
  cursor: pointer;
}

.faq-list details p {
  max-width: 44rem;
  padding-bottom: 1.5rem;
}

.contact-points {
  width: min(100%, 31rem);
}

.contact-points h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.contact-points > p {
  color: #bdc4bd;
}

.contact-points ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.8rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid #475149;
  font-size: 0.84rem;
}

.contact-points li::before {
  color: var(--ochre);
  content: "✓";
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.support-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--wide,
.form-status,
.support-form .button {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: #454e46;
  font-size: 0.76rem;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #c8c7bd;
  border-radius: 0.4rem;
  background: var(--surface);
}

.field textarea {
  min-height: 12rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  outline: 2px solid rgb(219 173 88 / 52%);
  outline-offset: 1px;
}

.field__hint {
  color: #626b63;
  font-size: 0.72rem;
}

.field--honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 1rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 0.4rem;
  font-size: 0.84rem;
}

.form-status:not(:empty) {
  display: block;
}

.form-status[data-state="success"] {
  background: #e4eee5;
  color: var(--success);
}

.form-status[data-state="error"] {
  background: #f5e7e2;
  color: var(--error);
}

.support-aside {
  padding-top: 0.25rem;
}

.support-aside h2 {
  margin-bottom: 1.2rem;
  font-size: 2rem;
}

.support-aside ol {
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  counter-reset: support;
  list-style: none;
}

.support-aside li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
  counter-increment: support;
  color: #566057;
  font-size: 0.84rem;
}

.support-aside li::before {
  color: #8a928b;
  content: "0" counter(support);
  font-size: 0.72rem;
  font-weight: 750;
}

.text-link {
  font-size: 0.8rem;
  font-weight: 740;
}

.site-footer {
  padding-block: 4.5rem 2rem;
  background: #202721;
  color: #f5f2eb;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  padding-bottom: 4rem;
}

.site-footer__mark {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 1;
  text-decoration: none;
}

.site-footer__top p {
  max-width: 27rem;
  margin-bottom: 0;
  color: #adb5ae;
  font-size: 0.86rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #485048;
  color: #9da69e;
  font-size: 0.7rem;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.not-found h1 {
  max-width: none;
  margin-inline: auto;
}

@media (max-width: 989px) {
  :root {
    --page: min(92vw, 54rem);
  }

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

  .primary-nav,
  .header-actions .button {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .wordmark {
    justify-self: start;
  }

  .mobile-nav {
    position: fixed;
    z-index: 25;
    inset: 5.3rem 0 0;
    padding: 2rem 4vw;
    background: var(--paper);
  }

  .mobile-nav[data-open="true"] {
    display: grid;
    align-content: start;
  }

  .mobile-nav a {
    padding-block: 1.2rem;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    font-weight: 720;
    letter-spacing: -0.04em;
    text-decoration: none;
  }

  .route-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .route-hero__copy {
    min-height: 29rem;
  }

  .route-hero__visual > img {
    object-position: center top;
  }

  .route-hero__panel {
    min-height: 31.5rem;
  }

  .route-hero__visual {
    min-height: 31.5rem;
  }

  .overview-statement,
  .feature-editorial,
  .mobile-preview,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-editorial__intro {
    position: static;
  }

  .docs-mobile-index {
    display: block;
    margin-bottom: 2rem;
  }

  .docs-mobile-index summary {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 0.4rem;
    background: var(--surface);
    font-size: 0.8rem;
    font-weight: 740;
    cursor: pointer;
  }

  .docs-mobile-index nav {
    display: grid;
    padding: 0.75rem 1rem 1rem;
    border: 1px solid var(--line);
    border-top: 0;
    background: var(--surface);
  }

  .docs-mobile-index a {
    padding-block: 0.45rem;
    font-size: 0.82rem;
    text-decoration: none;
  }

  .docs-shell {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    display: none;
  }

  .docs-content {
    max-width: none;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 2rem);
    --route-hero-height: auto;
    --radius: 0.75rem;
  }

  .site-header__inner {
    min-height: 4.5rem;
  }

  .mobile-nav {
    inset-block-start: 4.55rem;
  }

  .route-hero {
    grid-template-rows: auto auto;
    margin-block-start: 1rem;
    margin-block-end: 4.5rem;
  }

  .route-hero__copy {
    min-height: 36rem;
    padding: 2rem 1.25rem;
  }

  .route-hero__panel {
    min-height: 30rem;
    padding: 2rem 1.25rem;
  }

  .route-hero__visual {
    min-height: 30rem;
  }

  .route-hero--home .route-hero__visual {
    height: 30rem;
  }

  .hero-steps li {
    padding-block: 0.45rem;
  }

  .contact-points li {
    padding-block: 0.55rem;
  }

  .route-hero h1 {
    margin-bottom: 1.2rem;
  }

  .route-hero__lede {
    margin-bottom: 1.5rem;
  }

  .route-hero--docs h1 {
    font-size: clamp(2.25rem, 11.5vw, 2.65rem);
  }

  .route-hero--home .route-hero__visual > picture {
    position: absolute;
    inset: 1.25rem;
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 0.55rem;
  }

  .route-hero--home .route-hero__visual > picture img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: top center;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .route-hero__lede {
    font-size: 0.97rem;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .section-heading,
  .preview-pair,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .capability-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .capability-line span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-line span:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .feature-item {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .preview-caption,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .setting-list > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .support-form {
    grid-template-columns: 1fr;
  }

  .field--wide,
  .form-status,
  .support-form .button {
    grid-column: 1;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.8rem;
  }
}

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