* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f8fc;
  --bg-soft: #eef2fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-2: rgba(250, 252, 255, 0.95);
  --line: rgba(122, 146, 197, 0.18);
  --line-strong: rgba(122, 146, 197, 0.3);
  --text: #22304f;
  --muted: #667391;
  --brand: #5fb6ff;
  --brand-2: #ff8fc8;
  --brand-3: #8f92ff;
  --ok: #2fbf77;
  --danger: #e45b88;
  --shadow: 0 20px 48px rgba(96, 121, 168, 0.12);
}

html {
  scroll-behavior: auto;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", "PingFang SC", "Microsoft YaHei", sans-serif;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(720px 360px at 0% 0%, rgba(95, 182, 255, 0.14), transparent 62%),
    radial-gradient(680px 340px at 100% 0%, rgba(255, 143, 200, 0.14), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fd 35%, #eef3fb 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(152, 176, 220, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(152, 176, 220, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 90%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(1040px, calc(100% - 28px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 20px));
}

.hero {
  padding: 54px 0 28px;
}

.hero-grid,
.grid-three,
.grid-two,
.product-grid,
.info-grid,
.compact-grid,
.trial-grid,
.order-list {
  display: grid;
  gap: 16px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: stretch;
  gap: 22px;
}

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

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

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

.trial-grid,
.order-list {
  grid-template-columns: 1fr;
}

.panel,
.hero-card,
.trial-card,
.order-card,
.result-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.panel::before,
.hero-card::before,
.trial-card::before,
.order-card::before,
.result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(95, 182, 255, 0.06), transparent 35%, rgba(255, 143, 200, 0.06));
}

.hero-copy h1,
.feature-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
}

.hero-copy {
  position: relative;
}

.hero-copy-open {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 22px 18px 22px 0;
  min-height: 100%;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -26px;
  top: -20px;
  width: 168px;
  height: 168px;
  border-radius: 42px;
  background: radial-gradient(circle at 34% 34%, rgba(255, 143, 200, 0.24), transparent 66%);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 12px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px dashed rgba(143, 146, 255, 0.28);
  opacity: 0.72;
}

.hero-text,
.panel p,
.muted-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(246, 249, 255, 0.72));
  border: 1px solid rgba(122, 146, 197, 0.12);
  color: #6281d6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  box-shadow: 0 14px 28px rgba(96, 121, 168, 0.08);
}

.hero-copy-open h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #223252;
}

.hero-text-lead {
  max-width: 640px;
  font-size: clamp(16px, 2vw, 18px);
  color: #5d6d8d;
  line-height: 1.9;
}

.hero-highlight-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-highlight-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(122, 146, 197, 0.12);
  color: #546c9e;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(96, 121, 168, 0.06);
}

.hero-intro-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(122, 146, 197, 0.16);
  background: linear-gradient(135deg, rgba(95, 182, 255, 0.08), rgba(255, 143, 200, 0.08));
  box-shadow: 0 16px 32px rgba(96, 121, 168, 0.1);
}

.hero-intro-card-main {
  min-height: 100%;
  display: grid;
  align-content: center;
}

.hero-illustration-card {
  margin-top: 26px;
  position: relative;
  overflow: hidden;
}

.hero-illustration-card::before {
  content: "";
  position: absolute;
  right: -24px;
  top: -22px;
  width: 128px;
  height: 128px;
  border-radius: 34px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(255, 143, 200, 0.12) 44%, transparent 70%);
  transform: rotate(18deg);
}

.hero-illustration-card::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -14px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 1px dashed rgba(143, 146, 255, 0.3);
  opacity: 0.72;
}

.hero-intro-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  text-align: center;
}

.hero-intro-card p {
  text-align: center;
}

.hero-intro-kicker {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
  color: #7a76dd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eyebrow,
.card-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  color: #5d88da;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
}

.tag-row,
.hero-actions,
.result-card-head,
.trial-card-head,
.order-card-head,
.section-heading,
.product-meta,
.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-actions-spaced {
  margin-top: 8px;
}

.tag-row span,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(111, 140, 196, 0.16);
  background: rgba(95, 182, 255, 0.08);
  color: #526fa8;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  border-radius: 16px;
  border: 1px solid rgba(122, 146, 197, 0.14);
  background: rgba(255, 255, 255, 0.66);
  padding: 12px 14px;
  text-align: center;
}

.hero-card-glow {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 200, 0.24), transparent 70%);
}

.hero-card-feature {
  padding: 24px 22px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.62), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 255, 0.94));
}

.hero-visual-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #8f92ff, #ff8fc8);
  box-shadow: 0 16px 28px rgba(143, 146, 255, 0.18);
}

.hero-visual-badge-top {
  top: 18px;
  left: 18px;
  transform: rotate(-8deg);
}

.hero-visual-badge-mid {
  right: 16px;
  top: 58px;
  transform: rotate(7deg);
}

