body.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(64, 255, 119, 0.13), transparent 30%),
    #080b09;
  color: #ffffff;
}

.checkout-page .checkout-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(8, 11, 9, 0.94);
  backdrop-filter: blur(18px);
}

.checkout-header-inner {
  display: flex;
  min-height: 78px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.checkout-page .brand-tag {
  color: #aebbb0;
}

.checkout-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #d8e2da;
  font-size: 14px;
  font-weight: 850;
}

.checkout-back:hover,
.checkout-back:focus-visible {
  color: var(--green);
}

.checkout-main {
  min-height: calc(100vh - 190px);
}

.checkout-stage {
  padding: clamp(54px, 7vw, 92px) 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: start;
}

.checkout-intro {
  position: sticky;
  top: 118px;
  min-width: 0;
}

.checkout-intro .eyebrow {
  color: var(--green);
}

.checkout-intro h1 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(54px, 6vw, 78px);
  line-height: 0.93;
  letter-spacing: -0.066em;
}

.checkout-intro > p {
  max-width: 610px;
  margin-top: 24px;
  color: #c4d0c6;
  font-size: 19px;
  line-height: 1.58;
}

.checkout-price-card {
  display: grid;
  gap: 3px;
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(64, 255, 119, 0.32);
  border-radius: 16px;
  background: rgba(18, 24, 20, 0.82);
}

.checkout-price-card span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.checkout-price-card strong {
  margin-top: 4px;
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.checkout-price-card small {
  margin-top: 5px;
  color: #aebbb0;
  font-size: 13px;
}

.checkout-assurances {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.checkout-assurances > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.checkout-assurances > div > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-weight: 950;
}

.checkout-assurances p {
  color: #b7c4ba;
  font-size: 15px;
  line-height: 1.45;
}

.checkout-assurances strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
}

.checkout-help {
  margin-top: 30px !important;
  color: #aebbb0 !important;
  font-size: 14px !important;
}

.checkout-help a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 4px;
}

.checkout-page .whop-checkout-card {
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.16);
  scroll-margin-top: 88px;
}

.checkout-page .whop-checkout-summary h2 {
  margin-top: 12px;
  color: #ffffff;
  font-size: 25px;
}

.checkout-page .whop-telegram-steps > h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  text-align: center;
}

.checkout-page .whop-checkout-success h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
}

.checkout-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: #080b09;
}

.checkout-footer-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.checkout-footer p {
  max-width: 700px;
  color: #8f9c92;
  font-size: 12px;
  line-height: 1.5;
}

.checkout-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.checkout-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #c9d4cb;
  font-size: 12px;
  font-weight: 800;
}

@media (min-width: 1001px) and (max-height: 820px) {
  .checkout-intro {
    position: static;
  }
}

@media (max-width: 1000px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .checkout-intro {
    position: static;
  }

  .checkout-page .whop-checkout-card {
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  body.checkout-page {
    font-size: 16px;
  }

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

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

  .checkout-page .brand img {
    width: 40px;
    height: 40px;
  }

  .checkout-page .brand-tag {
    display: none;
  }

  .checkout-back {
    min-width: 44px;
    justify-content: flex-end;
    font-size: 13px;
  }

  .checkout-stage {
    padding: 34px 0 46px;
  }

  .checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .checkout-intro {
    display: contents;
  }

  .checkout-intro .eyebrow {
    order: 1;
  }

  .checkout-intro h1 {
    order: 2;
    font-size: clamp(44px, 13vw, 58px);
  }

  .checkout-intro > p {
    order: 3;
    margin-top: 18px;
    font-size: 17px;
  }

  .checkout-price-card {
    display: none;
  }

  .checkout-page .whop-checkout-card {
    order: 4;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  .checkout-assurances {
    order: 5;
    gap: 12px;
    margin-top: 30px;
  }

  .checkout-intro > .checkout-help {
    order: 6;
    margin-top: 18px !important;
  }

  .checkout-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .checkout-page .container {
    width: min(100% - 24px, var(--container));
  }

  .checkout-page .brand-copy {
    display: none;
  }

  .checkout-back {
    font-size: 0;
  }

  .checkout-back::after {
    content: "Back";
    font-size: 13px;
  }

  .checkout-intro h1 {
    font-size: 43px;
  }
}
