/* ============================================================
 * 走个路 H5 · 苹果 Liquid Glass 毛玻璃风
 * 轻盈光感背景 + 真毛玻璃(blur+saturate) + 内高光描边 + 浮动景深
 * 兼容：微信 WebView（仅 CSS，class 名称与旧版完全一致，JS/HTML 不变）
 * ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

:root {
  /* 基底：轻盈、通透 */
  --bg: #EAF3F0;
  --ink: #0E1B16;
  --ink2: rgba(14, 27, 22, 0.55);
  --ink3: rgba(14, 27, 22, 0.34);
  --ink4: rgba(14, 27, 22, 0.16);

  /* 苹果绿 → 青 渐变 accent */
  --accent: #2FB386;
  --accent2: #35B6E8;
  --grad: linear-gradient(135deg, #2FB386 0%, #35B6E8 100%);
  --grad-soft: linear-gradient(135deg, rgba(47,179,134,.18) 0%, rgba(53,182,232,.18) 100%);

  --danger: #E5484D;

  /* 毛玻璃材质 */
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.8);
  --glass-hi: rgba(255, 255, 255, 0.95);   /* 顶部高光描边 */
  --glass-edge: rgba(255, 255, 255, 0.55);
  --glass-shadow: 0 1px 1px rgba(255,255,255,.9) inset,
                  0 22px 48px -24px rgba(28, 58, 70, 0.35);
  --glass-shadow-sm: 0 1px 0 rgba(255,255,255,.9) inset,
                     0 12px 30px -18px rgba(28, 58, 70, 0.28);
}

html { font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  min-height: 100vh;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  user-select: none;
  overflow-x: hidden;
  position: relative;
  /* 主体光感背景：多层次柔和 aurora，非紫色cliché */
  background-color: var(--bg);
  background-image:
    radial-gradient(110% 60% at 12% -8%, rgba(47,179,134,0.20), transparent 60%),
    radial-gradient(80% 55% at 108% 4%, rgba(53,182,232,0.22), transparent 62%),
    radial-gradient(90% 60% at 18% 112%, rgba(168,214,255,0.35), transparent 64%),
    radial-gradient(70% 50% at 96% 96%, rgba(126,224,196,0.26), transparent 60%);
  background-attachment: fixed;
}
/* 噪点颗粒：给光面添加细微质感，避免塑料感 */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

input, button { font-family: inherit; }

.hidden { display: none !important; }

/* ---------- 毛玻璃工具 ---------- */
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-edge);
  border-top-color: var(--glass-hi);
  box-shadow: var(--glass-shadow);
}
.glass-strong {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid var(--glass-hi);
  box-shadow: var(--glass-shadow);
}

/* ---------- 启动画面 ---------- */
.splash {
  position: fixed; inset: 0; z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(90% 60% at 30% 20%, rgba(47,179,134,0.22), transparent 60%),
    radial-gradient(80% 55% at 75% 80%, rgba(53,182,232,0.22), transparent 60%),
    var(--bg);
  transition: opacity .45s ease, transform .45s ease;
}
.splash.out { opacity: 0; pointer-events: none; transform: scale(1.06); }
.splash-logo {
  filter: drop-shadow(0 14px 40px rgba(47,179,134,0.35));
  animation: pulse 1.7s ease infinite;
}
.splash-name { margin-top: 20px; font-size: 28px; font-weight: 800; letter-spacing: 6px; color: var(--ink); }
.splash-slogan {
  margin-top: 10px; font-size: 13px; color: var(--ink2); letter-spacing: 3px;
  background: var(--glass); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6); padding: 6px 16px; border-radius: 999px;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: .9; } }

/* ---------- 视图与切换 ---------- */
.view { max-width: 430px; margin: 0 auto; padding: 0 18px; animation: viewIn .38s cubic-bezier(.22,.9,.28,1); }
/* 次级页面以「玻璃薄板上浮」方式进入（登录/首页整块淡入） */
.view-sheet { animation-duration: .42s; animation-name: sheetIn; }
@keyframes sheetIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes viewIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- 按钮 ---------- */
.btn {
  display: block; border: none; cursor: pointer;
  border-radius: 17px; font-size: 16px; font-weight: 600;
  letter-spacing: .5px;
  text-align: center; text-decoration: none;
  padding: 15px 20px; min-height: 52px; line-height: 22px;
  color: #fff;
  transition: transform .14s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:active { transform: scale(.965); filter: brightness(1.05); }
.btn-primary {
  background: var(--grad);
  position: relative;
  box-shadow: 0 14px 34px -12px rgba(47,179,134,0.7), 0 1px 0 rgba(255,255,255,.5) inset;
}
/* 按钮顶部一道玻璃高光，呼应 liquid glass */
.btn-primary::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 0; height: 45%;
  border-radius: 17px 17px 50% 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,0));
  opacity: .7; pointer-events: none;
}
.btn-lg { font-size: 17px; padding: 17px 20px; }
.btn-block { width: 100%; }
.btn-ghost {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  color: var(--accent);
  border: 1px solid var(--glass-hi);
  box-shadow: var(--glass-shadow-sm);
}
.btn-ghost:active { filter: brightness(.98); }
.btn[disabled] { opacity: .5; pointer-events: none; filter: saturate(.6); }