.hero-visual-ribbon {
  position: absolute;
  right: 40px;
  bottom: 26px;
  width: 138px;
  height: 138px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 30% 30%, rgba(95, 182, 255, 0.3), transparent 58%),
    linear-gradient(135deg, rgba(143, 146, 255, 0.26), rgba(255, 143, 200, 0.22));
  transform: rotate(18deg);
  filter: blur(0.4px);
}

.hero-card-feature .feature-list {
  margin-top: 34px;
}

.section {
  padding: 16px 0;
}

.section-heading {
  margin-bottom: 14px;
}

.purchase-panel .section-heading {
  margin-bottom: 18px;
}

.purchase-panel .product-grid {
  margin-top: 0;
}

.purchase-event-panel {
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 251, 255, 0.98));
}

.purchase-event-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding: 24px 26px;
  border-radius: 26px;
  border: 1px solid rgba(122, 146, 197, 0.12);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 143, 200, 0.22), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(95, 182, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #fff9fc, #f8fbff 48%, #f3f8ff);
  box-shadow: 0 22px 40px rgba(96, 121, 168, 0.12);
}

.purchase-event-card.is-ended {
  background:
    radial-gradient(circle at 0% 0%, rgba(228, 91, 136, 0.16), transparent 30%),
    linear-gradient(135deg, #fff8fb, #fff5f7 55%, #fff9fb);
}

.purchase-event-copy {
  display: grid;
  gap: 10px;
  flex: 1 1 520px;
}

.purchase-event-copy p {
  max-width: 640px;
  color: #61718f;
  font-size: 15px;
}

.purchase-event-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.purchase-sale-status {
  font-size: 30px;
  color: #253a60;
  line-height: 1.1;
}

.purchase-promo-chip {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7daf, #8f92ff);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.purchase-sale-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8aa5, #ffb36d);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(255, 140, 125, 0.2);
}

.purchase-heading {
  align-items: flex-end;
}

.purchase-kicker {
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: #3d63c1;
}

.purchase-title {
  color: #2b3f66;
  line-height: 1.12;
}

.purchase-countdown {
  display: grid;
  gap: 10px;
  justify-items: stretch;
  align-content: center;
  min-width: 260px;
}

.purchase-countdown-label {
  color: #65779a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.purchase-countdown-timer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(122, 146, 197, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.purchase-countdown-timer b {
  min-width: 34px;
  text-align: center;
  color: #22304f;
  font-size: 28px;
  line-height: 1;
}

.purchase-countdown-timer small {
  color: #7988a8;
  font-size: 12px;
  font-weight: 700;
}

.purchase-countdown.is-ended .purchase-countdown-timer {
  background: rgba(228, 91, 136, 0.08);
  border-color: rgba(228, 91, 136, 0.16);
}

.qrpay-wrap {
  padding-bottom: 24px;
}

.qrpay-grid {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.qrpay-card,
.qrpay-meta {
  display: grid;
  gap: 16px;
}

.qrpay-card {
  justify-items: center;
}

.qrpay-image {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(122, 146, 197, 0.18);
  background: #fff;
  padding: 14px;
  box-shadow: 0 18px 32px rgba(96, 121, 168, 0.12);
}

.qrpay-actions {
  display: flex;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}

.qrpay-actions .button {
  flex: 1 1 140px;
}

.product-card {
  position: relative;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.product-sale-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8fc8, #8f92ff);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 20px rgba(143, 146, 255, 0.18);
}

.product-period-badge {
  background: rgba(95, 182, 255, 0.08);
}

.product-name-wrap {
  position: relative;
  margin-bottom: 8px;
  padding: 12px 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(122, 146, 197, 0.12);
  background: linear-gradient(135deg, rgba(95, 182, 255, 0.08), rgba(255, 143, 200, 0.08));
}

.product-name-title {
  position: relative;
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #263d67;
}

.product-name-glow {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 200, 0.24), transparent 70%);
}

.price-stack {
  display: grid;
  gap: 4px;
}

.price-original {
  color: #93a0b9;
  font-size: 13px;
  text-decoration: line-through;
}

.section-heading h2,
.panel h2,
.panel h3,
.trial-card strong,
.order-card h3 {
  margin: 0;
}

.feature-card-title {
  text-align: center;
  margin-bottom: 14px;
}

.accent-panel p,
.accent-panel h3 {
  text-align: center;
}

.result-card {
  gap: 10px;
}

.result-card-head {
  align-items: flex-start;
}

.result-card-head-stacked {
  align-items: stretch;
  gap: 12px;
}

.result-card-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.result-top-actions {
  margin-bottom: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 13px;
  border: 1px solid rgba(122, 146, 197, 0.18);
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-3), var(--brand-2));
  box-shadow: 0 12px 24px rgba(95, 182, 255, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.purchase-form,
.stack-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #51607f;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(122, 146, 197, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(95, 182, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(95, 182, 255, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  color: #6a7fa9;
  font-size: 13px;
}

