:root {
  --orange: #f16e00;
  --black: #000;
  --white: #fff;
  --gray: #efefef;
  --line: #d6d6d6;
  --surface: #f7f7f7;
  --muted: #555;
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.07);
  --soft-yellow: #fff2b3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 28px;
  background: #000;
  color: #fff;
}

.topbar img,
footer img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.prototype-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.switcher {
  display: flex;
  gap: 8px;
  padding: 4px;
  border: 1px solid #333;
  background: #111;
}

.switcher button {
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.switcher button.active {
  background: var(--orange);
  color: #000;
  font-weight: 700;
}

.switcher-hide,
.switcher-restore {
  min-height: 36px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.switcher-hide {
  padding: 0 12px;
}

.switcher-restore {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 40;
  width: 34px;
  height: 34px;
  padding: 0;
  background: var(--orange);
  color: #000;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  font-size: 18px;
  line-height: 1;
}

body.switcher-hidden .prototype-controls {
  display: none;
}

body.switcher-hidden .topbar {
  display: none;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: #fff;
}

.hero > img:not(.hero-logo) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero-overlay.v2 {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.68)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.18));
}

.quick-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  display: grid;
  place-items: center;
  width: 166px;
  height: 166px;
  border-radius: 50%;
  background: #e8792b;
  color: #000;
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.35;
}

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

.hero-content.center {
  display: grid;
  place-items: center;
  min-height: 580px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 30px;
  font-size: clamp(54px, 9vw, 116px);
  line-height: 0.95;
  letter-spacing: 0;
}

.dark-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  text-decoration: none;
  font-weight: 800;
}

.dark-cta {
  background: #000;
  color: #fff;
  font-size: 24px;
}

.ticker {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 14px;
  overflow: hidden;
  margin-top: -66px;
  margin-left: calc(50% - 50vw);
  padding: 0 0 12px;
  width: 100vw;
  background: transparent;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.ticker span::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  border-radius: 50%;
  background: var(--orange);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 438px;
  gap: 78px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 16px 54px;
}

.main-column h2 {
  margin: 0 0 28px;
  font-size: 32px;
}

.group-title {
  margin: 42px 0 18px;
  font-size: 22px;
}

.group-title.first {
  margin-top: 0;
}

.usage-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
  font-weight: 700;
}

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

.usage-row img {
  width: 24px;
  height: 24px;
}

.ibou-note {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 730px;
  margin-bottom: 40px;
  padding: 14px 18px;
  background: #d7d7d7;
}

.ibou-note img {
  width: 50px;
  height: 50px;
}

.cards {
  display: grid;
  gap: 40px;
}

.cards.one {
  grid-template-columns: minmax(280px, 346px);
}

.cards.two {
  grid-template-columns: repeat(2, minmax(280px, 346px));
}

.offer-card {
  position: relative;
  min-height: 330px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.promo {
  position: absolute;
  top: -20px;
  right: 12px;
  padding: 13px 11px;
  background: #e8792b;
  font-weight: 800;
}

.offer-card h3 {
  margin: 0 0 22px;
  font-size: 22px;
}

.speed {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}

.speed img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.offer-card p {
  margin: 8px 0;
  line-height: 1.45;
}

.price {
  margin: 22px 0 12px;
  color: #d26922;
  font-size: 34px;
  font-weight: 900;
}

.price small {
  color: #000;
  font-size: 19px;
}

.offer-card button,
.order-panel button,
.eligibility-box button,
.v2-card button,
.advisor button {
  width: 100%;
  min-height: 50px;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  font-weight: 800;
  cursor: pointer;
}

.ibou-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 52px 40px;
  background: #d7d7d7;
}

.ibou-card a {
  color: #000;
  text-align: right;
  text-decoration: none;
  font-weight: 800;
}

.order-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 42px 46px;
  background: #000;
  color: #fff;
}

