@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

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

:root {
  color-scheme: dark;
  --bg: #070708;
  --surface: #0c0d0f;
  --surface-raised: #111216;
  --surface-soft: #15171b;
  --text: #f3f4f6;
  --muted: #a0a4ad;
  --quiet: #898d96;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.065);
  --danger: #d98282;
  --success: #a7c7a2;
  --focus: #d7deea;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

section[id] {
  scroll-margin-top: 76px;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

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

.section {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 12px;
  translate: 0 -150%;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--text);
  color: var(--bg);
  font-size: 12px;
  font-weight: 750;
  transition: translate 0.16s ease;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 72px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 7, 8, 0.9);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 56px));
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-mark {
  position: relative;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: "";
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.68);
}

.brand-mark::before {
  width: 1px;
  height: 10px;
}

.brand-mark::after {
  width: 10px;
  height: 1px;
}

.brand-mark i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text);
}

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

.nav-links a {
  padding: 12px 0;
  color: #989ba3;
  font-size: 12px;
  transition: color 0.14s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 730;
  letter-spacing: -0.015em;
  transition:
    transform 0.14s ease,
    background 0.14s ease,
    border-color 0.14s ease,
    color 0.14s ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.button-primary {
  background: #f2f3f5;
  color: #090a0c;
}

.button-primary:hover {
  background: #fff;
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: #d5d7dc;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.nav-cta {
  min-height: 38px;
  padding-inline: 15px;
}

.mobile-nav {
  display: none;
}

main {
  min-height: 100vh;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 20px;
  color: #b9bdc6;
  font: 400 11px var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span::before {
  content: "";
  width: 22px;
  height: 1px;
  background: #5a5d65;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(480px, 0.9fr);
  align-items: center;
  gap: 56px;
  padding-top: 146px;
  padding-bottom: 100px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 17px;
  margin-bottom: 11px;
}

.hero-eyebrow b {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #858992;
  font: inherit;
  letter-spacing: 0.04em;
}

.deadline-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  font: 400 11px var(--mono);
  letter-spacing: 0.08em;
}

.deadline-line span:first-child {
  padding: 7px 10px;
  border: 1px solid rgba(217, 130, 130, 0.34);
  border-radius: 4px;
  color: #e4b1b1;
}

.deadline-line span:last-child {
  color: #a0a4ad;
}

h1 {
  max-width: 670px;
  margin-bottom: 25px;
  font-size: clamp(56px, 5.35vw, 76px);
  font-weight: 660;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

h1 em {
  display: block;
  margin-top: 10px;
  color: #777b84;
  font-size: 0.82em;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.hero-description {
  max-width: 545px;
  margin-bottom: 29px;
  color: #b2b5bc;
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: -0.025em;
}

.hero-description strong {
  color: #f0f1f3;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-assurance {
  display: grid;
  gap: 8px;
  margin-top: 25px;
  color: #848891;
  font: 400 11px var(--mono);
}

.hero-assurance span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero-assurance i,
.price-points i,
.contact-points i {
  color: #c8cbd2;
  font-style: normal;
}

.migration-preview {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a0b0d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.preview-head {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
}

.preview-head p,
.preview-head span {
  margin: 0;
}

.preview-head p {
  color: #dadce1;
  font-size: 12px;
  font-weight: 680;
}

.preview-head span {
  display: block;
  margin-top: 2px;
  color: #898d96;
  font: 400 9px var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preview-head button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: #c5c8ce;
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
}

.preview-head button:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.preview-status {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border-bottom: 1px solid var(--line-soft);
  background: #0d0e11;
}

.status-ring {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 130, 130, 0.3);
  border-radius: 50%;
  color: var(--danger);
  font: 500 13px var(--mono);
  transition:
    border-color 0.18s ease,
    color 0.18s ease;
}

.preview-status p,
.preview-status span {
  margin: 0;
}

.preview-status p {
  color: #e0e2e6;
  font-size: 12px;
  font-weight: 700;
}

.preview-status div > span {
  display: block;
  margin-top: 2px;
  color: #999da6;
  font-size: 12px;
}

.preview-status > b {
  min-width: 54px;
  color: var(--danger);
  font: 500 13px var(--mono);
  text-align: right;
}

.migration-preview.is-verified .status-ring {
  border-color: rgba(167, 199, 162, 0.36);
  color: var(--success);
}

.migration-preview.is-verified .preview-status > b {
  color: var(--success);
}

.preview-table {
  padding: 0 16px;
}

.preview-labels,
.preview-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr 78px;
  align-items: center;
  gap: 14px;
}

.preview-labels {
  min-height: 39px;
  border-bottom: 1px solid var(--line-soft);
  color: #898d96;
  font: 400 9px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-labels span:last-child {
  text-align: right;
}

.preview-row {
  min-height: 56px;
  border-bottom: 1px solid var(--line-soft);
  color: #a1a5ae;
  font-size: 12px;
}

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

.source {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d8dae0;
  font-weight: 680;
}

.source i {
  color: #898d96;
  font: 400 9px var(--mono);
  font-style: normal;
}

.preview-row b {
  color: #e7e9ed;
  font: 500 10px var(--mono);
  text-align: right;
  transition: color 0.18s ease;
}

.preview-row b.danger {
  color: var(--danger);
}

.migration-preview.is-verified .preview-row b {
  color: var(--success);
}

.preview-foot {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  border-top: 1px solid var(--line-soft);
  color: #898d96;
  font: 400 9px var(--mono);
  letter-spacing: 0.06em;
}

.preview-foot b {
  color: #9599a2;
  font-weight: 400;
  letter-spacing: 0;
}

.migration-preview.is-verified .preview-foot b {
  color: var(--success);
}

.signal-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.signal-strip-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.signal-strip span {
  color: #c8cbd1;
  font: 500 10px var(--mono);
  letter-spacing: 0.12em;
}

.signal-strip p {
  margin: 0;
  color: #91959e;
  font-size: 13px;
}

.signal-strip i {
  width: 1px;
  height: 18px;
  margin: 0 21px;
  background: var(--line);
}

.contact-copy h2,
.faq-heading h2,
.pricing-copy h2,
.scope-heading h2,
.section-heading h2,
.proof-heading h2,
.agency-inner h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.muted-title {
  color: #747881;
}

.section-copy {
  max-width: 515px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.source-links a {
  color: #b6bac2;
  font: 400 10px var(--mono);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.problems {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 100px;
  padding-top: 120px;
  padding-bottom: 120px;
}

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

.problem-row {
  min-height: 105px;
  display: grid;
  grid-template-columns: 44px 170px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.problem-row > span,
.deliverable-row > span {
  color: #898d96;
  font: 400 10px var(--mono);
}

.problem-row h3,
.deliverable-row h3,
.process-list h3 {
  margin: 0;
  color: #e0e2e7;
  font-size: 14px;
  font-weight: 670;
  letter-spacing: -0.025em;
}

.problem-row p,
.deliverable-row p,
.process-list p {
  margin: 0;
  color: #8f939c;
  font-size: 12px;
  line-height: 1.65;
}

.deliverable-section {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 100px;
  padding-top: 120px;
  padding-bottom: 125px;
  border-top: 1px solid var(--line-soft);
}

.deliverable-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.deliverable-row {
  min-height: 156px;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 13px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-row h3 {
  margin-bottom: 10px;
}

.stage-chip {
  display: inline-block;
  margin-bottom: 10px;
  color: #858992;
  font: 400 9px var(--mono);
  letter-spacing: 0.08em;
}

.proof-section {
  padding: 120px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #090a0c;
}

.proof-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.1fr 0.7fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}

.proof-heading .eyebrow {
  align-self: start;
}

.proof-heading h2,
.proof-heading > p:last-child {
  margin-bottom: 0;
}

.proof-heading > p:last-child {
  color: #8d919a;
  font-size: 13px;
  line-height: 1.7;
}

.verification-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.verification-top {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 22px;
}

.panel-index,
.verification-bottom > div > span,
.verification-state {
  color: #898d96;
  font: 400 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verification-top h3 {
  margin: 4px 0 0;
  color: #e0e2e6;
  font-size: 14px;
  font-weight: 680;
}

.verification-state {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #9a9ea7;
  letter-spacing: 0;
  text-transform: none;
}

.verification-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6d7179;
}

.verification-state.running i {
  background: #d3d6dc;
  animation: status-pulse 0.7s ease-in-out infinite alternate;
}

.verification-state.done {
  border-color: rgba(167, 199, 162, 0.24);
  color: var(--success);
}

.verification-state.done i {
  background: var(--success);
}

@keyframes status-pulse {
  to {
    opacity: 0.35;
  }
}

.progress-track {
  height: 2px;
  background: #17191d;
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  background: #d9dce1;
  transition: width 0.32s ease;
}

.progress-track i.progress-25 {
  width: 25%;
}
.progress-track i.progress-50 {
  width: 50%;
}
.progress-track i.progress-75 {
  width: 75%;
}
.progress-track i.progress-100 {
  width: 100%;
}

.test-table {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.test-head,
.test-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.6fr) repeat(3, minmax(92px, 0.5fr));
  align-items: center;
  gap: 12px;
  padding-inline: 22px;
}

.test-head {
  min-height: 46px;
  color: #898d96;
  font: 400 9px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.test-head span:not(:first-child) {
  text-align: center;
}

.test-row {
  position: relative;
  min-height: 76px;
  border-top: 1px solid var(--line-soft);
  transition: background 0.16s ease;
}

.test-row.is-active {
  background: #111318;
}

.test-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: transparent;
}

.test-row.is-active::before {
  background: #d8dbe1;
}

.test-name {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d5d7dc;
  font-size: 13px;
  font-weight: 630;
}

.test-name i {
  color: #898d96;
  font: 400 10px var(--mono);
  font-style: normal;
}

.test-row > b,
.after-value,
.evidence-value {
  color: #cfd2d8;
  font: 500 12px var(--mono);
  text-align: center;
}

.after-value {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  color: #898d96;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.evidence-value {
  color: #898d96;
  font-size: 10px;
}

.test-row.is-complete .after-value {
  border-color: rgba(167, 199, 162, 0.26);
  background: rgba(167, 199, 162, 0.045);
  color: var(--success);
}

.test-row.is-complete .evidence-value {
  color: var(--success);
}

.verification-bottom {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 22px;
}

.verification-bottom p {
  margin: 5px 0 0;
  color: #92969e;
  font-size: 12px;
}

.process-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  padding-top: 125px;
  padding-bottom: 125px;
}

.access-note {
  max-width: 480px;
  display: flex;
  gap: 13px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #9599a2;
}

.access-note > span {
  flex: none;
  color: #c9ccd2;
}

.access-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.access-note strong {
  color: #d9dbe0;
  font-weight: 680;
}

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

.process-list li {
  min-height: 116px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #898d96;
  font: 400 9px var(--mono);
}

.process-list h3 {
  margin-bottom: 7px;
}

.process-list p {
  max-width: 540px;
}

.scope-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 95px;
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-copy > p,
.faq-heading > p:last-child,
.pricing-copy > p:last-child,
.scope-heading > p:last-child {
  max-width: 480px;
  margin: 0;
  color: #969aa3;
  font-size: 13px;
  line-height: 1.7;
}

.scope-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.scope-columns article {
  border-top: 1px solid var(--line);
}

.scope-columns h3 {
  min-height: 61px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #dfe1e5;
  font-size: 13px;
  font-weight: 680;
}

.scope-columns h3 span {
  color: #bfc2c9;
}

.scope-columns article > p {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
  color: #9498a1;
  font-size: 12px;
  line-height: 1.55;
}

.scope-columns article > p > span {
  flex: none;
  margin-top: 2px;
  color: #b7bac1;
}

.agency-section {
  border-bottom: 1px solid var(--line-soft);
  background: #090a0c;
}

.agency-inner {
  min-height: 260px;
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  align-items: center;
  gap: 70px;
}

.agency-inner .eyebrow {
  margin-bottom: 12px;
}

.agency-inner h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 48px);
}

.agency-inner > p {
  margin: 0;
  color: #969aa3;
  font-size: 13px;
  line-height: 1.75;
}

.pricing-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
  padding-top: 125px;
  padding-bottom: 125px;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.price-panel {
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.price-panel.featured {
  border-color: rgba(255, 255, 255, 0.18);
}

.price-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #8b8f98;
  font: 400 9px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-kicker b {
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #c9ccd2;
  font-weight: 400;
  white-space: nowrap;
}

.price {
  margin: 36px 0 8px;
  font-size: 76px;
  font-weight: 660;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.price sup {
  position: relative;
  top: 7px;
  margin-right: 4px;
  vertical-align: top;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.price-inline-tax {
  margin: 0 0 9px;
  color: #a8abb3;
  font: 400 9px var(--mono);
  line-height: 1.5;
}

.implementation-price {
  min-height: 69px;
  display: flex;
  align-items: flex-end;
  margin: 31px 0 8px;
  color: #f0f1f3;
  font-size: 31px;
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 1;
}

.price-description {
  min-height: 38px;
  margin-bottom: 25px;
  color: #91959e;
  font-size: 11px;
  line-height: 1.6;
}

.price-points {
  display: grid;
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
}

.price-points span {
  min-height: 47px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line-soft);
  color: #b2b5bc;
  font-size: 11px;
}

.price-panel .button {
  width: 100%;
  margin-top: auto;
}

.commercial-terms {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.commercial-terms p {
  min-height: 88px;
  display: grid;
  gap: 6px;
  align-content: center;
  margin: 0;
  padding: 17px 19px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.commercial-terms p:last-child {
  grid-column: 1 / -1;
}

.commercial-terms b {
  color: #a8abb3;
  font: 400 9px var(--mono);
  letter-spacing: 0.08em;
}

.commercial-terms span {
  color: #8f939c;
  font-size: 11px;
  line-height: 1.55;
}

.price-tax-note {
  grid-column: 1 / -1;
  margin: 3px 0 0;
  color: #a0a4ad;
  font: 400 11px var(--mono);
  line-height: 1.6;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line-soft);
}

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

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

.faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  color: #d7d9de;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker,
.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.faq-item summary > span {
  flex: none;
  color: #81858e;
  transition: transform 0.16s ease;
}

.faq-item[open] summary > span {
  transform: rotate(45deg);
}

.faq-item > div p {
  max-width: 650px;
  margin: 0;
  padding: 0 40px 20px 0;
  color: #969aa3;
  font-size: 12px;
  line-height: 1.72;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 110px;
  padding-top: 125px;
  padding-bottom: 125px;
  border-top: 1px solid var(--line-soft);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 29px;
  color: #8c9099;
  font: 400 11px var(--mono);
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.request-form > label {
  display: grid;
  gap: 8px;
  color: #c9cbd1;
  font-size: 12px;
  font-weight: 650;
}

.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.field-label em {
  color: #8f939c;
  font: 400 9px var(--mono);
  font-style: normal;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: #090a0c;
  color: var(--text);
  font-size: 12px;
  transition:
    border-color 0.14s ease,
    background 0.14s ease;
}

.request-form input:hover,
.request-form select:hover,
.request-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  background: #0b0c0f;
}

.request-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8b8f98 50%),
    linear-gradient(135deg, #8b8f98 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 20px,
    calc(100% - 13px) 20px;
  background-repeat: no-repeat;
  background-size: 4px 4px;
}

.request-form textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
  line-height: 1.55;
}

.full-field,
.form-privacy {
  grid-column: 1 / -1;
}

.field-help {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  font: 400 10px var(--mono);
  color: #8f939c;
}

.form-privacy {
  margin: -1px 0 0;
  color: #8f939c;
  font: 400 11px var(--mono);
  line-height: 1.6;
  text-align: center;
}

.form-privacy a {
  color: #bec1c8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

footer {
  width: min(1180px, calc(100% - 56px));
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
  border-top: 1px solid var(--line-soft);
  color: #8f939c;
  font: 400 10px var(--mono);
}

footer .brand {
  color: #d8dae0;
  font-family: var(--sans);
  font-size: 15px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: auto;
}

footer nav a:hover {
  color: #d8dae0;
}

.platform-disclaimer {
  width: min(1180px, calc(100% - 56px));
  margin: -8px auto 32px;
  color: #747881;
  font: 400 9px var(--mono);
  line-height: 1.6;
  text-align: right;
}

.legal-page,
.thanks-page,
.document-page {
  min-height: 100svh;
  padding: 120px 28px 70px;
  background: var(--bg);
}

.legal-shell,
.thanks-card,
.document-shell {
  width: min(760px, 100%);
  margin-inline: auto;
}

.legal-shell .brand,
.thanks-card .brand,
.document-shell > .brand {
  margin-bottom: 70px;
}

.legal-shell h1,
.thanks-card h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 68px);
}

.legal-shell h1 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-shell h2 {
  margin: 42px 0 12px;
  color: #e0e2e6;
  font-size: 18px;
}

.legal-shell p,
.legal-shell li,
.thanks-card > p {
  color: #9da1aa;
  font-size: 13px;
  line-height: 1.8;
}

.legal-shell a,
.thanks-card > p a {
  color: #d7d9de;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-shell .button {
  text-decoration: none;
}

.legal-shell .button-primary {
  color: #090a0c;
}

.legal-shell .button-secondary {
  color: #d5d7dc;
}

.legal-actions,
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.outreach-page {
  padding-top: 88px;
}

.outreach-shell {
  width: min(980px, 100%);
  margin-inline: auto;
}

.outreach-shell > .brand {
  margin-bottom: 70px;
}

.outreach-shell h1 {
  max-width: 860px;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  font-size: clamp(45px, 7vw, 74px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.outreach-shell a:not(.brand) {
  color: #d7d9de;
  text-decoration: underline;
  text-decoration-color: #676b73;
  text-underline-offset: 3px;
}

.outreach-lede {
  max-width: 780px;
  margin-bottom: 30px;
  color: #a6aab2;
  font-size: 15px;
  line-height: 1.8;
}

.outreach-summary,
.outreach-details {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.outreach-summary > div,
.outreach-details > div {
  min-width: 0;
  padding: 17px 19px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.outreach-summary dt,
.outreach-details dt {
  margin-bottom: 7px;
  color: #898d96;
  font: 400 9px var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.outreach-summary dd,
.outreach-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #c0c3ca;
  font-size: 12px;
  line-height: 1.6;
}

.outreach-format-link {
  margin: 18px 0 0;
  color: #858992;
  font: 400 10px/1.7 var(--mono);
}

.outreach-section {
  padding-top: 62px;
}

.outreach-section h2 {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin: 0 0 20px;
  color: #e3e5e9;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.outreach-section h2 > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #8f939c;
  font: 400 9px var(--mono);
}

.outreach-section p,
.outreach-section li {
  color: #9da1aa;
  font-size: 13px;
  line-height: 1.82;
}

.outreach-section strong {
  color: #d9dbe0;
}

.outreach-section ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.outreach-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.outreach-table-wrap {
  margin: 23px 0 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.outreach-table-wrap:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.outreach-table-wrap table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  color: #aeb1b9;
  font-size: 11px;
  line-height: 1.55;
}

.outreach-table-wrap caption {
  padding: 14px 15px;
  border-bottom: 1px solid var(--line);
  color: #d7d9de;
  font: 400 10px var(--mono);
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

.outreach-table-wrap th,
.outreach-table-wrap td {
  padding: 14px 15px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.outreach-table-wrap th {
  color: #d0d2d7;
  font-weight: 650;
}

.outreach-table-wrap thead th {
  color: #858992;
  font: 400 9px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.outreach-table-wrap tr > :last-child {
  border-right: 0;
}

.outreach-table-wrap tbody tr:last-child > * {
  border-bottom: 0;
}

.outreach-provider-links {
  color: #858992 !important;
  font: 400 10px/1.8 var(--mono) !important;
}

.outreach-objection {
  padding: 24px;
  border: 1px solid rgba(217, 130, 130, 0.42);
  border-radius: 8px;
  background: linear-gradient(
    145deg,
    rgba(217, 130, 130, 0.12),
    rgba(217, 130, 130, 0.035)
  );
}

.outreach-objection h3 {
  margin: 0 0 10px;
  color: #f2dddd;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.outreach-objection p:last-child {
  margin-bottom: 0;
}

.outreach-footer {
  width: 100%;
  min-height: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  margin-top: 75px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: #858992;
  font: 400 10px var(--mono);
}

.outreach-footer p {
  margin: 0;
}

.outreach-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: auto;
}

.thanks-page {
  display: grid;
  place-items: center;
  padding-top: 70px;
}

.thanks-card {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  text-align: center;
}

.thanks-card .brand {
  justify-content: center;
  margin-bottom: 50px;
}

.thanks-card h1 {
  font-size: clamp(42px, 7vw, 58px);
}

.thanks-card > p {
  max-width: 500px;
  margin: 0 auto;
}

.thanks-actions {
  justify-content: center;
}

.thanks-legal {
  margin-top: 28px !important;
  color: #858992 !important;
  font: 400 10px var(--mono) !important;
}

.document-shell {
  width: min(980px, 100%);
}

.document-shell h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(45px, 7vw, 74px);
}

.document-lede {
  max-width: 720px;
  color: #a6aab2;
  font-size: 15px;
  line-height: 1.8;
}

.document-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 30px 0 0;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #858992;
  font: 400 10px var(--mono);
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.document-banner,
.document-callout {
  margin: 30px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: #a0a4ad;
  font-size: 12px;
  line-height: 1.7;
}

.document-banner strong,
.document-callout strong {
  color: #e0e2e6;
}

.document-section {
  padding: 62px 0 0;
}

.document-section h2 {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  color: #e3e5e9;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.document-section h2 span {
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #8f939c;
  font: 400 9px var(--mono);
}

.document-section > p,
.document-list {
  color: #9da1aa;
  font-size: 13px;
  line-height: 1.82;
}

.document-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.document-table-scroll {
  margin-top: 23px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.document-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--surface);
  color: #aeb1b9;
  font-size: 11px;
  line-height: 1.55;
}

.document-table th,
.document-table td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.document-table th {
  color: #858992;
  font: 400 9px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.document-table tr:last-child td {
  border-bottom: 0;
}

.document-kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 23px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.document-kv p {
  min-height: 96px;
  display: grid;
  gap: 7px;
  align-content: center;
  margin: 0;
  padding: 17px 19px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.document-kv b {
  color: #898d96;
  font: 400 9px var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.document-kv span {
  color: #c0c3ca;
  font-size: 12px;
  line-height: 1.6;
}

.check-group {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.check-item {
  min-height: 84px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 13px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  color: #c6c9cf;
  cursor: pointer;
  font-size: 13px;
}

.check-item input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: #f2f3f5;
}

.check-item small {
  display: block;
  margin-top: 5px;
  color: #898d96;
  font-size: 11px;
  line-height: 1.65;
}

.document-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  margin-top: 75px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #858992;
  font: 400 10px var(--mono);
}

.document-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: auto;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 18px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 130px;
  }
  .hero-copy {
    max-width: 850px;
  }
  .migration-preview {
    width: min(780px, 100%);
    margin-left: auto;
  }
  .contact-section,
  .deliverable-section,
  .faq-section,
  .problems,
  .process-section {
    gap: 65px;
  }
  .problem-row {
    grid-template-columns: 40px 145px 1fr;
  }
  .proof-heading {
    grid-template-columns: 0.55fr 1fr 0.7fr;
    gap: 30px;
  }
  .scope-section {
    gap: 60px;
  }
  .pricing-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .pricing-copy {
    max-width: 700px;
  }
  .agency-inner {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .agency-inner .button {
    grid-column: 2;
    justify-self: start;
    margin-top: -35px;
  }
}

@media (max-width: 820px) {
  .nav-shell,
  .section,
  footer {
    width: min(100% - 36px, 1180px);
  }
  .site-header {
    height: 62px;
  }
  .nav-cta,
  .nav-links {
    display: none;
  }
  .mobile-nav {
    display: block;
    margin-left: auto;
  }
  .mobile-nav summary {
    width: 48px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font: 400 10px var(--mono);
    list-style: none;
    text-transform: uppercase;
  }
  .menu-close,
  .mobile-nav[open] .menu-open {
    display: none;
  }
  .mobile-nav[open] .menu-close {
    display: block;
  }
  .mobile-menu {
    position: fixed;
    top: 69px;
    left: 18px;
    right: 18px;
    max-height: calc(100dvh - 83px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #0c0d0f;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  }
  .mobile-nav:not([open]) .mobile-menu {
    display: none;
  }
  .mobile-nav[open] .mobile-menu {
    display: grid;
  }
  .mobile-menu > a:not(.button) {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border-bottom: 1px solid var(--line-soft);
    color: #c7cad0;
    font-size: 12px;
  }
  .mobile-menu > a:not(.button) span {
    color: #767a83;
    font: 400 9px var(--mono);
  }
  .mobile-menu .button {
    margin-top: 10px;
  }
  .hero {
    padding-top: 112px;
    padding-bottom: 80px;
  }
  h1 {
    font-size: clamp(50px, 7vw, 58px);
  }
  .signal-strip-inner {
    min-height: 74px;
  }
  .signal-strip i {
    margin-inline: 8px;
  }
  .contact-section,
  .deliverable-section,
  .faq-section,
  .problems,
  .process-section,
  .scope-section {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .contact-copy h2,
  .faq-heading h2,
  .pricing-copy h2,
  .scope-heading h2,
  .section-heading h2,
  .proof-heading h2,
  .agency-inner h2 {
    font-size: clamp(39px, 8vw, 55px);
  }
  .proof-section {
    padding: 88px 0;
  }
  .proof-heading {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 37px;
  }
  .proof-heading .eyebrow {
    margin-bottom: 11px;
  }
  .proof-heading > p:last-child {
    max-width: 600px;
    margin-top: 9px;
  }
  .scope-columns {
    gap: 35px;
  }
  .agency-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .agency-inner .button {
    grid-column: auto;
    margin-top: 0;
  }
  .pricing-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .contact-copy {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }
  .nav-shell,
  .section,
  footer {
    width: min(100% - 28px, 1180px);
  }
  .hero {
    gap: 43px;
    padding-top: 96px;
    padding-bottom: 68px;
  }
  .deadline-line {
    flex-wrap: wrap;
    margin-bottom: 22px;
  }
  h1 {
    font-size: clamp(42px, 12.5vw, 50px);
    letter-spacing: -0.065em;
  }
  .legal-shell h1 {
    font-size: clamp(36px, 10.2vw, 42px);
  }
  .outreach-page {
    padding: 72px 16px 48px;
  }
  .outreach-shell > .brand {
    margin-bottom: 52px;
  }
  .outreach-shell h1 {
    font-size: clamp(39px, 11vw, 48px);
  }
  .outreach-summary,
  .outreach-details {
    grid-template-columns: 1fr;
  }
  .outreach-section {
    padding-top: 50px;
  }
  .outreach-section h2 {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 11px;
    font-size: 19px;
  }
  .outreach-section h2 > span {
    width: 28px;
    height: 28px;
  }
  .outreach-table-wrap {
    margin-inline: -1px;
  }
  .outreach-objection {
    padding: 19px;
  }
  .outreach-footer {
    display: grid;
    gap: 16px;
    margin-top: 58px;
  }
  .outreach-footer nav {
    margin-left: 0;
  }
  h1 em {
    margin-top: 9px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-assurance {
    font-size: 10px;
  }
  .preview-head {
    padding: 12px;
  }
  .preview-head span {
    display: none;
  }
  .preview-head button {
    font-size: 10px;
  }
  .preview-status {
    grid-template-columns: auto 1fr;
    padding: 14px 12px;
  }
  .preview-status > b {
    display: none;
  }
  .preview-status div > span {
    font-size: 10px;
  }
  .preview-table {
    padding-inline: 12px;
  }
  .preview-labels,
  .preview-row {
    grid-template-columns: 0.9fr 1.15fr 63px;
    gap: 8px;
  }
  .preview-row {
    min-height: 54px;
    font-size: 10px;
  }
  .source {
    gap: 7px;
    font-size: 10px;
  }
  .preview-row b {
    font-size: 10px;
  }
  .preview-foot {
    padding-inline: 12px;
  }
  .signal-strip-inner {
    flex-wrap: wrap;
    gap: 8px;
    padding-block: 18px;
  }
  .signal-strip i {
    height: 13px;
    margin-inline: 4px;
  }
  .signal-strip p {
    font-size: 10px;
  }
  .problem-row {
    min-height: auto;
    grid-template-columns: 34px 1fr;
    gap: 9px 12px;
    padding: 20px 0;
  }
  .problem-row p {
    grid-column: 2;
  }
  .deliverable-list {
    grid-template-columns: 1fr;
  }
  .deliverable-row {
    min-height: 132px;
  }
  .verification-top {
    align-items: flex-start;
    padding: 15px;
  }
  .verification-state {
    font-size: 10px;
  }
  .test-head {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .test-head span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .test-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 132px;
    padding: 15px;
  }
  .test-name {
    grid-column: 1 / -1;
    font-size: 12px;
  }
  .test-row > b {
    grid-column: 1;
    color: #aeb1b9;
    font-size: 11px;
    text-align: left;
  }
  .after-value {
    grid-column: 2;
    min-height: 48px;
    flex-direction: column;
    font-size: 11px;
  }
  .evidence-value {
    grid-column: 1 / -1;
    color: #9da1aa;
    font-size: 10px;
    text-align: left;
  }
  [data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: #747881;
    font: 400 10px var(--mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .verification-bottom {
    display: grid;
    gap: 18px;
    padding: 18px 15px;
  }
  .verification-bottom .button {
    width: 100%;
  }
  .scope-columns {
    grid-template-columns: 1fr;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .commercial-terms {
    grid-template-columns: 1fr;
  }
  .price-description {
    min-height: auto;
  }
  .request-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .request-form > label {
    grid-column: 1 / -1;
  }
  .contact-points {
    font-size: 10px;
  }
  footer {
    min-height: 120px;
    flex-wrap: wrap;
    align-content: center;
    gap: 12px 20px;
  }
  footer > span {
    display: none;
  }
  footer nav {
    width: 100%;
    margin-left: 0;
  }
  .platform-disclaimer {
    width: min(100% - 28px, 1180px);
    margin: 0 auto 32px;
    padding-top: 14px;
    text-align: left;
  }
  .thanks-card {
    padding: 34px 22px;
  }
  .document-page {
    padding-inline: 16px;
  }
  .document-kv {
    grid-template-columns: 1fr;
  }
  .document-actions .button {
    width: 100%;
  }
  .document-footer nav {
    width: 100%;
    margin-left: 0;
  }
}

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

@media print {
  .site-header,
  .document-actions,
  .document-footer,
  .platform-disclaimer {
    display: none !important;
  }

  :root {
    color-scheme: light;
  }

  html,
  body,
  .document-page,
  .document-table,
  .document-banner,
  .document-callout {
    background: #fff;
    color: #111;
  }

  .document-page {
    padding: 20px;
  }

  .document-table-scroll {
    overflow: visible;
    border: 0;
  }

  .document-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 8px;
  }

  .document-table th,
  .document-table td {
    padding: 7px 6px;
    overflow-wrap: anywhere;
  }

  .document-table th:first-child,
  .document-table td:first-child {
    width: 12%;
  }

  .document-table tr {
    break-inside: avoid;
  }

  .document-section h2 {
    break-after: avoid;
  }

  .document-section h2 + * {
    break-before: avoid;
  }

  .document-section.keep-together {
    break-inside: avoid;
  }

  .document-kv,
  .document-kv p,
  .document-banner,
  .document-callout {
    break-inside: avoid;
  }

  .document-kv p {
    min-height: auto;
    gap: 4px;
    padding: 10px 12px;
  }

  .document-callout {
    margin-top: 16px;
    padding: 10px 14px;
  }

  .document-shell h1,
  .document-section h2,
  .document-banner strong,
  .document-callout strong {
    color: #111;
  }

  .document-lede,
  .document-section > p,
  .document-list,
  .document-table,
  .document-kv span,
  .check-item,
  .check-item small {
    color: #333;
  }
}
