.risk-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.risk-header {
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  user-select: none;
  background: #fafaf8;
  transition: background .1s;
}
.risk-header:hover { background: var(--accent-light); }
.risk-icon { font-size: 22px; }
.risk-title { font-size: 14px; font-weight: 700; color: var(--ink); flex: 1; }
.risk-badge {
  font-size:12px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--r-full);
}
.rb-high  { background: #fee; color: #c00; border: 1px solid #f0b0b0; }
.rb-mid   { background: #fff8e0; color: #8a5e00; border: 1px solid #e0c860; }
.rb-low   { background: var(--green-light); color: var(--green); border: 1px solid rgba(42,107,60,.2); }
.risk-toggle { color: var(--ink3); font-size: 12px; transition: transform .2s; }
.risk-toggle.open { transform: rotate(180deg); }

.risk-body {
  display: none;
  padding: 16px;
  border-top: 1px solid var(--border);
}
.risk-body.open { display: block; }

.risk-desc { font-size: 13px; color: var(--ink2); margin-bottom: 12px; line-height: 1.7; }
.check-points { margin-bottom: 12px; }
.cp-title { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.cp-item {
  font-size: 12px; color: var(--ink2);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.cp-item:last-child { border-bottom: none; }
.cp-item::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.map-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1.5px solid rgba(200,87,10,.25);
  border-radius: var(--r);
  padding: 10px 14px;
  color: var(--accent);
  text-decoration: none;
  font-size: 12px; font-weight: 700;
  transition: all .15s;
  margin-top: 8px;
}
.map-link:hover { background: var(--accent); color: #fff; }

.score-summary {
  background: var(--primary);
  border-radius: var(--r-lg);
  padding: 22px 16px;
  margin-bottom: 14px;
  position: relative; overflow: hidden;
}
.score-summary::before {
  content:''; position:absolute; top:-40px; right:-40px;
  width:160px; height:160px;
  background:radial-gradient(circle, rgba(107,159,212,.25), transparent 70%);
  pointer-events:none;
}
.ss-tag { font-size:11px;color:var(--primary-mid);font-family:'DM Mono',monospace;letter-spacing:.1em;text-transform:uppercase;margin-bottom:6px; }
.ss-title { font-family:'Plus Jakarta Sans',sans-serif;font-size:18px;font-weight:900;color:#fff;margin-bottom:8px; }
.ss-desc { color:rgba(255,255,255,0.55);font-size:13px;line-height:1.7; }

.progress-bar {
  height: 8px; background: var(--border); border-radius: 4px;
  margin: 8px 0; overflow: hidden;
}
.progress-fill { height: 100%; border-radius: 4px; background: var(--accent); transition: width .4s; }