.order-panel h2 {
  margin-top: 0;
  font-size: 27px;
  line-height: 1.35;
}

.order-panel button {
  margin: 28px 0;
  border: 0;
  background: #e8792b;
}

.order-panel a {
  color: #fff;
}

.proofs {
  padding: 42px 16px 48px;
  background: var(--soft-yellow);
}

.proofs h2,
.proofs > div {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.proofs > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.proofs article {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.proofs img {
  width: 50px;
  height: 50px;
}

.baseline-more,
.baseline-faq,
.baseline-help {
  max-width: none;
  margin: 0;
  padding: 46px 16px;
}

.baseline-more {
  max-width: 1280px;
  margin: 0 auto;
}

.baseline-more h2,
.baseline-faq h2 {
  margin: 0 0 24px;
  font-size: 32px;
}

.baseline-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.baseline-tabs button {
  min-height: 38px;
  min-width: 88px;
  border: 0;
  background: transparent;
  color: #000;
  font-weight: 900;
  cursor: pointer;
}

.baseline-tabs button.active {
  border-bottom: 4px solid var(--orange);
}

.alternative-card {
  max-width: 346px;
}

.baseline-note {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 700;
}

.baseline-faq {
  padding-top: 40px;
  padding-bottom: 20px;
  background: #000;
  color: #fff;
}

.baseline-faq > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.baseline-faq details {
  border-top: 1px solid #2a2a2a;
  padding: 17px 0;
}

.baseline-faq details:last-of-type {
  border-bottom: 1px solid #2a2a2a;
}

.baseline-faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.baseline-faq p {
  max-width: 760px;
  margin-bottom: 0;
  color: #dedede;
  line-height: 1.5;
}

.all-questions {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  font-weight: 900;
}

.baseline-help {
  background: #000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-top: 20px;
  padding-bottom: 80px;
}

.baseline-help > * {
  max-width: none;
}

.baseline-help article {
  padding: 34px;
}

.baseline-help .track-card {
  background: #000;
  color: #fff;
  border: 1px solid #202020;
}

.baseline-help .claim-card {
  background: var(--soft-yellow);
  color: #000;
}

.baseline-help h2 {
  min-height: 78px;
  margin: 0 0 20px;
  font-size: 27px;
  line-height: 1.25;
}

.baseline-help button {
  min-height: 50px;
  padding: 0 24px;
  border: 2px solid currentColor;
  background: var(--orange);
  color: #000;
  font-weight: 900;
}

.baseline-help .track-card button {
  border-color: #fff;
  background: #000;
  color: #fff;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border: 1px solid #dedede;
  background: #fff;
  color: #000;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: #333;
}

.modal-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-weight: 900;
}

.modal-card h2 {
  margin: 0 0 10px;
  font-size: 34px;
}

.modal-usage {
  max-width: 620px;
  margin: 0 0 24px;
  color: #333;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.modal-grid > div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid #ddd;
  background: var(--surface);
}

.modal-grid span {
  display: block;
  margin-bottom: 12px;
  color: #555;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-price {
  margin: 0 0 8px;
  color: #000;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 900;
}

.modal-fees {
  color: #444;
  font-size: 13px;
  font-weight: 800;
}

.modal-speed-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.modal-speed-list div {
  padding: 12px;
  background: #fff;
}

.modal-speed-list dt {
  margin: 0 0 6px;
  color: #666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-speed-list dd {
  margin: 0;
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
}

.modal-detail-section {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e1e1e1;
}

.modal-detail-section h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.modal-benefits,
.modal-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-benefits li,
.modal-notes li {
  position: relative;
  min-height: 42px;
  padding: 11px 12px 11px 28px;
  background: #f6f6f6;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.modal-benefits li::before,
.modal-notes li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--orange);
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.modal-actions button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  background: var(--orange);
  color: #000;
  font-weight: 900;
  cursor: pointer;
}

