/* ===================================================
   WOW · 客户需求 2026-08 新增样式
   浅色品牌主题：青绿渐变 #12bd8e→#258fe5、白卡片、大圆角
   命名空间 .client-v2 避免与现有 23 个 CSS 层级污染
   =================================================== */

/* ---- 共用 CSS 变量引用规范 ----
   var(--wow-accent-dark) = #0b9c78 品牌主色
   var(--wow-ink-strong)  = #173143 主文字
   var(--wow-ink-muted)   = #61778a 次文字
   var(--wow-line)        = rgba(176,200,210,.72) 分割线
   var(--wow-surface)     = #fff 卡片背景
   -------------------------------------------------- */

/* ▸ 首页 hero 三词标语（需求 7） */
.hero-creed {
  display: flex;
  align-items:center;
  gap: 12px;
  margin: 6px 0 4px;
  font-size: 17px;
  color: #0b9c78;
}
.hero-creed b { font-weight: 800; letter-spacing: .08em; }
.hero-creed i { color: rgba(11,156,120,.35); font-style: normal; margin: 0 2px; }

/* ▸ 阶梯定价表状态徽章（需求 17） */
.tier-state {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.tier-state-active { background: #e7f8f3; color: #0b9c78; }
.tier-state-done { background: #eef2f5; color: #61778a; }
.tier-state-upcoming { background: transparent; color: #a4b9c8; }

/* ===== 预约页 hero（需求 3/9/10） ===== */
.reservation-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px 36px;
  border: 1px solid rgba(176,200,210,.62);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #f0fcf7);
  box-shadow: 0 12px 38px rgba(11,156,120,.08);
  margin-bottom: 28px;
  align-items: center;
}
.reservation-hero-copy {}
.reservation-hero-copy .eyebrow {
  text-transform: uppercase;
  color: #0b9c78;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.genesis-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid #0b9c78;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #0b9c78;
  margin-bottom: 14px;
}
.genesis-badge i { font-size: 13px; }
.reservation-hero h1 {
  font-size: 38px;
  font-weight: 900;
  color: #173143;
  line-height: 1.15;
  margin: 6px 0 10px;
}
.reservation-hero-lede {
  font-size: 15px;
  color: #51758a;
  max-width: 460px;
  line-height: 1.65;
}
.reservation-hero-claim {
  margin: 18px 0 12px;
  padding: 12px 18px;
  border-left: 3px solid #0b9c78;
  background: rgba(11,156,120,.06);
  border-radius: 0 12px 12px 0;
}
.reservation-hero-claim strong { display: block; font-size: 20px; color: #173143; }
.reservation-hero-claim span { font-size: 13px; color: #61778a; }
.reservation-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 10px;
}
.reservation-hero-actions .primary-action,
.reservation-hero-actions .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 0;
  min-width: 140px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}
.reservation-hero-status {
  font-size: 12px;
  color: #61778a;
  min-height: 20px;
}
.reservation-hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.reservation-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(11,156,120,.12);
}
.reservation-hero-ring.ring-outer { width: 200px; height: 200px; }
.reservation-hero-ring.ring-inner { width: 140px; height: 140px; border-color: rgba(11,156,120,.22); }
.reservation-hero-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,156,120,.12), transparent 70%);
}
.reservation-hero-stage img {
  width: 124px;
  max-height: 280px;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 28px;
  filter: drop-shadow(0 18px 34px rgba(11,156,120,.22));
  object-fit: contain;
}
@media (max-width: 760px) {
  .reservation-hero { grid-template-columns: 1fr; gap: 18px; padding: 24px 20px; }
  .reservation-hero h1 { font-size: 28px; }
  .reservation-hero-stage { display: none; }
}

/* ---- 为什么现在加入？4 卡（需求 10） ---- */
.reservation-why {
  margin-bottom: 28px;
}
.reservation-why .section-heading {
  text-align: center;
  margin-bottom: 20px;
}
.reservation-why .section-heading h2 {
  font-size: 26px;
  font-weight: 900;
  color: #173143;
}
.reservation-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.reservation-why-grid article {
  padding: 22px 18px;
  border: 1px solid rgba(176,200,210,.5);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}
.reservation-why-grid .why-index {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #12bd8e, #258fe5);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 10px;
}
.reservation-why-grid h3 {
  font-size: 16px;
  font-weight: 800;
  color: #173143;
  margin-bottom: 6px;
}
.reservation-why-grid p {
  font-size: 13px;
  color: #61778a;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .reservation-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .reservation-why-grid { grid-template-columns: 1fr; }
}

