@font-face {
  font-family: "Golos Text";
  src: url("/assets/fonts/golos-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Golos Text";
  src: url("/assets/fonts/golos-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Press Start 2P";
  src: url("/assets/fonts/press-start-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Press Start 2P";
  src: url("/assets/fonts/press-start-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Departure Mono";
  src: url("/assets/fonts/departure-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0d0b14;
  --surface: #151020;
  --surface-2: #1d1530;
  --ink: #f2edfa;
  --text: #d9d2e9;
  --text-2: #b7a8d9;
  --muted: #8d81ad;
  --accent: #a78bfa;
  --accent-2: #c4b5fd;
  --ring: #3f2d6b;
  --border: #241f33;
  --cta: #2aabee;
  --cta-press: #1e96d6;
  --cta-ink: #06121c;
  --ok: #3ce195;
  --warn: #f0b35b;
  --danger: #f87171;
  --px-shadow: #060410;
  --font-body: "Golos Text", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Unbounded", "Golos Text", system-ui, sans-serif;
  --font-pixel: "Press Start 2P", "Golos Text", system-ui, sans-serif;
  --font-mono: "Departure Mono", "Cascadia Mono", Consolas, monospace;
  --page: 1120px;
  --measure: 72ch;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding-top: 86px;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  border: 12px solid var(--bg);
  box-shadow: inset 0 0 0 1px rgba(63, 45, 107, 0.26);
  pointer-events: none;
  content: "";
}

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

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

a:hover {
  color: var(--ink);
}

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

::selection {
  background: var(--accent);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 16px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border: 1px solid var(--ring);
  background: var(--surface);
  color: var(--ink);
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--ring);
  background: rgba(13, 11, 20, 0.96);
}

.header-inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: 30px;
  image-rendering: auto;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

.lang-link {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ring);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  background: var(--cta);
  box-shadow: 4px 4px 0 var(--px-shadow);
  color: var(--cta-ink);
  font-family: var(--font-pixel);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background: #4ab7f0;
  color: var(--cta-ink);
}

.button:active {
  transform: translate(2px, 2px);
  background: var(--cta-press);
  box-shadow: 2px 2px 0 var(--px-shadow);
}

.button-secondary {
  border-color: var(--ring);
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  color: var(--ink);
}

.button-small {
  min-height: 44px;
  padding: 9px 14px;
  font-size: 9px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--font-pixel);
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: 710px;
  align-items: center;
  gap: 68px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  padding-block: 96px;
}

.hero-copy {
  max-width: 680px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 700;
  hyphens: auto;
  letter-spacing: -0.045em;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-lead {
  max-width: 62ch;
  margin: 28px 0 0;
  color: var(--text-2);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  display: flex;
  margin: 24px 0 0;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
}

.dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border: 2px solid var(--ok);
}

.instrument {
  position: relative;
  border: 1px solid var(--ring);
  background: var(--surface);
  box-shadow: 8px 8px 0 var(--px-shadow);
}

.instrument::before,
.instrument::after {
  position: absolute;
  width: 18px;
  height: 18px;
  content: "";
}

.instrument::before {
  top: -7px;
  left: -7px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}

.instrument::after {
  right: -7px;
  bottom: -7px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.instrument-head {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ring);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.instrument-status {
  color: var(--ok);
}

.audit-list {
  margin: 0;
  padding: 8px 18px;
  list-style: none;
}

.audit-row {
  display: grid;
  align-items: start;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 16px 0;
  border-bottom: 1px dashed var(--ring);
}

.audit-row:last-child {
  border-bottom: 0;
}

.audit-label {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 14px;
}

.audit-detail {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
}

.audit-value {
  color: var(--accent-2);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: right;
}

.instrument-foot {
  padding: 17px 18px;
  border-top: 1px solid var(--ring);
  background: var(--surface-2);
  color: var(--text-2);
  font-size: 14px;
}

.section {
  padding-block: 92px;
  border-top: 1px solid var(--border);
}

.section-compact {
  padding-block: 64px;
}

.section-head {
  display: grid;
  margin-bottom: 42px;
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  align-items: end;
}

.section-head h2,
.cta-band h2,
.pricing-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(27px, 3.8vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}

.section-head p {
  max-width: 58ch;
  margin: 0;
  color: var(--text-2);
  font-size: 18px;
  text-wrap: pretty;
}

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

.card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--ring);
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--px-shadow);
}

