/* ============================================================
   超级识人术 · 识光 / Aperture —— 网页版（桌面优先）
   全宽顶部导航 · 宽 hero · 主内容 + 侧栏多栏布局
   ============================================================ */

body[data-theme="night"] {
  --bg: #0a0c11;
  --bg-2: #11141c;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);
  --surface-solid: #161a23;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(216, 181, 116, 0.34);
  --text: #f3efe7;
  --muted: #9aa1b0;
  --faint: #646b7b;
  --gold: #efb05a;
  --gold-2: #f6c982;
  --jade: #66c79a;
  --rose: #f0936f;
  --btn-bg: linear-gradient(120deg, #f6c982, #efb05a 58%, #e09a3f);
  --btn-ink: #2a1c08;
  --chip-bg: rgba(255, 255, 255, 0.05);
  --shadow: 0 26px 70px -28px rgba(0, 0, 0, 0.8);
  --shadow-sm: 0 12px 30px -16px rgba(0, 0, 0, 0.7);
  --aurora-1: rgba(239, 176, 90, 0.16);
  --aurora-2: rgba(102, 199, 154, 0.13);
  --scan: rgba(246, 201, 130, 0.85);
  --topbar-bg: rgba(10, 12, 17, 0.82);
  color-scheme: dark;
}

body[data-theme="dawn"] {
  --bg: #fcf7ef;
  --bg-2: #fffdf9;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-2: #ffffff;
  --surface-solid: #ffffff;
  --border: rgba(120, 90, 45, 0.14);
  --border-strong: rgba(224, 146, 47, 0.4);
  --text: #2b2620;
  --muted: #8a8175;
  --faint: #b3a998;
  --gold: #e0922f;
  --gold-2: #f3b45c;
  --jade: #3fa67e;
  --rose: #e8795a;
  --btn-bg: linear-gradient(120deg, #f3ab46, #e0922f);
  --btn-ink: #fffaf2;
  --chip-bg: rgba(224, 146, 47, 0.09);
  --shadow: 0 24px 60px -26px rgba(150, 95, 25, 0.2);
  --shadow-sm: 0 12px 28px -16px rgba(150, 95, 25, 0.16);
  --aurora-1: rgba(240, 168, 69, 0.22);
  --aurora-2: rgba(79, 174, 134, 0.16);
  --scan: rgba(224, 146, 47, 0.65);
  --topbar-bg: rgba(252, 247, 239, 0.88);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  font-size: clamp(15px, 1.05vw, 17px);
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.serif {
  font-family: "Noto Serif SC", "Songti SC", serif;
}

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

button {
  cursor: pointer;
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 8% -10%, var(--aurora-1), transparent 58%),
    radial-gradient(1000px 600px at 104% 4%, var(--aurora-2), transparent 56%),
    radial-gradient(1200px 800px at 50% 120%, var(--aurora-1), transparent 60%),
    linear-gradient(168deg, var(--bg) 0%, var(--bg-2) 58%, var(--bg) 100%);
}

/* ---------------- 顶部导航 ---------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--topbar-bg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px clamp(16px, 4vw, 32px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: 0;
  padding: 0;
  flex: none;
}

.brand-glyph {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
}

.brand-text {
  display: grid;
  gap: 1px;
  text-align: left;
}

.brand-text strong {
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  background: linear-gradient(100deg, var(--gold-2), var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.topnav {
  flex: 1;
  display: flex;
  gap: 4px;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.topnav::-webkit-scrollbar {
  display: none;
}

.navbtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.2s;
}

.navbtn .ic {
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
  color: var(--faint);
  transition: 0.2s;
}

.navbtn:hover {
  color: var(--text);
  background: var(--surface);
}

.navbtn.active {
  color: var(--gold);
  background: var(--surface-2);
}

.navbtn.active .ic {
  color: var(--gold);
}

.topbar-actions {
  display: flex;
  gap: 8px;
  flex: none;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.05rem;
  transition: 0.2s;
}

.icon-btn:hover {
  border-color: var(--border-strong);
  color: var(--gold);
}

/* ---------------- 页面容器 ---------------- */
.page {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 36px) clamp(16px, 4vw, 32px) 72px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: viewin 0.4s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .page,
  .aperture-ring::before,
  .scanline {
    animation: none !important;
  }
}

/* 页眉 */
.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.page-title {
  margin: 8px 0 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.18;
}

/* ---------------- 布局：主内容 + 侧栏 ---------------- */
.split {
  display: grid;
  gap: 20px;
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
  .split .aside {
    position: sticky;
    top: 88px;
  }
}

.main-col,
.aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* ---------------- 卡片 ---------------- */
.card {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  min-width: 0;
}

.card.lifted {
  box-shadow: var(--shadow);
}

.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.card-head .kicker,
.kicker {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card h3 {
  margin: 4px 0 0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.34;
}

.card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.hairline {
  height: 1px;
  border: 0;
  margin: 16px 0;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 2px 0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.section-title small {
  color: var(--muted);
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
}

/* ---------------- Hero（宽屏两栏） ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(560px 360px at 88% -10%, var(--aurora-1), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }
}

.hero-tagline {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h2 {
  margin: 16px 0 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.2;
}

.hero h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-2), var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 16px 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-visual {
  display: grid;
  place-items: center;
}

/* 光圈头像视觉 */
.aperture {
  position: relative;
  width: clamp(190px, 22vw, 260px);
  height: clamp(190px, 22vw, 260px);
  display: grid;
  place-items: center;
}

.aperture.sm {
  width: 132px;
  height: 132px;
}

.aperture-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(
      from 140deg,
      var(--gold) 0deg,
      transparent 70deg,
      var(--jade) 150deg,
      transparent 220deg,
      var(--gold) 300deg
    );
  padding: 2px;
  -webkit-mask: radial-gradient(circle, transparent 71%, #000 72%);
  mask: radial-gradient(circle, transparent 71%, #000 72%);
  opacity: 0.85;
}

.aperture-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--border-strong);
  animation: spin 22s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.aperture-core {
  position: relative;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(150deg, var(--surface-2), var(--surface-solid));
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: "Noto Serif SC", serif;
  font-size: 2.6rem;
  font-weight: 900;
}

.aperture-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aperture.scanning .scanline {
  display: block;
}

.scanline {
  display: none;
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--scan), transparent);
  box-shadow: 0 0 14px 2px var(--scan);
  animation: scan 1.8s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    top: 14%;
    opacity: 0.2;
  }
  50% {
    top: 84%;
    opacity: 1;
  }
}

