*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;scroll-behavior:smooth}
body{font-family:system-ui,-apple-system,"Segoe UI",Roboto,"PingFang SC","Microsoft YaHei",sans-serif;-webkit-font-smoothing:antialiased}
img,svg{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:inherit}
button,input,select,textarea{font:inherit;color:inherit;border:none;background:none}
button{cursor:pointer}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}
ol,ul{list-style:none}
table{border-collapse:collapse}
.icon{display:inline-block;vertical-align:-.125em;width:1em;height:1em;fill:currentColor}

﻿/* T10 UI11 玻璃拟态 · 结构13 — 阶段一框架 */
:root {
  --g-bg1: #1a1a2e;
  --g-bg2: #16213e;
  --g-glass: rgba(255, 255, 255, 0.08);
  --g-border: rgba(255, 255, 255, 0.18);
  --g-text: #F0F0F0;
  --g-muted: rgba(240, 240, 240, 0.65);
  --g-accent: #A78BFA;
  --g-accent2: #E879F9;
  --g-glow: rgba(167, 139, 250, 0.45);
  --nav-h: 56px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--g-text);
  background: linear-gradient(165deg, var(--g-bg1) 0%, var(--g-bg2) 50%, #0f0f1a 100%);
  min-height: 100vh;
  padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
}

.container { width: 100%; max-width: 1040px; margin: 0 auto; padding: 0 18px; }
.shell-note { margin: 0; padding: 20px; text-align: center; color: var(--g-muted); font-size: 13px; border: 1px dashed var(--g-border); border-radius: 12px; }
.shell-z { border-top: 1px solid var(--g-border); }

.navbar {
  display: block !important;
  padding: 0 !important;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 33, 62, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g-border);
}
.nav-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: var(--nav-h);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--g-text); font-weight: 600; }
.logo-glass {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--g-glass);
  border: 1px solid var(--g-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--g-accent);
}
.btn-nav-cta {
  display: none; padding: 8px 16px; background: linear-gradient(135deg, #8B5CF6, var(--g-accent));
  color: #fff; text-decoration: none; font-size: 13px; font-weight: 600; border-radius: 10px;
}
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border: 1px solid var(--g-border); background: var(--g-glass);
  border-radius: 10px; cursor: pointer; padding: 0 11px;
}
.nav-toggle span { display: block; height: 2px; background: var(--g-text); }
.nav-links {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(22, 33, 62, 0.97); backdrop-filter: blur(12px);
  border: 1px solid var(--g-border); border-top: none; flex-direction: column; padding: 8px 0; z-index: 99;
}
.nav-links.open { display: flex; }
.nav-links a { padding: 12px 20px; color: var(--g-text); text-decoration: none; }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .btn-nav-cta { display: inline-flex; align-items: center; }
  .nav-links {
    display: flex !important; position: static; flex-direction: row; border: none; background: transparent;
    flex: 1; justify-content: center; gap: 22px;
  }
  body { padding-bottom: 0; }
  .float-bottom { display: none !important; }
}

.section {
  position: relative;
  padding: 52px 0;
  overflow: hidden;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(232, 121, 249, 0.06) 0%, transparent 40%),
    linear-gradient(115deg, transparent 48%, rgba(255, 255, 255, 0.02) 50%, transparent 52%);
  background-size: 100% 100%, 100% 100%, 120px 100%;
  pointer-events: none;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }
#trust.section > .container { z-index: 2; }

/* M1 Hero */
.hero { position: relative; overflow: hidden; min-height: 82vh; display: flex; flex-direction: column; padding-bottom: 40px; }
.hero-blob {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.35) 0%, transparent 70%);
  top: -80px; right: -60px; z-index: 0; pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.35; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,26,46,0.75) 0%, rgba(22,33,62,0.92) 100%); z-index: 1; }