.modal-actions .outline {
  border: 2px solid #000;
  background: #fff;
  color: #000;
}

.hero-content.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 74px 28px 96px;
  text-align: center;
}

.hero-logo {
  position: absolute;
  inset: auto;
  top: 28px;
  left: 28px;
  z-index: 2;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.v2-hero h1 {
  max-width: 1320px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.2vw, 61px);
}

.v2-hero h1 .h1-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: hero-headline-line-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, opacity;
}

.v2-hero h1 .h1-line:nth-child(1) {
  animation-delay: 80ms;
}

.v2-hero h1 .h1-line:nth-child(2) {
  animation-delay: 190ms;
}

.v2-hero h1 .h1-line:nth-child(3) {
  animation-delay: 80ms;
}

.v2-hero h1 .h1-line:nth-child(4) {
  animation-delay: 170ms;
}

.v2-hero h1 .h1-line:nth-child(5) {
  animation-delay: 260ms;
}

.v2-hero h1 .h1-line:nth-child(6) {
  animation-delay: 350ms;
}

.v2-hero h1 .desktop-line {
  white-space: nowrap;
}

.v2-hero h1 .mobile-line {
  display: none;
}

.v2-hero h1 .accent {
  position: relative;
  display: inline-block;
  color: var(--orange);
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 0.12em, 0) scale(0.985);
  animation: hero-accent-settle 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, opacity;
}

.v2-hero h1 .speed-word {
  color: var(--orange);
}

.v2-hero h1 .speed-word {
  margin-right: 0.16em;
  letter-spacing: -0.035em;
  font-style: italic;
  transform-origin: left center;
  text-shadow: none;
  animation: hero-speed-word-in 700ms cubic-bezier(0.16, 1, 0.3, 1) 320ms both;
  will-change: transform, opacity;
}

.v2-hero h1 .speed-word::before,
.v2-hero h1 .speed-word::after {
  content: none;
}

@keyframes hero-headline-line-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-accent-settle {
  0% {
    opacity: 0;
    transform: translate3d(0, 0.12em, 0) scale(0.985);
  }
  62% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.025);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-speed-word-in {
  0% {
    opacity: 0;
    transform: translate3d(-0.16em, 0, 0) skewX(-7deg) scaleX(1.035);
  }
  56% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewX(-6deg) scaleX(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-hero h1 .h1-line,
  .v2-hero h1 .speed-word {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .v2-hero h1 .speed-word {
    transform: skewX(-6deg) scaleX(1.02);
  }
}

.subhead {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  max-width: 520px;
  margin: 24px auto 24px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1.15;
}

.subhead span {
  display: inline;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-transform: none;
}

.subhead strong {
  color: #fff;
  font-size: clamp(34px, 3.1vw, 44px);
  line-height: 1;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.primary-cta {
  min-width: min(360px, 100%);
  background: var(--orange);
  color: #000;
}

.secondary-cta {
  min-height: auto;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.trust-strip,
.v2-proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span,
.v2-proof-strip span,
.v2-proof-strip a {
  padding: 9px 12px;
  border: 1px solid #d5d5d5;
  background: #fff;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.v2-proof-strip {
  position: absolute;
  left: -70px;
  top: -36px;
  z-index: 5;
  color: #fff;
}

.v2-proof-strip span,
.v2-proof-strip a {
  border-color: #333;
  background: #111;
  color: #fff;
}

.v2-proof-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  text-align: center;
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
  font-size: 13px;
  line-height: 1.15;
}

.eligibility-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(440px, 620px);
  gap: 28px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px;
  position: relative;
  z-index: 4;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #000;
  box-shadow: var(--shadow-soft);
}

.eligibility-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: var(--orange);
}

.panel-kicker {
  margin: 0 0 4px;
  color: var(--orange);
  font-weight: 900;
  font-size: 14px;
}

.eligibility-panel h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.eligibility-panel form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 48px auto;
  gap: 10px;
  align-items: center;
}

