/* Decision DNA */
.dna-layout {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--sp-5);
}
.dna-radar {
  padding: var(--sp-5); display: grid; place-items: center; min-height: 480px;
}
.dna-details { display: flex; flex-direction: column; gap: var(--sp-4); }
.trader-type-card {
  text-align: center; padding: var(--sp-6);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
}
.trader-type-title {
  font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em;
}
.trader-type-name {
  font-size: 28px; font-weight: 800; color: var(--accent-green);
  margin: var(--sp-3) 0; text-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
  letter-spacing: -0.02em;
}
.trader-type-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.dna-dimensions { display: flex; flex-direction: column; gap: var(--sp-3); }
.dimension-row {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--sp-3) var(--sp-4);
}
.dimension-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-2); }
.dimension-name { font-size: 12px; font-weight: 600; }
.dimension-score { font-family: var(--font-mono); font-weight: 700; color: var(--accent-green); }
.dimension-bar { height: 6px; background: var(--border); border-radius: var(--r-pill); overflow: hidden; }
.dimension-bar-fill {
  height: 100%; border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  transition: width var(--dur-slow) var(--ease);
}

/* Fix Trading Wizard */
.fix-wizard {
  max-width: 800px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
}
.wizard-steps {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-4); margin-bottom: var(--sp-6);
}
.wizard-step {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-elevated); border: 2px solid var(--border);
  display: grid; place-items: center; font-weight: 700; color: var(--text-muted);
  transition: all var(--dur-med) var(--ease);
}
.wizard-step.active { background: var(--accent-green); border-color: var(--accent-green); color: var(--text-inverse); box-shadow: 0 0 20px rgba(0, 212, 170, 0.4); }
.wizard-line { flex: 0 0 80px; height: 2px; background: var(--border); }
.wizard-pane { display: none; animation: fadeUp var(--dur-med) var(--ease); text-align: center; }
.wizard-pane.active { display: block; }
.wizard-pane h3 { margin-bottom: var(--sp-4); font-size: 18px; }
.wizard-pane textarea { text-align: left; margin-bottom: var(--sp-4); }

.fix-report { text-align: left; display: flex; flex-direction: column; gap: var(--sp-4); }
.fix-report .trader-type-card { margin-bottom: var(--sp-4); }
.fix-section-title {
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--sp-3);
}
.fix-problem, .fix-recommendation {
  background: var(--bg-elevated); border-left: 3px solid var(--accent-red);
  padding: var(--sp-3) var(--sp-4); border-radius: var(--r-sm);
  margin-bottom: var(--sp-2);
}
.fix-recommendation { border-left-color: var(--accent-green); }

/* Top Traders */
.top-compare { padding: var(--sp-5); margin-bottom: var(--sp-4); }
.top-insights {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.insight-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-5);
}
.insight-card .insight-title { font-weight: 700; margin-bottom: var(--sp-2); }
.insight-card .insight-metric {
  font-family: var(--font-mono); font-size: 24px; color: var(--accent-green);
  font-weight: 700; margin: var(--sp-2) 0;
}
.insight-card .insight-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }
