:root {
  --bg: #eaf4fc;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f9ff;
  --ink: #0a1628;
  --muted: #3a5f85;
  --muted-dim: #5a7a9a;
  --line: rgba(0, 163, 255, 0.1);
  --line-strong: rgba(0, 163, 255, 0.18);
  --accent: #00a3ff;
  --accent-2: #00d1ff;
  --accent-steel: #3a5f85;
  --accent-dim: rgba(0, 163, 255, 0.08);
  --accent-glow: rgba(0, 163, 255, 0.22);
  --accent-gradient: linear-gradient(135deg, #00a3ff 0%, #00d1ff 100%);
  --blue: #00a3ff;
  --shadow: 0 20px 50px rgba(10, 22, 40, 0.08);
  --shadow-glow: 0 0 40px rgba(0, 163, 255, 0.14);
  --font-body: "Inter", "Noto Sans SC", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Noto Sans SC", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
  --radius: 0px;
  --top-h: 56px;
  --tab-h: 64px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --glass: blur(20px) saturate(120%);
  --on-accent: #ffffff;
  --btn-solid-hover: #2e4a62;
  --surface: rgba(234, 244, 252, 0.94);
  --highlight: #e0f7ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  padding-bottom: calc(var(--tab-h) + var(--safe-b) + 1.5rem);
  -webkit-font-smoothing: antialiased;
}

.noise {
  display: none;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 163, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.bg-orb-a {
  top: -20%;
  left: 50%;
  width: min(500px, 80vw);
  height: min(320px, 50vw);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 163, 255, 0.12) 0%, transparent 68%);
  animation: orbPulse 8s ease-in-out infinite;
}

.bg-orb-b {
  display: none;
}

@keyframes orbPulse {
  0%,
  100% {
    opacity: 0.75;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

.bg-orb-b {
  animation-name: orbPulseB;
}

@keyframes orbPulseB {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.app-top,
.app-main,
.tabbar {
  position: relative;
  z-index: 1;
}

/* Top bar */
.app-top {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--top-h);
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  background: var(--surface);
  backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--line);
}

.app-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: transparent;
}

.back-btn {
  width: 40px;
}

.top-join {
  flex-shrink: 0;
  min-height: 32px;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--ink);
  color: var(--on-accent);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.top-join:hover {
  background: var(--btn-solid-hover);
}

.top-join.is-active {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 8px;
}

.back-btn.hidden {
  visibility: hidden;
}

.back-btn:hover,
.icon-btn:hover {
  color: var(--ink);
  background: var(--accent-dim);
}

.app-main {
  min-height: calc(100vh - var(--top-h) - var(--tab-h) - var(--safe-b));
}

.view {
  display: none;
  animation: fadeUp 0.35s ease;
}

.view.is-active {
  display: block;
}

#view-home {
  padding: 0;
}

.home-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.view:not(#view-home) {
  padding: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MiroFish-style hero */
.mf-hero {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.25rem 2.75rem;
  overflow: hidden;
}

.mf-hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: min(600px, 90vw);
  height: min(400px, 60vw);
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse, rgba(0, 163, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse, rgba(58, 95, 133, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mf-hero-logo {
  width: min(160px, 38vw);
  height: auto;
  margin: 0 auto 1.75rem;
  background: transparent;
  position: relative;
  z-index: 1;
  opacity: 0;
  filter: drop-shadow(0 0 24px rgba(0, 163, 255, 0.2));
  animation: heroLogoIn 0.8s ease 0.1s forwards;
}

.mf-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  position: relative;
  z-index: 1;
  min-height: 1.2em;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.35s forwards;
}

.mf-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
}

.mf-title-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
  background: linear-gradient(135deg, #0a1628 0%, #00a3ff 45%, #00d1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mf-subtitle {
  margin: 0 auto 1.75rem;
  max-width: 28em;
  min-height: 2.8em;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.9s forwards;
}

.mf-subtitle.is-switching {
  animation: heroSubOut 0.35s ease forwards;
}

.mf-subtitle.is-switching-in {
  animation: heroSubIn 0.45s ease forwards;
}

.mf-subtitle .hero-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  vertical-align: text-bottom;
  animation: heroBlink 1s step-end infinite;
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroShine {
  to {
    background-position: 200% center;
  }
}

@keyframes heroLineOut {
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubOut {
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes heroSubIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBlink {
  50% {
    opacity: 0;
  }
}

.mf-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.mf-btn {
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

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

.mf-btn-outline {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.mf-btn-outline:hover {
  background: var(--accent-dim);
  border-color: rgba(0, 163, 255, 0.35);
  box-shadow: 0 4px 16px rgba(0, 163, 255, 0.1);
}

.mf-btn-solid {
  background: var(--accent-gradient);
  border: 1px solid transparent;
  color: var(--on-accent);
  box-shadow: 0 8px 20px rgba(0, 163, 255, 0.22);
}

.mf-btn-solid:hover {
  filter: brightness(1.03);
  box-shadow: 0 10px 28px rgba(0, 163, 255, 0.28);
}

/* Sections */
.mf-section {
  padding: 2.25rem 1.25rem;
  border-top: 1px solid var(--line);
  position: relative;
}

.mf-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(200px, 40%);
  height: 1px;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  opacity: 0.5;
  box-shadow: 0 0 16px var(--accent-glow);
}

.mf-section.mf-flow {
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
}

.mf-flow-grid {
  display: grid;
  gap: 0.75rem;
}

.mf-flow-item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mf-flow-item:hover {
  border-color: rgba(0, 163, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.08);
  transform: translateY(-2px);
}

.mf-flow-num {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--accent);
}

.mf-flow-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.mf-flow-item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-title-left,
.section-desc-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-desc-left {
  margin-bottom: 0;
  margin-top: 0.35rem;
  font-size: 0.88rem;
}

.mf-products .mf-section-title {
  margin-bottom: 0;
}

.page-intro {
  margin-bottom: 1rem;
}

.page-intro h2 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0a1628 0%, #00a3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-intro p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.mf-section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
}

.mf-section-title:not(.section-title-left)::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin: 0.85rem auto 0;
  background: var(--accent-gradient);
  border-radius: 2px;
  box-shadow: 0 0 14px var(--accent-glow);
}

.mf-section-desc {
  margin: 0 auto 1.75rem;
  max-width: 36em;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.mf-steps {
  display: grid;
  gap: 1rem;
}

.mf-step {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mf-step:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
}

.mf-num {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted-dim);
  letter-spacing: 0.1em;
}

.mf-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mf-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.mf-scenarios {
  display: grid;
  gap: 0.75rem;
}

.mf-scenario.is-featured {
  border-color: rgba(0, 163, 255, 0.28);
  background: linear-gradient(180deg, rgba(0, 163, 255, 0.08) 0%, #ffffff 100%);
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.08);
}

.mf-scenario.is-featured > span {
  color: var(--accent);
}

.mf-scenario {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mf-scenario:hover {
  border-color: rgba(0, 163, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.08);
}

.mf-scenario > span {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--muted-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mf-scenario h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mf-scenario p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.mf-about {
  text-align: center;
  padding-bottom: 2.5rem;
}

.mf-about-text {
  margin: 0 auto 1rem;
  max-width: 40em;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.mf-about-slogan {
  margin: 0;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--accent);
  letter-spacing: 0.2em;
  text-shadow: none;
}

/* Blocks on home */
.block {
  padding: 2rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.block-head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.link-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
}

.link-btn:hover {
  color: var(--accent);
}

/* Products */
.product-grid {
  display: grid;
  gap: 0.75rem;
}

.product-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  border-color: rgba(0, 163, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 163, 255, 0.1);
}

.product-card {
  cursor: pointer;
}

.product-card-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(15, 23, 42, 0.06);
}

/* —— 商品详情（电商详情页布局） —— */
.view.pd-page {
  padding: 0;
  max-width: none;
  margin: 0;
}

body:has(#view-product.is-active) {
  padding-bottom: var(--safe-b);
}

body:has(#view-product.is-active) .tabbar {
  display: none;
}

.pd-shell {
  padding-bottom: calc(4.75rem + var(--safe-b));
  background: #f3f7fb;
}

.pd-media {
  background: #fff;
}

.pd-stage-wrap {
  position: relative;
  background: #f5f7fa;
}

.pd-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: min(100vw, 560px);
  overflow: hidden;
  background: #f5f7fa;
  touch-action: pan-y;
}

.pd-stage img,
.pd-stage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f5f7fa;
  user-select: none;
  -webkit-user-drag: none;
}

.pd-stage video {
  object-fit: contain;
  background: #0b1220;
}

.pd-stage-empty {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 220px;
  color: var(--muted);
  font-size: 0.9rem;
  background: #edf3f9;
}

