:root {
  --buyout-bg: #f6f7f5;
  --buyout-surface: #ffffff;
  --buyout-text: #181b20;
  --buyout-muted: #5b616b;
  --buyout-primary: #3157ff;
  --buyout-primary-hover: #2446db;
  --buyout-primary-active: #1d39b3;
  --buyout-primary-soft: #eef1ff;
  --buyout-money: #18794e;
  --buyout-money-soft: #edf7f0;
  --buyout-border: #dee1e6;
  --buyout-field-border: #858b95;
  --buyout-error: #b42318;
  --buyout-shadow: 0 22px 60px rgba(24, 27, 32, 0.09);
  --buyout-container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.buyout-body {
  margin: 0;
  color: var(--buyout-text);
  background: var(--buyout-bg);
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.buyout-modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.buyout-container {
  width: min(calc(100% - 48px), var(--buyout-container));
  margin: 0 auto;
}

.buyout-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(222, 225, 230, 0.82);
  background: rgba(246, 247, 245, 0.94);
  backdrop-filter: blur(18px);
}

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

.buyout-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--buyout-text);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.buyout-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.buyout-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

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

.buyout-nav a:hover,
.buyout-nav a:focus-visible {
  color: var(--buyout-text);
}

.buyout-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.buyout-button:active {
  transform: translateY(0);
}

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

.buyout-button-small {
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--buyout-primary);
  font-size: 14px;
}

.buyout-button-small:hover,
.buyout-button-primary:hover {
  background: var(--buyout-primary-hover);
}

.buyout-button-small:active,
.buyout-button-primary:active {
  background: var(--buyout-primary-active);
}

.buyout-button-primary {
  color: #fff;
  background: var(--buyout-primary);
}

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

.buyout-button-secondary:hover {
  border-color: #aeb4bd;
  background: #f4f5f6;
}

.buyout-button-light {
  color: var(--buyout-primary);
  background: #fff;
}

.buyout-button-light:hover {
  color: #fff;
  background: var(--buyout-primary-hover);
}

.buyout-hero {
  overflow: hidden;
  padding: 40px 0 48px;
  background: var(--buyout-bg);
}

.buyout-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 38px;
}

.buyout-hero-copy {
  position: relative;
  z-index: 2;
  padding: 12px 0;
}

.buyout-eyebrow {
  margin: 0 0 18px;
  color: var(--buyout-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.buyout-hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.buyout-hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--buyout-muted);
  font-size: 19px;
  line-height: 1.6;
}

.buyout-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.buyout-text-link {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--buyout-primary);
  background: transparent;
  font-size: 15px;
  font-weight: 650;
}

.buyout-text-link:hover {
  color: var(--buyout-primary-hover);
}

.buyout-hero-note {
  margin: 16px 0 0;
  color: var(--buyout-muted);
  font-size: 14px;
}

.buyout-hero-visual {
  position: relative;
  min-height: 560px;
}

.buyout-hero-visual > img {
  position: absolute;
  top: 50%;
  left: -120px;
  width: 840px;
  max-width: none;
  height: auto;
  transform: translateY(-50%);
}

.buyout-entry-card {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 18px;
  width: min(355px, 72%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 60px rgba(24, 27, 32, 0.12);
  -webkit-backdrop-filter: blur(7px) saturate(115%);
  backdrop-filter: blur(7px) saturate(115%);
}

.buyout-entry-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--buyout-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.buyout-entry-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
}

.buyout-entry-card p {
  margin: 10px 0 18px;
  color: var(--buyout-muted);
  font-size: 14px;
}

.buyout-entry-card button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--buyout-primary);
  font-size: 15px;
  font-weight: 650;
}

.buyout-section {
  padding: 106px 0;
  background: var(--buyout-surface);
}

.buyout-section-muted {
  background: #f0f1f2;
}

.buyout-section-head {
  max-width: 780px;
  margin-bottom: 50px;
}

.buyout-section-head h2,
.buyout-comparison h2,
.buyout-trust-copy h2,
.buyout-final-head h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 44px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: 0;
}

.buyout-section-head > p:last-child,
.buyout-trust-copy > p,
.buyout-final-head > p:last-child {
  margin: 20px 0 0;
  color: var(--buyout-muted);
}

.buyout-device-list {
  border-top: 1px solid var(--buyout-border);
}

.buyout-device-list article {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--buyout-border);
}

.buyout-device-index {
  color: #a1a6ae;
  font-size: 14px;
  font-weight: 700;
}

