/* 文件说明：本文件属于主业务源码，下面通过中文注释辅助说明样式职责与关键区块。 */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@500;700;800&family=Noto+Sans+SC:wght@400;500;700&display=swap");

/* 样式说明：定义 :root 相关的样式规则。 */
:root {
  --bg: #06080f;
  --panel: #0f1423;
  --line: #25314f;
  --text: #eff3ff;
  --muted: #9ca8c9;
  --brand: #ff5f8f;
  --brand-2: #ff9a54;
  --ok: #78dfba;
}

* { box-sizing: border-box; }

/* 样式说明：定义 body 相关的样式规则。 */
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 680px at 8% -20%, #1f2552 0%, transparent 65%),
              radial-gradient(980px 760px at 95% -20%, #4d2632 0%, transparent 64%),
              var(--bg);
  font-family: "Barlow", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 样式说明：定义 .bg-grid 相关的样式规则。 */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 85%);
}

/* 样式说明：定义 .bg-glow 相关的样式规则。 */
.bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  filter: blur(62px);
  opacity: 0.2;
  pointer-events: none;
}

.bg-glow-a { left: -120px; top: -120px; background: #4f59ff; }
.bg-glow-b { right: -120px; top: -140px; background: #ff6b8f; }

/* 样式说明：定义 .topbar 相关的样式规则。 */
.topbar {
  max-width: 1120px;
  margin: 16px auto 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* 样式说明：定义 .brand 相关的样式规则。 */
.brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* 样式说明：定义 .brand-link 相关的样式规则。 */
.brand-link {
  color: var(--text);
  text-decoration: none;
}

/* 样式说明：定义 .topnav 相关的样式规则。 */
.topnav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

/* 样式说明：定义 .topnav a 相关的样式规则。 */
.topnav a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  height: 20px;
}

/* 样式说明：定义 .pay-topbar 相关的样式规则。 */
.pay-topbar {
  max-width: 640px;
  margin: 18px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 样式说明：定义 .pay-brand 相关的样式规则。 */
.pay-brand {
  color: var(--text);
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* 样式说明：定义 main 相关的样式规则。 */
main {
  max-width: 1120px;
  margin: 20px auto 0;
  padding: 0 14px 44px;
  display: grid;
  gap: 16px;
}

.hero,
/* 样式说明：定义 .section 相关的样式规则。 */
.section {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

/* 样式说明：定义 .hero 相关的样式规则。 */
.hero {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 18px;
  align-items: center;
}

/* 样式说明：定义 .eyebrow 相关的样式规则。 */
.eyebrow {
  margin: 0;
  color: var(--ok);
  letter-spacing: 0.3px;
  font-weight: 700;
}

/* 样式说明：定义 h1 相关的样式规则。 */
h1 {
  margin: 6px 0 10px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 440px;
}

/* 样式说明：定义 .sub 相关的样式规则。 */
.sub {
  margin: 0;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.65;
}

/* 样式说明：定义 .hero-copy 相关的样式规则。 */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-actions,
/* 样式说明：定义 .cta-actions 相关的样式规则。 */
.cta-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 样式说明：定义 .btn 相关的样式规则。 */
.btn {
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* 样式说明：定义 .btn-primary 相关的样式规则。 */
.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
}

/* 样式说明：定义 .btn-ghost 相关的样式规则。 */
.btn-ghost {
  color: var(--text);
  border-color: #3a4670;
  background: #11172a;
}

/* 样式说明：定义 .btn-small 相关的样式规则。 */
.btn-small {
  padding: 8px 12px;
  font-size: 13px;
}

/* 样式说明：定义 .hero-metrics 相关的样式规则。 */
.hero-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

/* 样式说明：定义 .hero-metrics div 相关的样式规则。 */
.hero-metrics div {
  border: 1px solid #2f3d63;
  border-radius: 12px;
  background: #0f1526;
  padding: 10px;
  display: grid;
  gap: 3px;
}

/* 样式说明：定义 .hero-metrics b 相关的样式规则。 */
.hero-metrics b {
  font-size: 18px;
  color: var(--text);
}

/* 样式说明：定义 .hero-metrics span 相关的样式规则。 */
.hero-metrics span {
  color: var(--muted);
  font-size: 12px;
}

/* 样式说明：定义 .hero-media 相关的样式规则。 */
.hero-media {
  position: relative;
  margin: 0;
  padding: 18px;
  display: grid;
  gap: 14px;
  align-content: start;
  border-radius: 20px;
  border: 1px solid #2d3b60;
  background:
    radial-gradient(300px 220px at 15% 8%, rgba(255, 123, 171, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(8, 12, 24, 0.06), rgba(8, 12, 24, 0.38)),
    #0b1020;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 44px rgba(0, 0, 0, 0.32);
  justify-self: end;
  width: 100%;
  max-width: 430px;
}

/* 样式说明：定义 .hero-media__frame 相关的样式规则。 */
.hero-media__frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(108, 128, 177, 0.45);
  background: linear-gradient(180deg, rgba(17, 24, 42, 0.6), rgba(9, 13, 23, 0.96));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
  min-height: 236px;
}

/* 样式说明：定义 .hero-mock 相关的样式规则。 */
.hero-mock {
  display: grid;
  gap: 10px;
  height: 100%;
  padding: 10px;
  background:
    radial-gradient(220px 120px at 80% 0%, rgba(255, 95, 143, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(10, 15, 29, 0.92), rgba(9, 13, 23, 0.98));
}

.hero-mock__topbar {
  min-height: 30px;
  border: 1px solid #2f3f68;
  border-radius: 10px;
  background: #10182d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.hero-mock__brand {
  font-size: 12px;
  font-weight: 800;
  color: #eaf0ff;
}

.hero-mock__chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 142, 117, 0.65);
  background: rgba(255, 95, 143, 0.16);
  color: #ffd7ca;
  font-size: 11px;
  font-weight: 700;
}

.hero-mock__canvas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 8px;
  min-height: 132px;
}

.hero-mock__preview {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #2f3f68;
  background:
    linear-gradient(120deg, rgba(255, 95, 143, 0.22), transparent 55%),
    radial-gradient(180px 80px at 60% 20%, rgba(121, 228, 190, 0.18), transparent 70%),
    #111a31;
}

.hero-mock__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 9, 18, 0.04), rgba(5, 9, 18, 0.22)),
    linear-gradient(120deg, rgba(255, 95, 143, 0.1), transparent 64%);
}