.pd-media-count {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 3;
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.pd-thumbs {
  display: flex;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem 0.65rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #fff;
}

.pd-thumbs::-webkit-scrollbar {
  display: none;
}

.pd-thumbs button {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid rgba(10, 22, 40, 0.1);
  border-radius: 6px;
  overflow: hidden;
  background: #f0f4f8;
  cursor: pointer;
}

.pd-thumbs button.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.pd-thumbs img,
.pd-thumbs video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.pd-thumbs .pd-thumb-video::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.62rem;
}

.pd-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  color: #fff;
  background: linear-gradient(105deg, #0a6ec4, #00a3ff 55%, #3cc8ff);
}

.pd-price {
  margin: 0;
  font-size: clamp(1.65rem, 5.2vw, 2rem);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.1;
}

.pd-price span {
  margin-left: 0.28rem;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.92;
}

.pd-meta {
  margin: 0.28rem 0 0;
  font-size: 0.74rem;
  opacity: 0.9;
}

.pd-price-side {
  display: grid;
  justify-items: end;
  text-align: right;
  gap: 0.12rem;
}

.pd-price-side strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.pd-price-side span {
  font-size: 0.72rem;
  opacity: 0.9;
}

.pd-info {
  padding: 0.95rem 1rem 0.9rem;
  background: #fff;
}

.pd-title {
  margin: 0;
  font-size: clamp(1.05rem, 3.6vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}

.pd-assure {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.pd-assure li {
  position: relative;
  padding-left: 1rem;
  color: #3d5a73;
  font-size: 0.74rem;
}

.pd-assure li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: rgba(0, 163, 255, 0.18);
  box-shadow: inset 0 0 0 1.5px #00a3ff;
}

.pd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.pd-chips.hidden {
  display: none;
}

.pd-chips span {
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: #f0f6fb;
  color: var(--accent-steel);
  font-size: 0.7rem;
}

.pd-chips span.is-video {
  background: rgba(0, 163, 255, 0.12);
  color: #0677c4;
  cursor: pointer;
}

.pd-block {
  margin-top: 0.45rem;
  padding: 0.95rem 1rem;
  background: #fff;
}

.pd-block-intro.hidden {
  display: none;
}

.pd-block-intro .pd-desc {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.pd-block-detail {
  padding: 0.85rem 0 0;
}

.pd-block-detail .pd-block-head {
  padding: 0 1rem 0.7rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.pd-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.pd-block-head h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.pd-block-head span {
  color: var(--muted-dim);
  font-size: 0.72rem;
}

.pd-detail-pics {
  display: grid;
  gap: 0;
  background: #fff;
}

.pd-detail-pics.hidden {
  display: none;
}

.pd-block-detail.hidden {
  display: none;
}

.pd-detail-pics img,
.pd-detail-inline-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  background: #f5f7fa;
}

.pd-body .product-detail-video video,
.product-detail-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: none;
  object-fit: contain;
  background: #000;
}

.pd-body {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem 1rem 1.1rem;
}

.pd-body:empty {
  display: none;
}

.pd-tutorial-link {
  margin: 0;
  padding: 0 1rem 1.25rem;
  font-size: 0.9rem;
}

.pd-tutorial-link.hidden {
  display: none;
}

.pd-tutorial-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.pd-tutorial-link a:hover {
  text-decoration: underline;
}

.pd-body p {
  margin: 0;
  line-height: 1.75;
  color: var(--ink);
  white-space: pre-wrap;
}

.pd-body .product-detail-video {
  margin: 0.1rem 0;
  border-radius: 0;
  overflow: hidden;
  background: #0b1220;
}

.pd-video-label {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.pd-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: auto auto 1.15fr 1.3fr;
  gap: 0.4rem;
  align-items: center;
  padding: 0.5rem 0.65rem calc(0.5rem + var(--safe-b));
  background: #fff;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: 0 -6px 20px rgba(10, 22, 40, 0.05);
}

.pd-page:not(.is-active) .pd-bar {
  display: none;
}

.pd-bar-icon {
  display: grid;
  justify-items: center;
  gap: 0.06rem;
  min-width: 2.45rem;
  padding: 0.08rem;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.pd-bar-icon svg {
  width: 22px;
  height: 22px;
}

.pd-bar-icon span {
  font-size: 0.62rem;
  color: var(--muted);
}

.pd-bar-cart,
.pd-bar-buy {
  height: 42px;
  border: none;
  border-radius: 22px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.pd-bar-cart {
  background: #dff0fc;
  color: #0a5ea3;
}

.pd-bar-buy {
  background: linear-gradient(105deg, #0a7ad4, #00a3ff);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 163, 255, 0.28);
}

.pd-bar-cart:active,
.pd-bar-buy:active,
.pd-bar-icon:active {
  transform: scale(0.98);
}

.product-card .meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-dim);
}

.tag {
  display: inline-flex;
  padding: 0.1rem 0.45rem;
  border: 1px solid rgba(0, 163, 255, 0.18);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.tag.vip {
  color: var(--ink);
  border-color: var(--line-strong);
}

.product-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
  color: var(--ink);
}

.price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.card-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--on-accent);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--btn-solid-hover);
  border-color: var(--btn-solid-hover);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--accent-dim);
  border-color: var(--ink);
}

