/* ============================================================
   personality-test-hub, result.css
   Result page: hero, dichotomy bars, content sections, CTAs
   ============================================================ */

/* ==================== FADE-IN ANIMATION ==================== */
.fade-in {
  animation: fadeIn 0.5s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== TYPE HERO ==================== */
.type-hero {
  text-align: center;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
}

.type-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.type-code {
  font-size: var(--text-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 40px rgba(74, 158, 255, 0.3);
}

.type-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.type-tagline {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==================== DICHOTOMY BARS ==================== */
.dichotomy-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.dichotomy-bar {
  width: 100%;
}

.bar-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 500;
}

.label-left {
  color: var(--text-primary);
}

.label-right {
  color: var(--text-primary);
}

.bar-track {
  display: flex;
  width: 100%;
  height: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.06);
}

.bar-fill {
  height: 100%;
  border-radius: var(--radius-sm);
  transition: width 1s ease;
  min-width: 0;
}

.bar-percentages {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
  margin-bottom: var(--space-2xl);
}

.section-heading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.type-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== TRAIT LIST ==================== */
.trait-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.trait-list li {
  position: relative;
  padding-left: var(--space-lg);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.5;
}

.trait-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 1.3;
}

.trait-list.strengths li::before {
  content: "✦";
  font-size: var(--text-base);
}

.trait-list.growth li::before {
  content: "↑";
  font-size: var(--text-base);
}

/* ==================== NEXT STEP CARD ==================== */
.next-step-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  text-align: center;
  margin-bottom: var(--space-2xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-icon {
  font-size: 2rem;
  color: var(--accent-primary);
  margin-bottom: var(--space-sm);
}

.next-step-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.next-step-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding-bottom: var(--space-3xl);
}

/* ==================== SHARE TOAST ==================== */
.share-toast {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--bg-card);
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  font-size: var(--text-sm);
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.share-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==================== NO RESULT STATE ==================== */
.no-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: var(--space-3xl) 0;
}

.no-result__icon {
  font-size: 4rem;
  color: var(--accent-primary);
  margin-bottom: var(--space-lg);
  opacity: 0.6;
}

.no-result__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.no-result__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* ==================== CONFIDENCE BADGE ==================== */
.type-confidence {
  margin-top: var(--space-md);
}

.confidence-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.confidence-badge.status-clear {
  background-color: rgba(0, 184, 148, 0.15);
  color: #00b894;
  border: 1px solid rgba(0, 184, 148, 0.3);
}

.confidence-badge.status-probable {
  background-color: rgba(74, 158, 255, 0.15);
  color: #4a9eff;
  border: 1px solid rgba(74, 158, 255, 0.3);
}

.confidence-badge.status-borderline {
  background-color: rgba(255, 230, 109, 0.15);
  color: #ffe66d;
  border: 1px solid rgba(255, 230, 109, 0.3);
}

.confidence-badge.status-uncertain {
  background-color: rgba(225, 112, 85, 0.15);
  color: #e17055;
  border: 1px solid rgba(225, 112, 85, 0.3);
}

/* ==================== DICHOTOMY BARS (OVERRIDE) ==================== */
.bar-track {
  display: flex;
  width: 100%;
  height: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.06);
  gap: 2px;
}

.bar-fill {
  height: 100%;
  border-radius: var(--radius-sm);
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
  overflow: hidden;
  white-space: nowrap;
}

.bar-fill--left {
  justify-content: flex-start;
  padding-left: 6px;
}

.bar-fill--right {
  justify-content: flex-end;
  padding-right: 6px;
}

/* ==================== OPS SECTION ==================== */
.ops-section {
  margin-bottom: var(--space-2xl);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.ops-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.ops-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ops-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}

/* ==================== FLAGS ==================== */
.flags-section {
  margin-bottom: var(--space-2xl);
}

.flags-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.flag-item {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: capitalize;
}

.flag-item.flag-high {
  background-color: rgba(225, 112, 85, 0.12);
  color: #e17055;
  border-left: 3px solid #e17055;
}