.buyout-device-list h3,
.buyout-device-list p {
  margin: 0;
}

.buyout-device-list h3 {
  font-size: 23px;
  font-weight: 650;
}

.buyout-device-list p {
  margin-top: 3px;
  color: var(--buyout-muted);
  font-size: 15px;
}

.buyout-device-status {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--buyout-muted);
  background: #eff0f2;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.buyout-device-status.is-live {
  color: var(--buyout-money);
  background: var(--buyout-money-soft);
}

.buyout-section-action {
  margin-top: 36px;
}

.buyout-comparison {
  padding: 82px 0;
  color: #fff;
  background: #202533;
}

.buyout-comparison .buyout-eyebrow {
  color: #b9c4ff;
}

.buyout-comparison-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 92px;
}

.buyout-comparison-grid > div:last-child p {
  margin: 0 0 24px;
  color: #c7cbd3;
}

.buyout-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d2d5da;
  border-left: 1px solid #d2d5da;
}

.buyout-factor-grid article {
  min-height: 225px;
  padding: 28px;
  border-right: 1px solid #d2d5da;
  border-bottom: 1px solid #d2d5da;
}

.buyout-factor-grid article > span {
  color: var(--buyout-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.buyout-factor-grid h3 {
  margin: 40px 0 10px;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.25;
}

.buyout-factor-grid p {
  margin: 0;
  color: var(--buyout-muted);
  font-size: 15px;
}

.buyout-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.buyout-process-list li {
  min-height: 250px;
  padding: 26px 26px 26px 0;
  border-top: 2px solid var(--buyout-text);
}

.buyout-process-list li + li {
  padding-left: 26px;
  border-left: 1px solid var(--buyout-border);
}

.buyout-process-list li:nth-child(3n + 1):not(:first-child) {
  padding-left: 0;
  border-left: 0;
}

.buyout-process-list > li > span {
  color: var(--buyout-primary);
  font-size: 14px;
  font-weight: 700;
}

.buyout-process-list h3 {
  margin: 62px 0 12px;
  font-size: 22px;
  font-weight: 650;
}

.buyout-process-list p {
  margin: 0;
  color: var(--buyout-muted);
  font-size: 15px;
}

.buyout-process-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.buyout-process-notes article {
  padding: 24px;
  border: 1px solid #cfd5ff;
  border-radius: 16px;
  background: var(--buyout-primary-soft);
}

.buyout-process-notes article:last-child {
  border-color: var(--buyout-border);
  background: var(--buyout-surface);
}

.buyout-process-notes span {
  color: var(--buyout-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.buyout-process-notes h3 {
  margin: 14px 0 10px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.3;
}

.buyout-process-notes p {
  margin: 0;
  color: var(--buyout-muted);
  font-size: 14px;
}

.buyout-trust {
  padding: 106px 0;
  background: var(--buyout-primary-soft);
}

.buyout-trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 62px;
}

.buyout-trust-copy address {
  margin: 28px 0 0;
  font-style: normal;
  font-weight: 650;
}

.buyout-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.buyout-contact-links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(49, 87, 255, 0.16);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.buyout-contact-links a:hover {
  border-color: var(--buyout-primary);
}

.buyout-contact-links img,
.buyout-phone-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  object-fit: contain;
}

.buyout-map {
  overflow: hidden;
  min-height: 450px;
  border: 1px solid rgba(49, 87, 255, 0.14);
  border-radius: 20px;
  background: #fff;
}

.buyout-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.buyout-faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 82px;
}

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

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

.buyout-faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
  list-style: none;
}

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

.buyout-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  content: "+";
  color: var(--buyout-primary);
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%);
}

.buyout-faq-list details[open] summary::after {
  content: "−";
}

.buyout-faq-list p {
  margin: -6px 48px 24px 0;
  color: var(--buyout-muted);
  font-size: 15px;
}

.buyout-final {
  padding: 106px 0 120px;
  background: #eff0f3;
}

.buyout-final-head {
  max-width: 900px;
  margin-bottom: 50px;
}

.buyout-flow {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--buyout-border);
  border-radius: 20px;
  background: var(--buyout-surface);
  box-shadow: 0 14px 42px rgba(24, 27, 32, 0.07);
}

.buyout-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.buyout-flow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--buyout-border);
  background: #fff;
}

.buyout-flow-header h2 {
  margin: 2px 0 0;
  font-size: 24px;
  font-weight: 650;
}