.btn-fav {
  min-width: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  color: var(--muted);
}

.btn-fav.is-on {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.4);
}

/* VIP */
.vip-row,
.vip-grid,
.recharge-grid {
  display: grid;
  gap: 0.75rem;
}

.vip-card,
.recharge-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.vip-card h3,
.recharge-card strong {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.vip-card .vip-price,
.recharge-card .amt {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.vip-card ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1.1rem;
  list-style: disc;
  font-size: 0.88rem;
  color: var(--muted);
}

.vip-card ul li {
  margin-bottom: 0.25rem;
}

.vip-card ul li::marker {
  color: var(--muted-dim);
}

.vip-card .btn,
.recharge-card .btn {
  width: 100%;
}

/* Category */
.cat-tabs {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

.cat-tabs button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.88rem;
}

.cat-tabs button.is-active {
  background: var(--ink);
  color: var(--on-accent);
  border-color: var(--ink);
}

/* Cart */
.cart-list {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.cart-item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.cart-item .ops {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-item .ops button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--ink);
  border-radius: 6px;
  cursor: pointer;
}

.cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--tab-h) + var(--safe-b));
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
  backdrop-filter: var(--glass);
}

.cart-total strong {
  font-size: 1.1rem;
  font-family: var(--font-mono);
  color: var(--accent);
}

.empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted-dim);
  border: 1px dashed rgba(0, 163, 255, 0.22);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

/* Mine */
.mine-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 163, 255, 0.06);
  margin-bottom: 0.85rem;
}

.mine-browse {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(0, 163, 255, 0.12), transparent 55%),
    var(--bg-card);
}

.mine-card > div {
  flex: 1;
}

.btn-login {
  flex-shrink: 0;
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
}

.btn-logout {
  width: 100%;
  margin-top: 0.85rem;
  min-height: 44px;
  font-size: 0.88rem;
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.06);
}

.btn-logout:hover {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.5);
}

.btn.hidden,
.btn-logout.hidden {
  display: none;
}

.mine-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: transparent;
}

.mine-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
}

.mine-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.mine-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.mine-stats button {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 0.85rem 0.4rem;
  cursor: pointer;
  color: var(--ink);
}

.mine-stats em {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-mono);
  color: var(--accent);
}

.mine-stats span {
  font-size: 0.75rem;
  color: var(--muted);
}

.mine-menu {
  display: grid;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.mine-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 1rem;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
}

.mine-menu button:last-child {
  border-bottom: none;
}

.mine-menu i {
  font-style: normal;
  color: var(--muted-dim);
}

.mine-menu-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  background: transparent;
  border: none;
  overflow: visible;
}

.mine-menu-grid button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
}

.mine-menu-grid button:last-child {
  border-bottom: 1px solid var(--line);
}

.mine-tip {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-dim);
}

.panel {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  color: var(--muted);
}

.balance-hero {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  margin-bottom: 1rem;
}

.balance-hero p {
  margin: 0;
  color: var(--muted);
}

.balance-hero strong {
  display: inline-block;
  margin: 0.35rem 0.25rem 0 0;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-mono);
  background: linear-gradient(135deg, #00a3ff, #00d1ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ledger,
.note-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ledger li,
.note-list li {
  padding: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.note-form {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.note-form select,
.note-form textarea,
.modal-body input,
.modal-body textarea,
.modal-body select {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f0f9ff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.note-form select:focus,
.note-form textarea:focus,
.modal-body input:focus,
.modal-body textarea:focus,
.modal-body select:focus {
  outline: none;
  border-color: rgba(0, 163, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.1);
  background: var(--highlight);
}

.note-list .meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

/* Delivery */
.delivery-hero {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 163, 255, 0.06);
  margin-bottom: 1rem;
}

.delivery-hero h2 {
  margin: 0.35rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.delivery-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.ok-tag {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 163, 255, 0.1);
  border: 1px solid rgba(0, 163, 255, 0.22);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.delivery-files {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.file-card-link a.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.delivery-support {
  margin: 0 0 1rem;
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.14), rgba(14, 116, 144, 0.08));
  text-align: center;
}

.delivery-support.hidden {
  display: none;
}

.delivery-support-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #86efac;
}

.delivery-support h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.25rem;
}

.delivery-support-wx {
  margin: 0.65rem 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #e2e8f0;
  word-break: break-all;
}

.delivery-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0.75rem 0 0.35rem;
}