.compliance-bar {
  position: relative; z-index: 5;
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 18px; font-size: 12px; color: var(--g-muted);
  background: var(--g-glass); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g-border);
}
.compliance-bar i { color: var(--g-accent); flex-shrink: 0; margin-top: 2px; }
.compliance-x { margin-left: auto; border: none; background: none; color: var(--g-muted); font-size: 22px; cursor: pointer; }
.hero-stack { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; padding-top: 24px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px; }
.hp-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; font-size: 12px; font-weight: 600;
  color: rgba(255, 255, 255, 0.88); border-radius: 999px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.hp-pill i { color: var(--g-accent); font-size: 11px; }
.glass {
  background: var(--g-glass); backdrop-filter: blur(16px);
  border: 1px solid var(--g-border); border-radius: 14px;
}
.urgent-bar { padding: 12px 16px; font-size: 14px; margin-bottom: 20px; text-align: center; position: relative; }
.urgent-bar--pulse { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.35); animation: urgentPulse 2.8s ease-out infinite; }
@keyframes urgentPulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.35); }
  70% { box-shadow: 0 0 0 12px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}
.urg-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #4ADE80;
  margin-right: 8px; vertical-align: middle; animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.urgent-bar i { margin-right: 8px; color: #FBBF24; }
.hero-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; max-width: 420px; margin-left: auto; margin-right: auto; }
.hero-kpi { padding: 12px 10px; text-align: center; border-radius: 12px; }
.hk-v { display: block; font-size: 1.35rem; font-weight: 800; color: var(--g-accent); }
.hk-l { font-size: 11px; color: var(--g-muted); }
.btn-glass-outline { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12); }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: ""; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: shineMove 3.5s ease-in-out infinite;
}
@keyframes shineMove { 0% { left: -60%; } 40%, 100% { left: 120%; } }
.hero-footnote { margin: 18px 0 0; font-size: 12px; line-height: 1.6; color: rgba(240, 240, 240, 0.5); text-align: center; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-footnote i { color: var(--g-accent); margin-right: 6px; }
.hero-h1 { margin: 0 0 14px; font-size: clamp(28px, 6vw, 46px); line-height: 1.15; font-weight: 800; }
.grad-txt {
  display: block; margin-top: 6px;
  background: linear-gradient(90deg, #C4B5FD, #A78BFA, #F0ABFC);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { margin: 0 0 24px; color: var(--g-muted); font-size: 16px; max-width: 560px; }
.hero-lead strong { color: rgba(255, 255, 255, 0.92); font-weight: 700; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-glass {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 24px; border-radius: 12px; text-decoration: none; font-size: 15px; font-weight: 600;
  border: 1px solid var(--g-border); background: var(--g-glass); backdrop-filter: blur(12px); color: var(--g-text);
}
.btn-glass:hover { border-color: var(--g-accent); color: #fff; }
.btn-glass-solid {
  background: linear-gradient(135deg, #7C3AED, var(--g-accent));
  border: none; color: #fff;
}
.btn-glass-solid:hover { opacity: 0.95; color: #fff; }

.gh { text-align: center; margin-bottom: 28px; }
.gh h2 { margin: 0 0 8px; font-size: clamp(22px, 4vw, 28px); }
.gh p { margin: 0; color: var(--g-muted); font-size: 15px; }

/* M3 */
.trust-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.trust-dim { position: absolute; inset: 0; background: rgba(15,15,26,0.88); z-index: 1; }
#trust.section { position: relative; overflow: hidden; padding: 52px 0; }
.trust-c { position: relative; z-index: 2; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.glass-card {
  background: var(--g-glass); backdrop-filter: blur(16px);
  border: 1px solid var(--g-border); border-radius: 14px; padding: 20px 14px; text-align: center;
}
.glass-card .ti-num { display: block; font-size: 1.75rem; font-weight: 700; color: var(--g-accent); }
.glass-card small { display: block; margin-top: 6px; font-size: 13px; color: var(--g-muted); }
.glass-card--lift { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s; }
.glass-card--lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.45);
}
.card-hint { display: block; margin-top: 10px; font-size: 11px; color: rgba(240, 240, 240, 0.42); line-height: 1.4; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 24px 0; }
.tb-item {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--g-border); font-size: 13px; color: var(--g-text);
}
.tb-item i { color: var(--g-accent); }
.trust-copy { margin-top: 8px; text-align: left; }
.trust-copy p { margin: 0 0 12px; font-size: 14px; line-height: 1.75; color: var(--g-muted); }
.trust-copy p:last-child { margin-bottom: 0; }

/* M5 Tab */
.tab-glass { max-width: 900px; margin: 0 auto; }
.tg-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; justify-content: center; }
.tg-tab {
  padding: 10px 14px; border-radius: 10px; border: 1px solid var(--g-border);
  background: var(--g-glass); color: var(--g-text); font-size: 13px; cursor: pointer; font-family: inherit;
}
.tg-tab.active {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(167, 139, 250, 0.35));
  border-color: var(--g-accent);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.25);
}
.tg-tab { position: relative; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.tg-tab::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
  background: linear-gradient(90deg, var(--g-accent), var(--g-accent2)); border-radius: 2px;
  opacity: 0; transform: scaleX(0.3); transition: opacity 0.2s, transform 0.2s;
}
.tg-tab.active::after { opacity: 1; transform: scaleX(1); }
.tg-panel { display: none; }
.tg-panel.active { display: block; }
.glass-panel {
  background: var(--g-glass); backdrop-filter: blur(16px);
  border: 1px solid var(--g-border); border-radius: 14px; padding: 18px;
}
.tg-row { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
@media (min-width: 700px) { .tg-row { flex-direction: row; align-items: flex-start; } }
.tg-img { flex-shrink: 0; width: 100%; max-width: 260px; margin: 0 auto; }
@media (min-width: 700px) { .tg-img { margin: 0; } }
.tg-img { position: relative; }
.tg-img--shine::after {
  content: ""; position: absolute; inset: 0; border-radius: 10px; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.tg-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; display: block; }
.tg-txt { flex: 1; min-width: 0; }
.tg-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tg-chip {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: rgba(167, 139, 250, 0.2); border: 1px solid rgba(167, 139, 250, 0.35); color: #E9D5FF;
}
.tg-txt h3 { margin: 0 0 10px; font-size: 20px; }
.tg-lead { margin: 0 0 12px; color: var(--g-muted); font-size: 15px; line-height: 1.65; }
.tg-bul { margin: 0 0 14px; padding-left: 1.15em; color: rgba(240, 240, 240, 0.72); font-size: 14px; line-height: 1.65; }
.tg-bul li { margin-bottom: 6px; }
.tg-metas { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 16px; }
.tg-meta { font-size: 12px; color: var(--g-muted); display: inline-flex; align-items: center; gap: 6px; }
.tg-meta i { color: #86EFAC; font-size: 10px; }
.tg-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.tg-link-weak { font-size: 13px; color: var(--g-accent); text-decoration: none; border-bottom: 1px dashed rgba(167, 139, 250, 0.5); }
.tg-link-weak:hover { color: #DDD6FE; }
.tg-more { display: inline-flex; padding: 10px 20px; background: linear-gradient(135deg, #7C3AED, var(--g-accent)); color: #fff; text-decoration: none; border-radius: 10px; font-size: 14px; font-weight: 600; box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35); }
.tg-more:hover { color: #fff; opacity: 0.95; }
.tg-panel--rich.glass-panel > .tg-row { align-items: stretch; }

/* M6 */
.steps-g { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .steps-g { grid-template-columns: repeat(4, 1fr); } }
.step-c { text-align: left; position: relative; }
.step-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.step-c .sn { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: linear-gradient(135deg, var(--g-accent), var(--g-accent2)); color: #1a1a2e; border-radius: 8px; font-weight: 800; }
.step-time { font-size: 12px; color: var(--g-muted); display: inline-flex; align-items: center; gap: 6px; }
.step-time i { color: var(--g-accent); }
.step-c h3 { margin: 0 0 6px; font-size: 16px; }
.step-lead { margin: 0 0 10px; font-size: 14px; color: var(--g-muted); line-height: 1.55; }
.step-sub { margin: 0; padding-left: 1.1em; font-size: 13px; color: rgba(240, 240, 240, 0.58); line-height: 1.6; }
.step-sub li { margin-bottom: 4px; }

/* M2 */
.tk-wrap { overflow: hidden; padding: 0; border-top: 1px solid var(--g-border); border-bottom: 1px solid var(--g-border); background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(22, 33, 62, 0.5)); }
.tk-head { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 10px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.tk-live { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: #FCA5A5; text-transform: uppercase; letter-spacing: 0.06em; }
.tk-dot { width: 8px; height: 8px; border-radius: 50%; background: #F87171; animation: blink 1s ease-in-out infinite; }
.tk-sub { font-size: 11px; color: rgba(240, 240, 240, 0.38); }
.tk-track { display: flex; gap: 40px; white-space: nowrap; width: max-content; padding: 14px 0; animation: tkg 42s linear infinite; }
.tk-i { font-size: 13px; color: var(--g-muted); padding: 4px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06); }
@keyframes tkg { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* M4 */
.rev-g { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .rev-g { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rev-g { grid-template-columns: repeat(3, 1fr); } }
.rev-c { position: relative; overflow: hidden; }
.rev-c::before {
  content: "\201C"; position: absolute; top: 8px; right: 12px; font-size: 48px; line-height: 1;
  font-family: Georgia, serif; color: rgba(167, 139, 250, 0.12); pointer-events: none;
}
.rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.rev-av {
  width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; background: linear-gradient(145deg, rgba(167, 139, 250, 0.35), rgba(232, 121, 249, 0.2)); border: 1px solid var(--g-border); color: #fff;
}
.rev-name { display: block; font-size: 15px; color: var(--g-text); }
.rev-svc { font-size: 11px; color: var(--g-accent); opacity: 0.9; }
.rev-stars { margin-left: auto; font-size: 12px; color: #FBBF24; letter-spacing: 1px; }
.rev-q { margin: 0 0 12px; font-size: 14px; line-height: 1.65; color: rgba(240, 240, 240, 0.88); position: relative; z-index: 1; }
.rev-q strong { color: #E9D5FF; font-weight: 700; }
.rev-meta { font-size: 12px; color: rgba(240, 240, 240, 0.45); }

/* M12 */
.dash-note { font-size: 13px; line-height: 1.65; color: var(--g-muted); text-align: center; margin: 0 auto 20px; max-width: 640px; }
.dash-g { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 700px) { .dash-g { grid-template-columns: repeat(4, 1fr); } }
.d-c .ti-num { font-size: 1.6rem; }
.d-c--bar { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.d-icon { font-size: 18px; color: var(--g-accent); opacity: 0.9; }
.d-bar { width: 100%; height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.06); overflow: hidden; margin-top: 4px; }
.d-bar span { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, #7C3AED, var(--g-accent2)); }
.d-cap { font-size: 11px; color: rgba(240, 240, 240, 0.38); line-height: 1.35; }

/* M7 */
.pv-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 20px; }
.pv-chip {
  font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.35); background: rgba(167, 139, 250, 0.08); color: #DDD6FE;
}
.pv-g { display: grid; gap: 20px; align-items: center; }
@media (min-width: 768px) { .pv-g { grid-template-columns: 1fr 1fr; } }
.pv-t p { display: flex; gap: 12px; align-items: flex-start; margin: 0 0 14px; font-size: 14px; color: var(--g-muted); line-height: 1.65; }
.pv-t p:last-child { margin-bottom: 0; }
.pv-t i { color: var(--g-accent); margin-top: 3px; flex-shrink: 0; }
.pv-img--frame { position: relative; padding: 14px; }
.pv-frame-ring {
  position: absolute; inset: 6px; border-radius: 14px; border: 1px solid rgba(167, 139, 250, 0.35);
  pointer-events: none; animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.pv-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; display: block; position: relative; z-index: 1; }

/* M13 */
.cd-g { display: flex; flex-direction: column; gap: 18px; }
.cd-split { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .cd-split { grid-template-columns: 1fr 1fr; } }
.cd-split h3 { margin: 0 0 10px; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.cd-split h3.ok { color: #86EFAC; }
.cd-split h3.no { color: #FCA5A5; }
.cd-split ul { margin: 0; padding-left: 1.1em; font-size: 14px; color: var(--g-muted); }
.cd-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; display: block; }

/* M8 */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-row { margin-bottom: 10px; padding: 0; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-row.open { border-color: rgba(167, 139, 250, 0.55); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 3px 0 0 var(--g-accent); }
.fq-h {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 16px; border: none; background: transparent; color: var(--g-text);
  text-align: left; font-size: 15px; font-family: inherit; cursor: pointer;
}
.fq-h i { color: var(--g-accent); transition: transform .2s; }
.faq-row.open .fq-h i { transform: rotate(180deg); }
.fq-b { display: none; padding: 0 16px 14px; border-top: 1px solid var(--g-border); }
.fq-b p { margin: 12px 0 0; font-size: 14px; color: var(--g-muted); }
.faq-row.open .fq-b { display: block; }

/* M9 */
.ab-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
@media (max-width: 520px) { .ab-values { grid-template-columns: 1fr; } }
.ab-v {
  padding: 16px 14px; border-radius: 14px; text-align: center;
  border: 1px solid var(--g-border); background: rgba(255, 255, 255, 0.05); transition: transform 0.2s;
}
.ab-v:hover { transform: translateY(-3px); }
.ab-v i { display: block; font-size: 22px; color: var(--g-accent); margin-bottom: 8px; }
.ab-v strong { display: block; font-size: 15px; color: var(--g-text); }
.ab-v span { font-size: 12px; color: var(--g-muted); }
.ab-g { display: grid; gap: 18px; align-items: start; }
.ab-g--split { padding: 22px; }
@media (min-width: 768px) { .ab-g { grid-template-columns: 1fr 1.1fr; } }
.ab-ph-wrap { position: relative; }
.ab-ph { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; display: block; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); }
.ab-ph-cap { display: block; font-size: 11px; color: rgba(240, 240, 240, 0.4); margin-top: 8px; text-align: center; }
.ab-t p { margin: 0 0 12px; color: var(--g-muted); font-size: 15px; line-height: 1.75; }
.ab-drop { overflow: auto; }
.ab-drop .dcap {
  float: left; font-size: 2.6rem; line-height: 0.85; font-weight: 800; margin-right: 10px; color: var(--g-accent);
  text-shadow: 0 0 24px var(--g-glow);
}
.ab-ul { margin: 14px 0 0; padding-left: 1.2em; color: rgba(240, 240, 240, 0.65); font-size: 14px; line-height: 1.7; }
.ab-ul li { margin-bottom: 6px; }

/* M10 */
.ct-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; max-width: 640px; margin-left: auto; margin-right: auto; }
@media (max-width: 520px) { .ct-grid { grid-template-columns: 1fr; } }
.ct-mini {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 16px 12px;
  text-decoration: none; color: var(--g-text); transition: transform 0.2s, border-color 0.2s;
}
.ct-mini:hover { transform: translateY(-3px); border-color: rgba(167, 139, 250, 0.5); color: #fff; }
.ct-mini i { font-size: 22px; color: var(--g-accent); }
.ct-mini span { font-size: 14px; font-weight: 700; }
.ct-mini small { font-size: 11px; color: var(--g-muted); }
.ct-box { max-width: 520px; margin: 0 auto; position: relative; overflow: hidden; }
.ct-box--rich { padding: 28px 22px 24px; }
.ct-ribbon {
  position: absolute; top: 14px; right: -36px; transform: rotate(38deg); background: linear-gradient(90deg, #7C3AED, var(--g-accent2));
  color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.05em; padding: 6px 44px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.ct-mgrline { margin: 0 0 18px !important; display: flex !important; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 15px; }
.ct-badge { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(74, 222, 128, 0.2); color: #86EFAC; border: 1px solid rgba(74, 222, 128, 0.35); }
.ct-box > p { margin: 0 0 14px; }
.ct-box i { color: var(--g-accent); width: 22px; flex-shrink: 0; }
.ct-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 12px 14px; margin-bottom: 10px !important; border-radius: 12px; background: rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.06); }
.ct-row .ct-label { font-size: 12px; color: var(--g-muted); width: 40px; }
.ct-row .ct-val { flex: 1; min-width: 120px; font-weight: 600; font-size: 15px; word-break: break-all; }
.ct-btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 40px; min-width: 72px; padding: 0 18px;
  border: 1px solid var(--g-border); background: linear-gradient(180deg, rgba(167,139,250,0.28), rgba(167,139,250,0.12)); color: var(--g-text);
  font-size: 14px; font-family: inherit; border-radius: 10px; cursor: pointer; text-decoration: none;
}
.ct-btn:hover { background: var(--g-accent); color: #1a1a2e; border-color: transparent; }
.ct-slots { display: grid; gap: 10px; margin: 18px 0 14px; font-size: 13px; }
.ct-slots > div { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 10px 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.04); }
.ct-slots strong { color: var(--g-accent); }
.ct-slots span { color: var(--g-muted); text-align: right; flex: 1; min-width: 140px; }
.ct-tip { font-size: 13px !important; color: var(--g-muted) !important; line-height: 1.6 !important; margin: 0 !important; }

/* M11 */
.site-ft { padding: 44px 0 32px; border-top: 1px solid var(--g-border); font-size: 14px; color: var(--g-muted); background: linear-gradient(180deg, rgba(15, 15, 26, 0.4), rgba(15, 15, 26, 0.85)); }
.ft-brand { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; text-align: left; }
.ft-logo {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px;
  background: var(--g-glass); border: 1px solid var(--g-border); color: var(--g-accent); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.ft-t { margin: 0 0 4px; color: var(--g-text); font-weight: 700; font-size: 17px; }
.ft-sub { margin: 0; font-size: 13px; color: rgba(240, 240, 240, 0.45); }
.ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; max-width: 720px; margin-left: auto; margin-right: auto; }
@media (max-width: 600px) { .ft-cols { grid-template-columns: 1fr; text-align: center; } }
.ft-col h4 { margin: 0 0 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--g-accent); opacity: 0.85; }
.ft-col a { display: block; margin-bottom: 8px; color: rgba(240, 240, 240, 0.55); text-decoration: none; font-size: 14px; }
.ft-col a:hover { color: #DDD6FE; }
.ft-n { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 0 0 18px; }
.ft-n a { color: #C4B5FD; text-decoration: none; font-size: 13px; }
.ft-law { max-width: 720px; margin: 0 auto 14px; font-size: 12px; line-height: 1.8; color: rgba(240, 240, 240, 0.48); text-align: justify; }
.ft-g { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 18px; margin: 0 0 12px; font-size: 12px; align-items: center; }
.ft-g span { color: rgba(240, 240, 240, 0.4); }
.ft-g a { color: var(--g-accent); text-decoration: none; }
.ft-g a:hover { text-decoration: underline; }
.ft-c { text-align: center; margin: 0; font-size: 11px; color: rgba(240, 240, 240, 0.35); }
.footer-tech { text-align: center; margin-top: 12px; font-size: 11px; opacity: 0.65; }

.float-bottom {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; justify-content: center; gap: 12px;
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 15, 26, 0.92);
  border-top: 1px solid var(--g-border);
}
.float-btn {
  flex: 1; max-width: 168px; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 12px; border-radius: 12px; text-decoration: none; font-size: 14px; color: #fff;
  border: 1px solid var(--g-border); background: var(--g-glass);
}
.fab-top {
  position: fixed; right: 16px; bottom: calc(80px + env(safe-area-inset-bottom, 0px)); z-index: 101;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--g-border);
  background: var(--g-glass); backdrop-filter: blur(10px); color: var(--g-accent);
  cursor: pointer; opacity: 0; pointer-events: none;
}
.fab-top.show { opacity: 1; pointer-events: auto; transition: opacity 0.25s; }
@media (min-width: 900px) { .fab-top { bottom: 24px; right: 24px; } }

/* contact-fix */
.ct-val{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ct-btn{flex-shrink:0;white-space:nowrap;margin-left:auto}

/* === 首屏外区域延迟渲染 === */
section:not(#home):not(.hero),.ticker-wrap,footer,.flink-section{content-visibility:auto;contain-intrinsic-size:auto 500px}