/* ---------------- 按钮 ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  transition: 0.2s;
  white-space: nowrap;
}

.btn:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  border-color: transparent;
  background: var(--btn-bg);
  color: var(--btn-ink);
  box-shadow: 0 16px 32px -14px rgba(216, 181, 116, 0.55);
}

.btn.ghost {
  background: transparent;
}

.btn.danger {
  color: var(--rose);
  border-color: color-mix(in srgb, var(--rose) 40%, transparent);
  background: color-mix(in srgb, var(--rose) 10%, transparent);
}

.btn.block {
  width: 100%;
}

.btn.sm {
  min-height: 40px;
  font-size: 0.84rem;
  padding: 0 16px;
}

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn-row.stack {
  flex-direction: column;
}

/* ---------------- 特性行（3 栏） ---------------- */
.feature-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .feature-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  display: grid;
  gap: 12px;
  text-align: left;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 22px;
  transition: 0.2s;
}

.tile:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
  transform: translateY(-3px);
}

.tile-ico {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--chip-bg);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
  font-size: 1.4rem;
}

.tile strong {
  font-size: 1.08rem;
}

.tile span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.tile .tile-go {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------------- chips / tags ---------------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  transition: 0.2s;
}

.chip:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.chip.active {
  color: var(--btn-ink);
  background: var(--btn-bg);
  border-color: transparent;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--chip-bg);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------------- 分段 ---------------- */
.seg {
  display: flex;
  gap: 5px;
  padding: 5px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.seg::-webkit-scrollbar {
  display: none;
}

.seg button {
  min-height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.2s;
}

.seg button.active {
  background: var(--surface-2);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.seg-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.seg-card {
  display: grid;
  gap: 5px;
  text-align: left;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 15px;
  transition: 0.2s;
}

.seg-card strong {
  font-size: 0.94rem;
}

.seg-card span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.seg-card.active {
  border-color: var(--border-strong);
  background: var(--surface-2);
}

/* ---------------- 表单 ---------------- */
.field {
  display: grid;
  gap: 7px;
}

.field > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-2);
  padding: 13px 14px;
  font-size: 0.94rem;
  outline: none;
  transition: 0.2s;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 18%, transparent);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d8b574' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 520px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------------- 上传 ---------------- */
.upload {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  border: 1px dashed var(--border-strong);
  border-radius: 18px;
  background: var(--surface);
  padding: 28px 18px;
  cursor: pointer;
  transition: 0.2s;
}

.upload:hover {
  background: var(--surface-2);
}

.upload-thumb {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.12), transparent),
    var(--surface-2);
}

.upload-thumb.placeholder {
  display: grid;
  place-items: center;
  color: var(--faint);
  font-size: 2rem;
}

.upload strong {
  font-size: 0.98rem;
}

.upload span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 24rem;
}

.upload input[type="file"] {
  display: none;
}

/* ---------------- 同意/提示 ---------------- */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  padding: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  cursor: pointer;
}