.delivery-support-actions .btn {
  min-width: 7.5rem;
}

.delivery-support-qr {
  margin: 0.85rem auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.delivery-support-qr.hidden {
  display: none;
}

.delivery-support-qr img {
  border-radius: 10px;
  background: #fff;
  padding: 0.4rem;
}

.delivery-official {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 163, 255, 0.35);
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.12), rgba(0, 163, 255, 0.04));
}

.delivery-official .btn-primary:disabled,
.delivery-official .btn-ghost:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.delivery-official.hidden {
  display: none;
}

.delivery-official p {
  margin: 0.2rem 0 0;
}

.delivery-official-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.delivery-official-actions .btn {
  min-width: 7.5rem;
}

.pay-bg-tip {
  position: fixed;
  left: 50%;
  bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: min(92vw, 28rem);
  padding: 0.55rem 0.7rem 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 163, 255, 0.35);
  background: rgba(12, 22, 36, 0.92);
  color: #e8f4ff;
  font-size: 0.82rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.pay-bg-tip.hidden {
  display: none;
}

.pay-bg-tip .btn {
  flex-shrink: 0;
}

.file-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.file-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.file-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.file-card .ext {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: rgba(0, 163, 255, 0.08);
  border: 1px solid rgba(0, 163, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--accent);
}

.join-shell {
  padding-bottom: 0.5rem;
}

.join-hero {
  position: relative;
  text-align: center;
  padding: 1.25rem 0.5rem 1.75rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.join-hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(420px, 90vw);
  height: 200px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse, rgba(0, 163, 255, 0.12) 0%, transparent 72%),
    radial-gradient(ellipse, rgba(58, 95, 133, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.join-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 163, 255, 0.18));
}

.join-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.join-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0a1628 0%, #00a3ff 50%, #00d1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.join-lead {
  margin: 0 auto;
  max-width: 22em;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.join-price {
  margin: 1rem 0 0.85rem;
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
}

.join-price strong {
  font-size: clamp(2rem, 8vw, 2.6rem);
  color: var(--accent);
  font-weight: 700;
}

.join-price span {
  margin-left: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.join-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 0.35rem;
}

.join-benefit-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.join-benefit-list article {
  padding: 0.95rem 0 0.2rem;
  border-top: 1px solid var(--line);
}

.join-benefit-list article > span {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.join-benefit-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.join-benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.join-pay-block .tb-btn {
  margin-top: 0.85rem;
}

.join-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.join-block-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0a1628 0%, #00a3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.join-block-desc {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted-dim);
}

.join-roles .mf-scenario h3 {
  font-size: 1rem;
}

.join-foot {
  text-align: center;
  padding: 1.75rem 0 0.5rem;
  border-top: 1px solid var(--line);
}

.join-slogan {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--accent);
}

.join-contact {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted-dim);
}

.delivery-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}

.deliveries-list {
  display: grid;
  gap: 0.75rem;
}

.delivery-item {
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.delivery-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.delivery-item p {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ICP 备案号 */
.site-beian {
  margin: 0;
  text-align: center;
  font-size: 0.68rem;
  line-height: 1.4;
}

.site-beian a {
  color: var(--muted-dim);
  text-decoration: none;
}

.site-beian a:hover {
  color: var(--muted);
  text-decoration: underline;
}

.site-beian-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--tab-h) + var(--safe-b));
  z-index: 39;
  padding: 0.28rem 0.5rem;
  background: rgba(234, 244, 252, 0.96);
  border-top: 1px solid var(--line);
}

body:has(#view-product.is-active) .site-beian-bar {
  display: none;
}

/* Tabbar */
.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  height: calc(var(--tab-h) + var(--safe-b));
  padding: 0 0.25rem var(--safe-b);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border-top: 1px solid var(--line);
  backdrop-filter: var(--glass);
}