.icon-btn {
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
  border: 1px solid var(--glass-hi);
  box-shadow: var(--glass-shadow-sm);
  width: 42px; height: 42px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform .14s ease;
}
.icon-btn:active { transform: scale(.9); }

/* ---------- 登录视图 ---------- */
.login-hero { padding: 52px 4px 6px; }
.login-badge {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1px;
  color: var(--accent);
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--glass-hi);
  box-shadow: var(--glass-shadow-sm);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.login-title { font-size: 36px; line-height: 1.3; font-weight: 800; letter-spacing: .5px; color: var(--ink); }
.login-sub { margin-top: 16px; font-size: 14.5px; line-height: 1.9; color: var(--ink2); }
.login-art { margin: 26px 0 8px; display: flex; justify-content: center; }
/* 登录页预览卡片：玻璃面板 + 迷你仪表环 + 上升走势，呼应首页但不喧宾夺主 */
.demo-card {
  width: 236px; padding: 22px 20px 18px; border-radius: 26px; text-align: center;
}
.demo-ring { position: relative; width: 170px; height: 170px; margin: 0 auto; }
.demo-ring svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 16px 34px rgba(47,179,134,0.26)); }
.demo-ring-num {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 30px; font-weight: 800; color: var(--ink);
  letter-spacing: 1px; line-height: 1;
}
.demo-unit { margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--ink3); letter-spacing: 2px; }
.demo-curve { margin: -2px auto 0; display: block; }
.demo-caption { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--ink2); letter-spacing: .5px; }
.login-actions { padding: 22px 0 30px; }
.login-tip { margin-top: 16px; text-align: center; font-size: 12px; color: var(--ink3); }

/* 微信登录按钮：全宽居中，内嵌微信图标 */
.btn-wx {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%;
}
.btn-wx-ico { display: inline-block; flex: none; opacity: .95; }

/* 微信扫码登录（浮层） */
.modal-mask {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,40,32,.42);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
body.modal-open { overflow: hidden; }
.modal-sheet {
  position: relative; width: 100%; max-width: 300px; padding: 26px 22px 22px;
  border-radius: 22px; text-align: center;
  background: linear-gradient(160deg, rgba(255,255,255,.97), rgba(233,246,240,.95));
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 30px 70px rgba(12,40,30,.35), inset 0 1px 0 rgba(255,255,255,.95);
}
.modal-close {
  position: absolute; top: 10px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  border: none; background: rgba(14,27,22,.06);
  color: var(--ink3); font-size: 18px; line-height: 1; cursor: pointer;
}
.modal-head { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.login-qr-card {
  width: 172px; height: 172px; margin: 0 auto;
  padding: 12px; border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(14,27,22,.08);
  box-shadow: inset 0 1px 3px rgba(14,27,22,.06);
  display: flex; align-items: center; justify-content: center;
}
.login-qr-card img { display: block; width: 100%; height: 100%; max-width: none; }
.login-qr-tip { margin-top: 14px; text-align: left; font-size: 12.5px; line-height: 1.8; color: var(--ink2); }
.login-qr-tip > div { margin: 5px 0; }
.login-qr-tip .dot {
  display: inline-block; width: 16px; height: 16px; border-radius: 50%; vertical-align: middle;
  background: var(--grad); color: #fff; font-size: 10px; font-weight: 700;
  text-align: center; line-height: 16px; margin-right: 7px;
  box-shadow: 0 2px 6px rgba(47,179,134,0.32);
}
.login-qr-fine { margin: 14px 0 0; font-size: 12px; color: var(--ink3); }

/* ---------- 页头 ---------- */
.page-head {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 2px 18px;
}
.page-head h2 { font-size: 22px; font-weight: 700; flex: 1; letter-spacing: .3px; }
.back {
  width: 40px; height: 40px; border-radius: 14px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
  border: 1px solid var(--glass-hi);
  box-shadow: var(--glass-shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 19px; text-decoration: none; cursor: pointer;
  transition: transform .14s ease;
}
.back:active { transform: scale(.9); }
.head-link {
  font-size: 13px; color: var(--accent); font-weight: 600; text-decoration: none;
  flex-shrink: 0; letter-spacing: .3px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--glass-hi);
  box-shadow: var(--glass-shadow-sm);
  border-radius: 999px; padding: 8px 16px;
}

/* ---------- 卡片 ---------- */
.card {
  background: var(--glass);
  -webkit-backdrop-filter: blur(26px) saturate(185%);
  backdrop-filter: blur(26px) saturate(185%);
  border: 1px solid var(--glass-edge);
  border-top-color: var(--glass-hi);
  border-radius: 26px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--glass-shadow);
}
.card-quiet {
  background: rgba(255,255,255,0.4);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--glass-shadow-sm);
}
.card-title { font-size: 15px; font-weight: 600; margin-bottom: 16px; color: var(--ink2); letter-spacing: .3px; }

