:root {
  --bg: #07090f;
  --panel: #0f121a;
  --soft: #111623;
  --card: #161c2a;
  --text: #e8edf7;
  --muted: #9aa3b8;
  --accent: #7ad7ff;
  --accent-2: #a78bfa;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  font-family: "Inter", "HarmonyOS Sans", "PingFang SC", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(122, 215, 255, 0.2), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(167, 139, 250, 0.16), transparent 30%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
}

h1,
h2,
h3 {
  margin: 0;
}

p {
  margin: 0.25rem 0 0;
}

button {
  cursor: pointer;
  font: inherit;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(120deg, #7ad7ff, #a78bfa);
  color: #0b0d13;
  font-weight: 700;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(122, 215, 255, 0.25);
}

button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

button.secondary {
  background: #1b2235;
  color: var(--text);
  border: 1px solid var(--border);
}

.hero {
  position: relative;
  padding: 24px 20px 80px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(122, 215, 255, 0.3), transparent 35%),
    radial-gradient(circle at 70% 10%, rgba(167, 139, 250, 0.25), transparent 35%);
  filter: blur(30px);
  opacity: 0.8;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 18, 26, 0.6);
  backdrop-filter: blur(12px);
  max-width: 1024px;
  margin: 0 auto 24px;
}

.nav nav {
  display: flex;
  gap: 12px;
}

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
}

.nav .pill {
  background: rgba(122, 215, 255, 0.12);
  color: #cdeeff;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
  margin: 12px 0;
}

.lede {
  color: #cbd5ec;
  max-width: 680px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.meta {
  color: var(--muted);
}

.badges {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.badges span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  color: #cbd5ec;
  background: rgba(255, 255, 255, 0.03);
}

main {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: -40px auto 60px;
  padding: 0 18px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.panel--soft {
  background: var(--soft);
}

.panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stat {
  background: linear-gradient(135deg, rgba(122, 215, 255, 0.1), rgba(167, 139, 250, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: right;
}

.stat__number {
  font-size: 32px;
  font-weight: 800;
}

.stat__label {
  color: var(--muted);
}

/* 今日实时统计样式 */
.live-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.15) 0%, 
    rgba(37, 99, 235, 0.12) 25%,
    rgba(29, 78, 216, 0.1) 50%,
    rgba(30, 64, 175, 0.12) 75%,
    rgba(59, 130, 246, 0.15) 100%
  );
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 20px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.live-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmerStats 3s infinite;
}

@keyframes shimmerStats {
  0% { left: -100%; }
  100% { left: 100%; }
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}

.stats-number {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  position: relative;
}

.stats-number::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 1px;
}