.tab {
  position: relative;
  border: none;
  background: transparent;
  color: var(--muted-dim);
  display: grid;
  place-items: center;
  gap: 0.15rem;
  padding: 0.45rem 0.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.tab.is-active {
  color: var(--ink);
}

.tab.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 28px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--ink);
  border-radius: 0 0 2px 2px;
}

.tab svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.tab span {
  font-size: 0.7rem;
  font-family: var(--font-mono);
}

.badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 22px);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: var(--on-accent);
  font-size: 0.65rem;
  line-height: 16px;
  font-weight: 700;
  font-family: var(--font-mono);
  box-shadow: 0 0 10px var(--accent-glow);
}

.badge.hidden {
  display: none;
}

/* Modal */
.modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: calc(100vw - 1.5rem);
}

.modal::backdrop {
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(4px);
}

.modal-panel {
  width: min(420px, 92vw);
  margin: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.modal-head,
.modal-body,
.modal-foot {
  padding: 0.9rem 1rem;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.modal-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.icon-close {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
}

.modal-body {
  display: grid;
  gap: 0.75rem;
}

.modal-body label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.code-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.btn-sms {
  white-space: nowrap;
  min-height: 42px;
  padding: 0 0.75rem;
  font-size: 0.8rem;
}

.btn-sms:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.login-wechat-body {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
}

.wx-login-qr {
  min-height: 220px;
  min-width: 220px;
  display: grid;
  place-items: center;
}

.wx-login-qr iframe {
  max-width: 100%;
}

.wx-login-placeholder {
  margin: 0;
  color: var(--muted, #6b7280);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 16rem;
}

#btn-wx-demo {
  width: min(100%, 220px);
}

.check {
  display: flex !important;
  align-items: center;
  gap: 0.45rem;
}

.check input {
  width: auto;
}

.modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
}

.pay-modal-body {
  text-align: center;
}

.pay-item {
  margin: 0;
  font-weight: 600;
}

.pay-hint {
  margin: 0.35rem 0 0;
  line-height: 1.45;
}

.pay-amount {
  margin: 0;
  color: var(--muted);
}

.pay-amount strong {
  color: var(--accent);
  font-size: 1.25rem;
  font-family: var(--font-mono);
}

.qr-box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
  margin: 0 auto;
  padding: 0.6rem;
  background: #fff;
  border-radius: 8px;
}

.pay-inquiry {
  margin: 0.55rem 0 0;
  padding: 0.7rem 0.8rem;
  text-align: left;
  white-space: pre-wrap;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ink);
  background: #f4f8fc;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 10px;
  font-family: var(--font-mono);
}

.pay-inquiry.hidden {
  display: none;
}

.support-wx-line {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink);
}

.support-wx-line strong {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent-steel);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.support-actions .btn {
  min-width: 8.5rem;
}

.support-qr-box img,
.delivery-support-qr img {
  width: min(68vw, 200px);
  height: min(68vw, 200px);
  object-fit: contain;
}

.support-qr-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.support-qr-item {
  margin: 0;
  text-align: center;
}

.support-qr-item figcaption {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.72);
}

.delivery-support-actions {
  margin: 0.65rem 0 0.85rem;
}

.pay-qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
}

.pay-epay-actions {
  display: grid;
  gap: 0.55rem;
  margin: 0.75rem 0 0.4rem;
}

.pay-epay-actions.hidden,
.pay-qr-grid.hidden {
  display: none;
}

.pay-epay-actions .btn {
  width: 100%;
}

.qr-box-small {
  margin-top: 0.35rem;
  padding: 0.4rem;
}

.hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

code {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.18);
  color: var(--accent);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* Tenbin-style home */
.tb-home {
  padding-bottom: 1rem;
}

.tb-hero {
  padding: 2rem 1.25rem 2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.tb-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  width: min(480px, 90vw);
  height: min(320px, 55vw);
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: tbGlowPulse 6s ease-in-out infinite;
}

@keyframes tbGlowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

.tb-hero > * {
  position: relative;
  z-index: 1;
}

.tb-hero-fx {
  position: absolute !important;
  inset: 0;
  z-index: 0 !important;
  pointer-events: none;
}

.tb-hero-fx canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 700px) {
  .tb-hero {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .tb-hero .tb-headline,
  .tb-hero .tb-lead {
    max-width: 52%;
  }
}

.tb-hero-logo {
  width: 96px;
  height: 96px;
  margin: 0 0 1.25rem;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(0, 163, 255, 0.2));
  opacity: 0;
  animation: heroLogoIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.tb-eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted-dim);
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.2s forwards;
}

