/* ═══════════════════════════════════════════════════════════
   VERBATIM — Cathedral Builder Assessment  ·  Minimalist Modern
═══════════════════════════════════════════════════════════ */

/* ── Intro screen ── */
.cathedral-intro {
  max-width: 680px; margin: 0 auto; text-align: center;
  padding: var(--space-8) 0;
}
.cathedral-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: var(--space-4);
}
.cathedral-intro p { font-size: 16px; line-height: 1.8; margin-bottom: var(--space-4); }
.cathedral-dimensions {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-3);
  margin: var(--space-8) 0; text-align: center;
}
@media (max-width: 600px) { .cathedral-dimensions { grid-template-columns: repeat(2, 1fr); } }
.cathedral-dim-chip {
  padding: var(--space-3); border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--white);
  font-size: 12px; font-weight: 600; color: var(--text-primary);
  box-shadow: var(--shadow-sm); transition: border-color 0.2s, box-shadow 0.2s;
}
.cathedral-dim-chip:hover { border-color: var(--gold-border); box-shadow: var(--shadow-accent); }
.cathedral-dim-chip .dim-icon { font-size: 22px; margin-bottom: 6px; }
.cathedral-dim-chip .dim-name { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

/* ── Progress bar ── */
.assessment-progress-wrap {
  margin-bottom: var(--space-6);
}
.assessment-progress-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-2);
}
.assessment-progress-label { font-size: 13px; font-family: var(--font-mono); color: var(--text-muted); }
.assessment-progress-pct { font-size: 13px; font-weight: 700; font-family: var(--font-mono); color: var(--gold); }
.assessment-progress-bar {
  height: 6px; background: var(--surface-raised); border-radius: var(--radius-full); overflow: hidden;
}
.assessment-progress-fill {
  height: 100%; background: var(--gradient-accent);
  border-radius: var(--radius-full); transition: width 0.4s ease;
}

/* ── Dimension breadcrumb ── */
.dimension-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: 11px; font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); background: var(--gold-dim);
  border: 1px solid var(--gold-border); border-radius: var(--radius-full);
  padding: 4px 12px; margin-bottom: var(--space-4);
}

/* ── Question card ── */
.question-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-8);
  box-shadow: var(--shadow-sm); max-width: 720px; margin: 0 auto;
}
.question-number {
  font-size: 12px; font-family: var(--font-mono); color: var(--text-muted);
  margin-bottom: var(--space-4);
}
.question-text {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-primary); line-height: 1.5; margin-bottom: var(--space-8);
}

/* Scale row */
.scale-row {
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.scale-labels {
  display: flex; justify-content: space-between;
  font-size: 11px; font-family: var(--font-mono); color: var(--text-muted);
  padding: 0 2px;
}
.scale-options { display: flex; gap: var(--space-2); justify-content: space-between; }
.scale-option {
  flex: 1; max-width: 80px; aspect-ratio: 1 / 1;
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface-raised); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; color: var(--text-muted);
  transition: all 0.15s; box-shadow: var(--shadow-sm);
}
.scale-option:hover {
  border-color: var(--gold-border); color: var(--gold);
  box-shadow: var(--shadow-accent); transform: translateY(-2px);
}
.scale-option.selected {
  background: var(--gold); border-color: transparent;
  color: #FFFFFF; box-shadow: var(--shadow-accent);
}

/* Navigation */
.question-nav {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
}
.question-nav-hint { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }

/* ── Results screen ── */
.results-layout {
  display: grid; gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .results-layout { grid-template-columns: 1fr 1fr; } }

.results-header { text-align: center; margin-bottom: var(--space-8); }
.results-score-band {
  display: inline-block; font-size: 13px; font-weight: 600;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 18px; border-radius: var(--radius-full);
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid var(--gold-border); margin-bottom: var(--space-4);
}
.results-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: var(--space-3); }
.results-narrative { font-size: 15px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* Radar chart */
.radar-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-6);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center;
}
.radar-svg { width: 100%; max-width: 380px; height: auto; }

/* Dimension scores */
.dimension-scores-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.dim-score-item { margin-bottom: var(--space-5); }
.dim-score-item:last-child { margin-bottom: 0; }
.dim-score-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-2);
}
.dim-score-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.dim-score-value { font-size: 14px; font-weight: 700; font-family: var(--font-mono); color: var(--gold); }
.dim-score-bar-bg { height: 8px; background: var(--surface-raised); border-radius: var(--radius-full); overflow: hidden; }
.dim-score-bar-fill { height: 100%; border-radius: var(--radius-full); transition: width 1s ease 0.3s; }

/* Focus card */
.focus-card {
  background: var(--white); border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  grid-column: 1 / -1;
}
.focus-card-label { font-size: 11px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: var(--space-3); }
.focus-card-title { font-family: var(--font-display); font-size: 20px; color: var(--text-primary); margin-bottom: var(--space-3); }
.focus-card-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-5); }
.focus-actions { display: flex; flex-direction: column; gap: var(--space-3); }
.focus-action-item {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font-size: 14px; color: var(--text-primary); line-height: 1.5;
}
.focus-action-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; font-family: var(--font-mono);
  color: var(--gold); flex-shrink: 0; margin-top: 1px;
}

.results-actions { text-align: center; margin-top: var(--space-6); display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }
