:root {
  /* MOVE37 Original Identity Palette (Refined Light) */
  --primary: #000000;
  --primary-dark: #000000;
  --primary-light: #f5f5f7;
  --accent: rgba(0, 0, 0, 0.1);
  --success: #10b981;
  --bg: #f2f2f5; /* 약간 더 진한 옅은 그레이로 화이트 상자 부각 */
  --surface: #ffffff;
  --surface-2: #fafafc;
  --border: rgba(0, 0, 0, 0.08); 
  --text: #1d1d1f; /* 가독성 좋은 딥 그레이/블랙 */
  --text-muted: #515154;
  --text-dim: #86868b;
  --radius: 20px;
  --blur: 12px;
  --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.02);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
  background: var(--bg); /* 딥 그레이 테마 적용 */
  color: var(--text);
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  line-height: 1.6;
  position: relative;
}

@media (max-width: 768px) {
  body { height: auto; overflow: auto; }
}

/* =====================
   MOVE37 GRID BACKGROUND
   ===================== */
.grid-background-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-svg {
  width: 100%;
  height: 100%;
  opacity: 0.6; /* 가시성 상향 */
}

.grid-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 20%, var(--bg) 90%);
  pointer-events: none;
}

.animated-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 3.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; /* 3.5s 동기화 */
}

.line-v { animation-delay: 1.2s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Stones removed as per request */

.app-container {
  display: flex;
  height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .app-container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }
}

/* Landing Mode: Hide Right Panel */
.app-container.landing-mode .right-panel {
  display: none !important;
}

/* =====================
   LEFT PANEL
   ===================== */
.left-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--surface);
  margin: 1.5rem; /* 여백 소폭 축소 */
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-premium);
  min-width: 0;
  z-index: 5;
  overflow: hidden; /* 내부 섹션에서 스크롤 제어 */
  max-height: calc(100vh - 3rem);
}

@media (max-width: 768px) {
  .left-panel {
    border-right: none;
    border-bottom: 1px solid var(--border);
    height: auto;
  }
}

.app-header {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.header-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .app-header {
    padding: 0.8rem 1rem;
  }
  .header-sub { display: none; }
  .main-title { font-size: 1rem; }
}

.main-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.highlight {
  color: #0A0A0A;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.04);
  z-index: -1;
}

.app-header p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Screens */
.screen { display: none; flex: 1; flex-direction: column; animation: fadeIn 0.4s ease; }
.screen.active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes cardEntry {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* =====================
   LANDING
   ===================== */
#screen-landing {
  justify-content: center;
  padding: 0 2.5rem 2rem;
}

.landing-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex: 1;
}

@media (max-width: 768px) {
  .landing-content {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }
  .landing-text-area { max-width: 100%; }
}

.landing-text-area {
  flex: 1;
  max-width: 480px;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f2f2f7;
  border: 1px solid rgba(0,0,0,0.05);
  color: #1d1d1f;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.landing-text-area h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #000; /* 그라데이션 대신 선명한 블랙으로 변경하여 가독성 확보 */
  letter-spacing: -0.02em;
}

.landing-text-area .description {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.landing-text-area .description strong {
  color: #a5b4fc;
  font-weight: 600;
}

.landing-image-area {
  flex: 1.2; /* 이미지 영역 비중 상향 */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual-placeholder {
  width: 100%;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium);
  filter: saturate(0.9);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Landing Mode & Layout Fixes */
.landing-mode .left-panel {
  margin: 2rem auto;
  max-width: 1000px;
}

.landing-mode .left-panel {
  margin: 2rem auto;
  max-width: 1000px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.1em; /* MOVE37 특유의 넓은 자간 */
  text-transform: uppercase;
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: #222;
}

.btn.secondary {
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn.secondary:hover {
  background: var(--surface-2);
  color: var(--text);
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* =====================
   QUESTION SCREEN
   ===================== */
#screen-question.active {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden; /* 내부 레이어에서 스크롤 제어 */
  padding: 1rem 1.5rem 0.5rem;
}

@media (max-width: 768px) {
  #screen-question { padding: 1rem 1rem 0; }
}

.progress-container {
  margin-bottom: 2rem;
  flex-shrink: 0;
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.progress-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.dot.completed {
  background: var(--primary);
  opacity: 0.4;
}

.current-section-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.progress-bar-wrap {
  width: 100%;
}

.progress-bar {
  height: 3px; /* 더 얇고 정갈하게 */
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.progress-label {
  font-weight: 600;
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: right;
}

/* Apple Style Boxed Question Card */
.q-card {
  min-width: 100%;
  padding: 2rem; /* 패딩 추가 축소 */
  background: var(--surface);
  border-radius: 24px;
  box-shadow: none; /* 내부 카드이므로 그림자 제거하여 깔끔하게 */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: opacity 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: auto;
  min-height: min-content;
  margin-bottom: 1rem;
}

.section-badge {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  font-weight: 500;
  opacity: 0.6;
}

.question-text {
  font-size: 1.8rem; /* 너무 컸던 폰트 축소 */
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
}

textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border); /* 명확한 테두리 추가 */
  border-radius: 18px;
  padding: 1.5rem;
  font-size: 1.1rem;
  color: var(--text);
  resize: none;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 140px;
  margin-bottom: 1rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05), 0 10px 30px rgba(0,0,0,0.03);
}

.suggestion-header {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.suggestion-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap; /* 가로로 유연하게 배치 */
  gap: 0.6rem;
}

.chip {
  background: white;
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* =====================
   CAROUSEL
   ===================== */
.carousel-viewport {
  flex: 1;
  width: 100%;
  position: relative;
  overflow-y: auto; /* 여기서 스크롤 발생 */
  padding-bottom: 2rem;
}

/* Question Card Layout Fix */
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* AI suggestion box (Premium White) */
.ai-suggestion-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.suggestion-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  opacity: 0.9;
}

.suggestion-chips {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
  text-align: left;
  font-family: inherit;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-light);
  color: var(--text);
  transform: translateX(4px);
}

/* Navigation Controls */
.nav-controls {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
  z-index: 20;
  justify-content: center;
}

/* Loader spinners (Monotone) */
.loader-spinner.small {
  width: 14px; height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--text);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.action-row { display: flex; gap: 1rem; margin-top: auto; padding-top: 1rem; }
.action-row.centered { justify-content: center; }

/* =====================
   LOADING SCREEN
   ===================== */
.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
  gap: 0.8rem;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 0.5rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-content h3 {
  color: var(--text);
  font-size: 1.25rem;
}

.loading-content p { font-size: 0.9rem; line-height: 1.7; }

.loading-dots { display: flex; gap: 6px; margin-top: 0.5rem; }
.loading-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: bounce 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* =====================
   RESULT SCREEN
   ===================== */
.result-header {
  text-align: center;
  padding: 2rem 2.5rem 1.2rem;
  flex-shrink: 0;
}

.result-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #000; /* 선명도 상향 */
  letter-spacing: -0.02em;
}