.hero-mock__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 45%;
}

.hero-mock__side {
  border-radius: 10px;
  border: 1px solid #2f3f68;
  background: #0f172d;
  padding: 8px;
  display: grid;
  align-content: start;
  gap: 7px;
}

.hero-mock__field {
  height: 22px;
  border-radius: 6px;
  border: 1px solid #2a3658;
  background: #141f3a;
}

.hero-mock__btn {
  height: 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.hero-mock__strip {
  min-height: 42px;
  border: 1px solid #2f3f68;
  border-radius: 10px;
  background: #0f172d;
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-mock__thumb {
  width: 56px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #2a3658;
  background: #172343;
}

.hero-mock__thumb.is-active {
  border-color: rgba(255, 142, 117, 0.75);
  box-shadow: inset 0 0 0 1px rgba(255, 95, 143, 0.3);
}

.hero-mock__export {
  margin-left: auto;
  min-width: 44px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 142, 117, 0.65);
  background: rgba(255, 95, 143, 0.16);
  color: #ffd7ca;
  font-size: 11px;
  font-weight: 700;
}

/* 样式说明：定义 .hero-media__caption 相关的样式规则。 */
.hero-media__caption {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* 样式说明：定义 .hero-media__caption span 相关的样式规则。 */
.hero-media__caption span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(68, 86, 130, 0.8);
  background: rgba(14, 20, 36, 0.78);
  color: #d6def2;
  font-size: 12px;
  font-weight: 700;
}

/* 样式说明：定义 .pay-page 相关的样式规则。 */
.pay-page {
  max-width: 720px;
  margin: 18px auto 0;
  padding: 0 20px 44px;
}

/* 样式说明：定义 .pay-stage 相关的样式规则。 */
.pay-stage {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: center;
  justify-items: center;
}

/* 样式说明：定义 .pay-copy 相关的样式规则。 */
.pay-copy {
  width: 100%;
  max-width: 620px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

/* 样式说明：定义 .pay-copy h1 相关的样式规则。 */
.pay-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.04em;
}

/* 样式说明：定义 .pay-sub 相关的样式规则。 */
.pay-sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  text-wrap: balance;
  font-size: 15px;
}