.stats-label {
  font-size: 14px;
  color: rgba(59, 130, 246, 0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stats-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
}

/* 添加数字滚动动画 */
.stats-number.counting {
  animation: pulse 0.3s ease-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.card .tagline {
  color: var(--muted);
  line-height: 1.5;
}

.ghost {
  background: rgba(255, 255, 255, 0.03);
}

.list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: #dfe6f9;
}

.list li {
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price__main {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.price__tag {
  color: var(--muted);
}

.result-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.result-header h2 {
  margin: 0;
}

.hook {
  color: #fcd9a9;
  font-weight: 600;
}

.gauge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

.gauge-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.gauge {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

#gaugeBg {
  stroke: #e0e0e0;
}

#gaugeFill {
  transition: stroke-dashoffset 0.8s ease-out, stroke 0.3s ease;
}

.gauge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  text-align: center;
  pointer-events: none;
}

.gauge-level {
  font-size: 16px;
  color: #2196F3;
  font-weight: 600;
  margin-bottom: 4px;
}

.gauge-score {
  font-size: 36px;
  font-weight: 800;
  color: #2196F3;
  line-height: 1;
}

.gauge-info {
  text-align: center;
  padding: 12px 20px;
  background: rgba(122, 215, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(122, 215, 255, 0.2);
}

.gauge-text {
  margin: 0;
  font-size: 16px;
  color: #dfe6f9;
}

.result-interpretation {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 8px;
}

.result-interpretation h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  color: #dfe6f9;
}

.result-interpretation ul {
  margin: 0;
  padding-left: 20px;
  color: #cbd5ec;
  line-height: 1.8;
}

.result-interpretation li {
  margin-bottom: 8px;
}

.result-disclaimer {
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
}

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

.plan {
  background: linear-gradient(135deg, rgba(122, 215, 255, 0.05), rgba(167, 139, 250, 0.05));
  border: 1px solid rgba(122, 215, 255, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 16px;
  box-shadow: 0 8px 32px rgba(122, 215, 255, 0.1);
}

.plan h3 {
  color: #7ad7ff;
  font-size: 18px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan h3::before {
  content: "💫";
  font-size: 20px;
}

.plan__content {
  white-space: pre-wrap;
  line-height: 1.8;
  color: #dfe6f9;
  font-size: 15px;
}

/* 疗愈方案中的特殊元素样式 */
.plan__content h2,
.plan__content h3,
.plan__content h4 {
  color: #a8b3ff;
  margin: 24px 0 12px 0;
  font-weight: 600;
}

.plan__content h2:first-child,
.plan__content h3:first-child,
.plan__content h4:first-child {
  margin-top: 0;
}

.plan__content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.plan__content li {
  margin-bottom: 8px;
  position: relative;
  list-style: none;
  padding-left: 24px;
}

.plan__content li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 2px;
}

.plan__content strong {
  color: #7ad7ff;
  font-weight: 600;
}

.plan__content em {
  color: #ffadad;
  font-style: normal;
}

/* 温馨提示样式 */
.plan__content .温馨提示,
.plan__content .友情提示 {
  background: rgba(255, 173, 173, 0.1);
  border: 1px solid rgba(255, 173, 173, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-top: 24px;
  position: relative;
}

.plan__content .温馨提示::before,
.plan__content .友情提示::before {
  content: "💝";
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--panel);
  padding: 0 8px;
  font-size: 18px;
}

/* 情绪晴雨表样式 */
.plan__content .情绪晴雨表 {
  background: rgba(168, 179, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  border: 1px solid rgba(168, 179, 255, 0.2);
}

/* 小确幸清单样式 */
.plan__content .happiness-list,
.plan__content .小确幸清单 {
  background: rgba(122, 215, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  border: 1px solid rgba(122, 215, 255, 0.2);
}

.plan__content .happiness-list li,
.plan__content .小确幸清单 li {
  padding-left: 20px;
}

.plan__content .happiness-list li::before,
.plan__content .小确幸清单 li::before {
  content: "🌟";
}

/* 章节标题样式 */
.plan__content .section-title {
  background: rgba(167, 139, 250, 0.1);
  border-left: 4px solid #a78bff;
  padding: 12px 16px;
  margin: 20px 0 16px 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #dfe6f9;
}

/* 段落样式 */
.plan__content p {
  margin: 12px 0;
  line-height: 1.7;
}

/* 列表样式优化 */
.plan__content ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.plan__content li {
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid rgba(122, 215, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 36px;
}

.plan__content li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: #7ad7ff;
  transform: translateX(2px);
}

.plan__content li::before {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

/* 友情提示样式 */
.plan__content .友情提示 {
  background: linear-gradient(135deg, rgba(255, 173, 173, 0.15), rgba(255, 182, 193, 0.1));
  border: 1px solid rgba(255, 173, 173, 0.4);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
  position: relative;
  box-shadow: 0 4px 16px rgba(255, 173, 173, 0.1);
}

.plan__content .友情提示::before {
  content: "💝";
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--panel);
  padding: 0 8px;
  font-size: 20px;
}

.plan__content .友情提示 p {
  margin: 0;
  color: #ffb6c1;
}

.plan__content .友情提示 strong {
  color: #ff8a95;
}

/* 情绪晴雨表样式 */
.plan__content .emotion-tracker {
  background: rgba(168, 179, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  border: 1px solid rgba(168, 179, 255, 0.2);
  border-left: 4px solid #a8b3ff;
}

/* 日期分隔线样式 */
.plan__content .day-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 215, 255, 0.3), transparent);
  margin: 20px 0;
}

/* 特殊emoji样式 */
.plan__content .morning-emoji::before { content: "🌅"; }
.plan__content .noon-emoji::before { content: "☕"; }
.plan__content .night-emoji::before { content: "🌙"; }
.plan__content .action-emoji::before { content: "💡"; }

/* 滚动条样式 */
.plan__content {
  scrollbar-width: thin;
  scrollbar-color: rgba(122, 215, 255, 0.3) transparent;
}

.plan__content::-webkit-scrollbar {
  width: 6px;
}

.plan__content::-webkit-scrollbar-track {
  background: transparent;
}

.plan__content::-webkit-scrollbar-thumb {
  background: rgba(122, 215, 255, 0.3);
  border-radius: 3px;
}

.plan__content::-webkit-scrollbar-thumb:hover {
  background: rgba(122, 215, 255, 0.5);
}

/* 测评介绍界面样式 */
.intro-modal .modal__card {
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid rgba(122, 215, 255, 0.3);
  background: linear-gradient(145deg, rgba(122, 215, 255, 0.08), rgba(167, 139, 250, 0.08)) #0c111b;
}

.intro-content {
  margin: 1rem 0;
}

.intro-description {
  color: #cbd5ec;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.intro-details {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--muted);
  font-weight: 500;
}

.detail-value {
  color: #dfe6f9;
  font-weight: 600;
}

.intro-options {
  margin-bottom: 1.5rem;
}

.intro-options p {
  color: #7ad7ff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.option-example {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  color: #cbd5ec;
  font-size: 0.95rem;
}

.intro-tips {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.intro-tips p {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.intro-tips ul {
  margin: 0;
  padding-left: 1.25rem;
  color: #ffeb3b;
  line-height: 1.6;
}

.intro-tips li {
  margin-bottom: 0.5rem;
}

.intro-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 1rem;
}

.btn-primary {
  background: linear-gradient(120deg, #7ad7ff, #a78bfa);
  color: #0b0d13;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(122, 215, 255, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  font: inherit;
  transition: all 0.12s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
}

.close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.12s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

/* 关键洞察标签样式 */
.key-insights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.insight-tag {
  background: rgba(122, 215, 255, 0.1);
  border: 1px solid rgba(122, 215, 255, 0.3);
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 12px;
  color: #7ad7ff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.insight-tag:hover {
  background: rgba(122, 215, 255, 0.2);
  transform: translateY(-1px);
}

/* 分数等级介绍样式 */
.score-level-intro {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-level-intro h4 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  color: var(--accent);
}

.level-bars {
  display: grid;
  gap: 0.75rem;
}

.level-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.level-bar {
  width: 60px;
  height: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.level-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  animation: shimmer 2s infinite;
}

.level-bar.excellent {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.level-bar.good {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.level-bar.attention {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.level-bar.care {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.level-item span {
  font-size: 0.9rem;
  color: var(--muted);
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* 详细分析样式 */
.detailed-analysis {
  margin: 16px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid rgba(122, 215, 255, 0.3);
}

.detailed-analysis p {
  margin: 12px 0;
  line-height: 1.7;
  color: #cbd5ec;
}

.analysis-point {
  color: #7ad7ff;
  font-weight: 600;
  background: rgba(122, 215, 255, 0.1);
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-block;
}

/* 钩子问题样式 */
.hook-question {
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  position: relative;
}

.hook-question::before {
  content: "💭";
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--panel);
  padding: 0 8px;
  font-size: 16px;
}

.hook-question p {
  margin: 0;
  color: #ffd700;
  font-style: italic;
  line-height: 1.6;
}

.hook-question em {
  color: #ffeb3b;
  font-style: italic;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  z-index: 20;
}

.modal[hidden] {
  display: none !important;
}

.modal__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  width: min(420px, 90vw);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.modal.q .modal__card {
  width: min(520px, 92vw);
  border: 1px solid rgba(122, 215, 255, 0.2);
  background: linear-gradient(145deg, rgba(122, 215, 255, 0.08), rgba(167, 139, 250, 0.08)) #0c111b;
}

.modal__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  border-radius: 12px;
  padding: 8px 12px;
  min-width: 44px;
}

.modal.q .modal__card {
  width: min(520px, 92vw);
}

label {
  display: block;
  margin-top: 12px;
  color: #dfe6f9;
  font-weight: 600;
  font-size: 14px;
}

input,
textarea {
  margin-top: 6px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0e121c;
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.modal__actions--space {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.modal__actions--space #qPrev {
  margin-right: auto;
}

.modal__actions--space #qNext {
  margin-left: auto;
}

.text-muted {
  color: var(--muted);
}

.option-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.option {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  background: #0f1320;
  cursor: pointer;
  transition: border-color 0.12s ease, transform 0.12s ease, background 0.12s ease;
}

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

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

.option.selected {
  border-color: var(--accent);
  background: rgba(122, 215, 255, 0.12);
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cta-row {
    align-items: flex-start;
  }

  .panel__header {
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* 标题行与统计平行显示样式 */
.hero-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.title-section {
  flex: 1;
  max-width: 70%;
}

.stats-section {
  flex-shrink: 0;
  margin-left: 20px;
  margin-top: 20px;
}

.today-stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 12px 20px;
  text-align: center;
  min-width: 150px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.today-stats:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(122, 215, 255, 0.3);
}

.today-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.today-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 3px;
}

.today-desc {
  font-size: 1rem;
  color: #60a5fa;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.4);
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.5px;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .hero-title-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .title-section {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .stats-section {
    margin-left: 0;
    margin-top: 0;
  }
  
  .today-stats {
    padding: 10px 16px;
    min-width: 130px;
  }
  
  .today-number {
    font-size: 1.8rem;
  }
  
  .today-label {
    font-size: 0.8rem;
  }
  
  .today-desc {
    font-size: 0.7rem;
  }
}

/* 方案展示区域样式 */
.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solution-header {
  text-align: center;
  margin-bottom: 60px;
}

.solution-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
  background: linear-gradient(135deg, #7ad7ff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-intro {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.solution-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(122, 215, 255, 0.3);
}

.solution-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text);
}

.solution-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.solution-card li {
  padding: 8px 0;
  color: #dfe6f9;
  position: relative;
  padding-left: 20px;
}

.solution-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7ad7ff;
  font-weight: bold;
}

.solution-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(122, 215, 255, 0.1), rgba(167, 139, 250, 0.1));
  border: 1px solid rgba(122, 215, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.solution-cta h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text);
}

.solution-cta p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.primary.large {
  background: linear-gradient(135deg, #7ad7ff, #a78bfa);
  color: #0b0d13;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary.large:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(122, 215, 255, 0.3);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .solution-header h2 {
    font-size: 2rem;
  }
  
  .solution-intro {
    font-size: 1.1rem;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .solution-card {
    padding: 20px;
  }
  
  .solution-cta {
    padding: 30px 20px;
  }
  
  .solution-cta h3 {
    font-size: 1.5rem;
  }
}