.buyout-flow-kicker {
  color: var(--buyout-primary);
  font-size: 13px;
  font-weight: 700;
}

.buyout-progress {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  gap: 7px;
}

.buyout-progress span {
  height: 5px;
  border-radius: 999px;
  background: #e4e6eb;
}

.buyout-progress span.is-active,
.buyout-progress span.is-complete {
  background: var(--buyout-primary);
}

.buyout-flow-body {
  padding: 32px;
}

.buyout-step-heading {
  margin-bottom: 32px;
}

.buyout-step-heading h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.3;
}

.buyout-step-heading p {
  margin: 8px 0 0;
  color: var(--buyout-muted);
  font-size: 15px;
}

.buyout-fieldset,
.buyout-field {
  min-width: 0;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.buyout-fieldset legend,
.buyout-field > span,
.buyout-reveal > span {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  color: var(--buyout-text);
  font-size: 14px;
  font-weight: 650;
}

.buyout-fieldset legend small,
.buyout-field > span small,
.buyout-upload strong small {
  color: var(--buyout-muted);
  font-size: 12px;
  font-weight: 500;
}

.buyout-field input[type="text"],
.buyout-field input[type="date"],
.buyout-field textarea,
.buyout-field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--buyout-field-border);
  border-radius: 12px;
  outline: 0;
  background: #fff;
  font-size: 16px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.buyout-field textarea {
  min-height: 104px;
  resize: vertical;
}

.buyout-field input:focus,
.buyout-field textarea:focus,
.buyout-field select:focus {
  border-color: var(--buyout-primary);
  box-shadow: 0 0 0 3px rgba(49, 87, 255, 0.14);
}

.buyout-field input.is-invalid,
.buyout-field textarea.is-invalid,
.buyout-field select.is-invalid,
.buyout-fieldset.is-invalid {
  border-color: var(--buyout-error);
}

.buyout-fieldset.is-invalid {
  padding: 12px;
  border: 1px solid var(--buyout-error);
  border-radius: 12px;
}

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

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

.buyout-category-grid label,
.buyout-option-list label,
.buyout-chip-grid label,
.buyout-check-grid label,
.buyout-color-grid label {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.buyout-category-grid input,
.buyout-option-list input,
.buyout-chip-grid input,
.buyout-check-grid input,
.buyout-color-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.buyout-category-grid label > span {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: center;
  padding: 13px 14px;
  border: 1px solid var(--buyout-border);
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
}

.buyout-category-grid small {
  margin-top: 5px;
  color: var(--buyout-muted);
  font-size: 11px;
  font-weight: 500;
}

.buyout-category-grid input:checked + span,
.buyout-option-list input:checked + span,
.buyout-chip-grid input:checked + span,
.buyout-check-grid input:checked + span,
.buyout-color-grid input:checked + span {
  border-color: var(--buyout-primary);
  color: var(--buyout-primary);
  background: var(--buyout-primary-soft);
}

.buyout-category-grid input:focus-visible + span,
.buyout-option-list input:focus-visible + span,
.buyout-chip-grid input:focus-visible + span,
.buyout-check-grid input:focus-visible + span,
.buyout-color-grid input:focus-visible + span {
  outline: 3px solid rgba(49, 87, 255, 0.2);
  outline-offset: 2px;
}

.buyout-option-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

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

.buyout-option-list label > span,
.buyout-check-grid label > span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 13px 10px 42px;
  border: 1px solid var(--buyout-border);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.buyout-option-list label > span::before,
.buyout-check-grid label > span::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 16px;
  height: 16px;
  border: 1.5px solid #969ca6;
  content: "";
  transform: translateY(-50%);
}

.buyout-option-list label > span::before {
  border-radius: 50%;
}

.buyout-check-grid label > span::before {
  border-radius: 4px;
}

.buyout-option-list input:checked + span::before {
  border: 5px solid var(--buyout-primary);
  background: #fff;
}

.buyout-check-grid input:checked + span::before {
  border-color: var(--buyout-primary);
  background: var(--buyout-primary);
  box-shadow: inset 0 0 0 3px var(--buyout-primary-soft);
}

.buyout-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.buyout-chip-grid label > span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 0 14px;
  border: 1px solid var(--buyout-border);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
}

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

.buyout-color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.buyout-color-grid label > span {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--buyout-border);
  border-radius: 12px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}

