.orderPage {
  background: #050811;
}

.orderPage [hidden] {
  display: none !important;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.orderHero {
  padding: clamp(74px, 10vw, 126px) 0 clamp(64px, 9vw, 108px);
}

.orderHero__grid {
  display: grid;
  align-items: center;
  gap: clamp(42px, 8vw, 92px);
}

.orderEyebrow,
.orderKicker {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.orderEyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.orderEyebrow span {
  width: 32px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(56, 189, 248, .8);
}

.orderHero h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 82px);
  line-height: 1.02;
  letter-spacing: -.058em;
}

.orderHero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.orderHero__copy > p:not(.orderEyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--fg1);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
}

.orderTrust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--fg2);
  font-size: 12px;
}

.orderTrust span::before {
  margin-right: 8px;
  color: var(--cyan);
  content: "◆";
  font-size: 7px;
}

.orderReceipt {
  position: relative;
  padding: 26px 28px 30px;
  border: 1px solid rgba(145, 168, 219, .34);
  background:
    linear-gradient(145deg, rgba(18, 27, 50, .98), rgba(7, 11, 21, .98));
  box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
}

.orderReceipt::before,
.orderReceipt::after {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 34px;
  background: #050811;
  content: "";
}

.orderReceipt::before {
  left: -1px;
  border-radius: 0 22px 22px 0;
}

.orderReceipt::after {
  right: -1px;
  border-radius: 22px 0 0 22px;
}

.orderReceipt__head,
.orderReceipt__foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.orderReceipt__head {
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(145, 168, 219, .3);
  color: var(--fg2);
}

.orderReceipt ol {
  display: grid;
  gap: 0;
  margin: 12px 0;
  list-style: none;
}

.orderReceipt li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.orderReceipt li b {
  color: var(--cyan);
  font-size: 12px;
}

.orderReceipt li div {
  display: grid;
  gap: 3px;
}

.orderReceipt li strong {
  font-size: 14px;
}

.orderReceipt li span {
  color: var(--fg2);
  font-size: 12px;
}

.orderReceipt__foot {
  align-items: end;
  padding-top: 16px;
  color: var(--fg2);
}

.orderReceipt__foot strong {
  max-width: 220px;
  color: var(--fg1);
  font-size: 11px;
  letter-spacing: 0;
  text-align: right;
}

.orderDesk {
  padding: clamp(70px, 9vw, 112px) 0;
  border-block: 1px solid rgba(255, 255, 255, .1);
  background: #eef2f8;
  color: #101827;
}

.orderSectionHead,
.paymentDesk__head {
  display: grid;
  gap: 20px;
  margin-bottom: 34px;
}

.orderSectionHead h2,
.paymentDesk__head h2,
.orderTerms h2 {
  margin: 6px 0 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.orderSectionHead > p {
  max-width: 520px;
  color: #596579;
  line-height: 1.7;
}

.productChooser {
  display: grid;
  gap: 14px;
  border: 0;
}

.productChoice {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 146px;
  padding: 24px;
  border: 1px solid #c9d1dd;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.productChoice:hover {
  transform: translateY(-2px);
  border-color: #7290db;
}

.productChoice:has(input:checked) {
  border-color: #365fd0;
  box-shadow: inset 4px 0 0 #365fd0, 0 18px 48px rgba(45, 81, 177, .12);
}

.productChoice input {
  position: absolute;
  opacity: 0;
}

.productChoice:focus-within {
  outline: 3px solid rgba(54, 95, 208, .25);
  outline-offset: 3px;
}

.productChoice__index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #aeb9c8;
  color: #365fd0;
  font-weight: 900;
}

.productChoice__body {
  display: grid;
  gap: 6px;
}

.productChoice__meta {
  color: #4162b1;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.productChoice__body strong {
  font-size: clamp(19px, 2.5vw, 25px);
}

.productChoice__body small {
  max-width: 640px;
  color: #596579;
  line-height: 1.65;
}

.productChoice__price {
  display: grid;
  justify-items: end;
  gap: 3px;
  min-width: 108px;
}

.productChoice__price small {
  color: #6b7482;
  font-size: 10px;
}

.productChoice__price b {
  color: #17295b;
  font-size: 30px;
  letter-spacing: -.04em;
}

.orderFormGrid {
  display: grid;
  gap: 26px;
  margin-top: 34px;
}

.orderFields {
  display: grid;
  gap: 20px;
}

.fieldPair {
  display: grid;
  gap: 18px;
}

.orderField {
  display: grid;
  gap: 9px;
}

.orderField > span {
  color: #253147;
  font-size: 13px;
  font-weight: 750;
}

.orderField > span b {
  color: #b52b42;
}

.orderField input,
.orderField select,
.orderField textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid #b8c2d1;
  border-radius: 0;
  outline: none;
  background: #fff;
  color: #101827;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.orderField textarea {
  min-height: 126px;
  resize: vertical;
}

.orderField input:focus,
.orderField select:focus,
.orderField textarea:focus {
  border-color: #365fd0;
  box-shadow: 0 0 0 3px rgba(54, 95, 208, .14);
}

.orderField [aria-invalid="true"] {
  border-color: #b52b42;
  box-shadow: 0 0 0 3px rgba(181, 43, 66, .12);
}

.orderConsent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #536074;
  font-size: 13px;
  line-height: 1.65;
}