.eligibility-label {
  grid-column: 1 / -1;
  margin-bottom: -4px;
  font-size: 13px;
  font-weight: 900;
}

.eligibility-panel input {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #8f8f8f;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  font-weight: 700;
}

.eligibility-panel button,
.v2-card button,
.advisor button {
  appearance: none;
  -webkit-appearance: none;
  margin-top: 18px;
  border: 0;
  background: var(--orange);
  color: #000;
}

.eligibility-panel button {
  min-width: 176px;
  min-height: 48px;
  margin-top: 0;
  font-weight: 900;
  cursor: pointer;
}

.eligibility-panel .geo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  width: 48px;
  min-height: 48px;
  padding: 0;
  border: 1px solid #555;
  background: #f7f7f7;
  color: #000;
}

.eligibility-panel .geo-button:hover {
  border-color: #000;
  background: #fff;
}

.eligibility-panel .geo-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.eligibility-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #555;
  font-size: 13px;
  font-weight: 700;
}

.offers-block,
.advisor,
.tech-compare,
.faq-prospect {
  max-width: 1220px;
  margin: 0 auto;
  padding: 44px 28px;
}

.offers-block {
  max-width: none;
  margin-top: 72px;
  padding: 60px 28px 62px;
  background: var(--surface);
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}

.offers-header,
.v2-offers {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.offers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d9d9;
}

.offers-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.offers-header h2,
.advisor h2,
.tech-compare h2,
.faq-prospect h2 {
  margin: 0 0 8px;
  font-size: 32px;
}

.offers-header p:not(.offers-kicker) {
  margin: 0;
  color: #333;
  line-height: 1.45;
}

.v2-offers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 0;
}

.v2-card {
  display: flex;
  flex-direction: column;
  min-height: 620px;
  border: 1px solid #dedede;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.v2-card.recommended {
  border: 2px solid var(--orange);
  box-shadow: 0 14px 34px rgba(241, 110, 0, 0.14);
}

.tag {
  display: inline-block;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 0 0 12px;
  border-left: 4px solid var(--orange);
  background: transparent;
  color: #222;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.recommended .tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-left: 0;
  background: rgba(241, 110, 0, 0.14);
  color: #000;
}

.v2-card h3 {
  min-height: 52px;
  margin: 0 0 12px;
  font-size: 21px;
}

.v2-card .price {
  min-height: 54px;
  margin: 0 0 18px;
}

.fit {
  min-height: 112px;
  margin: 0;
  color: #222;
  line-height: 1.4;
}

.metric {
  min-height: 46px;
  margin-top: 8px;
  font-size: 32px;
  font-weight: 900;
}

.metric small {
  font-size: 16px;
}

.included {
  display: grid;
  gap: 7px;
  min-height: 66px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
}

.included li {
  position: relative;
  padding-left: 16px;
}

.included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--orange);
}

.fees {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 48px;
  margin: 14px 0 18px;
  color: #333;
  font-size: 13px;
  font-weight: 700;
}

.fees span,
.price {
  white-space: nowrap;
}

.fees .fees-label {
  color: #555;
  white-space: normal;
}

.fees span:not(.fees-label) {
  color: #000;
}

.offer-actions {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 8px;
  margin-top: auto;
}

.choose-offer,
.more-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 48px;
  margin-top: 0;
  padding: 0 12px;
  border: 0;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.offer-actions .choose-offer {
  background: var(--orange);
  color: #000;
}

.offer-actions .more-info {
  border: 0;
  background: #111;
  color: #fff;
}

.offer-actions .choose-offer:hover,
.eligibility-panel button:not(.geo-button):hover,
.modal-actions button:hover {
  background: #ff7900;
}

.offer-actions .more-info:hover,
.tech-compare button:hover {
  background: #333;
}

