:root{
  --primary:#0f5bd8;
  --primary-deep:#0b3f9c;
  --primary-soft:#e9f1ff;
  --teal:#0f9ad6;
  --green:#0f9f6e;
  --orange:#ea580c;
  --bg:#eef4fb;
  --bg-deep:#dde8f6;
  --text:#10213a;
  --muted:#64748b;
  --muted-deep:#425466;
  --card:#ffffff;
  --line:#d8e3f1;
  --shadow:0 16px 44px rgba(15, 23, 42, 0.10);
}

*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
  background:
    radial-gradient(900px 400px at 8% 0%, rgba(15,91,216,.12), transparent 60%),
    radial-gradient(700px 320px at 100% 12%, rgba(15,154,214,.10), transparent 52%),
    linear-gradient(180deg, #f6f9fd 0%, var(--bg) 28%, #ecf2f9 100%);
  color:var(--text);
  line-height:1.5;
}

body.modal-open{
  overflow:hidden;
}

.header{
  position:relative;
  padding:18px 20px 22px;
  text-align:center;
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), rgba(255,255,255,0) 36%),
    linear-gradient(135deg, var(--primary-deep), var(--primary), var(--teal));
  box-shadow:0 14px 36px rgba(15, 23, 42, .20);
  overflow:hidden;
}

.header::before,
.header::after{
  content:"";
  position:absolute;
  border-radius:999px;
  pointer-events:none;
  opacity:.24;
}

.header::before{
  width:320px;height:320px;
  right:-120px;top:-150px;
  background:radial-gradient(circle, rgba(255,255,255,.75), rgba(255,255,255,0));
}

.header::after{
  width:260px;height:260px;
  left:-90px;bottom:-140px;
  background:radial-gradient(circle, rgba(255,255,255,.35), rgba(255,255,255,0));
}

.header h1{
  position:relative;
  color:#f8fbff;
  font-size:26px;
  font-weight:800;
  letter-spacing:.3px;
}

.header p{
  position:relative;
  color:#deebff;
  font-size:13px;
  margin-top:4px;
}

.quota-bar{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:14px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color:#deebff;
  font-size:13px;
  backdrop-filter:blur(8px);
}

.quota-bar .quota-num{font-weight:800;font-size:18px;color:#fff}
.quota-bar .quota-total{opacity:.76}

.quota-bar #login-btn,
.store-login-link{
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.26);
  color:#fff;
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}

.store-login-link{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  background:rgba(15, 33, 58, .20);
}

.quota-bar #login-btn:hover,
.store-login-link:hover{
  background:rgba(255,255,255,.28);
  transform:translateY(-1px);
}

.user-info{
  position:absolute;
  top:14px;
  right:92px;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:#dbeafe;
  z-index:2;
}

.help-entry{
  position:absolute;
  top:14px;
  right:16px;
  z-index:3;
  height:34px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  background:rgba(255,255,255,.16);
  color:#fff;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(15,23,42,.12);
  transition:background .2s ease, transform .2s ease;
}

.help-entry:hover{
  background:rgba(255,255,255,.28);
  transform:translateY(-1px);
}

.user-summary{
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px 8px 6px 6px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}

.user-summary:hover{
  background:rgba(255,255,255,.2);
  transform:translateY(-1px);
}

.user-info .avatar{
  width:30px;height:30px;
  border-radius:50%;
  background:rgba(255,255,255,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  flex-shrink:0;
}

.user-meta{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  min-width:0;
}

.user-name-text{
  max-width:112px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:12px;
  font-weight:700;
  color:#fff;
}

.user-points{
  font-size:11px;
  color:#dbeafe;
  opacity:.88;
}

.my-leads-top-btn,
.user-info .logout-btn{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  padding:5px 12px;
  border-radius:999px;
  font-size:11px;
  cursor:pointer;
}

.my-leads-top-btn{
  align-items:center;
  justify-content:center;
  min-height:28px;
  font-weight:700;
  background:rgba(255,255,255,.20);
}

.my-leads-top-btn:hover,
.user-info .logout-btn:hover{
  background:rgba(255,255,255,.28);
}

.support-strip{
  position:relative;
  z-index:1;
  max-width:980px;
  margin:18px auto 0;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
}

.support-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  gap:4px;
}

.support-copy strong{
  color:#fff;
  font-size:14px;
  font-weight:700;
}

