:root {
  --ink: #0a1017;
  --graphite: #18212a;
  --concrete: #eef0f1;
  --concrete-dark: #d8dcdf;
  --paper: #ffffff;
  --muted: #5d6872;
  --orange: #f04a2f;
  --orange-dark: #c93620;
  --orange-copy: #a92d1b;
  --orange-light: #ff765e;
  --green: #177a55;
  --blue: #1f637c;
  --border: #d7dbde;
  --focus: #ffb39f;
  --shadow: 0 12px 32px rgba(10, 16, 23, 0.14);
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

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

body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 780;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  font-weight: 760;
}

h3 {
  font-size: 20px;
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-180%);
}

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

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

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  color: var(--paper);
  background: rgba(10, 16, 23, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  display: inline-flex;
  min-width: 188px;
  align-items: center;
  gap: 7px;
  color: var(--paper);
  text-decoration: none;
}

.brand__mark {
  width: 41px;
  height: 30px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__name {
  font-size: 31px;
  font-weight: 760;
  line-height: 1;
}

.brand__name span {
  color: var(--orange);
}

.brand__descriptor {
  position: absolute;
  top: 30px;
  left: 48px;
  color: #adb5bd;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.desktop-nav a {
  color: #d5d9dc;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 740;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

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

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

.button--large {
  min-height: 54px;
  padding: 15px 22px;
}

.button--primary {
  color: var(--paper);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button--primary:hover {
  background: #a92d1b;
  border-color: #a92d1b;
}

.button--secondary {
  color: currentColor;
  background: transparent;
  border-color: currentColor;
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

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

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 12px solid var(--orange);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 0;
  right: 12%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.09);
}

.hero::after {
  right: 0;
  bottom: 74px;
  width: 42%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 638px;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
  align-items: center;
  gap: 28px;
  padding-block: 70px 88px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange-copy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.buyers .eyebrow {
  color: var(--orange-light);
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: #d5dadd;
  font-size: 20px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__disclaimer {
  max-width: 560px;
  margin: 18px 0 0;
  color: #9da6ad;
  font-size: 12px;
}

.hero__visual {
  position: relative;
  min-height: 420px;
  align-self: end;
}

.hero__visual::before {
  position: absolute;
  right: -90px;
  bottom: -35px;
  width: 620px;
  height: 270px;
  background: #131c25;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  transform: skewX(-8deg);
}

.hero__visual img {
  position: absolute;
  z-index: 2;
  right: -42px;
  bottom: 28px;
  width: min(690px, 58vw);
  height: auto;
}

.hero__signal {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--paper);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 760;
}

.hero__signal .icon {
  color: var(--orange);
}

.hero__signal--buyers {
  top: 34px;
  right: 16px;
}

.hero__signal--transfer {
  right: 42px;
  bottom: 18px;
}

.hero__next {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 50%;
  color: #c8ced2;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transform: translateX(-50%);
}

.section {
  padding-block: 96px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 50px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  min-height: 202px;
  grid-template-columns: 48px 1fr;
  align-content: center;
  gap: 20px;
  padding: 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-list > li > .icon {
  width: 42px;
  height: 42px;
  color: var(--orange);
}

.process-list__number {
  position: absolute;
  top: 14px;
  right: 18px;
  color: #66737d;
  font-size: 12px;
  font-weight: 800;
}

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

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.network {
  background: var(--concrete);
}

.network__inner,
.control__inner,
.buyers__inner,
.faq__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 80px;
}

.network__copy p:not(.eyebrow),
.control__copy > p,
.buyers__copy > p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: var(--orange-dark);
  background: transparent;
  border: 0;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.network-map {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--concrete-dark);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.network-map__vehicle,
.network-map__buyer {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 50%;
  text-align: center;
}

.network-map__vehicle {
  top: 50%;
  left: 50%;
  width: 142px;
  height: 142px;
  border: 5px solid var(--orange);
  transform: translate(-50%, -50%);
}

.network-map__vehicle .icon {
  width: 48px;
  height: 48px;
  color: var(--orange);
}

.network-map__vehicle span,
.network-map__buyer span {
  font-size: 13px;
  font-weight: 760;
}

.network-map__buyer {
  width: 102px;
  height: 102px;
  color: var(--blue);
}

.network-map__buyer--one {
  top: 34px;
  left: 42px;
}

.network-map__buyer--two {
  top: 46px;
  right: 34px;
  color: var(--green);
}

.network-map__buyer--three {
  right: 54px;
  bottom: 28px;
  color: var(--orange-dark);
}

.network-map__line {
  position: absolute;
  z-index: 1;
  display: block;
  width: 150px;
  height: 1px;
  background: #aab2b7;
  transform-origin: left center;
}

.network-map__line--one {
  top: 148px;
  left: 118px;
  transform: rotate(31deg);
}

.network-map__line--two {
  top: 150px;
  left: 56%;
  transform: rotate(-30deg);
}

.network-map__line--three {
  top: 58%;
  left: 57%;
  transform: rotate(28deg);
}

.control {
  background: var(--paper);
}

.proposal-view {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proposal-view__head {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 760;
}

.status {
  padding: 5px 8px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
}

.proposal-row {
  display: grid;
  min-height: 92px;
  grid-template-columns: 46px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

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

.proposal-row--active {
  background: #fff3ef;
  border-left: 4px solid var(--orange);
}

.proposal-row__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper);
  background: var(--graphite);
  border-radius: 50%;
  font-weight: 800;
}

.proposal-row strong,
.proposal-row small {
  display: block;
}

.proposal-row small {
  margin-top: 3px;
  color: var(--muted);
}

.proposal-row > .icon {
  color: var(--orange);
}

.check-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list .icon {
  color: var(--green);
}

.safety {
  background: var(--concrete);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #c9ced1;
}

.safety-grid article {
  min-height: 210px;
  padding: 34px 28px 20px;
  border-right: 1px solid #c9ced1;
}

.safety-grid article:last-child {
  border-right: 0;
}

.safety-grid .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--orange);
}

.safety-grid h3 {
  margin-bottom: 10px;
}

.safety-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.buyers {
  color: var(--paper);
  background: var(--ink);
  border-top: 12px solid var(--orange);
}

.buyers__inner {
  align-items: start;
}

.buyers__copy > p {
  color: #b7bfc4;
}

.buyers__columns {
  display: grid;
  gap: 1px;
  background: #3b444c;
  border: 1px solid #3b444c;
}

.buyers__columns > div {
  padding: 30px;
  background: var(--graphite);
}

.buyers__label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.buyers__columns h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.buyers__columns p {
  color: #c7cdd1;
}

.buyers__columns ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.buyers__columns li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9dde0;
}

