@font-face {
  font-family: "Merge Geist";
  src: url("./assets/fonts/geist-sans/Geist-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Merge Geist Mono";
  src: url("./assets/fonts/geist-mono/GeistMono-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --mp-bg: #eef0f2;
  --mp-surface: #f8f9fa;
  --mp-surface-muted: #e5e8eb;
  --mp-text: #171a1f;
  --mp-muted: #555d67;
  --mp-faint: #737c86;
  --mp-line: #d2d7dc;
  --mp-line-strong: #adb5be;
  --mp-accent: #425a70;
  --mp-accent-hover: #31475a;
  --mp-accent-soft: #e0e7ed;
  --mp-danger: #8b4544;
  --mp-danger-soft: #f1e4e4;
  --mp-success: #416a53;
  --mp-shadow: none;
  --tblr-font-sans-serif: "Merge Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tblr-font-monospace: "Merge Geist Mono", "SFMono-Regular", Consolas, monospace;
  --tblr-body-font-family: var(--tblr-font-sans-serif);
  --tblr-body-bg: var(--mp-bg);
  --tblr-body-color: var(--mp-muted);
  --tblr-heading-color: var(--mp-text);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-bs-theme="light"]) {
    --mp-bg: #24272b;
    --mp-surface: #2c3035;
    --mp-surface-muted: #34393f;
    --mp-text: #f0f2f3;
    --mp-muted: #b7bdc4;
    --mp-faint: #9098a1;
    --mp-line: #434a51;
    --mp-line-strong: #5c656e;
    --mp-accent: #a7bbcd;
    --mp-accent-hover: #c0d0de;
    --mp-accent-soft: #34424e;
    --mp-danger: #e1a09c;
    --mp-danger-soft: #473231;
    --mp-success: #9bc5a9;
    --mp-shadow: none;
    --tblr-body-bg: var(--mp-bg);
    --tblr-body-color: var(--mp-muted);
    --tblr-heading-color: var(--mp-text);
  }
}

:root[data-bs-theme="dark"] {
  --mp-bg: #24272b;
  --mp-surface: #2c3035;
  --mp-surface-muted: #34393f;
  --mp-text: #f0f2f3;
  --mp-muted: #b7bdc4;
  --mp-faint: #9098a1;
  --mp-line: #434a51;
  --mp-line-strong: #5c656e;
  --mp-accent: #a7bbcd;
  --mp-accent-hover: #c0d0de;
  --mp-accent-soft: #34424e;
  --mp-danger: #e1a09c;
  --mp-danger-soft: #473231;
  --mp-success: #9bc5a9;
  --mp-shadow: none;
  --tblr-body-bg: var(--mp-bg);
  --tblr-body-color: var(--mp-muted);
  --tblr-heading-color: var(--mp-text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--mp-bg);
  color: var(--mp-muted);
  font-family: var(--tblr-font-sans-serif);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
.site-header,
.card,
.btn {
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

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

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

.container-xl {
  width: 100%;
  max-width: 1160px;
  padding-right: 32px;
  padding-left: 32px;
  margin-right: auto;
  margin-left: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border: 1px solid var(--mp-line-strong);
  border-radius: 6px;
  background: var(--mp-surface);
  color: var(--mp-text);
  font-weight: 650;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--mp-line);
  background: var(--mp-bg);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--mp-text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.brand:hover,
.brand:focus-visible {
  color: var(--mp-text);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--mp-line-strong);
  border-radius: 3px;
  background: var(--mp-surface-muted);
  color: var(--mp-text);
  font-family: var(--tblr-font-monospace);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.primary-nav a {
  color: var(--mp-muted);
  font-size: 14px;
  font-weight: 520;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--mp-text);
  text-decoration: none;
}

.mobile-console-link,
.nav-toggle {
  display: none;
}

.header-action {
  min-width: 110px;
}

.btn {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 620;
  letter-spacing: -0.005em;
  text-decoration: none;
}

.btn:hover,
.btn:focus-visible {
  text-decoration: none;
}

.btn-lg {
  min-height: 48px;
  padding: 12px 20px;
  font-size: 15px;
}

.btn-primary {
  border-color: var(--mp-text);
  background: var(--mp-text);
  color: var(--mp-bg);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active {
  border-color: var(--mp-accent-hover) !important;
  background: var(--mp-accent-hover) !important;
  color: var(--mp-bg) !important;
}

.btn-outline-secondary {
  border-color: var(--mp-line-strong);
  background: transparent;
  color: var(--mp-text);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus-visible,
.btn-outline-secondary:active {
  border-color: var(--mp-text) !important;
  background: var(--mp-surface-muted) !important;
  color: var(--mp-text) !important;
}

.hero {
  padding: 88px 0 96px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(52px, 7vw, 80px);
}

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

.hero h1 {
  max-width: 580px;
  margin: 0;
  color: var(--mp-text);
  font-size: clamp(40px, 4.6vw, 56px);
  font-weight: 660;
  letter-spacing: -0.043em;
  line-height: 1.03;
}

.hero-lead {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--mp-muted);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.55;
}

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

.decision-card {
  overflow: hidden;
  border: 1px solid var(--mp-line-strong);
  border-radius: 5px;
  background: var(--mp-surface);
  box-shadow: var(--mp-shadow);
  color: var(--mp-text);
}

.decision-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--mp-line);
}