.consent input {
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.note {
  display: flex;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  padding: 13px 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.62;
}

.note::before {
  content: "ⓘ";
  color: var(--gold);
  font-size: 0.92rem;
  line-height: 1.5;
}

.note.warn {
  border-color: color-mix(in srgb, var(--rose) 35%, transparent);
  background: color-mix(in srgb, var(--rose) 9%, transparent);
  color: var(--text);
}

.note.warn::before {
  content: "!";
  font-weight: 900;
  color: var(--rose);
}

/* ---------------- 报告 ---------------- */
.verdict {
  border-radius: 22px;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(440px 240px at 92% -20%, var(--aurora-1), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow);
  padding: 26px;
}

.verdict .kicker {
  color: var(--gold);
}

.verdict h3 {
  margin: 10px 0 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  line-height: 1.45;
  font-weight: 700;
}

.verdict .lede {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.85;
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 700px) {
  .advice-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .advice-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.advice-item {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 15px;
  min-width: 0;
}

.advice-item span {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advice-item strong {
  display: block;
  margin-top: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
}

.advice-item .muted {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.do-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: do;
}

.do-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 11px;
  align-items: start;
  font-size: 0.9rem;
  line-height: 1.62;
}

.do-list li::before {
  content: counter(do);
  counter-increment: do;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--chip-bg);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
}

.report-blocks {
  display: grid;
  gap: 14px;
}

.report-block {
  border-left: 2px solid var(--border-strong);
  padding: 2px 0 2px 16px;
}

.report-block strong {
  display: block;
  font-family: "Noto Serif SC", serif;
  font-size: 1.02rem;
  margin-bottom: 7px;
}

.report-block p {
  margin: 4px 0;
  font-size: 0.86rem;
  line-height: 1.64;
}

.report-block p b {
  color: var(--gold);
  font-weight: 600;
  margin-right: 5px;
}

/* 价格 */
.pay-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(260px 130px at 100% 0%, var(--aurora-1), transparent 60%),
    var(--surface);
  padding: 16px 18px;
}

.pay-bar .price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.pay-bar .price b {
  font-family: "Noto Serif SC", serif;
  font-size: 1.9rem;
  color: var(--gold);
}

.pay-bar .price small {
  color: var(--muted);
  font-size: 0.76rem;
}

/* ---------------- 头像方案 ---------------- */
.avatar-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

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

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

.avatar-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.avatar-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.avatar-card figcaption {
  display: grid;
  gap: 8px;
  padding: 13px;
}

.avatar-card strong {
  font-size: 0.88rem;
}

.avatar-card span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

/* ---------------- 八字柱 ---------------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.pillar {
  display: grid;
  gap: 7px;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 18px 8px;
}

.pillar span {
  color: var(--muted);
  font-size: 0.72rem;
}

.pillar strong {
  font-family: "Noto Serif SC", serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  text-align: center;
}

/* ---------------- 表格 ---------------- */
.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
}

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

th,
td {
  padding: 12px 14px;
  text-align: left;
  font-size: 0.84rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--chip-bg);
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

tr:last-child td {
  border-bottom: 0;
}

/* ---------------- 进度 ---------------- */
.steps {
  display: grid;
  gap: 9px;
}

.step {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 12px 14px;
  font-size: 0.86rem;
}

.step .dot {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--faint);
  font-size: 0.7rem;
}

.step.done {
  border-color: color-mix(in srgb, var(--jade) 38%, transparent);
}

.step.done .dot {
  background: var(--jade);
  border-color: transparent;
  color: #0a0c11;
}

.step .val {
  color: var(--muted);
  font-size: 0.8rem;
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------------- 守卫页 ---------------- */
.guard {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  padding: 40px 20px;
}

.guard h3 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.3rem;
}

.guard p {
  margin: 0;
  max-width: 24rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------------- 加载遮罩 ---------------- */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  gap: 18px;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.scrim[hidden] {
  display: none;
}

.scrim p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 0 24px;
}

/* ---------------- 横幅 ---------------- */
.banner {
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 0.84rem;
  line-height: 1.6;
  border: 1px solid color-mix(in srgb, var(--rose) 38%, transparent);
  background: color-mix(in srgb, var(--rose) 11%, transparent);
  color: var(--text);
}

.muted {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.stack {
  display: grid;
  gap: 14px;
}

footer.legal {
  margin-top: 8px;
  text-align: center;
  color: var(--faint);
  font-size: 0.72rem;
  line-height: 1.7;
  padding: 8px;
}

/* 移动端：导航靠左滚动、隐藏品牌副标题 */
@media (max-width: 720px) {
  .topnav {
    justify-content: flex-start;
  }
  .brand-text small {
    display: none;
  }
}