.support-copy span{
  color:#dbeafe;
  font-size:12px;
}

.support-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.support-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  border:none;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease;
}

.support-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(15, 23, 42, .18);
}

.support-btn-ai{
  background:#fff;
  color:var(--primary);
}

.support-btn-plan{
  background:rgba(255,255,255,.18);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
}

.support-btn-wecom{
  background:linear-gradient(135deg, #0bb967, #09a356);
  color:#fff;
}

.container{
  max-width:1180px;
  margin:20px auto 32px;
  padding:0 16px;
}

.journey-panel,
.member-brief,
.featured-section,
#sections-container{
  background:rgba(255,255,255,.95);
  border:1px solid rgba(216,227,241,.96);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.journey-panel{
  padding:22px 22px 18px;
  margin-bottom:18px;
}

.member-brief{
  display:none;
  padding:22px;
  margin-bottom:18px;
}

.member-brief.is-visible{
  display:block;
}

.member-brief-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:minmax(0, 1.3fr) repeat(3, minmax(0, .8fr));
  gap:14px;
}

.member-brief-main,
.member-brief-stat{
  border:1px solid var(--line);
  border-radius:20px;
  background:
    radial-gradient(180px 90px at 100% 0%, rgba(15,91,216,.08), transparent 65%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  padding:16px;
}

.member-brief-main{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.member-brief-head{
  display:flex;
  align-items:center;
  gap:12px;
}

.member-brief-avatar{
  width:52px;
  height:52px;
  border-radius:18px;
  background:linear-gradient(135deg, var(--primary), #2b78ee);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:800;
  flex-shrink:0;
}

.member-brief-name{
  font-size:20px;
  font-weight:800;
  color:#10213a;
}

.member-brief-meta{
  margin-top:4px;
  font-size:12px;
  color:var(--muted);
}

.member-brief-copy{
  font-size:13px;
  line-height:1.7;
  color:#516173;
}

.member-brief-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.member-brief-tag{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:12px;
  font-weight:700;
}

.member-brief-usage{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.member-brief-usage-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#f8fafc;
  color:#334155;
  font-size:12px;
  font-weight:700;
}

.member-brief-usage-chip strong{
  color:var(--primary);
}

.member-brief-empty{
  display:none;
  padding:14px 16px;
  border-radius:16px;
  border:1px dashed #bfd2ea;
  background:#f8fbff;
  font-size:12px;
  line-height:1.7;
  color:var(--muted);
}

.member-brief-empty.is-visible{
  display:block;
}

.member-brief-stat-label{
  font-size:12px;
  color:var(--muted);
}

.member-brief-stat-value{
  margin-top:12px;
  font-size:30px;
  line-height:1;
  font-weight:800;
  color:#10213a;
}

.member-brief-stat-note{
  margin-top:10px;
  font-size:12px;
  line-height:1.7;
  color:#64748b;
}

.panel-badge{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--primary);
  font-size:11px;
  font-weight:800;
  letter-spacing:.2px;
}

.panel-copy h2,
.section-head h2{
  margin-top:10px;
  font-size:24px;
  line-height:1.2;
  color:#10213a;
}

.panel-copy p,
.section-head p{
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
}

.journey-steps{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.journey-step{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(233,241,255,.82), rgba(255,255,255,.96));
  display:flex;
  flex-direction:column;
  min-height:172px;
}

.journey-index{
  font-size:12px;
  font-weight:800;
  color:var(--primary);
  letter-spacing:.8px;
}

.journey-body{margin-top:12px}
.journey-body h3{font-size:18px;color:#0f2440}
.journey-body p{margin-top:8px;font-size:13px;color:var(--muted-deep)}

.journey-btn{
  margin-top:auto;
  padding:10px 14px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg, var(--primary), #2b78ee);
  color:#fff;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.featured-section{
  padding:22px;
  margin-bottom:18px;
}

.featured-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.professional-featured-section .featured-grid{
  grid-template-columns:repeat(5, minmax(0, 1fr));
}

.professional-usage-row{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.professional-usage-chip{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#eff6ff;
  border:1px solid #dbeafe;
  color:#1d4ed8;
  font-size:12px;
  font-weight:700;
}

.professional-empty-note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  border:1px dashed #bfd2ea;
  background:#f8fbff;
  font-size:12px;
  line-height:1.7;
  color:var(--muted);
}

#sections-container{
  padding:20px 22px 22px;
}

.category-section{margin-bottom:24px}
.category-section:last-child{margin-bottom:0}

.category-title{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}

.category-title .cat-icon{font-size:18px;line-height:1}
.category-title .cat-name{font-size:18px;font-weight:700;color:#0f2440}
.category-title .cat-count{font-size:12px;color:var(--muted);margin-left:auto}
.category-desc{font-size:13px;color:var(--muted);margin-bottom:14px}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.service-card{
  background:var(--card);
  border-radius:20px;
  padding:16px 15px 14px;
  box-shadow:0 10px 26px rgba(15,23,42,.06);
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  cursor:pointer;
  position:relative;
  min-height:248px;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-card:hover{
  border-color:#93c5fd;
  box-shadow:0 16px 34px rgba(37,99,235,.12);
  transform:translateY(-2px);
}

.service-card--featured{
  min-height:210px;
  background:
    radial-gradient(180px 100px at 100% 0%, rgba(15,91,216,.08), transparent 65%),
    linear-gradient(180deg, #fff, #f9fbff);
}

.service-card--compact .card-tip{display:none}

.card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.card-icon{
  width:44px;height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:21px;
  margin-bottom:10px;
}

.card-icon.blue{background:#eff6ff;color:#2563eb}
.card-icon.green{background:#ecfdf5;color:#059669}
.card-icon.orange{background:#fff7ed;color:#ea580c}
.card-icon.purple{background:#f5f3ff;color:#7c3aed}
.card-icon.red{background:#fef2f2;color:#dc2626}
.card-icon.teal{background:#ecfeff;color:#0d9488}
.card-icon.indigo{background:#eef2ff;color:#4338ca}
.card-icon.gray{background:#f1f5f9;color:#64748b}
.card-icon.gold{background:#fffbeb;color:#d97706}

.card-tag{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:11px;
  font-weight:700;
  white-space:nowrap;
}

.service-card h3{
  font-size:16px;
  font-weight:700;
  color:#111827;
  margin-bottom:4px;
}

.service-card .card-desc{
  font-size:12px;
  color:var(--muted);
  margin-bottom:2px;
}

.card-access{
  display:inline-flex;
  align-items:center;
  margin-top:10px;
  padding:4px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
}

.card-access--open{
  background:#e0f2fe;
  color:#0369a1;
}

.card-access--preview{
  background:#fef3c7;
  color:#b45309;
}

.card-access--login{
  background:#ede9fe;
  color:#6d28d9;
}

.card-quota-note{
  display:block;
  margin-top:8px;
  padding:7px 9px;
  border:1px solid #dbeafe;
  border-radius:10px;
  background:#f8fbff;
  color:#2563eb;
  font-size:11px;
  font-weight:700;
  line-height:1.45;
}

.service-card--featured .card-quota-note{
  padding:6px 8px;
}

.card-featured-line{
  margin-top:10px;
  font-size:12.5px;
  color:var(--muted-deep);
  line-height:1.6;
}

.service-card .card-tip{
  margin-top:8px;
  padding-left:0;
  list-style:none;
  text-align:left;
}

.service-card .card-tip li{
  font-size:12px;
  color:#4b5563;
  line-height:1.55;
  margin-bottom:3px;
  position:relative;
  padding-left:13px;
}

.service-card .card-tip li::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#93c5fd;
}

.card-footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--primary);
  font-size:12px;
  font-weight:800;
  padding-top:10px;
}

.card-arrow{
  font-size:16px;
  line-height:1;
}

.service-card.coming-soon{
  opacity:.62;
  cursor:default;
  background:#f8fafc;
}

.service-card.coming-soon:hover{
  border-color:var(--line);
  box-shadow:0 10px 26px rgba(15,23,42,.06);
  transform:none;
}

.coming-badge{
  display:inline-flex;
  align-items:center;
  padding:3px 10px;
  border-radius:999px;
  background:#f1f5f9;
  color:#94a3b8;
  font-size:10px;
  font-weight:700;
  margin-top:auto;
}

.roadmap-panel{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:24px;
  background:
    radial-gradient(180px 90px at 100% 0%, rgba(15,91,216,.08), transparent 65%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.roadmap-copy h3{
  margin-top:10px;
  font-size:24px;
  color:#10213a;
}

.roadmap-copy p{
  margin-top:8px;
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
}

.roadmap-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.roadmap-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
  border:1px solid transparent;
}

.roadmap-action-primary{
  background:var(--primary);
  color:#fff;
  cursor:pointer;
}

.roadmap-action-secondary{
  background:#eff6ff;
  color:var(--primary);
  border-color:#bfdbfe;
}

.roadmap-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.roadmap-item{
  padding:16px;
  border-radius:20px;
  border:1px solid #e5eef9;
  background:rgba(255,255,255,.86);
}

.roadmap-item-head{
  display:flex;
  align-items:center;
  gap:12px;
}

.roadmap-item-meta{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.roadmap-item-meta strong{
  font-size:15px;
  color:#10213a;
}

.roadmap-item-meta span{
  font-size:12px;
  color:#64748b;
  font-weight:700;
}

.roadmap-item p{
  margin-top:12px;
  font-size:13px;
  color:#475569;
  line-height:1.7;
}

.help-drawer{
  position:fixed;
  inset:0;
  z-index:10020;
  display:none;
}

.help-drawer.is-open{
  display:block;
}

.help-backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.42);
}

.help-panel{
  position:absolute;
  top:0;
  right:0;
  width:min(520px, 100%);
  height:100%;
  overflow-y:auto;
  padding:28px;
  background:linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow:-22px 0 46px rgba(15,23,42,.18);
}

.help-close{
  position:absolute;
  top:18px;
  right:18px;
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:#eef4fb;
  color:#425466;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.help-panel h2{
  margin-top:14px;
  font-size:24px;
  color:#10213a;
}

.help-intro{
  margin-top:10px;
  font-size:14px;
  color:#475569;
  line-height:1.8;
}

.help-steps{
  display:grid;
  gap:12px;
  margin-top:20px;
}

.help-steps article,
.help-section{
  padding:16px;
  border:1px solid #dbe7f5;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 26px rgba(15,23,42,.06);
}

.help-steps strong{
  display:block;
  font-size:15px;
  color:#0f3f9c;
}

.help-steps span,
.help-section p,
.help-section li{
  display:block;
  margin-top:7px;
  font-size:13px;
  color:#526071;
  line-height:1.75;
}

.help-steps button{
  margin-top:12px;
  min-height:36px;
  padding:0 14px;
  border:none;
  border-radius:999px;
  background:var(--primary);
  color:#fff;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}

.help-section{
  margin-top:14px;
}

.help-section h3{
  font-size:16px;
  color:#10213a;
}

.help-section ul{
  margin-top:10px;
  padding-left:18px;
}

.help-section--split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.service-status-panel{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:22px;
  background:
    radial-gradient(180px 90px at 100% 0%, rgba(15,91,216,.08), transparent 65%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.service-status-copy{
  max-width:420px;
}

.service-status-copy h3{
  margin-top:10px;
  font-size:22px;
  color:#10213a;
}

.service-status-copy p{
  margin-top:8px;
  font-size:13px;
  color:var(--muted);
  line-height:1.7;
}

.service-status-list{
  flex:1;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.service-status-item{
  padding:14px;
  border-radius:18px;
  border:1px solid #e5eef9;
  background:rgba(255,255,255,.88);
}

.service-status-item strong{
  display:block;
  font-size:14px;
  color:#10213a;
  margin-bottom:6px;
}

.service-status-item span{
  display:block;
  font-size:12px;
  line-height:1.65;
  color:#475569;
}

.service-status-item--open{
  box-shadow:inset 0 0 0 1px rgba(14,165,233,.08);
}

.service-status-item--preview{
  box-shadow:inset 0 0 0 1px rgba(245,158,11,.08);
}

.service-status-item--login{
  box-shadow:inset 0 0 0 1px rgba(109,40,217,.08);
}

.scheme-modal{
  position:fixed;
  inset:0;
  background:rgba(15, 23, 42, .56);
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px 16px;
  z-index:1200;
}

.scheme-modal.is-open{
  display:flex;
}

.scheme-dialog{
  width:min(920px, 100%);
  background:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 28px 80px rgba(15, 23, 42, .26);
  position:relative;
}

.scheme-close{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:#eff6ff;
  color:var(--primary);
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.scheme-copy h2{
  margin-top:10px;
  font-size:26px;
  color:#10213a;
}

.scheme-copy p{
  margin-top:8px;
  font-size:14px;
  color:var(--muted);
}

.scheme-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.scheme-option{
  border:1px solid var(--line);
  border-radius:20px;
  background:
    radial-gradient(180px 90px at 100% 0%, rgba(15,91,216,.08), transparent 65%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  padding:18px 16px;
  text-align:left;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.scheme-option:hover{
  transform:translateY(-2px);
  border-color:#93c5fd;
  box-shadow:0 16px 34px rgba(37,99,235,.12);
}

.scheme-option-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.scheme-option-badge{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:11px;
  font-weight:700;
}

.scheme-option h3{
  margin-top:8px;
  font-size:18px;
  color:#0f2440;
}

.scheme-option p{
  margin-top:8px;
  font-size:13px;
  line-height:1.6;
  color:var(--muted-deep);
}

.scheme-option-action{
  display:inline-flex;
  align-items:center;
  margin-top:12px;
  color:var(--primary);
  font-size:12px;
  font-weight:800;
}

.foot{
  text-align:center;
  padding:18px 16px 26px;
  font-size:12px;
  color:#7c8ca1;
}

@media (max-width:1080px){
  .member-brief-grid,
  .featured-grid,
  .cards-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}

  .service-status-panel{
    flex-direction:column;
  }

  .service-status-list{
    grid-template-columns:1fr;
  }
}

@media (max-width:820px){
  .support-strip{
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
  }

  .journey-steps{grid-template-columns:1fr}
  .member-brief-grid{grid-template-columns:1fr}
}

@media (max-width:640px){
  .header{
    padding:16px 14px 18px;
  }

  .header h1{font-size:22px}
  .header p{font-size:12px}

  .user-info{
    position:static;
    justify-content:center;
    margin-bottom:10px;
    flex-wrap:wrap;
  }

  .help-entry{
    top:12px;
    right:12px;
    height:32px;
    padding:0 12px;
  }

  .help-panel{
    padding:24px 16px;
  }

  .help-section--split{
    grid-template-columns:1fr;
  }

  .quota-bar{
    flex-wrap:wrap;
    width:100%;
    max-width:340px;
  }

  .container{
    padding:0 10px;
    margin:14px auto 28px;
  }

  .journey-panel,
  .member-brief,
  .featured-section,
  #sections-container{
    border-radius:18px;
    padding:16px;
  }

  .panel-copy h2,
  .section-head h2{
    font-size:20px;
  }

  .featured-grid,
  .cards-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  .roadmap-list{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
    padding:14px 13px 12px;
  }

  .scheme-dialog{
    padding:20px 16px 16px;
    border-radius:22px;
  }

  .scheme-copy h2{
    font-size:22px;
  }

  .scheme-grid{
    grid-template-columns:1fr;
    gap:10px;
  }
}

.sa-login-mode {
  transition: all 0.2s ease;
}

.sa-login-mode:hover {
  opacity: 0.85;
}

#sa-login-send-sms:disabled,
#sa-reg-send-sms:disabled {
  background: #94a3b8 !important;
  cursor: not-allowed !important;
  opacity: 0.7;
}

body.mode-public .quota-bar{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.22);
}

body.mode-pro .quota-bar{
  background:rgba(255,255,255,.10);
}

body.mode-loading .quota-bar{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.22);
}

.public-journey-panel{
  background:
    radial-gradient(240px 140px at 100% 0%, rgba(15,91,216,.08), transparent 65%),
    linear-gradient(180deg, rgba(233,241,255,.82), rgba(255,255,255,.98));
}

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

.hero-secondary-btn{
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:var(--primary);
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.journey-highlights{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.journey-highlights span{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:#f8fbff;
  border:1px solid var(--line);
  color:var(--muted-deep);
  font-size:12px;
  font-weight:600;
}

.public-primary-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:14px;
}

.public-primary-card{
  min-height:198px;
  background:
    radial-gradient(180px 90px at 100% 0%, rgba(15,91,216,.08), transparent 65%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.public-trust-section{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.public-trust-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.trust-card{
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px 16px;
  background:
    linear-gradient(180deg, rgba(233,241,255,.7), rgba(255,255,255,.96));
}

.trust-card h3{
  font-size:17px;
  color:#0f2440;
}

.trust-card p{
  margin-top:8px;
  font-size:13px;
  line-height:1.7;
  color:var(--muted-deep);
}

.public-upgrade-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 18px;
  border-radius:20px;
  border:1px solid var(--line);
  background:
    radial-gradient(240px 120px at 100% 0%, rgba(15,91,216,.08), transparent 68%),
    linear-gradient(180deg, #fff, #f9fbff);
}

.public-upgrade-panel h3{
  margin-top:10px;
  font-size:20px;
  line-height:1.3;
  color:#10213a;
}

.public-upgrade-panel p{
  margin-top:8px;
  font-size:13px;
  line-height:1.7;
  color:var(--muted);
}

.public-registration-benefits{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.public-registration-benefits span{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #dbeafe;
  background:#fff;
  color:#0f3f9c;
  font-size:12px;
  font-weight:600;
}

.upgrade-btn{
  flex:0 0 auto;
  padding:11px 16px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg, var(--primary), #2b78ee);
  color:#fff;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(37,99,235,.18);
}

.hall-loading-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:180px;
}

.hall-loading-dots{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  min-width:96px;
}

.hall-loading-dots span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary), #2b78ee);
  animation:hall-loading-pulse 1.2s infinite ease-in-out;
}

.hall-loading-dots span:nth-child(2){
  animation-delay:.15s;
}

.hall-loading-dots span:nth-child(3){
  animation-delay:.3s;
}

@keyframes hall-loading-pulse{
  0%, 80%, 100%{
    opacity:.28;
    transform:scale(.75);
  }
  40%{
    opacity:1;
    transform:scale(1);
  }
}

@media (max-width:1080px){
  .professional-featured-section .featured-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .public-primary-grid,
  .public-trust-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:820px){
  .professional-featured-section .featured-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .public-upgrade-panel{
    flex-direction:column;
    align-items:flex-start;
  }

  .hall-loading-panel{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:640px){
  .professional-featured-section .featured-grid,
  .public-primary-grid,
  .public-trust-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  .public-hero-actions{
    flex-direction:column;
  }

  .journey-highlights{
    flex-direction:column;
    align-items:flex-start;
  }

  .public-registration-benefits{
    gap:6px;
  }
}

/* ═══ 我的线索卡片 ═══ */
.my-leads-section {
  margin-bottom: 24px;
}

.my-leads-card {
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  border-radius: 14px;
  padding: 24px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.25);
}

.my-leads-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.35);
}

.my-leads-card:active {
  transform: translateY(0);
}

.my-leads-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.my-leads-stat-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.my-leads-stat-num {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.my-leads-stat-label {
  font-size: 13px;
  opacity: 0.85;
}

.my-leads-stage-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.my-leads-stage-summary span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.my-leads-stage-summary strong {
  color: #fff;
}

.my-leads-footer {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
}

.my-leads-footer .card-action {
  color: rgba(255, 255, 255, 0.9);
}

.my-leads-footer .card-arrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

/* 我的线索-弹窗 */
.my-leads-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.my-leads-modal.is-open {
  display: flex;
}

.my-leads-dialog {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 920px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.my-leads-dialog h2 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1e293b;
}

.my-leads-dialog-note {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.my-leads-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  line-height: 1;
}

.my-leads-close:hover {
  color: #333;
}

.my-leads-table {
  width: 100%;
  border-collapse: collapse;
}

.my-leads-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #64748b;
  font-size: 13px;
}

.my-leads-table th,
.my-leads-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

.my-leads-table th {
  color: #64748b;
  font-weight: 600;
  background: #f8fafc;
  position: sticky;
  top: 0;
}

.my-leads-table td {
  color: #1e293b;
}

.my-leads-city {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 12px;
}

.my-leads-phone {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.my-lead-stage-select {
  min-width: 108px;
  padding: 7px 28px 7px 10px;
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
}

.my-lead-stage-select:disabled {
  color: #94a3b8;
  background: #f8fafc;
}

.my-leads-stage-label {
  display: none;
}

.my-leads-loading,
.my-leads-empty {
  text-align: center;
  color: #94a3b8;
  padding: 40px 0;
  font-size: 14px;
}

@media (max-width: 720px) {
  .my-leads-stats {
    gap: 8px;
  }

  .my-leads-stat-item {
    padding: 12px 8px;
  }

  .my-leads-stat-num {
    font-size: 22px;
  }

  .my-leads-dialog {
    padding: 24px 16px;
    max-height: 86vh;
  }

  .my-leads-list {
    overflow-x: auto;
  }

  .my-leads-table {
    min-width: 720px;
  }

  .my-leads-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}
