.goal-card {
  background: var(--bg-surface);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  padding: 20px 24px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.goal-card:hover { border-color: var(--accent); }

.goal-card h2 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.5;
}

.goal-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.effect-goal-list { margin-top: 16px; }

.effect-goal-item {
  background: transparent;
  border: none;
  border-top: 0.5px solid var(--border);
  padding: 16px 0;
  margin-bottom: 0;
}

.effect-goal-item h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.metric-row {
  display: flex;
  font-size: 12px;
  color: var(--text-secondary);
  gap: 16px;
  margin-bottom: 6px;
}

.progress-bar-wrap {
  height: 2px;
  background: var(--border);
  margin-top: 10px;
  border-radius: 1px;
}

.progress-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.4s ease;
}

.ibk-tag {
  display: inline-block;
  font-size: 10px;
  padding: 3px 8px;
  margin-right: 4px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  border-radius: 3px;
}

.ibk-tag.identitet { background: #ede9ff; color: var(--ibk-identitet); }
.ibk-tag.beteende { background: #fff3e0; color: var(--ibk-beteende); }
.ibk-tag.kommunikation { background: #e0f4f8; color: var(--ibk-kommunikation); }

.btn-primary {
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-primary:hover { background: #333; }

.btn-ghost {
  background: transparent;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  color: var(--text-secondary);
  padding: 10px 20px;
  font-size: 13px;
  margin-top: 16px;
  transition: all 0.2s;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--text-primary); }

.ibk-distribution {
  display: flex;
  gap: 40px;
  padding: 24px;
  background: var(--bg-surface);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  margin-top: 40px;
}

.ibk-dist-item { text-align: center; }
.ibk-dist-item .pct {
  font-size: 36px;
  font-weight: 300;
  color: var(--text-primary);
}
.ibk-dist-item .label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}