.tb-headline-main {
  display: block;
  font-size: clamp(2.2rem, 9vw, 3.6rem);
  color: var(--ink);
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.tb-headline-sub {
  display: block;
  margin-top: 0.65rem;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  color: var(--muted);
  font-weight: 400;
  opacity: 0;
  animation: heroFadeUp 0.75s ease 0.5s forwards;
}

.tb-lead {
  margin: 0 0 1.75rem;
  max-width: 34em;
  min-height: 3em;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.65s forwards;
}

.tb-lead.is-switching-in {
  animation: heroSubIn 0.35s ease forwards;
}

.tb-cta .tb-btn {
  opacity: 0;
  animation: heroFadeUp 0.65s ease forwards;
}

.tb-cta .tb-btn:nth-child(1) {
  animation-delay: 1.15s;
}

.tb-cta .tb-btn:nth-child(2) {
  animation-delay: 1.28s;
}

.tb-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tb-reveal.is-visible .tb-compare-row {
  animation: heroFadeUp 0.55s ease forwards;
  opacity: 0;
}

.tb-reveal.is-visible .tb-compare-row:nth-child(2) { animation-delay: 0.05s; }
.tb-reveal.is-visible .tb-compare-row:nth-child(3) { animation-delay: 0.12s; }
.tb-reveal.is-visible .tb-compare-row:nth-child(4) { animation-delay: 0.19s; }

.tb-reveal.is-visible .tb-trust-grid article,
.tb-reveal.is-visible .tb-highlights article,
.tb-reveal.is-visible .tb-scenarios article {
  animation: heroFadeUp 0.55s ease forwards;
  opacity: 0;
}

.tb-reveal.is-visible .tb-trust-grid article:nth-child(1),
.tb-reveal.is-visible .tb-highlights article:nth-child(1),
.tb-reveal.is-visible .tb-scenarios article:nth-child(1) { animation-delay: 0.08s; }
.tb-reveal.is-visible .tb-trust-grid article:nth-child(2),
.tb-reveal.is-visible .tb-highlights article:nth-child(2),
.tb-reveal.is-visible .tb-scenarios article:nth-child(2) { animation-delay: 0.16s; }
.tb-reveal.is-visible .tb-trust-grid article:nth-child(3),
.tb-reveal.is-visible .tb-highlights article:nth-child(3),
.tb-reveal.is-visible .tb-scenarios article:nth-child(3) { animation-delay: 0.24s; }
.tb-reveal.is-visible .tb-scenarios article:nth-child(4) { animation-delay: 0.32s; }

.tb-stat em {
  transition: transform 0.3s ease;
  opacity: 0;
}

.tb-reveal.is-visible .tb-stat em {
  animation: tbStatPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tb-stat:nth-child(1) em { animation-delay: 0.05s; }
.tb-stat:nth-child(2) em { animation-delay: 0.12s; }
.tb-stat:nth-child(3) em { animation-delay: 0.19s; }
.tb-stat:nth-child(4) em { animation-delay: 0.26s; }

@keyframes tbStatPop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tb-scenarios .is-featured {
  position: relative;
}

.tb-reveal.is-visible .tb-scenarios .is-featured::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(0, 163, 255, 0.2);
  pointer-events: none;
  animation: tbBorderPulse 2.8s ease-in-out infinite;
}

@keyframes tbBorderPulse {
  0%,
  100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.tb-end.is-visible .tb-btn {
  opacity: 0;
  animation: heroFadeUp 0.55s ease forwards;
}

.tb-end.is-visible .tb-btn:nth-child(1) {
  animation-delay: 0.12s;
}

.tb-end.is-visible .tb-btn:nth-child(2) {
  animation-delay: 0.22s;
}

.tb-products .product-card {
  opacity: 0;
  transform: translateY(16px);
}

.tb-products.is-visible .product-card {
  animation: heroFadeUp 0.55s ease forwards;
}

.tb-products.is-visible .product-card:nth-child(1) { animation-delay: 0.06s; }
.tb-products.is-visible .product-card:nth-child(2) { animation-delay: 0.12s; }
.tb-products.is-visible .product-card:nth-child(3) { animation-delay: 0.18s; }
.tb-products.is-visible .product-card:nth-child(4) { animation-delay: 0.24s; }

.tb-lead .hero-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: var(--muted);
  vertical-align: text-bottom;
  animation: heroBlink 1s step-end infinite;
}

.tb-headline {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.tb-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tb-cta-center {
  justify-content: center;
}

.tb-btn {
  min-height: 44px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

a.tb-btn {
  color: inherit;
}

.tb-btn-fill {
  background: var(--ink);
  color: var(--on-accent);
  border: 1px solid var(--ink);
}

.tb-btn-fill:hover {
  background: var(--btn-solid-hover);
  border-color: var(--btn-solid-hover);
}

.tb-btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.tb-btn-line:hover {
  border-color: var(--ink);
}

.tb-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.tb-stat {
  padding: 1.35rem 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tb-stat:nth-child(2n) {
  border-right: none;
}

.tb-stat:nth-last-child(-n + 2) {
  border-bottom: none;
}

.tb-stat em {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
}

.tb-stat span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.tb-section {
  padding: 2.5rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.tb-h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.tb-desc {
  margin: 0 0 1.5rem;
  max-width: 36em;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.tb-compare {
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.tb-compare-head,
.tb-compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.tb-compare-head {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.tb-compare-row:last-child {
  border-bottom: none;
}

.tb-compare-row > span:first-child {
  color: var(--muted);
}

.tb-compare-row strong {
  color: var(--ink);
  font-weight: 600;
}

.tb-compare-row > span:last-child {
  color: var(--muted-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(58, 95, 133, 0.35);
}

.tb-trust-grid {
  display: grid;
  gap: 0.75rem;
}

.tb-trust-grid article {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.tb-trust-grid span {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.tb-trust-grid p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.tb-highlights h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}

.tb-scenarios {
  display: grid;
  gap: 0.75rem;
}

.tb-scenarios-grid {
  grid-template-columns: repeat(2, 1fr);
}

.tb-scenarios-grid article {
  min-height: 8.5rem;
  display: flex;
  flex-direction: column;
}

.tb-scenarios article {
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.tb-scenarios article.is-featured {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(0, 163, 255, 0.06) 0%, var(--bg-card) 100%);
}

.tb-scenarios span {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.tb-scenarios h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}

.tb-scenarios p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

.tb-end {
  text-align: center;
  padding-bottom: 3rem;
}

.tb-end .tb-desc {
  margin-left: auto;
  margin-right: auto;
}

.tb-foot {
  margin: 1.5rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.inline-doc-link {
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.inline-doc-link:hover {
  text-decoration: underline;
}

.join-doc {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
}

.join-doc a {
  color: var(--accent);
  text-decoration: none;
}

.join-doc a:hover {
  text-decoration: underline;
}

.beian-sep {
  margin: 0 0.35rem;
  color: var(--muted-dim);
}

.tb-products .section-head {
  margin-bottom: 1rem;
}

.tb-products .tb-h2,
.tb-products .tb-desc {
  text-align: left;
  margin-left: 0;
}

/* Responsive */
@media (min-width: 700px) {
  .tb-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .tb-stat {
    border-right: 1px solid var(--line);
    border-bottom: none;
  }

  .tb-stat:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .tb-stat:last-child {
    border-right: none;
  }

  .tb-scenarios-grid {
    gap: 0.85rem;
  }

  .tb-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mf-flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mf-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .mf-scenarios {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .vip-row,
  .vip-grid,
  .recharge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .mf-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .mf-scenarios {
    grid-template-columns: repeat(4, 1fr);
  }

  .mf-scenario.is-featured {
    grid-column: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tb-reveal,
  .tb-hero-logo,
  .tb-eyebrow,
  .tb-headline-main,
  .tb-headline-sub,
  .tb-lead,
  .tb-cta .tb-btn,
  .tb-stat em {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

.order-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.order-list li {
  padding: 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.order-row .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.order-row .meta strong {
  font-size: 0.95rem;
}

.order-status {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  white-space: nowrap;
}

.order-status.is-paid {
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.35);
}

.order-status.is-pending {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.35);
}

.order-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.order-actions {
  margin-top: 0.65rem;
  display: flex;
  justify-content: flex-end;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
}

.pay-waiting {
  color: var(--accent);
  font-weight: 600;
}

.pay-order-meta {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.pay-order-code {
  font-family: var(--font-mono);
  color: var(--ink);
  word-break: break-all;
}

.support-card {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.support-qr img {
  margin: 0 auto 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.support-label {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.support-wechat {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
}

.support-order {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.support-items {
  margin-top: 1rem;
  text-align: left;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.support-items ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.pay-modal-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}