.result-header p { color: var(--text-muted); font-size: 0.9rem; }

.result-paper {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin: 0 2.5rem 1rem;
  overflow-y: auto;
}

/* Result Content Styling */
.bp-result-header {
  margin: 2rem 0 1.5rem;
  text-align: center;
}

.bp-badge {
  background: var(--primary);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bp-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.markdown-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.markdown-body h1 { font-size: 1.8rem; margin-bottom: 1.5rem; text-align: center; }
.markdown-body h2 { font-size: 1.4rem; border-left: 4px solid var(--primary); padding-left: 0.8rem; margin: 2rem 0 1rem; }
.markdown-body h3 { font-size: 1.1rem; margin: 1.5rem 0 0.8rem; }
.markdown-body p { margin-bottom: 1rem; color: var(--text-muted); }

.result-actions {
  display: flex;
  gap: 1rem;
  padding: 0 2.5rem 2rem;
  justify-content: center;
  flex-shrink: 0;
}

/* =====================
   RIGHT PANEL
   ===================== */
.right-panel {
  width: 420px;
  background: transparent;
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 2rem 0; /* 왼쪽 패널 마진 고려 */
  z-index: 1;
}

.workflow-header {
  padding: 1.3rem 1.4rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workflow-header h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.workflow-progress-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #000;
  background: #f2f2f7;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.workflow-container {
  flex: 1;
  overflow-y: auto;
  padding: 0 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.1) transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Section Group (Light Mode Refined) */
.wf-section-group {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wf-section-group.has-answer {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.wf-section-group.completed {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.wf-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.04);
}

.wf-section-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wf-section-icon { font-size: 1rem; }

.wf-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1d1d1f; /* 더 선명한 텍스트 */
  letter-spacing: -0.01em;
}

.wf-section-group.completed .wf-section-title { color: var(--text); opacity: 1; }
.wf-section-group.has-answer .wf-section-title { color: var(--text); opacity: 0.8; }

/* 도트 진행 표시 (Baduk Stone Style) */
.wf-dot-row { display: flex; gap: 5px; align-items: center; }

.wf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e5ea; /* 더 선명한 배경 */
  box-shadow: inset 1px 1px 2px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.wf-dot.filled {
  background: radial-gradient(circle at 30% 30%, #fff 0%, #aaa 100%); /* White stone */
  transform: scale(1.1);
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

/* 검은 돌은 강조할 때 사용할 수도 있지만, 현재는 진행완료 보드에서 녹색 대신 흰돌/검은돌 조화로 유지 */
.wf-section-group.completed .wf-dot.filled { 
  background: radial-gradient(circle at 30% 30%, #444 0%, #000 100%); /* Black stone */
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* 섹션 미리보기 영역 (미니멀화: 텍스트 숨김) */
.wf-section-preview {
  display: none; /* 대표님 요청: 타이틀과 진행률만 표시 */
}

.wf-section-footer {
  padding: 0 0.9rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wf-fill-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

/* 채움 바 */
.wf-fill-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.wf-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.4s ease;
}

.wf-section-group.completed .wf-fill { background: var(--success); }

.wf-fill-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 600;
}

.wf-section-group.has-answer .wf-fill-label { color: #a5b4fc; }
.wf-section-group.completed .wf-fill-label { color: #34d399; }

/* =====================
   RESULT TABLE
   ===================== */
.bp-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0.8rem 0;
  font-size: 0.85rem;
}

.bp-table td, .bp-table th {
  border: 1px solid var(--border);
  padding: 0.45rem 0.7rem;
  color: var(--text-muted);
}

.bp-table tr:first-child td {
  background: rgba(99,102,241,0.1);
  font-weight: 700;
  color: var(--text);
}

/* =====================
   SCORE SECTION (NEW)
   ===================== */
.score-dashboard {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.score-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.total-score-badge {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.score-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .score-items-grid { grid-template-columns: 1fr; }
}

.score-item-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.score-item-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.score-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.score-bar-bg {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.score-bar-fill {
  height: 100%;
  background: var(--primary); /* 선명한 블랙 바 */
  width: 0%;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.score-comment {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.insight-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .insight-cards { grid-template-columns: 1fr; }
}

.insight-card {
  padding: 1.2rem;
  border-radius: 12px;
}

.insight-card.strength {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-card.weakness {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.9;
}

.insight-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.insight-card p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.hidden { display: none !important; }