.card-number,
.step-number {
  display: inline-flex;
  min-width: 34px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ring);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
}

.card h3,
.step h3,
.contact-card h2 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.card p,
.step p,
.contact-card p {
  margin: 0;
  color: var(--text-2);
  text-wrap: pretty;
}

.card-note {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
}

.limits {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--ring);
  background: var(--surface);
  grid-template-columns: 0.9fr 1.1fr;
}

.limits-title {
  padding: 42px;
  border-right: 1px solid var(--ring);
  background: var(--surface-2);
}

.limits-title h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(27px, 3.7vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.limits-list {
  margin: 0;
  padding: 28px 42px;
  list-style: none;
}

.limits-list li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-bottom: 1px dashed var(--ring);
  color: var(--text-2);
}

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

.limits-list li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--accent);
  content: "";
}

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

.step {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--ring);
  border-right: 0;
  background: var(--surface);
}

.step:last-child {
  border-right: 1px solid var(--ring);
}

.step h3 {
  margin-top: 24px;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.82fr 1.18fr;
}

.pricing-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--ring);
  background: var(--surface);
  box-shadow: 5px 5px 0 var(--px-shadow);
}

.pricing-card-featured {
  border-color: var(--accent);
}

.pricing-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--font-pixel);
  font-size: 9px;
  line-height: 1.7;
  text-transform: uppercase;
}

.price {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price small {
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}

.price-lead {
  margin: 18px 0 0;
  color: var(--text-2);
}

.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-bottom: 1px dashed var(--ring);
  color: var(--text);
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-list li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ok);
  content: "";
}

.pricing-actions {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 14px;
}

.billing-note {
  margin: 30px 0 0;
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: var(--surface-2);
  color: var(--text-2);
  font-size: 15px;
}

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

.cta-band {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 46px;
  border: 1px solid var(--ring);
  background: var(--surface-2);
  box-shadow: 6px 6px 0 var(--px-shadow);
}

.cta-band p {
  max-width: 60ch;
  margin: 14px 0 0;
  color: var(--text-2);
}

.site-footer {
  padding-block: 54px 28px;
  border-top: 1px solid var(--ring);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  gap: 46px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-intro {
  max-width: 48ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--text-2);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px dashed var(--ring);
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.page-hero {
  padding-block: 86px 54px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(36px, 5vw, 60px);
}

.page-lead {
  max-width: 66ch;
  margin: 24px 0 0;
  color: var(--text-2);
  font-size: 20px;
  text-wrap: pretty;
}

.page-meta {
  display: flex;
  margin-top: 26px;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid var(--ring);
  border-radius: 2px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.article-wrap {
  display: grid;
  align-items: start;
  gap: 54px;
  grid-template-columns: 240px minmax(0, var(--measure));
  padding-block: 64px 96px;
}

.toc {
  position: sticky;
  top: 102px;
  padding: 20px;
  border: 1px solid var(--ring);
  background: var(--surface);
}

.toc-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc li + li {
  margin-top: 8px;
}

.toc a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.toc a:hover {
  color: var(--ink);
}

.prose {
  min-width: 0;
  color: var(--text);
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 58px 0 18px;
  scroll-margin-top: 100px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.prose h3 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 21px;
}

.prose p,
.prose li {
  text-wrap: pretty;
}

.prose p {
  margin: 0 0 18px;
}

.prose ul,
.prose ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.prose li + li {
  margin-top: 9px;
}

.prose li::marker {
  color: var(--accent);
}

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

.prose a {
  color: var(--accent-2);
}

.prose blockquote {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  color: var(--text-2);
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.legal-summary {
  margin-bottom: 40px;
  padding: 24px;
  border: 1px solid var(--ring);
  background: var(--surface-2);
}

.legal-summary p:last-child {
  margin-bottom: 0;
}

.data-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-size: 15px;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border: 1px solid var(--ring);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--surface-2);
  color: var(--ink);
}

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

.contact-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--ring);
  background: var(--surface);
}

.contact-card h2 {
  margin-top: 18px;
}

.contact-value {
  display: inline-block;
  margin-top: 22px;
  overflow-wrap: anywhere;
  color: var(--accent-2);
  font-family: var(--font-mono);
  font-size: 14px;
}

.contact-kicker {
  color: var(--muted);
  font-family: var(--font-pixel);
  font-size: 8px;
  line-height: 1.7;
  text-transform: uppercase;
}

.contact-help {
  margin-top: 30px;
  padding: 24px;
  border: 1px dashed var(--ring);
  color: var(--text-2);
}

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

.contact-help p {
  margin: 0;
}

.contact-help p + p {
  margin-top: 14px;
}

.status-panel {
  display: grid;
  margin-top: 32px;
  border: 1px solid var(--ring);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.status-item {
  padding: 22px;
  border-right: 1px solid var(--ring);
  background: var(--surface);
}

.status-item:last-child {
  border-right: 0;
}

.status-label {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.status-value {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 700;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 70px);
  place-items: center;
  padding-block: 80px;
}

.not-found-card {
  width: min(100%, 760px);
  padding: 50px;
  border: 1px solid var(--ring);
  background: var(--surface);
  box-shadow: 8px 8px 0 var(--px-shadow);
}

.not-found-code {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 64px;
  line-height: 1;
}

.not-found-card h1 {
  margin: 24px 0 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
}

.not-found-card p {
  max-width: 52ch;
  margin: 0 0 28px;
  color: var(--text-2);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 76px;
  }

  .instrument {
    width: min(100%, 680px);
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid .card:last-child,
  .contact-grid .contact-card:last-child {
    grid-column: 1 / -1;
  }

  .article-wrap {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

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

  .status-item:nth-child(2) {
    border-right: 0;
  }

  .status-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ring);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  body::before {
    display: none;
  }

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

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

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

  .site-nav {
    gap: 10px;
  }

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

  .hero {
    gap: 50px;
    padding-block: 62px 74px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .hero-lead,
  .page-lead {
    font-size: 18px;
  }

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

  .audit-row {
    grid-template-columns: 1fr;
  }

  .audit-value {
    text-align: left;
  }

  .section {
    padding-block: 70px;
  }

  .section-compact {
    padding-block: 54px;
  }

  .card-grid,
  .contact-grid,
  .steps,
  .pricing-grid,
  .limits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid .card:last-child,
  .contact-grid .contact-card:last-child {
    grid-column: auto;
  }

  .card {
    min-height: auto;
  }

  .limits-title {
    padding: 30px;
    border-right: 0;
    border-bottom: 1px solid var(--ring);
  }

  .limits-list {
    padding: 22px 28px;
  }

  .step {
    min-height: auto;
    border-right: 1px solid var(--ring);
    border-bottom: 0;
  }

  .step:last-child {
    border-bottom: 1px solid var(--ring);
  }

  .pricing-card {
    padding: 28px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .cta-band .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding-block: 62px 42px;
  }

  .article-wrap {
    gap: 32px;
    padding-block: 42px 72px;
  }

  .prose h2 {
    font-size: 24px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

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

  .status-item,
  .status-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--ring);
  }

  .status-item:last-child {
    border-bottom: 0;
  }

  .not-found-card {
    padding: 32px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: #fff;
    color: #111;
  }

  .site-header,
  .site-footer,
  .toc,
  .button {
    display: none;
  }

  .page-hero,
  .section {
    border-color: #ddd;
  }

  .page-hero h1,
  .prose h2,
  .prose h3,
  .prose strong {
    color: #111;
  }

  .page-lead,
  .prose,
  .tag {
    color: #222;
  }

  .article-wrap {
    display: block;
    padding-top: 24px;
  }

  .card,
  .pricing-card,
  .contact-card,
  .summary-box,
  .status-panel {
    background: #fff;
    box-shadow: none;
  }
}