.orderConsent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: #365fd0;
}

.orderConsent a {
  color: #274fae;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.orderHoneypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.orderSubmitRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.orderFormStatus,
.paymentStatus {
  min-height: 22px;
  color: #526077;
  font-size: 13px;
}

.orderFormStatus[data-state="error"],
.paymentStatus[data-state="error"] {
  color: #a02238;
}

.scopeLedger {
  align-self: start;
  padding: 26px;
  border: 1px solid #1f3156;
  background: #101827;
  color: #fff;
  box-shadow: 0 24px 60px rgba(16, 24, 39, .18);
}

.scopeLedger__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, .25);
  color: #9ba9be;
  font-size: 9px;
  letter-spacing: .08em;
}

.scopeLedger__top b {
  max-width: 210px;
  color: #79d8ff;
  text-align: right;
  overflow-wrap: anywhere;
}

.scopeLedger h3 {
  margin: 24px 0 16px;
  font-size: 24px;
  line-height: 1.2;
}

.scopeLedger ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.scopeLedger li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #c7d0df;
  font-size: 13px;
}

.scopeLedger li::before {
  margin-right: 9px;
  color: #79d8ff;
  content: "→";
}

.scopeLedger__total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.scopeLedger__total span {
  color: #9ba9be;
  font-size: 12px;
}

.scopeLedger__total strong {
  color: #79d8ff;
  font-size: 32px;
}

.scopeLedger > p {
  margin: 18px 0 0;
  color: #9ba9be;
  font-size: 11px;
  line-height: 1.65;
}

.paymentDesk {
  padding: clamp(70px, 9vw, 112px) 0;
  background: #070c17;
}

.paymentDesk__head {
  align-items: end;
}

.liveOrder {
  display: grid;
  justify-items: start;
  gap: 5px;
}

.liveOrder span {
  color: var(--fg2);
  font-size: 10px;
  letter-spacing: .1em;
}

.liveOrder strong {
  color: var(--cyan);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.liveOrder button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fg1);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.paymentGrid {
  display: grid;
  gap: 18px;
}

.paymentCard,
.paymentNoticeBox {
  border: 1px solid rgba(255, 255, 255, .15);
  background: #0c1423;
}

.paymentCard {
  padding: 18px;
}

.paymentCard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.paymentCard__head span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg1);
  font-size: 13px;
}

.paymentCard__head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25b964;
}

.paymentCard--alipay .paymentCard__head i {
  background: #1677ff;
}

.paymentCard__head strong {
  color: var(--cyan);
}

.paymentCard img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #fff;
}

.paymentCard > p {
  margin: 14px 0 0;
  color: var(--fg2);
  font-size: 12px;
  text-align: center;
}

.paymentNoticeBox {
  padding: 26px;
}

.paymentNoticeBox h3 {
  margin: 8px 0 12px;
  font-size: 27px;
}

.paymentNoticeBox > p:not(.orderKicker) {
  margin: 0 0 22px;
  color: var(--fg2);
  font-size: 13px;
  line-height: 1.7;
}

.paymentNoticeBox form {
  display: grid;
  gap: 16px;
}

.paymentNoticeBox .orderField > span {
  color: var(--fg1);
}

.paymentNoticeBox .orderField input,
.paymentNoticeBox .orderField select,
.paymentNoticeBox .orderField textarea {
  border-color: rgba(255, 255, 255, .2);
  background: #090f1b;
  color: #fff;
}

.paymentIdentity {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 3px solid var(--cyan);
  background: rgba(56, 189, 248, .08);
}

.paymentIdentity > span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}

.paymentIdentity p {
  margin: 0;
  color: var(--fg1);
  font-size: 13px;
  line-height: 1.7;
}

.paymentIdentity a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.orderTerms {
  padding: clamp(70px, 9vw, 112px) 0;
  background: #0b101c;
}

.orderTerms__grid {
  display: grid;
  gap: 42px;
}

.termList {
  display: grid;
}

.termList article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}

.termList article > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.termList h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.termList p {
  margin: 0;
  color: var(--fg2);
  font-size: 13px;
  line-height: 1.75;
}

@media (min-width: 720px) {
  .fieldPair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fieldPair--contact {
    grid-template-columns: minmax(150px, .35fr) minmax(0, 1fr);
  }

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

  .paymentNoticeBox {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .orderHero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  }

  .orderSectionHead,
  .paymentDesk__head {
    grid-template-columns: 1fr minmax(280px, .46fr);
  }

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

  .orderFormGrid {
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, .58fr);
  }

  .paymentGrid {
    grid-template-columns: minmax(0, .72fr) minmax(0, .72fr) minmax(320px, 1fr);
  }

  .paymentNoticeBox {
    grid-column: auto;
  }

  .orderTerms__grid {
    grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
  }
}

@media (max-width: 719px) {
  .orderPage .headerNav {
    display: none;
  }

  .orderPage .headerActions .btn-secondary {
    display: none;
  }

  .orderHero h1 br {
    display: none;
  }

  .productChoice {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 20px 17px;
  }

  .productChoice__price {
    grid-column: 2;
    justify-items: start;
  }

  .scopeLedger__top {
    display: grid;
  }

  .scopeLedger__top b {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .productChoice {
    transition: none;
  }
}