.buyout-color-swatch {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(24, 27, 32, 0.2);
  border-radius: 50%;
  background: var(--swatch, #d2d4d8);
}

.buyout-reveal {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid #dbe0ff;
  border-radius: 12px;
  background: #f6f7ff;
}

.buyout-reveal .buyout-field {
  margin: 16px 0 0;
}

.buyout-manual-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid #d9defe;
  border-radius: 12px;
  background: var(--buyout-primary-soft);
}

.buyout-manual-help strong,
.buyout-manual-help p {
  margin: 0;
}

.buyout-manual-help p {
  margin-top: 3px;
  color: var(--buyout-muted);
  font-size: 13px;
}

.buyout-manual-help a {
  color: var(--buyout-primary);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.buyout-manual-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.buyout-upload {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  padding: 20px;
  border: 1px dashed #aeb4bd;
  border-radius: 12px;
  background: #fafafa;
}

.buyout-upload-copy strong,
.buyout-upload-copy p {
  margin: 0;
}

.buyout-upload-copy p {
  margin-top: 4px;
  color: var(--buyout-muted);
  font-size: 13px;
}

.buyout-upload-button input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.buyout-upload-button span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--buyout-primary);
  border-radius: 12px;
  color: var(--buyout-primary);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.buyout-photo-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(6, 72px);
  gap: 9px;
}

.buyout-photo-item {
  position: relative;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid var(--buyout-border);
  border-radius: 10px;
  background: #fff;
}

.buyout-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buyout-photo-item > span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 5px;
  color: var(--buyout-muted);
  font-size: 10px;
  text-align: center;
}

.buyout-photo-item button {
  position: absolute;
  top: 3px;
  right: 3px;
  display: grid;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: rgba(24, 27, 32, 0.82);
  font-size: 15px;
  line-height: 1;
}

.buyout-estimate {
  margin-bottom: 24px;
  padding: 26px;
  border: 1px solid #cbe6d4;
  border-radius: 20px;
  background: var(--buyout-money-soft);
}

.buyout-estimate.is-manual {
  border-color: #d9defe;
  background: var(--buyout-primary-soft);
}

.buyout-estimate > span {
  color: var(--buyout-money);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.buyout-estimate.is-manual > span {
  color: var(--buyout-primary);
}

.buyout-estimate > strong {
  display: block;
  margin-top: 7px;
  color: var(--buyout-money);
  font-size: 42px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1.15;
}

.buyout-estimate.is-manual > strong {
  color: var(--buyout-text);
  font-size: 29px;
}

.buyout-estimate > p {
  margin: 10px 0 18px;
  font-size: 15px;
  font-weight: 600;
}

.buyout-estimate > small {
  display: block;
  color: #465048;
  font-size: 13px;
  line-height: 1.55;
}

.buyout-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--buyout-border);
}

.buyout-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}

.buyout-summary button {
  padding: 4px 0;
  border: 0;
  color: var(--buyout-primary);
  background: transparent;
  font-size: 13px;
  font-weight: 650;
}

.buyout-summary p {
  margin: 7px 0 16px;
  color: var(--buyout-muted);
  font-size: 14px;
}

.buyout-competitor {
  margin-bottom: 28px;
  padding: 0 18px;
  border: 1px solid var(--buyout-border);
  border-radius: 12px;
}

.buyout-competitor summary {
  padding: 17px 0;
  cursor: pointer;
  color: var(--buyout-primary);
  font-size: 15px;
  font-weight: 650;
}

.buyout-competitor > p {
  margin: -4px 0 16px;
  color: var(--buyout-muted);
  font-size: 13px;
}

.buyout-field-hint {
  color: var(--buyout-muted);
  font-size: 12px !important;
}

.buyout-contact-form {
  padding-top: 4px;
}

.buyout-confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 14px;
  font-size: 14px;
  cursor: pointer;
}

.buyout-confirm input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--buyout-primary);
}

.buyout-security-note {
  margin: 0;
  color: var(--buyout-muted);
  font-size: 12px;
}

.buyout-flow-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px 32px;
  border-top: 1px solid var(--buyout-border);
  background: #fff;
}

.buyout-flow-actions .buyout-button-primary {
  min-width: 190px;
}

.buyout-submit-note {
  margin: -10px 32px 20px;
  color: var(--buyout-muted);
  font-size: 12px;
  text-align: right;
}

.buyout-success {
  padding: 40px 20px 50px;
  text-align: center;
}

.buyout-success > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: var(--buyout-money);
  font-size: 26px;
}

.buyout-success h3 {
  margin: 0;
  font-size: 28px;
}