/* ---------- 绑定表单 ---------- */
.steps-hint {
  font-size: 12.5px; color: var(--ink2); line-height: 2.2;
  background: var(--grad-soft);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px; padding: 12px 16px; margin-bottom: 18px;
}
.steps-hint .dot {
  display: inline-block; width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 11px; font-weight: 700;
  text-align: center; line-height: 18px; margin-right: 6px;
  box-shadow: 0 3px 8px rgba(47,179,134,0.4);
}
.field { display: block; margin-bottom: 16px; }
.field-label { display: block; font-size: 13px; color: var(--ink2); margin-bottom: 8px; font-weight: 500; }
.field input {
  width: 100%; height: 52px; border-radius: 16px;
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-edge); border-top-color: var(--glass-hi);
  color: var(--ink); font-size: 16px; padding: 0 16px; outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
  -webkit-appearance: none; appearance: none;
}
.field input::placeholder { color: var(--ink4); }
.field input:focus {
  border-color: rgba(47,179,134,0.7);
  box-shadow: 0 0 0 4px rgba(47,179,134,0.14);
}
.field-tip { margin-top: 12px; font-size: 12px; color: var(--ink3); text-align: center; }
.faq { font-size: 13px; color: var(--ink2); line-height: 1.85; }
.faq b { color: var(--ink); }

/* ---------- 账号池领号 ---------- */
.pool-intro { text-align: center; padding: 30px 20px 22px; }
.pool-intro-ico { margin-bottom: 14px; filter: drop-shadow(0 10px 20px rgba(47,179,134,0.3)); }
.pool-intro-title { font-size: 20px; font-weight: 700; }
.pool-intro-sub { margin: 10px 0 22px; font-size: 13.5px; color: var(--ink2); line-height: 1.9; }
.pool-qr-wrap {
  position: relative; width: 236px; height: 236px; margin: 6px auto 12px;
  background: #fff; border-radius: 24px; padding: 18px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 26px 60px -24px rgba(28, 58, 70, 0.5), 0 1px 0 rgba(255,255,255,.9) inset;
}
.pool-qr-wrap img { display: block; width: 100%; height: 100%; object-fit: contain; }
.pool-qr-mask {
  position: absolute; inset: 0; border-radius: 24px;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--danger); font-size: 15px; font-weight: 600; letter-spacing: 1px;
}
.pool-count {
  text-align: center; font-size: 13px; color: var(--accent); font-weight: 600;
  letter-spacing: 1px; margin-bottom: 14px; font-variant-numeric: tabular-nums;
}
.pool-steps {
  font-size: 12.5px; color: var(--ink2); line-height: 2.2;
  background: var(--grad-soft);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px; padding: 10px 16px; margin-bottom: 14px;
}
.pool-steps .dot {
  display: inline-block; width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 11px; font-weight: 700;
  text-align: center; line-height: 18px; margin-right: 6px;
  box-shadow: 0 3px 8px rgba(47,179,134,0.4);
}
.pool-state {
  text-align: center; font-size: 13px; color: var(--accent); font-weight: 500;
  padding: 8px 0 12px; letter-spacing: .5px;
  animation: poolPulse 1.8s ease infinite;
}
@keyframes poolPulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