/* ---- 认购流程 5 步链（需求 5/16） ---- */
.reservation-flow {
  margin-bottom: 28px;
}
.reservation-flow .section-heading {
  text-align: center;
  margin-bottom: 18px;
}
.reservation-flow .section-heading h2 {
  font-size: 26px;
  font-weight: 900;
  color: #173143;
}
.reservation-flow-list {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}
.reservation-flow-list li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 18px 10px;
  border: 1px solid rgba(176,200,210,.45);
  border-radius: 18px;
  background: #fff;
}
.reservation-flow-list li b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #12bd8e, #258fe5);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.reservation-flow-list li i { font-size: 22px; }
.reservation-flow-list li strong { font-size: 14px; color: #173143; }
.reservation-flow-list li small { font-size: 12px; color: #61778a; line-height: 1.4; display: block; }
@media (max-width: 720px) {
  .reservation-flow-list { flex-direction: column; }
  .reservation-flow-list li { flex-direction: row; text-align: left; gap: 12px; }
}

/* 8 步认购流程：4×2 网格，避免单行挤压 */
.reservation-flow-list--eight {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.reservation-flow-list--eight li { flex: initial; }
@media (max-width: 1080px) {
  .reservation-flow-list--eight { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .reservation-flow-list--eight { grid-template-columns: 1fr; }
}

/* ===== 邀请中心 8 区块（需求 11） ===== */

/* 区块 1：邀请 hero */
.invite-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(176,200,210,.58);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #ecfcf5);
  margin-bottom: 20px;
}
.invite-hero-copy {}
.invite-hero-copy .eyebrow { color: #0b9c78; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.invite-hero-copy h2 { font-size: 26px; font-weight: 900; color: #173143; margin: 6px 0 8px; }
.invite-hero-copy p { font-size: 14px; color: #51758a; max-width: 460px; line-height: 1.6; }
.invite-hero-total {
  flex-shrink: 0;
  text-align: center;
  padding: 18px 28px;
  border-radius: 18px;
  background: rgba(11,156,120,.08);
  border: 1px solid rgba(11,156,120,.18);
}
.invite-hero-total strong {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: #0b9c78;
  line-height: 1;
}
.invite-hero-total span { font-size: 13px; color: #173143; font-weight: 700; }
.invite-hero-total small { font-size: 11px; color: #61778a; display: block; margin-top: 4px; }

/* 区块 2：宝箱 */
.invite-chest-section {
  margin-bottom: 20px;
}
.invite-chest-prompt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid rgba(176,200,210,.5);
  border-radius: 18px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.invite-chest-prompt:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(25, 161, 165, 0.10);
  border-color: rgba(18, 189, 142, 0.35);
}
.invite-chest-prompt > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe9b8, #ffd787);
  box-shadow: 0 8px 20px rgba(240, 169, 44, 0.22);
  font-size: 26px;
}
.invite-chest-prompt > div { flex: 1 1 auto; min-width: 0; }
.invite-chest-prompt strong { font-size: 15px; color: #173143; display: block; white-space: nowrap; }
.invite-chest-prompt small { font-size: 12px; color: #61778a; line-height: 1.45; }
.invite-chest-prompt button { margin-left: auto; flex-shrink: 0; }

/* 区块 3+4：双奖励池 */
.invite-pool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.invite-pool-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(176,200,210,.5);
  border-radius: 18px;
  background: #fff;
}
.invite-pool-icon { font-size: 30px; flex-shrink: 0; }
.invite-pool-card small { font-size: 11px; color: #61778a; text-transform: uppercase; letter-spacing: .04em; }
.invite-pool-card strong { display: block; font-size: 20px; font-weight: 900; color: #173143; margin: 4px 0; }
.invite-pool-card > div span { font-size: 12px; color: #0b9c78; }

/* 区块 5：今日数据条 + 明日预告 */
.invite-today-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid rgba(176,200,210,.45);
  border-radius: 16px;
  background: #f9fbfc;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.invite-today-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: stretch;
}
.invite-today-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.invite-today-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 86px;
  padding: 14px 16px;
  font-size: 12px;
  color: #61778a;
  border-radius: 14px;
}
.invite-today-item strong { font-size: 18px; font-weight: 900; color: #0d8a6d; }
.invite-tomorrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 170px;
  padding: 14px 18px;
  border-radius: 14px;
}
.invite-tomorrow span { font-size: 11px; color: #a4b9c8; text-transform: uppercase; letter-spacing: .04em; }
.invite-tomorrow strong { font-size: 16px; font-weight: 900; color: #0b9c78; }

@media (max-width: 720px) {
  .invite-today-bar { grid-template-columns: 1fr; }
  .invite-today-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .invite-today-item:last-child { grid-column: 1 / -1; }
  .invite-tomorrow { min-width: auto; }
}

/* 区块 6：我的社区列表 */
.invite-community-section {
  margin-bottom: 20px;
}

/* 区块 7：排行榜 */
.invite-leaderboard-section {
  margin-bottom: 20px;
}
.invite-leaderboard-list {}
.invite-leaderboard-row {
  display: grid;
  grid-template-columns: 44px 1fr 70px 110px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(176,200,210,.25);
  font-size: 13px;
}
.invite-leaderboard-row:last-child { border-bottom: none; }
.invite-rank {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
  background: #eef2f5;
  color: #61778a;
}
.invite-rank-1 { background: #fff7d6; color: #c7940a; }
.invite-rank-2 { background: #eef2f5; color: #61778a; }
.invite-rank-3 { background: #fcf0e8; color: #c97a2a; }
.invite-leaderboard-row strong { font-weight: 800; color: #173143; }
.invite-leaderboard-row b { font-weight: 700; color: #0b9c78; }

/* 区块 8：专属邀请 —— 复用现有 invite-share-card 样式，仅需微调 */

@media (max-width: 720px) {
  .invite-hero { flex-direction: column; text-align: center; padding: 22px 18px; }
  .invite-hero-total strong { font-size: 34px; }
  .invite-pool-grid { grid-template-columns: 1fr; }
  .invite-chest-prompt { flex-direction: column; text-align: center; gap: 14px; padding: 18px; }
  .invite-chest-prompt > div { width: 100%; }
  .invite-chest-prompt strong { font-size: 16px; }
  .invite-chest-prompt small { display: block; margin-top: 4px; font-size: 13px; line-height: 1.5; }
  .invite-chest-prompt button { margin-left: 0; width: 100%; }
}

/* ===== AI 数字身份 4 卡（需求 13） ===== */
.ai-collection-intro {
  font-size: 13px;
  color: #51758a;
  margin: 0 0 14px;
  line-height: 1.6;
}
.ai-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border: 1px solid rgba(11,156,120,.35);
  border-radius: 999px;
  background: transparent;
  color: #0b9c78;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-left: 8px;
}
.ai-help-btn:hover { background: #e7f8f3; }
.ai-tier-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(176,200,210,.45);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: box-shadow .2s, border-color .2s;
}
.ai-tier-card:hover { box-shadow: 0 8px 24px rgba(11,156,120,.10); border-color: rgba(11,156,120,.25); }
.ai-tier-card[aria-expanded="true"] { border-color: rgba(11,156,120,.45); }
.ai-tier-face {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ai-tier-face strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #12bd8e, #258fe5);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.ai-tier-face h3 { font-size: 15px; font-weight: 800; color: #173143; }
.ai-tier-face span { font-size: 11px; color: #61778a; }
.ai-tier-face img { width: 40px; height: 40px; border-radius: 50%; margin-left: auto; }
.ai-tier-detail { display: grid; grid-template-columns: auto 1fr; gap: 3px 10px; font-size: 12px; }
.ai-tier-detail label { color: #a4b9c8; }
.ai-tier-detail b { color: #173143; font-weight: 700; }
.ai-tier-status {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: #eef2f5;
  color: #61778a;
  text-align: center;
  font-style: normal;
}
.ai-tier-card small {
  font-size: 10px;
  color: #a4b9c8;
  text-align: center;
}

/* AI 释放规则 dialog（需求 13） */
.ai-tier-dialog {
  border: none;
  border-radius: 24px;
  padding: 0;
  max-width: 90vw;
  width: calc(100vw - 32px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  box-shadow: 0 28px 80px rgba(16, 37, 54, 0.22);
}
.ai-tier-dialog::backdrop { background: rgba(23, 49, 67, 0.42); }
.ai-tier-dialog-shell { padding: 0; position: relative; }
.ai-tier-dialog-shell header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 48px 18px;
}
.ai-tier-dialog-shell header .eyebrow {
  color: #0ea77c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ai-tier-dialog-shell header h2 {
  font-size: 22px;
  font-weight: 900;
  color: #173143;
  margin: 6px 0 0;
  line-height: 1.25;
}
.ai-tier-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(176, 200, 210, 0.6);
  border-radius: 50%;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #61778a;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.ai-tier-dialog-close:hover {
  color: #0ea77c;
  border-color: #0ea77c;
  background: #e9f7f2;
}
.ai-tier-dialog-body {
  padding: 0 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.ai-tier-dialog-body .ai-tier-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, #e9f7f2, #f0f9ff);
  box-shadow: 0 12px 32px rgba(14, 167, 124, 0.14);
}
.ai-tier-dialog-body .ai-tier-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.ai-tier-dialog-body dl {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}
.ai-tier-dialog-body dl > div {
  padding: 14px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(176, 200, 210, 0.4);
}
.ai-tier-dialog-body dl dt {
  font-size: 11px;
  color: #7d97a8;
  margin-bottom: 6px;
}
.ai-tier-dialog-body dl dd {
  font-size: 15px;
  color: #173143;
  font-weight: 800;
  margin: 0;
}
.ai-tier-dialog-note {
  font-size: 13px;
  color: #526c7d;
  line-height: 1.6;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0fcf7, #f0f9ff);
  border: 1px solid rgba(14, 167, 124, 0.12);
  text-align: center;
}
@media (max-width: 420px) {
  .ai-tier-dialog-body dl { grid-template-columns: 1fr; }
}

/* ===== 释放日历（需求 15） ===== */
.ai-calendar-year {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-year-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(176,200,210,.5);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #61778a;
}
.ai-year-btn:hover { background: #e7f8f3; color: #0b9c78; }
#ai-calendar-year { font-size: 16px; font-weight: 900; color: #173143; min-width: 52px; text-align: center; }
.ai-month-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.ai-month-grid span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 6px;
  border: 1px solid rgba(176,200,210,.35);
  border-radius: 14px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #173143;
}
.ai-month-grid span i { font-size: 11px; color: #61778a; }
.ai-month-grid .is-done { background: #e7f8f3; border-color: rgba(11,156,120,.2); }
.ai-month-grid .is-done i { color: #0b9c78; }
.ai-month-grid .is-locked { opacity: .45; }
.ai-calendar-note {
  font-size: 11px;
  color: #a4b9c8;
  margin-top: 12px;
  text-align: center;
}

/* ===== 我的 · 奖励中心（需求 12+2） ===== */
.my2-rewards {
  margin: 22px 0;
  padding: 24px 28px;
  border: 1px solid rgba(176,200,210,.55);
  border-radius: 22px;
  background: linear-gradient(160deg, #fff, #f7fdfb);
}
.my2-rewards-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.my2-rewards-head h2 {
  font-size: 22px;
  font-weight: 900;
  color: #173143;
}
.my2-rewards-head p {
  font-size: 13px;
  color: #51758a;
  margin-top: 3px;
}
.my2-rewards-rule {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid rgba(11,156,120,.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #0b9c78;
  cursor: pointer;
  background: transparent;
}
.my2-rewards-rule:hover { background: #e7f8f3; }
.my2-rewards-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.my2-reward-total {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(176,200,210,.45);
  border-radius: 18px;
  background: #fff;
}
.reward-icon { font-size: 32px; }
.my2-reward-total small { font-size: 11px; color: #61778a; display: block; text-transform: uppercase; }
.my2-reward-total strong { font-size: 26px; font-weight: 900; color: #173143; }
.my2-reward-total strong em { font-style: normal; font-size: 14px; font-weight: 700; color: #61778a; margin-left: 4px; }
.my2-reward-total > div span { font-size: 11px; color: #a4b9c8; }
.my2-reward-today, .my2-reward-claimable {
  padding: 18px 20px;
  border: 1px solid rgba(176,200,210,.45);
  border-radius: 18px;
  background: #fff;
}
.reward-today-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.my2-reward-today small { font-size: 11px; color: #61778a; text-transform: uppercase; }
.my2-reward-today strong { font-size: 18px; font-weight: 900; color: #0b9c78; }
.reward-today-list, #reward-claimable-list { display: flex; flex-direction: column; gap: 6px; min-height: 20px; }
.reward-add-row, .reward-claim-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 10px;
  background: #f7fafa;
}
.reward-add-row span, .reward-claim-row span { color: #173143; font-weight: 700; }
.reward-add-row strong, .reward-claim-row strong { color: #0b9c78; font-weight: 800; margin-left: auto; }
.reward-add-row small { color: #a4b9c8; font-size: 11px; }
.reward-empty { color: #a4b9c8; font-size: 13px; }
.my2-reward-claimable small { font-size: 11px; color: #61778a; text-transform: uppercase; display: block; margin-bottom: 8px; }
.my2-rewards-note { font-size: 11px; color: #a4b9c8; text-align: center; }

@media (max-width: 900px) {
  .my2-rewards-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .my2-rewards-cards { grid-template-columns: 1fr; }
  .my2-rewards { padding: 18px 16px; }
}

/* ---- 释放日历日级明细（需求 5） ---- */
.ai-calendar-dayview {
  margin-top: 14px;
  border-top: 1px solid rgba(176,200,210,.35);
  padding-top: 12px;
}
.ai-dayview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ai-dayview-head strong { font-size: 14px; color: #173143; font-weight: 800; }
.ai-dayview-close {
  padding: 3px 12px;
  border: 1px solid rgba(176,200,210,.5);
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  color: #61778a;
  cursor: pointer;
}
.ai-dayview-close:hover { background: #e7f8f3; color: #0b9c78; }
.ai-dayview-list {
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ai-dayview-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
}
.ai-dayview-row:nth-child(odd) { background: #f7fafa; }
.ai-dayview-row span { color: #173143; font-weight: 700; }
.ai-dayview-row b { color: #0b9c78; font-weight: 800; }
.ai-dayview-row i {
  font-style: normal;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: #eef2f5;
  color: #61778a;
}
.ai-dayview-row i:contains("待领取") { background: #fff7d6; color: #c7940a; }
.ai-calendar-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 16px;
  color: #a4b9c8;
  font-size: 13px;
}

/* ---- 我的 · 奖励中心增强（需求 12） ---- */
.my2-reward-accrued {
  padding: 18px 20px;
  border: 1px solid rgba(176,200,210,.45);
  border-radius: 18px;
  background: #fff;
}
.my2-reward-accrued small { font-size: 11px; color: #61778a; text-transform: uppercase; display: block; margin-bottom: 6px; }
.my2-reward-accrued strong { display: block; font-size: 22px; font-weight: 900; color: #173143; }
.my2-reward-accrued em { font-style: normal; font-size: 11px; color: #a4b9c8; }
#reward-accrued-list { margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.my2-reward-assets, .my2-reward-claimable {
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(176,200,210,.45);
  border-radius: 18px;
  background: #fff;
}
.my2-reward-assets-head, .my2-reward-claim-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.my2-reward-assets-head h3, .my2-reward-claim-head h3 { font-size: 15px; font-weight: 800; color: #173143; }
.my2-reward-assets-head small, .my2-reward-claim-head small { font-size: 11px; color: #a4b9c8; }
.my2-reward-assets-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; }
.reward-asset-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f7fafa;
  font-size: 13px;
}
.reward-asset-row span { color: #173143; font-weight: 700; }
.reward-asset-row strong { color: #0b9c78; font-weight: 800; margin-left: auto; }
.reward-asset-row small { color: #a4b9c8; font-size: 10px; }
.reward-claim-btn {
  margin-left: auto;
  padding: 4px 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #12bd8e, #258fe5);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  flex-shrink: 0;
}
.reward-claim-btn:hover { opacity: .88; }
@media (max-width: 900px) {
  .my2-rewards-cards { grid-template-columns: 1fr 1fr; }
}

/* ===================================================
   样式美化增强（客户反馈：样式与排版不够精致）
   统一设计语言：青绿→蓝品牌渐变 / 光晕 / 玻璃质感 / 分层阴影 / 大圆角
   =================================================== */

/* ---- 通用卡片质感：渐变顶部光带 + 分层阴影 ---- */
.reservation-why-grid article,
.invite-community-section,
.invite-leaderboard-section,
.ai-dashboard-card,
.ai-bottom-grid > section {
  position: relative;
  overflow: hidden;
}
.reservation-why-grid article::before,
.invite-community-section::before,
.invite-leaderboard-section::before,
.ai-dashboard-card::before,
.ai-bottom-grid > section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #12bd8e, #258fe5 60%, rgba(124, 92, 255, .55));
  opacity: 0;
  transition: opacity .2s ease;
}
.reservation-why-grid article:hover::before,
.invite-community-section:hover::before,
.invite-leaderboard-section:hover::before,
.ai-dashboard-card:hover::before,
.ai-bottom-grid > section:hover::before { opacity: 1; }

/* ---- 预约 hero：品牌光晕强化 ---- */
.reservation-hero {
  background:
    radial-gradient(40rem 22rem at 88% 18%, rgba(37, 143, 229, .14), transparent 62%),
    radial-gradient(34rem 20rem at 4% 96%, rgba(18, 189, 142, .16), transparent 60%),
    linear-gradient(140deg, #ffffff, #e9f9f3);
}
.reservation-hero h1 {
  background: linear-gradient(92deg, #0d8a6d, #1471c9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.genesis-badge {
  background: linear-gradient(90deg, rgba(18, 189, 142, .12), rgba(37, 143, 229, .1));
  border: 1px solid rgba(18, 189, 142, .25);
}

/* ---- 认购流程 5 步链：强化连接与层次 ---- */
.reservation-flow-list li {
  background:
    radial-gradient(8rem 5rem at 100% 0%, rgba(18, 189, 142, .08), transparent 70%),
    #fff;
}
.reservation-flow-list li:hover {
  border-color: rgba(18, 189, 142, .35);
  box-shadow: 0 14px 32px rgba(30, 84, 96, .12);
  transform: translateY(-2px);
}
.reservation-flow-list li:not(:last-child)::after {
  color: #fff;
  background: linear-gradient(135deg, #12bd8e, #258fe5);
  box-shadow: 0 4px 12px rgba(25, 161, 165, .3);
}

/* ---- 邀请 hero：渐变舞台 + 光晕 ---- */
.invite-hero {
  position: relative;
  background:
    radial-gradient(34rem 20rem at 92% 12%, rgba(37, 143, 229, .13), transparent 62%),
    radial-gradient(30rem 18rem at 2% 100%, rgba(18, 189, 142, .15), transparent 60%),
    linear-gradient(135deg, #fbfefe, #ecf9f4);
  border-color: rgba(18, 189, 142, .2);
}
.invite-hero-total {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 40px rgba(30, 84, 96, .12);
  border-color: rgba(18, 189, 142, .22);
}
.invite-hero-total strong {
  font-size: 42px;
  background: linear-gradient(92deg, #12bd8e, #1471c9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- 宝箱区：琥珀邀请氛围 ---- */
.invite-chest-prompt {
  border: 1px solid rgba(240, 169, 44, .3);
  background:
    radial-gradient(20rem 12rem at 0% 0%, rgba(240, 169, 44, .1), transparent 60%),
    linear-gradient(135deg, #fffdf6, #fff);
}
.invite-chest-prompt > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe9b8, #ffd787);
  box-shadow: 0 8px 20px rgba(240, 169, 44, .28);
  font-size: 26px;
}

/* ---- 双奖励池：渐变主题卡 ---- */
/* ---- 今日数据条：三张迷你数据卡 ---- */
.invite-today-bar {
  padding: 18px 22px;
  border: 1px solid rgba(176, 200, 210, .4);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfefd, #f4f9f8);
}
.invite-today-item {
  position: relative;
  border: 1px solid #e2ecef;
  background: #fff;
  box-shadow: 0 6px 16px rgba(30, 84, 96, .06);
}
.invite-today-item strong { color: #0d8a6d; }
.invite-tomorrow {
  border: 1px solid rgba(18, 189, 142, .2);
  background: linear-gradient(135deg, rgba(18, 189, 142, .1), rgba(37, 143, 229, .1));
}
.invite-tomorrow strong {
  background: linear-gradient(92deg, #12bd8e, #1471c9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- 排行榜：奖牌 + 行质感 ---- */
.invite-leaderboard-row { padding: 12px 16px; }
.invite-leaderboard-row:hover { background: #f2faf7; }
.invite-rank { box-shadow: inset 0 0 0 1px rgba(176, 200, 210, .3); }
.invite-rank-1 {
  background: linear-gradient(135deg, #ffe9a8, #f7c948);
  color: #7a5a00;
  box-shadow: 0 4px 12px rgba(247, 201, 72, .35);
}
.invite-rank-2 {
  background: linear-gradient(135deg, #eef2f5, #dde5eb);
  color: #4d6273;
}
.invite-rank-3 {
  background: linear-gradient(135deg, #fcf0e8, #f3c9a8);
  color: #a35a1d;
}

/* ---- 空态：品牌图标 + 柔和底色 ---- */
.invite-record-empty {
  padding: 34px 18px;
  border: 1px dashed rgba(18, 189, 142, .35);
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fcfb, #fbfefd);
  text-align: center;
}

/* ---- AI 身份 4 卡：深色渐变主题 ---- */
.ai-tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 14px 12px;
  border-radius: 18px;
  border: 0;
  color: #fff;
  overflow: hidden;
  min-height: 170px;
  box-shadow: 0 12px 30px rgba(16, 37, 54, .12);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  user-select: none;
}
.ai-tier-card[data-ai-tier="pioneer"] { background: linear-gradient(135deg, #782ff1, #351198); }
.ai-tier-card[data-ai-tier="builder"] { background: linear-gradient(135deg, #2b6dd6, #0f3a7a); }
.ai-tier-card[data-ai-tier="guardian"] { background: linear-gradient(135deg, #098b68, #064c3d); }
.ai-tier-card[data-ai-tier="legacy"] { background: linear-gradient(135deg, #b56916, #633807); }
.ai-tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(16, 37, 54, .18);
}
.ai-tier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background: radial-gradient(circle at 90% 10%, #fff, transparent 50%);
  pointer-events: none;
}
.ai-tier-face {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-right: 64px;
}
.ai-tier-face strong {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .22);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
}
.ai-tier-face h3 { font-size: 16px; font-weight: 900; color: #fff; margin: 0; line-height: 1.15; text-shadow: 0 1px 2px rgba(0,0,0,.12); }
.ai-tier-face span { font-size: 12px; color: rgba(255, 255, 255, .82); font-weight: 700; }
.ai-tier-face img {
  position: absolute;
  top: -2px;
  right: 0;
  width: 56px;
  height: 56px;
  padding: 3px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  object-fit: cover;
  pointer-events: none;
}
.ai-tier-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  margin-top: auto;
  font-size: 12px;
}
.ai-tier-detail label { color: rgba(255, 255, 255, .72); font-size: 11px; }
.ai-tier-detail b { color: #fff; font-weight: 800; }
.ai-tier-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255, 255, 255, .22);
  color: #fff;
  text-align: center;
  font-style: normal;
  backdrop-filter: blur(4px);
}
.ai-tier-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .7;
}
.ai-tier-card > small {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, .8);
  font-size: 11px;
  font-weight: 800;
}
.ai-tier-card > small::after { content: "›"; font-size: 13px; }

/* 覆盖 ai-identity.css 中的旧样式，确保使用 data-ai-tier 的渐变色 */
.ai-collection-grid .ai-tier-card,
.ai-collection-grid .ai-tier-card:nth-child(1),
.ai-collection-grid .ai-tier-card:nth-child(2),
.ai-collection-grid .ai-tier-card:nth-child(3),
.ai-collection-grid .ai-tier-card:nth-child(4) {
  background: linear-gradient(135deg, #782ff1, #351198);
  color: #fff;
  border: 0;
}
.ai-collection-grid .ai-tier-card[data-ai-tier="builder"],
.ai-collection-grid .ai-tier-card[data-ai-tier="builder"]:nth-child(2) {
  background: linear-gradient(135deg, #2b6dd6, #0f3a7a);
}
.ai-collection-grid .ai-tier-card[data-ai-tier="guardian"],
.ai-collection-grid .ai-tier-card[data-ai-tier="guardian"]:nth-child(3) {
  background: linear-gradient(135deg, #098b68, #064c3d);
}
.ai-collection-grid .ai-tier-card[data-ai-tier="legacy"],
.ai-collection-grid .ai-tier-card[data-ai-tier="legacy"]:nth-child(4) {
  background: linear-gradient(135deg, #b56916, #633807);
}

@media (max-width: 720px) {
  .ai-collection-grid { grid-template-columns: 1fr; }
  .ai-tier-card { min-height: 150px; padding: 16px 14px 12px; gap: 10px; }
  .ai-tier-face { padding-right: 60px; }
  .ai-tier-face strong { width: 30px; height: 30px; font-size: 12px; }
  .ai-tier-face h3 { font-size: 15px; }
  .ai-tier-face img { width: 52px; height: 52px; }
  .ai-tier-detail { gap: 4px 10px; font-size: 11px; }
  .ai-tier-detail b { font-size: 12px; }
  .ai-tier-status { padding: 6px 10px; font-size: 11px; }
}

/* ---- 释放概览：可领取卡渐变 + 指标卡化 ---- */
.ai-claim-card {
  background:
    radial-gradient(16rem 11rem at 50% 100%, rgba(255, 255, 255, .22), transparent 65%),
    linear-gradient(150deg, #12bd8e, #0d97a8 65%, #0f7fd0);
}
.ai-claim-card p { color: rgba(255, 255, 255, .85); }
.ai-claim-card > strong { color: #fff; font-size: 46px; text-shadow: 0 8px 22px rgba(6, 60, 56, .25); }
.ai-claim-card > span { color: rgba(255, 255, 255, .8); }
.ai-claim-card button {
  background: rgba(255, 255, 255, .94);
  color: #0d8a6d;
  box-shadow: 0 10px 24px rgba(8, 66, 60, .24);
}
.ai-gift {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 10px 0;
  color: rgba(255, 255, 255, .55);
  font-size: 78px;
  line-height: 1;
  text-shadow: none;
}
.ai-gift i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #0b9c78;
  font-size: 25px;
  font-weight: 900;
  font-style: normal;
  box-shadow: 0 10px 26px rgba(6, 60, 56, .2);
}
.ai-metric-row span {
  padding: 14px 12px;
  border: 1px solid #e4edf0;
  border-left: 1px solid #e4edf0;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfefd, #f4faf8);
  box-shadow: 0 8px 18px rgba(30, 84, 96, .06);
}
.ai-metric-row i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 4px;
  border-radius: 7px;
  color: #0d8a6d;
  background: rgba(18, 189, 142, .12);
  font-style: normal;
}
.ai-metric-row strong { font-size: 21px; }
.ai-release-track {
  height: 14px;
  box-shadow: inset 0 1px 3px rgba(16, 37, 54, .12);
}
.ai-release-track span { box-shadow: 0 0 14px rgba(18, 189, 142, .4); }
.ai-release-foot span {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(30, 84, 96, .06);
}
.ai-release-foot span:hover { border-color: rgba(18, 189, 142, .4); }

/* ---- 记录 / 日历卡：头部装饰 + 格 hover ---- */
.ai-dashboard-card header {
  position: relative;
  padding-left: 12px;
}
.ai-dashboard-card header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #12bd8e, #258fe5);
}
.ai-record-list span { transition: border-color .15s ease, transform .15s ease; }
.ai-record-list span:hover { border-color: rgba(18, 189, 142, .4); }
.ai-month-cell { transition: transform .15s ease, box-shadow .15s ease; }
.ai-month-cell:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(30, 84, 96, .1); }

/* ---- 邀请中心：我的社区 / 排行榜标题与表格修正 ---- */
.invite-community-section,
.invite-leaderboard-section,
.invite-direct-section,
.invite-share-card,
.invite-channel-card {
  padding: 22px 24px 20px;
}
.invite-section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.invite-section-heading > div {
  flex: 1 1 auto;
  min-width: 0;
}
.invite-section-heading .eyebrow {
  margin: 0 0 6px;
  color: #0b9c78;
}
.invite-section-heading h2 {
  margin: 0 0 6px;
  line-height: 1.25;
}
.invite-section-heading .invite-wallet-chip {
  margin-top: 0;
}
.invite-section-copy {
  margin: 6px 0 0;
}
.invite-record-head,
.invite-record-row {
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(90px, .9fr));
  gap: 10px;
}
@media (max-width: 560px) {
  .invite-community-section,
  .invite-leaderboard-section,
  .invite-direct-section,
  .invite-share-card,
  .invite-channel-card {
    padding: 18px 16px;
  }
  .invite-section-heading h2 {
    font-size: 21px;
  }
}

/* ==========================================================================
   Rewards center entry (my.html) — entry to rewards.html
   ========================================================================== */
.my2-rewards-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.my2-rewards-enter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid rgba(11, 156, 120, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea77c, #0b9c78);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(14, 167, 124, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.my2-rewards-enter:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(14, 167, 124, 0.32);
  color: #ffffff;
}
@media (max-width: 560px) {
  .my2-rewards-head { flex-wrap: wrap; gap: 10px; }
  .my2-rewards-head-actions { width: 100%; justify-content: flex-end; }
}

/* ===================================================================
   预约 hero：创世先锋招募版式
   =================================================================== */
.reservation-hero--pioneer h1 { font-size: 44px; margin: 4px 0 8px; }
.reservation-hero--pioneer h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #12bd8e, #258fe5 60%, #7a5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reservation-hero-claim-line {
  margin: 0 0 10px;
  color: #173143;
  font-size: 16px;
  font-weight: 800;
}

/* 5 个圆形权益图标 */
.pioneer-benefit-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}
.pioneer-benefit-row li {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}
.pioneer-benefit-row i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(150deg, #eafaf4, #e6f1fd);
  box-shadow: inset 0 0 0 1px rgba(18, 189, 142, .22);
  color: #0f9f79;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
}
.pioneer-benefit-row span { color: #51758a; font-size: 11px; line-height: 1.35; }
@media (max-width: 520px) {
  .reservation-hero--pioneer h1 { font-size: 32px; }
  .pioneer-benefit-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 8px; }
}
/* Genesis Pioneer 卡片视觉 */
.reservation-hero--pioneer .reservation-hero-stage { position: relative; min-height: 320px; }
.pioneer-card {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 208px;
  margin: 0 auto;
  padding: 22px 18px 20px;
  border: 1px solid rgba(122, 92, 255, .26);
  border-radius: 22px;
  background: linear-gradient(165deg, #ffffff, #f2f4ff 58%, #eafaf4);
  box-shadow: 0 22px 48px rgba(45, 62, 112, .16);
}
.pioneer-card-kicker { color: #7a5cff; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.pioneer-card-title {
  background: linear-gradient(100deg, #12bd8e, #258fe5 55%, #7a5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .1em;
}
.pioneer-card img { width: 92px; height: 92px; object-fit: contain; }
.pioneer-card-laurel { color: #b9a6ff; font-size: 12px; letter-spacing: .3em; }
.pioneer-orbit {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(45, 62, 112, .16);
  color: #0f9f79;
  font-size: 12px;
  font-weight: 900;
}
.pioneer-orbit-1 { top: 12%; right: 8%; color: #258fe5; }
.pioneer-orbit-2 { top: 44%; right: 2%; color: #12bd8e; }
.pioneer-orbit-3 { bottom: 14%; right: 12%; color: #7a5cff; font-size: 10px; }
@media (max-width: 900px) {
  .reservation-hero--pioneer { grid-template-columns: 1fr; }
  .reservation-hero--pioneer .reservation-hero-stage { min-height: 260px; }
  .pioneer-orbit-3 { bottom: 6%; }
}
/* 实时预约动态 ticker */
.pioneer-live {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: -14px 0 24px;
  padding: 12px 18px;
  overflow: hidden;
  border: 1px solid rgba(176, 200, 210, .55);
  border-radius: 16px;
  background: #fff;
}
.pioneer-live-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: #173143;
  font-size: 12px;
  font-weight: 800;
}
.pioneer-live-label b {
  padding: 3px 7px;
  border-radius: 999px;
  background: #ff4d4f;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}
.pioneer-live-track {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pioneer-live-track::-webkit-scrollbar { display: none; }
.pioneer-live-track > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: #51758a;
  font-size: 12px;
  white-space: nowrap;
}
.pioneer-live-track > span i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(140deg, #eafaf4, #e6f1fd);
  color: #0f9f79;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}
.pioneer-live-track > span b { color: #173143; font-weight: 700; }
.pioneer-live-track > span small { color: #8ba0ad; font-size: 11px; }
.pioneer-live-empty { color: #8ba0ad; font-size: 12px; }
@media (max-width: 620px) {
  .pioneer-live { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* 为什么现在加入：5 卡 + 标签 */
.reservation-why-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.reservation-why-grid--five article { position: relative; display: grid; align-content: start; gap: 8px; }
.why-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(150deg, #eafaf4, #e6f1fd);
  font-size: 18px;
}
.why-tag {
  justify-self: start;
  margin-top: 2px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.why-tag--priority { background: #fff0e6; color: #d9700f; }
.why-tag--airdrop { background: #ffeef2; color: #d63c68; }
.why-tag--identity { background: #fff6e0; color: #b8860b; }
.why-tag--points { background: #e9faf3; color: #0f9f79; }
.why-tag--nft { background: #f1eeff; color: #6a4df0; }
@media (max-width: 1120px) { .reservation-why-grid--five { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .reservation-why-grid--five { grid-template-columns: 1fr; } }

/* hero 4 统计 */
.invite-hero--stats { display: block; padding: 26px 30px 24px; }
.invite-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.invite-hero-metrics article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(176, 200, 210, .5);
  border-radius: 16px;
  background: #fff;
}
.invite-hero-metrics i {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, #12bd8e, #258fe5);
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
}
.invite-hero-metrics small { display: block; color: #61778a; font-size: 12px; }
.invite-hero-metrics strong { display: block; margin: 1px 0; color: #173143; font-size: 21px; font-weight: 800; line-height: 1.15; }
.invite-hero-metrics b { color: #0f9f79; font-size: 11px; font-weight: 700; }
@media (max-width: 900px) { .invite-hero-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .invite-hero--stats { padding: 22px 18px; } }
/* 今日待开启宝箱 */
.invite-chest-section { margin-bottom: 20px; }
.invite-chest-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
}
.invite-chest-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.invite-chest-card {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 16px 12px 14px;
  border: 1px solid rgba(176, 200, 210, .55);
  border-radius: 18px;
  background: #fff;
  text-align: center;
}
.invite-chest-card h3 { margin: 0; color: #173143; font-size: 14px; font-weight: 800; }
.invite-chest-art { font-size: 40px; line-height: 1.1; }
.invite-chest-card strong { color: #173143; font-size: 22px; font-weight: 800; }
.invite-chest-card small { color: #61778a; font-size: 11px; line-height: 1.4; }
.invite-chest-card--reserve { background: linear-gradient(160deg, #f2fdf8, #fff 62%); border-color: rgba(18, 189, 142, .34); }
.invite-chest-card--order { background: linear-gradient(160deg, #f4f5ff, #fff 62%); border-color: rgba(122, 92, 255, .3); }
.invite-chest-card--community { background: linear-gradient(160deg, #fff8ef, #fff 62%); border-color: rgba(255, 172, 47, .34); }
.invite-chest-streak {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3px;
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(176, 200, 210, .55);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfefe, #eef8f5);
  text-align: center;
}
.invite-chest-streak small { color: #61778a; font-size: 12px; }
.invite-chest-streak strong { color: #173143; font-size: 26px; font-weight: 800; }
.invite-chest-streak b { color: #0f9f79; font-size: 11px; font-weight: 700; }
.invite-chest-streak span { font-size: 18px; }
.invite-chest-open { width: 100%; margin-top: 12px; }
.invite-chest-open i { font-style: normal; }
@media (max-width: 900px) {
  .invite-chest-layout { grid-template-columns: 1fr; }
  .invite-chest-streak { min-width: 0; }
}
@media (max-width: 560px) {
  .invite-chest-grid { gap: 8px; }
  .invite-chest-card { padding: 12px 6px 10px; }
  .invite-chest-card h3 { font-size: 12px; }
  .invite-chest-art { font-size: 30px; }
  .invite-chest-card strong { font-size: 18px; }
  .invite-chest-card small { font-size: 10px; }
}
/* 双奖励池 */
.invite-pool-card { position: relative; overflow: hidden; display: block; padding: 20px 22px; }
.invite-pool-card header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.invite-pool-card header small { display: block; color: #61778a; font-size: 13px; font-weight: 700; }
.invite-pool-card header strong { display: block; margin: 4px 0 2px; color: #173143; font-size: 34px; font-weight: 800; line-height: 1.05; }
.invite-pool-card header > div > span { color: #61778a; font-size: 12px; }
.invite-pool-rule {
  flex: 0 0 auto;
  padding: 5px 11px;
  border: 1px solid rgba(176, 200, 210, .6);
  border-radius: 999px;
  background: #fff;
  color: #61778a;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.invite-pool-rule:hover { border-color: rgba(18, 189, 142, .45); color: #0f9f79; }
.invite-pool-art { position: absolute; top: 14px; right: 58px; font-size: 46px; opacity: .5; pointer-events: none; }
.invite-pool-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(176, 200, 210, .5);
  border-radius: 14px;
  background: rgba(176, 200, 210, .4);
}
.invite-pool-metrics > div { padding: 10px 12px; background: #fff; }
.invite-pool-metrics dt { color: #61778a; font-size: 11px; }
.invite-pool-metrics dd { margin: 2px 0 0; color: #173143; font-size: 17px; font-weight: 800; }
.invite-pool-metrics i { color: #8ba0ad; font-size: 10px; font-style: normal; }
.invite-pool-forecast { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.invite-pool-forecast span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(176, 200, 210, .5);
  border-radius: 12px;
  background: #fbfefe;
  color: #61778a;
  font-size: 11px;
}
.invite-pool-forecast strong { color: #173143; font-size: 12px; font-weight: 800; }
.invite-pool-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding: 13px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.invite-pool-cta i { font-style: normal; }
.invite-pool-card--wow .invite-pool-cta { background: linear-gradient(90deg, #12bd8e, #4fd07f); }
.invite-pool-card--ido .invite-pool-cta { background: linear-gradient(90deg, #6a5cff, #258fe5); }
.invite-pool-card--wow { background: linear-gradient(160deg, #f1fdf8, #fff 58%); border-color: rgba(18, 189, 142, .3); }
.invite-pool-card--ido { background: linear-gradient(160deg, #f3f3ff, #fff 58%); border-color: rgba(122, 92, 255, .28); }
@media (max-width: 700px) {
  .invite-pool-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .invite-pool-forecast { grid-template-columns: 1fr; }
  .invite-pool-card header strong { font-size: 28px; }
  .invite-pool-art { display: none; }
}
/* 我的直推 + 我的社区（双列） */
.invite-duo-grid,
.invite-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.invite-wallet-chip {
  display: inline-block;
  margin-top: 4px;
  color: #61778a;
  font-size: 11px;
}
.invite-wallet-chip b { color: #0f9f79; font-weight: 700; }
.invite-record-head--community { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
@media (max-width: 980px) {
  .invite-duo-grid,
  .invite-share-grid { grid-template-columns: 1fr; }
}

/* 双排行榜 + 我的奖励（R6：预约榜迁至预约官网，3 列改 2 列） */
.invite-rank-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.invite-rank-self {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  border-top: 1px solid rgba(176, 200, 210, .5);
  color: #61778a;
  font-size: 12px;
}
.invite-rank-self strong { color: #173143; font-size: 15px; font-weight: 800; }
.invite-rank-self b { color: #0f9f79; font-size: 12px; font-weight: 700; }
.invite-rank-more { width: 100%; margin-top: 10px; }
@media (max-width: 1120px) { .invite-rank-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .invite-rank-grid { grid-template-columns: 1fr; } }

/* 我的奖励四宫格 */
.invite-reward-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.invite-reward-grid article {
  position: relative;
  padding: 14px 14px 12px;
  border: 1px solid rgba(176, 200, 210, .55);
  border-radius: 16px;
  background: linear-gradient(170deg, #fbfefe, #f2f8f7);
}
.invite-reward-grid small { display: block; color: #61778a; font-size: 11px; }
.invite-reward-grid strong { display: block; margin: 4px 0 1px; color: #173143; font-size: 20px; font-weight: 800; }
.invite-reward-grid article > span { color: #8ba0ad; font-size: 11px; }
.invite-reward-grid i {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #12bd8e, #258fe5);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.invite-reward-total { margin: 12px 0 0; color: #61778a; font-size: 12px; }
.invite-reward-total strong { color: #173143; font-weight: 800; }
.invite-reward-claim { width: 100%; margin-top: 10px; }
.invite-reward-claim i { font-style: normal; }
/* 分享中心 */
.invite-share-methods { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 14px 0; }
.invite-share-method {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(176, 200, 210, .55);
  border-radius: 14px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.invite-share-method:hover { border-color: rgba(18, 189, 142, .45); box-shadow: 0 10px 24px rgba(30, 84, 96, .1); transform: translateY(-2px); }
.invite-share-method i {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #12bd8e, #258fe5);
  color: #fff;
  font-size: 15px;
  font-style: normal;
}
.invite-share-method strong { display: block; color: #173143; font-size: 13px; font-weight: 800; }
.invite-share-method small { color: #61778a; font-size: 11px; }
@media (max-width: 560px) { .invite-share-methods { grid-template-columns: 1fr; } }

/* 一键分享渠道 */
.invite-channel-card { align-self: start; }
.invite-channel-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-top: 14px; }
.invite-channel-grid button {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 12px 4px;
  border: 1px solid rgba(176, 200, 210, .5);
  border-radius: 14px;
  background: #fff;
  color: #61778a;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.invite-channel-grid button:hover { border-color: rgba(18, 189, 142, .45); color: #0f9f79; }
.invite-channel-grid i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9f8f4, #e7f1fb);
  font-size: 16px;
  font-style: normal;
}
@media (max-width: 420px) { .invite-channel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* 奖励规则说明 */
.invite-rules-section {
  padding: 22px 24px;
  border: 1px solid rgba(176, 200, 210, .55);
  border-radius: 20px;
  background: #fff;
}
.invite-rules-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-bottom: 14px; }
.invite-rules-grid article {
  padding: 14px;
  border: 1px solid rgba(176, 200, 210, .5);
  border-radius: 16px;
  background: linear-gradient(170deg, #fbfefe, #f4f9f8);
}
.invite-rules-grid p { margin: 9px 0 0; color: #61778a; font-size: 12px; line-height: 1.55; }
.invite-rule-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #173143;
  font-size: 12px;
  font-weight: 800;
}
.invite-rule-tag i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-style: normal;
}
.invite-rule-tag--base i { background: linear-gradient(135deg, #ffac2f, #ff8a3d); }
.invite-rule-tag--points i { background: linear-gradient(135deg, #12bd8e, #4fd07f); }
.invite-rule-tag--ido i { background: linear-gradient(135deg, #7a5cff, #258fe5); }
.invite-rule-tag--score i { background: linear-gradient(135deg, #258fe5, #23c4d8); }
.invite-rule-tag--rank i { background: linear-gradient(135deg, #ff7b35, #e84a8a); }
@media (max-width: 1120px) { .invite-rules-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .invite-rules-grid { grid-template-columns: 1fr; } .invite-rules-section { padding: 18px; } }

/* 分享中心内的二维码：单列卡片里靠左紧凑排布 */
#invite-panel .invite-share-card .invite-qr-wrap {
  justify-items: start;
  gap: 8px;
  margin-top: 14px;
}
#invite-panel .invite-share-card .invite-qr-wrap > small { text-align: left; }
#invite-panel .invite-qr-placeholder,
#invite-panel .invite-share-card .invite-qr-wrap canvas {
  width: 140px;
  height: 140px;
  border: 1px solid rgba(176, 200, 210, .6);
  border-radius: 14px;
  background: #f7fbfa;
  box-shadow: none;
}
#invite-panel .invite-qr-placeholder { color: #61778a; }
#invite-panel .invite-qr-placeholder span { color: #9fb2bd; font-size: 26px; }

/* 未开放的行动按钮：保留可读文字对比度 */
#invite-panel .primary-action:disabled {
  cursor: not-allowed;
  border: 1px solid rgba(176, 200, 210, .6);
  background: #eef4f4;
  color: #7d8f9c;
  filter: none;
  opacity: 1;
}

/* 距离结算等占位文案在指标格里换行时不撑破布局 */
.invite-pool-metrics dd { overflow-wrap: anywhere; font-size: 17px; }
.invite-pool-metrics dd:not(:empty) { line-height: 1.3; }