.decision-card-header > div {
  display: grid;
  gap: 2px;
}

.decision-card-header strong {
  font-size: 14px;
  font-weight: 680;
}

.decision-card-header span:not(.decision-badge) {
  color: var(--mp-faint);
  font-family: var(--tblr-font-monospace);
  font-size: 11px;
}

.decision-badge {
  padding: 6px 9px;
  border-radius: 3px;
  border: 1px solid color-mix(in srgb, var(--mp-danger) 35%, transparent);
  background: var(--mp-danger-soft);
  color: var(--mp-danger);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.decision-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
}

.decision-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--mp-danger) 38%, transparent);
  border-radius: 4px;
  background: var(--mp-danger-soft);
  color: var(--mp-danger);
  font-family: var(--tblr-font-monospace);
  font-size: 18px;
  line-height: 1;
}

.decision-summary h2 {
  margin: 0;
  color: var(--mp-text);
  font-size: 18px;
  font-weight: 670;
  letter-spacing: -0.018em;
}

.decision-summary p {
  margin: 3px 0 0;
  color: var(--mp-faint);
  font-size: 12px;
}

.decision-rules {
  border-top: 1px solid var(--mp-line);
  border-bottom: 1px solid var(--mp-line);
}

.decision-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
  padding: 0 20px;
  border-top: 1px solid var(--mp-line);
  color: var(--mp-muted);
  font-size: 13px;
}

.decision-rule:first-child {
  border-top: 0;
}

.decision-rule strong {
  color: var(--mp-danger);
  font-family: var(--tblr-font-monospace);
  font-size: 11px;
  font-weight: 650;
}

.decision-rule .rule-pass {
  color: var(--mp-success);
}

.decision-rule-blocked {
  background: color-mix(in srgb, var(--mp-danger-soft) 72%, var(--mp-surface));
  color: var(--mp-text);
}

.blocker-detail {
  display: grid;
  gap: 3px;
  margin: 16px 20px;
  padding: 14px 15px;
  border-left: 2px solid var(--mp-danger);
  background: var(--mp-danger-soft);
}

.blocker-label {
  margin-bottom: 3px;
  color: var(--mp-danger);
  font-family: var(--tblr-font-monospace);
  font-size: 10px;
  font-weight: 670;
  letter-spacing: 0.055em;
}

.blocker-detail strong {
  font-size: 13px;
  font-weight: 660;
}

.blocker-detail p {
  margin: 0;
  color: var(--mp-muted);
  font-size: 12px;
}

.decision-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-top: 1px solid var(--mp-line);
  color: var(--mp-faint);
  font-family: var(--tblr-font-monospace);
  font-size: 10px;
}

.section {
  padding: 88px 0;
  border-top: 1px solid var(--mp-line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 44px;
}

.section-heading h2,
.operations-copy h2,
.pricing-layout h2 {
  max-width: 720px;
  margin: 0;
  color: var(--mp-text);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 640;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-heading p,
.operations-copy p,
.pricing-layout > div > p {
  max-width: 540px;
  margin: 0;
  color: var(--mp-muted);
  font-size: 16px;
  letter-spacing: -0.008em;
  line-height: 1.55;
}

.policy-table {
  overflow: hidden;
  border: 1px solid var(--mp-line-strong);
  border-radius: 4px;
  background: var(--mp-surface);
}

.policy-row {
  display: grid;
  grid-template-columns: 0.82fr 1.15fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 68px;
  padding: 14px 20px;
  border-top: 1px solid var(--mp-line);
}

.policy-row:first-child {
  border-top: 0;
}

.policy-row strong {
  color: var(--mp-text);
  font-size: 15px;
  font-weight: 650;
}

.policy-row span {
  color: var(--mp-muted);
  font-size: 14px;
}

.policy-row-header {
  min-height: 46px;
  background: var(--mp-surface-muted);
}

.policy-row-header span {
  color: var(--mp-faint);
  font-family: var(--tblr-font-monospace);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.operations-section {
  background: var(--mp-surface);
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.85fr);
  align-items: start;
  gap: clamp(64px, 10vw, 140px);
}

.operations-copy {
  display: grid;
  gap: 24px;
}

.operations-list {
  margin: 0;
  border-top: 1px solid var(--mp-line-strong);
}

.operations-list > div {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--mp-line);
}

.operations-list dt {
  color: var(--mp-text);
  font-size: 14px;
  font-weight: 650;
}

.operations-list dd {
  margin: 0;
  color: var(--mp-muted);
  font-size: 14px;
}

.operations-list code {
  color: var(--mp-text);
  font-family: var(--tblr-font-monospace);
  font-size: 12px;
}

.pricing-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(64px, 10vw, 140px);
}