/* ---------- 首页 ---------- */
.home-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 2px 6px;
}
.brand { font-size: 19px; font-weight: 800; letter-spacing: 2px; }

.dash { text-align: center; padding: 8px 0 4px; }
.dash-date { font-size: 12.5px; color: var(--ink3); letter-spacing: 1px; }
.dash-ring { position: relative; width: 250px; height: 250px; margin: 6px auto 2px; }
.dash-ring svg { width: 100%; height: 100%; filter: drop-shadow(0 20px 44px rgba(47,179,134,0.28)); }
.ring-glass {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid var(--glass-hi);
  box-shadow: var(--glass-shadow);
}
.ring-status {
  position: absolute; left: 50%; bottom: 38px; transform: translateX(-50%);
  font-size: 11.5px; color: var(--accent); letter-spacing: 1px;
  padding: 5px 14px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--glass-hi);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: var(--glass-shadow-sm); white-space: nowrap; font-weight: 600;
}
.ring-status.warn { color: #D97706; }

.dash-meta {
  display: flex; justify-content: center;
  margin: 16px 0 20px; gap: 0;
}
.meta {
  width: 116px; text-align: center;
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(175%);
  backdrop-filter: blur(18px) saturate(175%);
  border: 1px solid var(--glass-edge); border-top-color: var(--glass-hi);
  border-radius: 20px; padding: 14px 0; box-shadow: var(--glass-shadow-sm);
}
.meta + .meta { margin-left: 12px; }
.meta-num { font-size: 22px; font-weight: 800; color: var(--ink); }
.meta-label { margin-top: 5px; font-size: 11.5px; color: var(--ink3); letter-spacing: .5px; }

.notice {
  margin-top: 14px; font-size: 12.5px; line-height: 1.75;
  color: #9A6A00; background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,224,138,.6);
  border-radius: 16px; padding: 11px 15px; text-align: left;
}

/* ---------- 图表 ---------- */
.chart { display: flex; align-items: flex-end; height: 112px; }
.chart .bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.chart .bar {
  width: 60%; max-width: 15px; border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #2FB386 0%, rgba(53,182,232,0.45) 100%);
  min-height: 3px;
  box-shadow: 0 4px 12px -3px rgba(47,179,134,0.5);
  animation: barUp .55s ease both;
  transform-origin: bottom;
}
@keyframes barUp { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.chart .bar-label { margin-top: 7px; font-size: 9px; color: var(--ink3); }
.chart .bar-val { font-size: 8.5px; color: var(--ink3); margin-bottom: 4px; }

/* ---------- 套餐 ---------- */
.plan-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.benefit { font-size: 13.5px; color: var(--ink2); }
.b-ico {
  display: inline-block; width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 11px; font-weight: 700;
  text-align: center; line-height: 18px; margin-right: 8px;
  box-shadow: 0 3px 8px rgba(47,179,134,0.4);
}
.plan-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.plan {
  position: relative; border-radius: 22px; padding: 18px;
  background: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(20px) saturate(175%);
  backdrop-filter: blur(20px) saturate(175%);
  border: 1px solid var(--glass-edge); border-top-color: var(--glass-hi);
  box-shadow: var(--glass-shadow-sm);
  cursor: pointer; transition: transform .15s ease, border-color .18s ease, box-shadow .18s ease;
  display: flex; align-items: center; justify-content: space-between;
}
.plan:active { transform: scale(.98); }
.plan.sel {
  background: var(--glass-strong);
  border-color: rgba(47,179,134,0.7);
  box-shadow: var(--glass-shadow), 0 0 0 3px rgba(47,179,134,0.16);
  transform: scale(1.015);
}
.plan-badge {
  position: absolute; top: -10px; right: 16px;
  font-size: 10.5px; font-weight: 700; color: #fff; letter-spacing: .5px;
  background: var(--grad); border-radius: 999px; padding: 4px 12px;
  box-shadow: 0 6px 14px -4px rgba(47,179,134,0.6);
}
.plan-name { font-size: 16px; font-weight: 700; }
.plan-days { font-size: 12px; color: var(--ink3); margin-top: 4px; }
.plan-price { text-align: right; }
.plan-price .cur { font-size: 13px; color: var(--accent); font-weight: 700; }
.plan-price .num { font-size: 26px; font-weight: 800; color: var(--ink); }
.plan-price .old { font-size: 11.5px; color: var(--ink3); text-decoration: line-through; }
.plan-tip { margin-top: 14px; text-align: center; font-size: 12px; color: var(--ink3); }

/* ---------- 我的 ---------- */
.me-profile { display: flex; align-items: center; padding: 22px 20px; }
.avatar {
  width: 56px; height: 56px; border-radius: 19px;
  background: var(--grad); color: #fff;
  font-size: 21px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(47,179,134,0.6), 0 1px 0 rgba(255,255,255,.5) inset;
}
.me-info { margin-left: 16px; }
.me-name { font-size: 16px; font-weight: 700; word-break: break-all; }
.me-sub { font-size: 12.5px; color: var(--ink2); margin-top: 4px; }

.target-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.target-stepper {
  width: 54px; height: 54px; border-radius: 17px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
  border: 1px solid var(--glass-hi); box-shadow: var(--glass-shadow-sm);
  color: var(--ink); font-size: 26px; font-weight: 600; cursor: pointer;
  transition: transform .12s ease;
}
.target-stepper:active { transform: scale(.9); }
.target-value { flex: 1; text-align: center; display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.target-value input {
  width: 128px; background: transparent; border: none; outline: none;
  color: var(--ink); font-size: 38px; font-weight: 800; text-align: center;
  border-bottom: 2.5px solid var(--grad); caret-color: var(--accent);
}
.target-value input::-webkit-outer-spin-button,
.target-value input::-webkit-inner-spin-button { -webkit-appearance: none; }
.target-value span { font-size: 14px; color: var(--ink2); }

.target-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.preset {
  font-size: 13px; color: var(--ink2); font-weight: 500;
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  backdrop-filter: blur(14px) saturate(170%);
  border: 1px solid var(--glass-edge); border-top-color: var(--glass-hi);
  box-shadow: var(--glass-shadow-sm);
  border-radius: 999px; padding: 9px 18px; cursor: pointer; min-height: 38px;
  transition: all .15s ease;
}
.preset:active { transform: scale(.96); }
.preset.on {
  color: #fff; border-color: transparent;
  background: var(--grad); box-shadow: 0 8px 18px -6px rgba(47,179,134,0.6);
}

.switch-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--ink2); margin-bottom: 20px; cursor: pointer;
}
.switch-row input { display: none; }
.switch-row i {
  width: 48px; height: 28px; border-radius: 999px;
  background: rgba(14,27,22,0.14); position: relative;
  transition: background .2s ease; flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
}
.switch-row i::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.22);
  transition: left .2s cubic-bezier(.3,.9,.4,1);
}
.switch-row input:checked + i { background: var(--grad); }
.switch-row input:checked + i::after { left: 23px; }