/* 样式说明：定义 .pay-meta 相关的样式规则。 */
.pay-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

/* 样式说明：定义 .pay-meta div 相关的样式规则。 */
.pay-meta div {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(55, 72, 116, 0.78);
  background: rgba(11, 16, 32, 0.68);
}

/* 样式说明：定义 .pay-meta dt 相关的样式规则。 */
.pay-meta dt {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

/* 样式说明：定义 .pay-meta dd 相关的样式规则。 */
.pay-meta dd {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

/* 样式说明：定义 .pay-status 相关的样式规则。 */
.pay-status {
  margin-top: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
}

/* 样式说明：定义 .pay-status__chip 相关的样式规则。 */
.pay-status__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 24, 42, 0.86);
  border: 1px solid rgba(73, 96, 152, 0.88);
  color: #dbe5ff;
  font-size: 13px;
  font-weight: 700;
}

/* 样式说明：定义 .pay-status p 相关的样式规则。 */
.pay-status p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  text-wrap: balance;
  text-align: center;
}

/* 样式说明：定义 .pay-panel 相关的样式规则。 */
.pay-panel {
  width: 100%;
  max-width: 560px;
}

/* 样式说明：定义 .pay-panel__surface 相关的样式规则。 */
.pay-panel__surface {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(60, 82, 138, 0.78);
  background:
    radial-gradient(340px 220px at 50% 0%, rgba(255, 95, 143, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(11, 15, 28, 0.92), rgba(7, 10, 18, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  display: grid;
  gap: 16px;
}

/* 样式说明：定义 .pay-qr-wrap 相关的样式规则。 */
.pay-qr-wrap {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(66, 80, 118, 0.8);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    #0b1020;
  min-height: 280px;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 20px 20px 22px;
}

/* 样式说明：定义 .pay-qr-method 相关的样式规则。 */
.pay-qr-method {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 199, 115, 0.14);
  border: 1px solid rgba(45, 212, 139, 0.38);
  color: #7af0bf;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* 样式说明：定义 .pay-qr-wrap img 相关的样式规则。 */
.pay-qr-wrap img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

/* 样式说明：定义 .pay-qr-placeholder 相关的样式规则。 */
.pay-qr-placeholder {
  color: #c6d2ee;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

/* 样式说明：定义 .pay-panel__section 相关的样式规则。 */
.pay-panel__section {
  display: grid;
  gap: 14px;
}

/* 样式说明：定义 .pay-panel__note 相关的样式规则。 */
.pay-panel__note {
  color: var(--muted);
  line-height: 1.65;
  font-size: 13px;
  text-align: center;
  max-width: 430px;
  justify-self: center;
}

/* 样式说明：定义 .pay-panel__footer 相关的样式规则。 */
.pay-panel__footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* 样式说明：定义 .pay-panel__footer .btn 相关的样式规则。 */
.pay-panel__footer .btn {
  min-width: 180px;
}

/* 样式说明：定义 .section 相关的样式规则。 */
.section {
  padding: 16px;
}

/* 样式说明：定义 .section h2 相关的样式规则。 */
.section h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

/* 样式说明：定义 .pricing-hint 相关的样式规则。 */
.pricing-hint {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.feature-grid,
/* 样式说明：定义 .pricing-grid 相关的样式规则。 */
.pricing-grid {
  display: grid;
  gap: 10px;
}

/* 样式说明：定义 .feature-grid 相关的样式规则。 */
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 样式说明：定义 .feature-grid article 相关的样式规则。 */
.feature-grid article {
  border: 1px solid #2b385d;
  background: #0f1528;
  border-radius: 12px;
  padding: 12px;
}

/* 样式说明：定义 .feature-grid h3 相关的样式规则。 */
.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

/* 样式说明：定义 .feature-grid p 相关的样式规则。 */
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* 样式说明：定义 .workflow ol 相关的样式规则。 */
.workflow ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

/* 样式说明：定义 .workflow li 相关的样式规则。 */
.workflow li {
  border: 1px solid #2d3a61;
  background: #0f1528;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 样式说明：定义 .workflow li span 相关的样式规则。 */
.workflow li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #1f2a4b;
  color: #fff;
  font-weight: 700;
}

/* 样式说明：定义 .pricing-grid 相关的样式规则。 */
.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 样式说明：定义 .price-card 相关的样式规则。 */
.price-card {
  border: 1px solid #2d395e;
  background: #0f1528;
  border-radius: 14px;
  padding: 12px;
}

/* 样式说明：定义 .price-card.pro 相关的样式规则。 */
.price-card.pro {
  border-color: #ff8c72;
  box-shadow: inset 0 0 0 1px rgba(255, 154, 84, 0.3);
}

/* 样式说明：定义 .price-head 相关的样式规则。 */
.price-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 8px;
}

/* 样式说明：定义 .price-head h3 相关的样式规则。 */
.price-head h3 {
  margin: 0;
  font-size: 20px;
}

/* 样式说明：定义 .price-head p 相关的样式规则。 */
.price-head p {
  margin: 0;
  color: #ffd9ba;
}

/* 样式说明：定义 .price-card ul 相关的样式规则。 */
.price-card ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

/* 样式说明：定义 .price-card li 相关的样式规则。 */
.price-card li {
  color: var(--muted);
  font-size: 14px;
}

/* 样式说明：定义 .faq details 相关的样式规则。 */
.faq details {
  border: 1px solid #2a3558;
  border-radius: 10px;
  background: #0f1528;
  padding: 10px;
}

.faq details + details { margin-top: 8px; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 8px 0 0; color: var(--muted); }

/* 样式说明：定义 .cta 相关的样式规则。 */
.cta {
  text-align: center;
}

.cta p { color: var(--muted); margin: 0; }
.cta .cta-actions { justify-content: center; }

/* 样式说明：定义 .footer 相关的样式规则。 */
.footer {
  max-width: 1120px;
  margin: 0 auto 26px;
  padding: 0 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #9aa7c8;
  font-size: 13px;
}

/* 样式说明：定义 .not-found-main 相关的样式规则。 */
.not-found-main {
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 0 14px 44px;
}

/* 样式说明：定义 .not-found-card 相关的样式规则。 */
.not-found-card {
  min-height: calc(100vh - 180px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(360px 260px at 10% 8%, rgba(255, 95, 143, 0.1), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 样式说明：定义 .not-found-copy 相关的样式规则。 */
.not-found-copy {
  max-width: 620px;
  display: grid;
  justify-items: center;
}

/* 样式说明：定义 .not-found-code 相关的样式规则。 */
.not-found-code {
  margin: 10px 0 0;
  font-size: clamp(72px, 11vw, 132px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #fff4ef;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

/* 样式说明：定义 .not-found-copy h1 相关的样式规则。 */
.not-found-copy h1 {
  max-width: 520px;
  margin-top: 14px;
}

/* 样式说明：定义 @media (max-width: 920px) 相关的样式规则。 */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { justify-content: flex-start; }
  /* 样式说明：定义 .hero-media 相关的样式规则。 */
  .hero-media {
    padding: 14px;
    justify-self: stretch;
    max-width: none;
  }
  .hero-media__frame {
    min-height: 208px;
  }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* 样式说明：定义 .pay-panel 相关的样式规则。 */
  .pay-panel {
    max-width: none;
  }
  .pay-page,
  /* 样式说明：定义 .pay-topbar 相关的样式规则。 */
  .pay-topbar {
    padding-left: 14px;
    padding-right: 14px;
  }
  .pay-meta { grid-template-columns: 1fr; }
  /* 样式说明：定义 .not-found-card 相关的样式规则。 */
  .not-found-card {
    min-height: auto;
  }
}

/* 样式说明：定义 @media (max-width: 640px) 相关的样式规则。 */
@media (max-width: 640px) {
  .topnav { display: none; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-media { padding: 12px; }
  .hero-media__frame { min-height: 192px; }
  .hero-mock__canvas { grid-template-columns: minmax(0, 1fr) 96px; min-height: 116px; }
  .hero-mock__thumb { width: 48px; }
  .hero-media__caption { gap: 6px; }
  .feature-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .pay-page { margin-top: 12px; }
  .pay-stage { min-height: auto; align-content: start; }
  .pay-copy h1 { font-size: 36px; }
  .pay-qr-wrap { min-height: 240px; }
  .pay-qr-wrap img { width: min(100%, 200px); }
  .footer { flex-direction: column; }
}