.pricing-layout > div:first-child {
  display: grid;
  gap: 20px;
}

.pricing-offer {
  display: grid;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--mp-line-strong);
  border-radius: 4px;
  background: var(--mp-surface);
}

.price {
  display: flex;
  align-items: flex-end;
  color: var(--mp-text);
}

.price-currency {
  align-self: flex-start;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 630;
}

.price strong {
  margin-left: 4px;
  font-size: clamp(58px, 6vw, 76px);
  font-weight: 660;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.price span:last-child {
  margin-left: 22px;
  color: var(--mp-muted);
  font-size: 13px;
  line-height: 1.45;
}

.pricing-offer .btn {
  width: 100%;
}

.pricing-copy {
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid var(--mp-line);
  color: var(--mp-muted);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-note {
  margin: -12px 0 0;
  color: var(--mp-faint);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--mp-line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  justify-self: start;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer a,
.site-footer > div > span {
  color: var(--mp-faint);
  font-size: 12px;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--mp-text);
  text-decoration: none;
}

.site-footer > div > span {
  justify-self: end;
}

.legal-page {
  padding: 76px 0 104px;
}

.legal-header {
  max-width: 780px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--mp-line-strong);
}

.legal-eyebrow {
  margin: 0 0 16px;
  color: var(--mp-faint);
  font-family: var(--tblr-font-monospace);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-header h1 {
  margin: 0;
  color: var(--mp-text);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 660;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.legal-lead {
  max-width: 710px;
  margin: 22px 0 0;
  color: var(--mp-muted);
  font-size: clamp(17px, 1.8vw, 20px);
  letter-spacing: -0.012em;
  line-height: 1.55;
}

.legal-meta {
  margin: 20px 0 0;
  color: var(--mp-faint);
  font-family: var(--tblr-font-monospace);
  font-size: 11px;
  letter-spacing: 0.015em;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(180px, 240px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(56px, 9vw, 112px);
  margin-top: 48px;
}

.legal-body {
  min-width: 0;
}

.legal-summary,
.legal-preamble {
  padding: 20px 22px;
  border: 1px solid var(--mp-line-strong);
  border-radius: 4px;
  background: var(--mp-surface);
}

.legal-summary {
  margin-bottom: 42px;
}

.legal-preamble {
  margin-bottom: 42px;
  color: var(--mp-text);
  font-size: 13px;
  font-weight: 590;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.legal-summary strong {
  display: block;
  margin-bottom: 7px;
  color: var(--mp-text);
  font-size: 14px;
  font-weight: 680;
}

.legal-summary p,
.legal-preamble p {
  margin: 0;
}

.legal-body section {
  scroll-margin-top: 96px;
}

.legal-body h2 {
  padding-top: 12px;
  margin: 38px 0 12px;
  color: var(--mp-text);
  font-size: clamp(20px, 2.3vw, 25px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.legal-body section:first-of-type h2 {
  margin-top: 0;
}

.legal-body h3 {
  margin: 24px 0 8px;
  color: var(--mp-text);
  font-size: 15px;
  font-weight: 670;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.legal-body p,
.legal-body li,
.legal-summary p {
  color: var(--mp-muted);
  font-size: 14px;
  line-height: 1.75;
}

.legal-body p {
  margin: 0 0 14px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 21px;
  margin: 0 0 16px;
}

.legal-body li {
  padding-left: 4px;
  margin: 6px 0;
}

.legal-body strong {
  color: var(--mp-text);
  font-weight: 650;
}

.legal-body a,
.legal-toc a {
  color: var(--mp-accent-hover);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-body a:hover,
.legal-body a:focus-visible,
.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--mp-text);
}

.legal-body code {
  color: var(--mp-text);
  font-family: var(--tblr-font-monospace);
  font-size: 0.9em;
}

.legal-list-compact li {
  margin: 3px 0;
}

.legal-toc {
  position: sticky;
  top: 104px;
  padding-top: 2px;
}

.legal-toc strong {
  display: block;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--mp-line-strong);
  color: var(--mp-text);
  font-family: var(--tblr-font-monospace);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.legal-toc li {
  margin: 0;
}

.legal-toc a {
  display: block;
  padding: 5px 0;
  color: var(--mp-faint);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
}

.legal-divider {
  height: 1px;
  margin: 44px 0;
  border: 0;
  background: var(--mp-line-strong);
}

.legal-related {
  color: var(--mp-faint) !important;
  font-size: 12px !important;
}

@media (max-width: 991.98px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0 20px;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--mp-line);
    border-radius: 6px;
    background: var(--mp-surface);
    color: var(--mp-text);
  }

  .js .nav-toggle {
    display: grid;
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 16px;
    height: 1.5px;
    background: currentColor;
    content: "";
    transition:
      transform 150ms ease,
      opacity 150ms ease;
  }

  .nav-toggle-lines::before {
    transform: translateY(-5px);
  }

  .nav-toggle-lines::after {
    transform: translateY(3.5px);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
    transform: translateY(-1.5px) rotate(-90deg);
  }

  .primary-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 18px;
  }

  .js .primary-nav {
    display: none;
  }

  .js .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 11px 0;
    border-top: 1px solid var(--mp-line);
  }

  .mobile-console-link {
    display: block;
    color: var(--mp-text) !important;
    font-weight: 650 !important;
  }

  .hero {
    padding: 72px 0 80px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .decision-card {
    width: 100%;
    max-width: 680px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading,
  .operations-layout,
  .pricing-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 40px;
  }

  .operations-list {
    max-width: 680px;
  }

  .pricing-offer {
    max-width: 560px;
  }

  .legal-page {
    padding-top: 68px;
  }

  .legal-toc {
    position: static;
    order: -1;
    max-width: 760px;
    padding: 18px 20px;
    border: 1px solid var(--mp-line);
    border-radius: 4px;
    background: var(--mp-surface);
  }

  .legal-toc strong {
    border-bottom: 0;
  }

  .legal-toc ol {
    columns: 2;
    column-gap: 28px;
  }

  .legal-toc li {
    break-inside: avoid;
  }
}

@media (max-width: 767.98px) {
  .policy-row {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .policy-row > :last-child {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    justify-self: end;
  }

  .site-footer > div > span {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .legal-header {
    padding-bottom: 36px;
  }

  .legal-layout {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .container-xl {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding: 60px 0 68px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 44px);
    letter-spacing: -0.042em;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
  }

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

  .decision-card-header {
    align-items: center;
  }

  .decision-card-header span:not(.decision-badge) {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .decision-summary {
    align-items: flex-start;
    padding: 20px 16px;
  }

  .decision-summary h2 {
    font-size: 16px;
  }

  .decision-rule {
    padding: 0 16px;
  }

  .blocker-detail {
    margin: 14px 16px;
  }

  .decision-card-footer {
    padding: 13px 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .operations-copy h2,
  .pricing-layout h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .section-heading p,
  .operations-copy p,
  .pricing-layout > div > p {
    font-size: 16px;
  }

  .policy-row-header {
    display: none;
  }

  .policy-row {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 88px;
    padding: 18px;
  }

  .policy-row > :last-child {
    display: block;
    color: var(--mp-faint);
    font-size: 12px;
  }

  .operations-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
  }

  .pricing-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .legal-page {
    padding: 52px 0 72px;
  }

  .legal-header h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .legal-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .legal-summary,
  .legal-preamble {
    padding: 18px;
  }

  .legal-toc ol {
    columns: 1;
  }

  .pricing-offer {
    padding: 24px 20px;
  }

  .price strong {
    font-size: 68px;
  }

  .price span:last-child {
    margin-left: 18px;
  }

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

  .site-footer nav,
  .site-footer > div > span {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .site-footer {
    display: none;
  }

  body {
    background: #ffffff;
    color: #111111;
  }

  .hero,
  .section,
  .legal-page {
    padding: 40px 0;
  }

  .decision-card,
  .policy-table,
  .pricing-offer,
  .legal-summary,
  .legal-preamble {
    box-shadow: none;
    break-inside: avoid;
  }

  .legal-toc {
    display: none;
  }

  .legal-body a {
    color: #111111;
  }
}