.cell {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; padding: 16px 2px; cursor: pointer;
  transition: transform .12s ease;
}
.cell:active { transform: scale(.99); }
.cell + .cell { border-top: 1px solid var(--ink4); }
.cell b { font-size: 14px; font-weight: 500; color: var(--ink2); }
.cell-danger span { color: var(--danger); font-weight: 500; }

.foot-note { text-align: center; font-size: 11.5px; color: var(--ink3); padding: 10px 0 18px; letter-spacing: 1px; }

/* ---------- Toast / Loading（毛玻璃浮层） ---------- */
.toast {
  position: fixed; left: 50%; bottom: 100px; transform: translateX(-50%);
  z-index: 100; max-width: 78vw;
  color: #fff; font-size: 14px; line-height: 1.5;
  padding: 12px 20px; border-radius: 16px;
  background: rgba(14,27,22,0.72);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.45);
  animation: toastIn .3s cubic-bezier(.22,.9,.28,1);
}
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 10px); } to { opacity: 1; transform: translate(-50%, 0); } }

.loading {
  position: fixed; inset: 0; z-index: 98;
  display: flex; align-items: center; justify-content: center;
  background: rgba(234,243,240,0.35);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.loading-spin {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 3px solid rgba(47,179,134,0.25);
  border-top-color: var(--accent);
  box-shadow: var(--glass-shadow-sm);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 自有账号页 ---------- */
.link-inline { color: var(--accent); text-decoration: none; font-weight: 600; }

.own-hero { text-align: center; padding: 20px 20px 26px; }
.own-badge {
  display: inline-block; font-size: 11.5px; font-weight: 700; color: var(--accent); letter-spacing: 1px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-hi); box-shadow: var(--glass-shadow-sm);
  border-radius: 999px; padding: 6px 16px;
}
.own-title { font-size: 26px; font-weight: 800; margin: 18px 0 10px; }
.own-sub { font-size: 13.5px; color: var(--ink2); line-height: 1.9; }