.buyout-success p {
  max-width: 500px;
  margin: 10px auto 0;
  color: var(--buyout-muted);
  font-size: 15px;
}

.buyout-footer {
  padding: 48px 0;
  color: #fff;
  background: var(--buyout-text);
}

.buyout-footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.buyout-footer strong {
  font-size: 21px;
}

.buyout-footer p {
  margin: 5px 0 0;
  color: #aeb4bd;
  font-size: 14px;
}

.buyout-footer-inner > div:last-child {
  display: flex;
  gap: 24px;
}

.buyout-footer a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.buyout-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.buyout-modal.is-open {
  display: flex;
}

.buyout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 25, 0.66);
  backdrop-filter: blur(8px);
}

.buyout-modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border-radius: 20px;
  outline: 0;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  overscroll-behavior: contain;
}

.buyout-modal-panel .buyout-flow {
  display: flex;
  max-height: calc(100vh - 48px);
  flex-direction: column;
  max-width: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.buyout-modal-panel .buyout-flow-header {
  position: relative;
  z-index: 8;
  top: 0;
  padding-right: 74px;
}

.buyout-modal-panel .buyout-flow-actions {
  position: relative;
  z-index: 8;
  bottom: 0;
}

.buyout-modal-panel .buyout-flow-body {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
}

.buyout-modal-close {
  position: fixed;
  z-index: 12;
  top: max(36px, calc((100vh - min(900px, calc(100vh - 48px))) / 2 + 12px));
  left: calc(50% + min(380px, 50vw - 24px) - 52px);
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--buyout-border);
  border-radius: 50%;
  place-items: center;
  color: var(--buyout-text);
  background: #fff;
  font-size: 26px;
  line-height: 1;
}

.buyout-mobile-cta {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  display: none;
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--buyout-primary);
  box-shadow: 0 12px 30px rgba(49, 87, 255, 0.28);
  font-size: 16px;
  font-weight: 700;
}

.buyout-toast-region {
  position: fixed;
  z-index: 500;
  top: 90px;
  right: 18px;
  display: grid;
  width: min(390px, calc(100% - 36px));
  gap: 10px;
}

.buyout-toast {
  position: relative;
  padding: 14px 44px 14px 16px;
  border: 1px solid #f0c5c1;
  border-radius: 12px;
  color: #762018;
  background: #fff4f2;
  box-shadow: 0 15px 40px rgba(24, 27, 32, 0.15);
  font-size: 14px;
  font-weight: 600;
}

.buyout-toast.is-success {
  border-color: #b9dec6;
  color: #145c3c;
  background: #f0faf3;
}