.price-line strong {
  font-size: 28px;
  color: #30466f;
}

.price-line span,
.mono-text {
  color: #687a9f;
}

.mono-text,
.long-code-block,
.code-block {
  font-family: Consolas, "Courier New", monospace;
}

.flash {
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.flash-success {
  border: 1px solid rgba(47, 191, 119, 0.18);
  background: rgba(47, 191, 119, 0.08);
  color: #238756;
}

.flash-error {
  border: 1px solid rgba(228, 91, 136, 0.18);
  background: rgba(228, 91, 136, 0.08);
  color: #be4b73;
}

.table-wrap {
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 11px 9px;
  border-bottom: 1px solid rgba(122, 146, 197, 0.1);
  text-align: left;
  white-space: nowrap;
}

.status-box,
.empty-state {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 16px;
}

.status-box-rich {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

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

.info-grid > div {
  border: 1px solid rgba(122, 146, 197, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 12px 14px;
}

.info-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.info-grid strong {
  display: block;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.long-code-block,
.code-block-wrap {
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.long-code-block,
.code-block {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(122, 146, 197, 0.12);
  background: #f7f9fd;
  color: #314567;
}

.text-danger {
  color: var(--danger);
}

.text-success {
  color: var(--ok);
}

.text-link {
  color: #5f8fe5;
  font-weight: 700;
}

.feature-hero {
  padding: 22px;
}

.inline-copy-btn {
  width: auto;
  min-width: 144px;
}

.result-card .long-code-block,
.trial-card .long-code-block {
  margin-top: 2px;
}

.empty-state {
  color: var(--muted);
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

.purchase-modal[hidden] {
  display: none;
}

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

.purchase-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 13, 28, 0.72);
  backdrop-filter: blur(12px);
}

.purchase-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(130, 170, 255, 0.2);
  background:
    radial-gradient(circle at top left, rgba(117, 176, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(14, 22, 40, 0.96), rgba(10, 18, 34, 0.98));
  box-shadow: 0 28px 80px rgba(2, 8, 20, 0.48);
}

.purchase-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f9ff;
  font-size: 26px;
  cursor: pointer;
}

.purchase-modal-head h3 {
  margin: 4px 0 8px;
  font-size: 30px;
  color: #f3f8ff;
  text-shadow: 0 0 18px rgba(120, 188, 255, 0.38);
}

.purchase-modal-subtitle {
  margin: 0;
  color: #b9c8e8;
}

.purchase-modal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}

.purchase-modal-grid-single {
  grid-template-columns: minmax(0, 360px);
  justify-content: center;
}

.purchase-modal-code,
.purchase-modal-info {
  display: grid;
  gap: 16px;
}

.purchase-modal-dialog-compact {
  width: min(460px, calc(100vw - 24px));
}

.purchase-modal-qr-wrap {
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  min-height: 356px;
}

.purchase-modal-qr {
  display: block;
  width: min(320px, 100%);
  height: auto;
}

.purchase-modal-countdown {
  text-align: center;
  font-weight: 700;
  color: #4d6188;
}

.purchase-modal-countdown.is-expired {
  color: #c4577d;
}

@media (max-width: 980px) {
  body::before {
    display: none;
  }

  .panel,
  .hero-card,
  .trial-card,
  .order-card,
  .result-card {
    backdrop-filter: none;
  }

  .purchase-modal-backdrop {
    backdrop-filter: none;
  }

  .hero-grid,
  .grid-three,
  .grid-two,
  .product-grid,
  .qrpay-grid,
  .purchase-modal-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-open {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 14px, 100%);
  }

  .hero {
    padding-top: 30px;
  }

  .panel,
  .hero-card,
  .trial-card,
  .order-card,
  .result-card {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-copy h1,
  .feature-hero h1 {
    font-size: 28px;
  }

  .hero-copy-open h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero-highlight-row {
    gap: 8px;
  }

  .hero-highlight-row span {
    font-size: 12px;
    min-height: 34px;
    padding: 7px 12px;
  }

  .result-card-toolbar {
    width: 100%;
  }

  .hero-copy::before {
    display: none;
  }

  .payment-info-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .purchase-event-card,
  .purchase-heading {
    align-items: stretch;
  }

  .purchase-sale-status {
    font-size: 20px;
  }

  .purchase-event-topline,
  .product-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .purchase-countdown {
    width: 100%;
    justify-items: stretch;
  }

  .purchase-modal {
    padding: 10px;
  }

  .purchase-modal-dialog {
    width: min(100vw - 12px, 100%);
    max-height: calc(100vh - 12px);
    padding: 18px;
    border-radius: 22px;
  }

  .purchase-modal-head h3 {
    font-size: 24px;
  }

  .purchase-modal-qr-wrap {
    min-height: auto;
  }

  .purchase-countdown-timer {
    justify-content: center;
    flex-wrap: wrap;
  }

  .button,
  .inline-copy-btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .qrpay-actions .button {
    width: 100%;
  }
}