.advisor {
  display: grid;
  grid-template-columns: 96px 1fr 220px;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  border: 1px solid #222;
  background: #111;
  color: #fff;
}

.advisor-avatar {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  background: var(--orange);
}

.advisor-avatar img {
  width: 78px;
  height: 78px;
}

.advisor-kicker {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.advisor-copy > p:not(.advisor-kicker) {
  max-width: 680px;
  margin: 0 0 16px;
  color: #f2f2f2;
  line-height: 1.45;
}

.advisor-criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.advisor-criteria span {
  padding: 7px 10px;
  border: 1px solid #3a3a3a;
  background: #1c1c1c;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.advisor button {
  border: 0;
  background: #fff;
  color: #000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.advisor button:hover {
  background: var(--orange);
  color: #000;
}

.tech-compare {
  padding-top: 64px;
  padding-bottom: 56px;
}

.tech-header {
  max-width: 780px;
  margin-bottom: 24px;
}

.tech-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-header p:not(.tech-kicker) {
  margin: 0;
  color: #333;
  line-height: 1.5;
}

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

.tech-compare article {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px;
  border: 1px solid #dedede;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.tech-compare article span {
  display: inline-block;
  margin-bottom: 18px;
  padding-left: 12px;
  border-left: 4px solid var(--orange);
  color: #333;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-compare article h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.tech-compare article p {
  min-height: 70px;
  margin: 0 0 18px;
  color: #222;
  line-height: 1.45;
}

.tech-facts {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.tech-facts li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid #e8e8e8;
}

.tech-facts strong {
  color: #000;
  font-size: 15px;
  font-weight: 900;
}

.tech-facts small {
  max-width: 118px;
  color: #555;
  text-align: right;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.tech-compare button {
  margin-top: auto;
  min-height: 48px;
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.faq-prospect {
  max-width: none;
  margin-top: 0;
  padding-top: 64px;
  padding-bottom: 70px;
  background: #000;
  color: #fff;
}

.faq-prospect > * {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.faq-header {
  max-width: 760px;
  margin-bottom: 26px;
  margin-left: auto;
  margin-right: auto;
}

.faq-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-header p:not(.faq-kicker) {
  margin: 0;
  color: #d8d8d8;
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-prospect details {
  border: 1px solid #303030;
  background: #111;
}

.faq-prospect details[open] {
  border-color: #4a4a4a;
}

.faq-prospect summary {
  position: relative;
  cursor: pointer;
  padding: 20px 56px 20px 20px;
  font-size: 19px;
  font-weight: 900;
  list-style: none;
}

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

.faq-prospect summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

.faq-prospect details[open] summary::after {
  content: "-";
}

.faq-prospect details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #d8d8d8;
  line-height: 1.55;
}

footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #000;
  color: #fff;
  font-size: 12px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 980px) {
  .content-grid,
  .cards.two,
  .v2-offers,
  .tech-options,
  .proofs > div,
  .baseline-help,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .order-panel {
    position: static;
  }

  .hero-content.centered {
    min-height: 580px;
    padding: 58px 24px 76px;
  }

  .offers-block {
    margin-top: 54px;
    padding: 42px 16px 46px;
  }

  .offers-header {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .v2-proof-strip {
    left: auto;
    right: 18px;
    top: -46px;
    margin: 0;
    padding: 0;
  }

  .eligibility-panel {
    grid-template-columns: 1fr;
    margin: 0 16px;
    padding: 58px 18px 20px;
  }

  .eligibility-panel::before {
    left: 18px;
    right: 18px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 4px;
  }

  .eligibility-panel h2 {
    font-size: 24px;
  }

  .eligibility-panel form {
    grid-template-columns: 1fr 48px;
  }

  .eligibility-panel input,
  .eligibility-panel .geo-button {
    grid-row: auto;
  }

  .eligibility-label,
  .eligibility-panel button:not(.geo-button),
  .eligibility-note {
    grid-column: 1 / -1;
  }

  .advisor {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .advisor-avatar {
    width: 82px;
    height: 82px;
  }

  .advisor-avatar img {
    width: 66px;
    height: 66px;
  }

  .advisor button {
    width: 100%;
  }

  .tech-compare {
    padding-top: 42px;
  }

  .tech-options {
    gap: 14px;
  }

  .tech-compare article {
    min-height: 0;
  }

  .tech-compare article p {
    min-height: 0;
  }

  .tech-facts small {
    max-width: 150px;
  }

  .faq-prospect {
    margin-top: 34px;
    padding-top: 42px;
    padding-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-prospect summary {
    padding: 18px 48px 18px 16px;
    font-size: 17px;
  }

  .faq-prospect summary::after {
    right: 16px;
  }

  .faq-prospect details p {
    padding: 0 16px 18px;
  }

  .v2-card {
    min-height: auto;
    padding: 26px;
  }

  .v2-card h3,
  .v2-card .price,
  .fit,
  .metric,
  .included,
  .fees {
    min-height: 0;
  }

  .v2-card .price {
    margin-bottom: 20px;
  }

  .fit {
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
  }

  .metric {
    margin-top: 18px;
  }

  .included {
    padding-top: 2px;
  }

  .fees {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #ececec;
  }
}

@media (max-width: 640px) {
  .topbar {
    height: auto;
    align-items: flex-start;
    padding: 14px;
  }

  .switcher {
    flex-direction: column;
    width: 220px;
  }

  .prototype-controls {
    align-items: flex-end;
    flex-direction: column;
  }

  .hero,
  .hero-content.center {
    min-height: 500px;
  }

  .v2-hero,
  .v2-hero .hero-content.centered {
    min-height: 100svh;
  }

  .v2-hero .hero-content.centered {
    justify-content: center;
    padding: 70px 24px 42px;
  }

  .hero-logo {
    top: 18px;
    left: 18px;
    width: 50px;
    height: 50px;
  }

  .ticker {
    margin-top: -54px;
    font-size: 34px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal {
    padding: 14px;
  }

  .modal-card {
    padding: 26px 18px;
  }

  .modal-grid,
  .modal-benefits,
  .modal-notes {
    grid-template-columns: 1fr;
  }

  .modal-speed-list {
    grid-template-columns: 1fr 1fr;
  }

  .quick-badge {
    width: 112px;
    height: 112px;
    font-size: 17px;
    right: 16px;
    top: 22px;
  }

  .dark-cta,
  .primary-cta {
    width: 100%;
  }

  .secondary-cta {
    width: auto;
  }

  .v2-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.08;
  }

  .v2-hero h1 .desktop-line {
    display: none;
  }

  .v2-hero h1 .mobile-line {
    display: block;
  }

  .subhead {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 26px;
    margin-bottom: 28px;
    font-size: 16px;
    text-align: center;
  }

  .subhead strong {
    font-size: 26px;
  }

  .subhead span {
    max-width: 280px;
    text-transform: none;
  }

  .v2-proof-strip {
    display: none;
  }

  .eligibility-panel {
    padding: 22px 18px 20px;
  }

  .v2-proof-strip span {
    width: 96px;
    height: 96px;
    font-size: 14px;
  }

  .content-grid,
  .v2-offers {
    padding-left: 16px;
    padding-right: 16px;
  }

  .v2-offers {
    padding-left: 0;
    padding-right: 0;
    gap: 18px;
  }

  .v2-card {
    padding: 26px 24px 22px;
  }

  .v2-card h3 {
    margin-bottom: 10px;
  }

  .v2-card .price {
    font-size: 32px;
  }

  .fit {
    font-size: 16px;
    line-height: 1.45;
  }

  .offer-actions {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .choose-offer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .more-info {
    min-width: 92px;
  }

  footer {
    flex-wrap: wrap;
  }
}