.buyers__columns li .icon {
  color: var(--orange);
}

.text-link--light {
  color: var(--paper);
}

.trust {
  padding-block: 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.trust__inner {
  display: grid;
  max-width: 960px;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 28px;
}

.trust__icon {
  width: 68px;
  height: 68px;
  padding: 15px;
  color: var(--green);
  background: #e6f3ee;
  border-radius: 50%;
}

.trust h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.trust p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.faq {
  background: var(--paper);
}

.faq__inner {
  align-items: start;
}

.faq__heading {
  position: sticky;
  top: 118px;
}

.faq__list {
  border-top: 1px solid var(--border);
}

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

.faq summary {
  display: grid;
  min-height: 68px;
  grid-template-columns: 1fr 22px;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 760;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .icon {
  transition: transform 160ms ease;
  transform: rotate(90deg);
}

.faq details[open] summary .icon {
  transform: rotate(-90deg);
}

.faq details p {
  max-width: 620px;
  margin: -2px 40px 22px 0;
  color: var(--muted);
}

.final-cta {
  color: var(--ink);
  background: var(--orange);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta .eyebrow {
  color: var(--ink);
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.final-cta p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding-block: 40px 88px;
  color: #aeb6bc;
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand--footer {
  min-width: 160px;
}

.brand--footer .brand__name {
  font-size: 27px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

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

.site-footer nav a {
  font-size: 13px;
}

.mobile-sticky-cta {
  display: none;
}

.sale-dialog {
  width: min(calc(100% - 32px), 720px);
  max-height: min(820px, calc(100svh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.sale-dialog::backdrop {
  background: rgba(10, 16, 23, 0.78);
  backdrop-filter: blur(4px);
}

.sale-dialog__header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.sale-dialog__header h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.sale-dialog__header .icon-button {
  flex: 0 0 auto;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 18px 30px 0;
  gap: 8px;
}

.form-progress span {
  padding-bottom: 10px;
  color: #7b858c;
  border-bottom: 3px solid var(--border);
  font-size: 12px;
  font-weight: 760;
}

.form-progress span.is-active {
  color: var(--ink);
  border-color: var(--orange);
}

.form-step {
  padding: 28px 30px 32px;
}

.form-step__intro {
  margin-bottom: 24px;
  color: var(--muted);
}

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

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 760;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #aeb5ba;
  border-radius: 5px;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: var(--orange);
}

.form-grid input[aria-invalid="true"],
.form-grid select[aria-invalid="true"] {
  border-color: #b3251e;
  background: #fff4f3;
}

.form-grid small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.consents {
  display: grid;
  margin-top: 24px;
  gap: 13px;
}

.consents label {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.consents input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.consents a {
  color: var(--orange-dark);
  font-weight: 700;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-status {
  min-height: 0;
  margin-top: 18px;
  padding: 0;
  color: var(--muted);
  border-radius: 5px;
  font-size: 14px;
}

.form-status:not(:empty) {
  min-height: 48px;
  padding: 12px 14px;
  background: var(--concrete);
  border-left: 4px solid var(--blue);
}

.form-status[data-type="error"] {
  color: #7c1b17;
  background: #fff0ee;
  border-color: #b3251e;
}

.form-status[data-type="success"] {
  color: #0c5b3e;
  background: #e8f5ef;
  border-color: var(--green);
}

.form-actions {
  display: flex;
  margin-top: 28px;
  justify-content: space-between;
  gap: 12px;
}

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

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

  .hero__visual img {
    width: 540px;
  }

  .network__inner,
  .control__inner,
  .buyers__inner,
  .faq__inner {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

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

  .desktop-action {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .mobile-menu-button .icon-close {
    display: none;
  }

  .mobile-menu-button[aria-expanded="true"] .icon-menu {
    display: none;
  }

  .mobile-menu-button[aria-expanded="true"] .icon-close {
    display: block;
  }

  .mobile-menu {
    padding: 8px 18px 20px;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a:not(.button) {
    min-height: 48px;
    padding: 13px 4px;
    color: var(--paper);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 650;
    text-decoration: none;
  }

  .mobile-menu .button {
    margin-top: 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__inner {
    min-height: 748px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 8px;
    padding-block: 60px 76px;
  }

  .hero__content {
    max-width: 680px;
  }

  .hero__visual {
    min-height: 270px;
  }

  .hero__visual::before {
    right: -120px;
    bottom: -64px;
    width: 650px;
    height: 220px;
  }

  .hero__visual img {
    right: 50%;
    bottom: -8px;
    width: min(620px, 92vw);
    transform: translateX(50%);
  }

  .hero__signal--buyers {
    top: 16px;
    right: 7%;
  }

  .hero__signal--transfer {
    right: auto;
    bottom: 2px;
    left: 4%;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network__inner,
  .control__inner,
  .buyers__inner,
  .faq__inner {
    grid-template-columns: 1fr;
  }

  .control__copy {
    order: -1;
  }

  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-grid article:nth-child(2) {
    border-right: 0;
  }

  .safety-grid article:nth-child(-n+2) {
    border-bottom: 1px solid #c9ced1;
  }

  .faq__heading {
    position: static;
  }

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

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

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

  .site-header__inner {
    min-height: 70px;
  }

  .brand {
    min-width: 161px;
  }

  .brand__mark {
    width: 36px;
    height: 27px;
  }

  .brand__name {
    font-size: 27px;
  }

  .brand__descriptor {
    top: 27px;
    left: 43px;
    font-size: 8px;
  }

  .hero {
    min-height: 682px;
  }

  .hero__inner {
    min-height: 670px;
    padding-block: 32px 58px;
  }

  .hero__lead {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__disclaimer {
    margin-top: 12px;
    font-size: 10px;
  }

  .hero__visual {
    min-height: 180px;
  }

  .hero__visual img {
    bottom: -14px;
    width: 420px;
    max-width: 112vw;
  }

  .hero__signal {
    min-height: 38px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .hero__signal .icon {
    width: 18px;
    height: 18px;
  }

  .hero__signal--buyers {
    top: -3px;
    right: 0;
  }

  .hero__signal--transfer {
    bottom: -4px;
    left: 0;
  }

  .hero__next {
    display: none;
  }

  .section {
    padding-block: 70px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading > p:last-child,
  .network__copy p:not(.eyebrow),
  .control__copy > p,
  .buyers__copy > p {
    font-size: 16px;
  }

  .process-list {
    display: block;
    border-left: 0;
  }

  .process-list li {
    min-height: 140px;
    grid-template-columns: 44px 1fr;
    padding: 26px 18px 24px 8px;
    border-right: 0;
  }

  .process-list__number {
    top: 12px;
    right: 4px;
  }

  .network-map {
    min-height: 360px;
  }

  .network-map__vehicle {
    width: 116px;
    height: 116px;
  }

  .network-map__buyer {
    width: 82px;
    height: 82px;
  }

  .network-map__buyer--one {
    top: 24px;
    left: 18px;
  }

  .network-map__buyer--two {
    top: 30px;
    right: 16px;
  }

  .network-map__buyer--three {
    right: 20px;
    bottom: 22px;
  }

  .network-map__line {
    width: 112px;
  }

  .network-map__line--one {
    top: 122px;
    left: 77px;
  }

  .network-map__line--two {
    top: 125px;
    left: 55%;
  }

  .proposal-row {
    min-height: 84px;
    grid-template-columns: 40px 1fr 22px;
    padding: 14px;
  }

  .proposal-row__avatar {
    width: 36px;
    height: 36px;
  }

  .proposal-row small {
    font-size: 11px;
  }

  .safety-grid {
    display: block;
    border-top: 1px solid #c9ced1;
  }

  .safety-grid article,
  .safety-grid article:nth-child(2) {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid #c9ced1;
  }

  .safety-grid article:last-child {
    border-bottom: 0;
  }

  .safety-grid .icon {
    margin-bottom: 16px;
  }

  .buyers__columns > div {
    padding: 24px 20px;
  }

  .trust__inner {
    grid-template-columns: 1fr;
  }

  .trust h2 {
    font-size: 27px;
  }

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

  .final-cta__inner .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-cta .button {
    width: 100%;
  }

  body.dialog-open .mobile-sticky-cta {
    display: none;
  }

  .sale-dialog {
    width: 100%;
    max-width: none;
    max-height: 94svh;
    margin: auto 0 0;
    border-radius: 8px 8px 0 0;
  }

  .sale-dialog__header {
    padding: 22px 18px 18px;
  }

  .sale-dialog__header h2 {
    font-size: 26px;
  }

  .form-progress {
    padding: 16px 18px 0;
  }

  .form-step {
    padding: 24px 18px calc(28px + env(safe-area-inset-bottom));
  }

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

  .form-grid__wide {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions--end {
    flex-direction: column;
  }

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

@media (max-width: 380px) {
  h1 {
    font-size: 37px;
  }

  .hero {
    min-height: 664px;
  }

  .hero__inner {
    min-height: 652px;
    padding-top: 26px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__visual img {
    width: 390px;
  }
}

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