@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --orange: #ff6700;
  --orange-2: #ff8a00;
  --ink: #070707;
  --surface: #0d0d0f;
  --line: rgba(255,255,255,.09);
  --muted: #929299;
  --white: #f7f7f5;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 12%, rgba(255,103,0,.11), transparent 28%),
    var(--ink);
  font-family: "Manrope", Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.commerce-container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.commerce-header { border-bottom: 1px solid var(--line); background: rgba(7,7,7,.76); backdrop-filter: blur(18px); }
.commerce-nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.commerce-logo img { width: 145px; height: 38px; object-fit: contain; object-position: left; display: block; }
.commerce-back { color: #8d8d93; font-size: 12px; transition: color .2s; }
.commerce-back:hover { color: var(--orange); }
.commerce-main { padding: 75px 0 100px; }
.commerce-kicker { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.commerce-intro { max-width: 720px; margin-bottom: 48px; }
.commerce-intro h1, .checkout-card h1 { margin: 14px 0 18px; font-size: clamp(42px, 6vw, 70px); line-height: .98; letter-spacing: -.06em; }
.commerce-intro p, .checkout-card > p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.commerce-proof { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.commerce-proof span { padding: 9px 11px; border: 1px solid rgba(255,255,255,.09); border-radius: 8px; background: rgba(255,255,255,.026); color: #c8c8ce; font-size: 10px; font-weight: 700; }
.billing-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 22px; align-items: start; }
.billing-form, .order-summary, .checkout-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(13,13,15,.92);
  box-shadow: 0 35px 90px rgba(0,0,0,.38);
}
.billing-form { padding: 34px; }
.form-section + .form-section { margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
.section-label { display: block; margin-bottom: 18px; color: #ddd; font-size: 13px; font-weight: 700; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; margin-bottom: 8px; color: #898990; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: #080809;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus { border-color: rgba(255,106,0,.62); box-shadow: 0 0 0 3px rgba(255,103,0,.08); }
.field input::placeholder { color: #44444a; }
.cycle-selector { width: max-content; display: flex; gap: 5px; padding: 5px; border: 1px solid var(--line); border-radius: 9px; background: #080809; }
.cycle-option input { position: absolute; opacity: 0; pointer-events: none; }
.cycle-option span { min-width: 110px; min-height: 40px; padding: 0 18px; display: grid; place-items: center; border: 1px solid transparent; border-radius: 6px; color: #777; font-size: 11px; font-weight: 700; cursor: pointer; transition: .2s; }
.cycle-option input:checked + span { color: #fff; border-color: rgba(255,115,0,.42); background: rgba(255,103,0,.13); }
.billing-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.billing-plan { position: relative; }
.billing-plan input { position: absolute; opacity: 0; pointer-events: none; }
.billing-plan-content { min-height: 205px; padding: 20px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 10px; background: #0a0a0b; cursor: pointer; transition: border-color .25s, background .25s, transform .25s; position: relative; overflow: hidden; }
.billing-plan-content:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.18); }
.billing-plan input:checked + .billing-plan-content { border-color: rgba(255,106,0,.65); background: linear-gradient(145deg, rgba(255,103,0,.13), #0a0a0b 65%); box-shadow: 0 14px 35px rgba(255,80,0,.07); }
.billing-plan-recommended .billing-plan-content { border-color: rgba(255,106,0,.34); }
.recommended-chip { width: max-content; margin: -7px 0 13px; padding: 6px 8px; border-radius: 5px; color: #140a02; background: var(--orange); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.billing-plan-name { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; font-weight: 750; }
.billing-plan-name i { width: 12px; height: 12px; border: 1px solid #555; border-radius: 50%; }
.billing-plan input:checked + .billing-plan-content i { border: 4px solid var(--orange); }
.billing-plan-desc { display: block; margin-top: 14px; color: #898990; font-size: 11px; line-height: 1.55; }
.billing-plan-price { margin-top: auto; font-size: 23px; font-weight: 800; letter-spacing: -.045em; }
.billing-plan-price small { color: #777; font-size: 9px; font-weight: 500; letter-spacing: 0; }
.billing-plan-foot { display: block; margin-top: 9px; padding-top: 10px; border-top: 1px solid var(--line); color: var(--orange-2); font-size: 9px; line-height: 1.45; }
.addon-option { position: relative; display: block; }
.addon-option > input { position: absolute; opacity: 0; pointer-events: none; }
.addon-card { padding: 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; border: 1px solid var(--line); border-radius: 10px; background: #0a0a0b; cursor: pointer; transition: .25s; }
.addon-option input:checked + .addon-card { border-color: rgba(255,106,0,.6); background: rgba(255,103,0,.075); }
.check-box { width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid #555; border-radius: 5px; color: #090909; font-size: 12px; }
.addon-option input:checked + .addon-card .check-box { border-color: var(--orange); background: var(--orange); }
.addon-copy strong { display: block; font-size: 13px; }
.addon-copy p { margin: 7px 0 0; color: #797980; font-size: 11px; line-height: 1.6; }
.addon-price { text-align: right; font-size: 20px; font-weight: 800; white-space: nowrap; }
.addon-price small { display: block; color: #777; font-size: 9px; font-weight: 500; }
.google-note { margin: 13px 0 0; color: #626268; font-size: 9px; line-height: 1.65; }
.google-note a { color: #a9a9ad; text-decoration: underline; text-underline-offset: 3px; }
.cycle-note { margin: 13px 0 0; color: #8a8a90; font-size: 10px; line-height: 1.6; }
.order-summary { position: sticky; top: 24px; padding: 27px; }
.order-summary h2 { margin: 0 0 24px; font-size: 20px; letter-spacing: -.035em; }
.summary-row { padding: 15px 0; display: flex; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); color: #88888f; font-size: 11px; }
.summary-row strong { color: #ddd; font-weight: 650; text-align: right; }
.summary-total { margin-top: 4px; padding-top: 21px; align-items: end; }
.summary-total span { color: #bbb; }
.summary-total strong { color: #fff; font-size: 23px; letter-spacing: -.04em; }
.summary-hint { margin: 16px 0 22px; color: #5e5e64; font-size: 9px; line-height: 1.6; }
.summary-next { padding-block: 12px; }
.summary-next strong { max-width: 145px; color: #aaa; font-size: 10px; }
.commerce-button {
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff8f27;
  border-radius: 8px;
  color: #090909;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 14px 35px rgba(255,103,0,.15);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .25s, filter .25s;
}
.commerce-button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.commerce-button:disabled { cursor: wait; opacity: .72; transform: none; filter: none; }
.commerce-button.secondary { color: #ddd; border-color: var(--line); background: rgba(255,255,255,.025); box-shadow: none; }
.form-error { min-height: 18px; margin: 12px 0 0; color: #ff8b75; font-size: 10px; text-align: center; }
.form-status { min-height: 0; margin: 0; color: #9b9ba1; font-size: 10px; line-height: 1.6; text-align: center; }
.form-status.warning { margin-top: 10px; color: #d8a87c; }
.commerce-footer { padding: 25px 0; border-top: 1px solid var(--line); color: #55555b; font-size: 9px; }
.commerce-footer .commerce-container { display: flex; justify-content: space-between; gap: 20px; }

.checkout-main { min-height: calc(100vh - 130px); display: grid; place-items: center; padding: 70px 0; }
.checkout-card { width: min(calc(100% - 40px), 760px); padding: clamp(34px, 7vw, 72px); text-align: center; position: relative; overflow: hidden; }
.checkout-card::before { content: ""; position: absolute; width: 420px; height: 260px; top: -150px; left: 50%; transform: translateX(-50%); background: rgba(255,103,0,.16); filter: blur(80px); }
.checkout-icon { width: 68px; height: 68px; margin: 0 auto 28px; display: grid; place-items: center; border: 1px solid rgba(255,125,0,.42); border-radius: 50%; color: var(--orange); background: rgba(255,103,0,.08); position: relative; }
.checkout-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.checkout-card h1 { font-size: clamp(40px, 6vw, 62px); position: relative; }
.checkout-card > p { max-width: 580px; margin: 0 auto; }
.checkout-note { margin-top: 22px !important; color: #85858c !important; font-size: 12px !important; }
.welcome-line { margin-top: 24px !important; color: #ddd !important; font-weight: 700; }
.checkout-actions { margin-top: 34px; display: flex; justify-content: center; gap: 9px; }
.checkout-actions .commerce-button { width: auto; min-width: 190px; }

@media (max-width: 900px) {
  .billing-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 650px) {
  .commerce-main { padding: 55px 0 75px; }
  .billing-form { padding: 24px 18px; }
  .field-grid, .billing-plans { grid-template-columns: 1fr; }
  .field-grid .field:last-child { grid-column: auto; }
  .billing-plan-content { min-height: 170px; }
  .cycle-selector { width: 100%; }
  .cycle-option { flex: 1; }
  .cycle-option span { min-width: 0; }
  .addon-card { grid-template-columns: auto 1fr; }
  .addon-price { grid-column: 2; text-align: left; }
  .checkout-actions { flex-direction: column; }
  .checkout-actions .commerce-button { width: 100%; }
  .commerce-footer .commerce-container { flex-direction: column; }
}