.buyout-toast button {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 20px;
}

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

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

  .buyout-hero-grid {
    grid-template-columns: 1fr 0.95fr;
  }

  .buyout-hero h1 {
    font-size: 50px;
  }

  .buyout-hero-visual > img {
    left: -180px;
    width: 780px;
  }

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

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

  .buyout-process-list li:nth-child(3n + 1):not(:first-child) {
    padding-left: 26px;
    border-left: 1px solid var(--buyout-border);
  }

  .buyout-process-list li:nth-child(odd):not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .buyout-trust-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  .buyout-header-inner {
    min-height: 66px;
  }

  .buyout-brand img {
    width: 34px;
    height: 34px;
  }

  .buyout-button-small {
    min-height: 40px;
    padding: 0 14px;
  }

  .buyout-hero {
    padding: 26px 0 28px;
  }

  .buyout-hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .buyout-hero-copy {
    padding: 10px 0 0;
  }

  .buyout-eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .buyout-hero h1 {
    font-size: 36px;
    line-height: 1.06;
  }

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

  .buyout-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
  }

  .buyout-hero-actions .buyout-button {
    width: 100%;
    min-height: 56px;
  }

  .buyout-text-link {
    align-self: flex-start;
    text-align: left;
  }

  .buyout-hero-note {
    margin-top: 14px;
  }

  .buyout-hero-visual {
    min-height: 220px;
    overflow: hidden;
  }

  .buyout-hero-visual > img {
    top: 50%;
    left: 50%;
    width: 470px;
    transform: translate(-50%, -50%);
  }

  .buyout-entry-card {
    display: none;
  }

  .buyout-entry-card strong {
    font-size: 19px;
  }

  .buyout-section,
  .buyout-trust,
  .buyout-final {
    padding: 72px 0;
  }

  .buyout-section-head,
  .buyout-final-head {
    margin-bottom: 34px;
  }

  .buyout-section-head h2,
  .buyout-comparison h2,
  .buyout-trust-copy h2,
  .buyout-final-head h2 {
    font-size: 30px;
    line-height: 1.14;
  }

  .buyout-device-list article {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .buyout-device-status {
    grid-column: 2;
    justify-self: start;
  }

  .buyout-device-list h3 {
    font-size: 20px;
  }

  .buyout-section-action .buyout-button {
    width: 100%;
    min-height: 56px;
  }

  .buyout-comparison {
    padding: 62px 0;
  }

  .buyout-comparison-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .buyout-comparison .buyout-button {
    width: 100%;
    min-height: 56px;
  }

  .buyout-factor-grid {
    grid-template-columns: 1fr;
  }

  .buyout-factor-grid article {
    min-height: 0;
    padding: 22px;
  }

  .buyout-factor-grid h3 {
    margin-top: 28px;
  }

  .buyout-process-list {
    grid-template-columns: 1fr;
  }

  .buyout-process-list li,
  .buyout-process-list li + li,
  .buyout-process-list li:nth-child(3n + 1):not(:first-child),
  .buyout-process-list li:nth-child(odd):not(:first-child) {
    min-height: 0;
    padding: 22px 0;
    border-top: 1px solid var(--buyout-border);
    border-left: 0;
  }

  .buyout-process-list h3 {
    margin: 24px 0 8px;
  }

  .buyout-process-notes {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .buyout-process-notes article {
    padding: 20px;
  }

  .buyout-trust-grid {
    gap: 36px;
  }

  .buyout-contact-links {
    align-items: stretch;
    flex-direction: column;
  }

  .buyout-contact-links a {
    justify-content: space-between;
  }

  .buyout-map,
  .buyout-map iframe {
    min-height: 330px;
    height: 330px;
  }

  .buyout-faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .buyout-flow {
    border-radius: 16px;
  }

  .buyout-flow-header {
    padding: 20px;
  }

  .buyout-flow-header h2 {
    font-size: 21px;
  }

  .buyout-progress {
    grid-template-columns: repeat(3, 30px);
  }

  .buyout-flow-body {
    padding: 24px 20px;
  }

  .buyout-step-heading h3 {
    font-size: 21px;
  }

  .buyout-category-grid,
  .buyout-field-grid,
  .buyout-option-list-two,
  .buyout-check-grid {
    grid-template-columns: 1fr;
  }

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

  .buyout-category-grid label > span {
    min-height: 72px;
  }

  .buyout-field input[type="text"],
  .buyout-field input[type="date"],
  .buyout-field textarea,
  .buyout-field select {
    min-height: 56px;
    font-size: 16px;
  }

  .buyout-chip-grid label > span {
    min-height: 48px;
  }

  .buyout-manual-help {
    align-items: flex-start;
    flex-direction: column;
  }

  .buyout-manual-links {
    justify-content: flex-start;
  }

  .buyout-upload {
    grid-template-columns: 1fr;
  }

  .buyout-upload-button span {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .buyout-photo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .buyout-photo-item {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .buyout-estimate {
    padding: 22px 18px;
  }

  .buyout-estimate > strong {
    font-size: 34px;
  }

  .buyout-estimate.is-manual > strong {
    font-size: 24px;
  }

  .buyout-flow-actions {
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  }

  .buyout-flow-actions .buyout-button {
    min-height: 56px;
  }

  .buyout-flow-actions .buyout-button-primary {
    min-width: 0;
    flex: 1;
  }

  .buyout-submit-note {
    margin: -4px 20px 16px;
    text-align: left;
  }

  .buyout-footer-inner,
  .buyout-footer-inner > div:last-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .buyout-modal {
    padding: 0;
  }

  .buyout-modal-panel {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }

  .buyout-modal-panel .buyout-flow-header {
    padding-right: 68px;
  }

  .buyout-modal-panel .buyout-flow {
    height: 100dvh;
    max-height: none;
  }

  .buyout-modal-close {
    position: fixed;
    top: 12px;
    right: 12px;
    left: auto;
  }

  .buyout-mobile-cta.is-visible {
    display: block;
  }

  .buyout-toast-region {
    top: 76px;
    right: 12px;
    width: calc(100% - 24px);
  }
}

@media (max-width: 390px) {
  .buyout-header .buyout-button-small {
    padding: 0 11px;
    font-size: 13px;
  }

  .buyout-brand span {
    font-size: 16px;
  }

  .buyout-hero h1 {
    font-size: 36px;
  }

}

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