.flag-item.flag-medium {
  background-color: rgba(255, 230, 109, 0.12);
  color: #ffe66d;
  border-left: 3px solid #ffe66d;
}

.flag-item.flag-low {
  background-color: rgba(74, 158, 255, 0.12);
  color: #4a9eff;
  border-left: 3px solid #4a9eff;
}

/* ==================== SWOT GRID ==================== */
.swot-section {
  margin-bottom: var(--space-2xl);
}

.swot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.swot-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.swot-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.swot-card.strengths h3 {
  color: #00b894;
}

.swot-card.growth h3 {
  color: #ffe66d;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding-bottom: var(--space-3xl);
}

/* ==================== CONFIDENCE SECTION ==================== */
.confidence-section {
  margin-bottom: var(--space-2xl);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.confidence-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.confidence-card h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.confidence-card--highlight {
  text-align: center;
}

.confidence-big {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
}

.confidence-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.confidence-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.confidence-item__label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  flex: 1;
  min-width: 0;
}

.confidence-item__badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-xl);
  font-size: var(--text-xs);
  font-weight: 600;
  white-space: nowrap;
}

.confidence-item__badge--low {
  background-color: rgba(225, 112, 85, 0.12);
  color: #e17055;
  border: 1px solid rgba(225, 112, 85, 0.25);
}

.confidence-item__badge--medium {
  background-color: rgba(255, 230, 109, 0.12);
  color: #ffe66d;
  border: 1px solid rgba(255, 230, 109, 0.25);
}

.confidence-item__badge--high {
  background-color: rgba(0, 184, 148, 0.12);
  color: #00b894;
  border: 1px solid rgba(0, 184, 148, 0.25);
}

/* ==================== SWOT FULL GRID ==================== */
.swot-full-section {
  margin-bottom: var(--space-2xl);
}

.swot-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.swot-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.swot-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.swot-card--strengths h3 { color: #00b894; }
.swot-card--weaknesses h3 { color: #e17055; }
.swot-card--opportunities h3 { color: #4a9eff; }
.swot-card--threats h3 { color: #ffe66d; }

/* ==================== TAGS LIST (suitable jobs) ==================== */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tag-item {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  font-weight: 500;
  background-color: rgba(74, 158, 255, 0.1);
  color: #4a9eff;
  border: 1px solid rgba(74, 158, 255, 0.2);
}

/* ==================== UNCERTAINTY SECTION ==================== */
.uncertainty-section {
  margin-bottom: var(--space-2xl);
}

.uncertainty-box {
  background-color: rgba(255, 230, 109, 0.06);
  border: 1px solid rgba(255, 230, 109, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== DETAIL EXPLANATION OFFER ==================== */
.detail-offer-section {
  margin-bottom: var(--space-2xl);
}

.detail-offer-box {
  background-color: rgba(74, 158, 255, 0.06);
  border: 1px solid rgba(74, 158, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.detail-offer-icon {
  font-size: 1.5rem;
  color: var(--accent-primary);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.detail-offer-box p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 767px) {
  .type-code {
    font-size: 3rem;
  }

  .type-title {
    font-size: var(--text-xl);
  }

  .cta-section {
    flex-direction: column;
  }

  .cta-section .btn {
    width: 100%;
  }

  .ops-grid {
    grid-template-columns: 1fr;
  }

  .swot-grid {
    grid-template-columns: 1fr;
  }

  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .swot-full-grid {
    grid-template-columns: 1fr;
  }

  .bar-fill {
    font-size: 0.55rem;
  }
}

@media (max-width: 479px) {
  .type-code {
    font-size: 2.5rem;
  }

  .bar-track {
    height: 12px;
  }

  .confidence-big {
    font-size: 2rem;
  }

  .detail-offer-box {
    flex-direction: column;
    padding: var(--space-md);
  }
}

/* ==================== STATUS BANNER ==================== */
.status-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  font-size: var(--text-base);
  line-height: 1.5;
  animation: fadeIn 0.4s ease both;
}

.status-banner strong {
  font-weight: 700;
}

.status-banner--uncertain {
  background-color: rgba(225, 112, 85, 0.1);
  border: 1px solid rgba(225, 112, 85, 0.25);
  color: #e17055;
}

.status-banner--borderline {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.25);
  color: #ffc107;
}

.status-banner--probable {
  background-color: rgba(74, 158, 255, 0.08);
  border: 1px solid rgba(74, 158, 255, 0.2);
  color: #4a9eff;
}

/* ==================== FOLLOW-UP GATE ==================== */
.followup-gate {
  margin-bottom: var(--space-xl);
  animation: fadeIn 0.4s ease both;
}

.followup-gate__icon {
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.followup-gate__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.followup-gate__desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto var(--space-lg);
}

.followup-gate__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.followup-gate__btn {
  min-width: 200px;
}

/* ==================== FOLLOW-UP GATE (POST-UNCERTAINTY) ==================== */
.follow-up-section {
  margin-bottom: var(--space-xl);
  animation: fadeIn 0.4s ease both;
}

.follow-up-box {
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.08), rgba(108, 92, 231, 0.08));
  border: 1px solid rgba(74, 158, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.follow-up-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.follow-up-box .section-heading {
  margin-bottom: var(--space-sm);
}

.follow-up-box p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.follow-up-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

/* ==================== UNCERTAINTY NOTES (ENHANCED) ==================== */
.uncertainty-notes-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.uncertainty-note-item {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.uncertainty-actions {
  background-color: rgba(74, 158, 255, 0.06);
  border: 1px solid rgba(74, 158, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
}

.uncertainty-actions h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.uncertainty-actions-list {
  margin: 0;
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.uncertainty-actions-list li {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==================== ENNEAGRAM 2-COLUMN OVERVIEW ==================== */
.enn-overview {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: var(--space-2xl);
  max-width: 980px;
  margin: 0 auto var(--space-2xl);
  align-items: start;
}

.enn-panel {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.enn-chart-wrap {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  position: relative;
}

.enn-chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.enn-chart-fallback {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enn-title {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.enn-type-code {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 30px rgba(74, 158, 255, 0.25);
}

.enn-name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.enn-synonyms {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.enn-synopsis {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 420px;
}

/* Deep section */
.enn-deep-section {
  max-width: 980px;
  margin: 0 auto var(--space-2xl);
}

.enn-deep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.enn-deep-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.enn-deep-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--accent-primary);
}

.enn-deep-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Career section */
.enn-career-section {
  max-width: 980px;
  margin: 0 auto var(--space-2xl);
}

/* Uncertain note */
.enn-uncertain-note {
  text-align: center;
  font-size: var(--text-sm);
  color: #e17055;
  margin-top: var(--space-sm);
  font-style: italic;
}

/* ==================== RESPONSIVE (NEW ELEMENTS) ==================== */
@media (max-width: 767px) {
  .followup-gate__actions {
    flex-direction: column;
  }

  .followup-gate__btn {
    width: 100%;
  }

  .status-banner {
    flex-direction: column;
    padding: var(--space-md);
  }
}

@media (max-width: 900px) {
  .enn-overview {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 479px) {
  .followup-gate__title {
    font-size: var(--text-lg);
  }

  .uncertainty-actions {
    padding: var(--space-sm) var(--space-md);
  }

  .enn-type-code {
    font-size: 2.2rem;
  }

  .enn-overview {
    gap: var(--space-lg);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   DASHBOARD MVP
   ═══════════════════════════════════════════════════════════════════════════════ */

.dashboard-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 96px;
}

.dash-identity {
  text-align: center;
  margin-bottom: 56px;
}

.dash-kicker {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #58a6ff;
  margin-bottom: 16px;
}

.dash-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
}

.dash-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #aeb4c7;
  max-width: 620px;
  margin: 0 auto;
}

/* Progress Ring */
.dash-progress-section {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}

.dash-progress-ring {
  position: relative;
  width: 160px;
  height: 160px;
}

.dash-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.dash-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dash-ring-pct {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.dash-ring-label {
  font-size: 12px;
  color: #aeb4c7;
  margin-top: 4px;
}

/* Sections */
.dash-section {
  margin-bottom: 48px;
}

.dash-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

/* Layer Grid */
.dash-layer-grid {
  display: grid;
  gap: 16px;
}

.dash-layer-empty {
  padding: 32px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #aeb4c7;
}

.dash-layer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: border-color 0.2s;
}

.dash-layer-card:hover {
  border-color: rgba(88,166,255,0.3);
}

.dash-layer-id {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #58a6ff;
  background: rgba(88,166,255,0.1);
  padding: 6px 12px;
  border-radius: 6px;
  flex-shrink: 0;
}

.dash-layer-info {
  flex: 1;
}

.dash-layer-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.dash-layer-type {
  font-size: 20px;
  font-weight: 600;
  color: #fff200;
  margin-bottom: 2px;
}

.dash-layer-tagline {
  font-size: 14px;
  color: #aeb4c7;
}

/* Next Layer */
.dash-next-card {
  padding: 28px;
  background: rgba(88,166,255,0.05);
  border: 1px solid rgba(88,166,255,0.15);
  border-radius: 14px;
}

.dash-next-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #58a6ff;
  margin-bottom: 8px;
}

.dash-next-content p {
  font-size: 15px;
  color: #aeb4c7;
  margin-bottom: 16px;
  line-height: 1.6;
}

.dash-next-empty {
  padding: 28px;
  text-align: center;
  color: #aeb4c7;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
}

/* Synthesis */
.dash-synthesis {
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}

.dash-synthesis-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-synthesis-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6c757d;
}

.dash-synthesis-status span {
  font-size: 15px;
  color: #c8cede;
}

/* CTA */
.dash-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 64px;
}

@media (max-width: 600px) {
  .dash-cta {
    flex-direction: column;
    align-items: center;
  }

  .dash-layer-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   DISC & BigFive Trait Bars (shared)
   ═══════════════════════════════════════════ */
.bf-trait-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bf-trait-label {
  min-width: 140px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.bf-trait-track {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  overflow: hidden;
}

.bf-trait-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 0.6s ease;
}

.bf-trait-score {
  min-width: 60px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}


.strengths-theme-tags {
  justify-content: center;
  margin-top: var(--space-md);
}

.strengths-score-list {
  width: 100%;
}

.strengths-meta-row {
  width: 100%;
  margin-top: var(--space-lg);
}

.strengths-panel-title {
  width: 100%;
  text-align: left;
  margin-bottom: var(--space-md);
}

.strengths-result .tag-item {
  background-color: rgba(88, 166, 255, 0.1);
  color: #58a6ff;
  border: 1px solid rgba(88, 166, 255, 0.24);
}

.strengths-result .bf-reliability {
  font-weight: 700;
  color: var(--text-primary);
}

.strengths-result .content-section,
.strengths-result .swot-full-section,
.strengths-result .enn-result-next-cta {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.strengths-result .enn-result-next-cta {
  margin-top: var(--space-2xl);
}

/* DISC-specific overrides */
.disc-result .enn-overview {
  margin-bottom: 24px;
}

.disc-chart-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.disc-chart-wrap canvas {
  width: 100% !important;
  height: auto !important;
}

.disc-dims-section {
  padding: 16px 0;
}

.disc-career-section {
  padding: 16px 0;
}

.disc-career-section p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}

.disc-career-section .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.disc-career-section .tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(74, 158, 255, 0.12);
  color: #58a6ff;
  border: 1px solid rgba(74, 158, 255, 0.2);
}

.bf-status-badge {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 10px;
  text-transform: uppercase;
}

.bf-status-clear { background: rgba(74, 255, 158, 0.12); color: #4aff9e; }
.bf-status-probable { background: rgba(255, 230, 109, 0.12); color: #ffe66d; }
.bf-status-blended { background: rgba(255, 107, 107, 0.12); color: #ff6b6b; }
.bf-status-uncertain { background: rgba(229, 57, 53, 0.12); color: #ef4444; }

@media (max-width: 600px) {
  .bf-trait-label { min-width: 100px; font-size: 0.8rem; }
  .bf-trait-bar { gap: 8px; }
}
