/* ═══════════════════════════════════════════════════════════════
   AI Growth Readiness Scorecard — Design System
   TransformTechX brand tokens + assessment-specific components
   Source: transformtechx.com/index.html design tokens
   ═══════════════════════════════════════════════════════════════ */

/* Self-hosted Inter variable font */
@font-face {
  font-family: 'Inter';
  src: url('https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZ9hjQ.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --bg:         #020910;
  --bg2:        #050E1D;
  --bg3:        #081220;
  --card:       rgba(8,18,32,0.85);
  --card-hover: rgba(8,18,32,0.95);

  --line:       rgba(255,255,255,0.06);
  --line-hi:    rgba(37,99,235,0.35);

  --blue:       #2563EB;
  --blue-dk:    #1D4ED8;
  --blue-lt:    #60A5FA;
  --blue-glow:  rgba(37,99,235,0.15);
  --blue-tint:  rgba(37,99,235,0.07);

  --amber:      #F59E0B;
  --amber-dk:   #D97706;
  --amber-lt:   #FCD34D;
  --amber-glow: rgba(245,158,11,0.15);
  --amber-tint: rgba(245,158,11,0.07);

  --green:      #34D399;
  --green-dk:   #059669;
  --green-tint: rgba(52,211,153,0.07);
  --purple:     #A78BFA;
  --purple-tint:rgba(167,139,250,0.07);
  --pink:       #F472B6;
  --red:        #EF4444;

  --white:      #EFF2F7;
  --muted:      #627597;
  --muted-lt:   #8FA3C0;

  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --r:          12px;
  --rl:         18px;

  /* Band colors */
  --band-bee:       #F59E0B;
  --band-elephant:  #60A5FA;
  --band-dolphin:   #34D399;
  --band-unicorn:   #A78BFA;

  /* Pillar colors */
  --pillar-data-gov:  #2563EB;
  --pillar-tech:      #60A5FA;
  --pillar-people:    #F59E0B;
  --pillar-culture:   #34D399;

  /* Subtag colors */
  --subtag-foundational:  #2563EB;
  --subtag-data-ai:       #60A5FA;
  --subtag-martech:       #F59E0B;
  --subtag-training:      #34D399;
  --subtag-culture:       #A78BFA;
  --subtag-growth:        #F472B6;
}

/* ═══════════════════════════════════════
   RESET + BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--muted-lt);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 998; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.032;
  mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3, h4 { color: var(--white); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p { font-size: 16px; line-height: 1.8; }
a { color: inherit; text-decoration: none; }

.grad-amber {
  background: linear-gradient(110deg, var(--amber) 20%, var(--amber-lt) 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-blue {
  background: linear-gradient(110deg, var(--blue-lt) 20%, #93C5FD 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   COMPONENTS — Eyebrow, Tags, Buttons
═══════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--amber); border-radius: 2px; }

.tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.tag-blue  { color: var(--blue-lt); background: var(--blue-tint); border: 1px solid rgba(96,165,250,0.18); }
.tag-amber { color: var(--amber);   background: var(--amber-tint); border: 1px solid rgba(245,158,11,0.2); }
.tag-green { color: var(--green);   background: var(--green-tint); border: 1px solid rgba(52,211,153,0.18); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em; cursor: pointer;
  transition: all 0.25s ease; border: none;
  text-decoration: none;
}
.btn-amber {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
  color: #06100A;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.3), 0 8px 24px rgba(245,158,11,0.18);
}
.btn-amber:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(245,158,11,0.5), 0 16px 36px rgba(245,158,11,0.28); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.3), 0 8px 24px rgba(37,99,235,0.18);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(37,99,235,0.5), 0 16px 36px rgba(37,99,235,0.28); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.24); }

.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 10px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ═══════════════════════════════════════
   NAVIGATION (assessment-specific)
═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(2,9,16,0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 800; color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo img { height: 28px; }
.nav-logo span { color: var(--amber); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.survey-header-breadcrumbs {
  font-size: 13px; font-weight: 600; color: var(--muted);
  display: flex; gap: 8px; align-items: center;
}
.survey-header-breadcrumbs span { color: var(--white); }

/* ═══════════════════════════════════════
   HERO SECTION (landing page)
═══════════════════════════════════════ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { margin-bottom: 20px; position: relative; z-index: 1; }
.hero p { max-width: 600px; margin: 0 auto 36px; font-size: 18px; position: relative; z-index: 1; }

.hero-stats {
  display: flex; justify-content: center; gap: 40px; margin-top: 48px;
  position: relative; z-index: 1;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 32px; font-weight: 800; color: var(--white); letter-spacing: -0.03em; }
.hero-stat .label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ═══════════════════════════════════════
   CARD
═══════════════════════════════════════ */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  padding: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  border-color: var(--line-hi);
  box-shadow: 0 0 40px rgba(37,99,235,0.06);
}

/* ═══════════════════════════════════════
   SELECTION CARDS (Demographics)
═══════════════════════════════════════ */
.selection-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 24px;
}
.selection-card {
  background: var(--bg3); border: 1px solid var(--line); border-radius: var(--rl);
  padding: 20px; cursor: pointer; transition: all 0.2s ease; position: relative;
  display: flex; flex-direction: column; text-align: left;
}
.selection-card:hover {
  border-color: var(--blue-lt); background: var(--blue-tint);
}
.selection-card.active {
  border-color: var(--blue); background: rgba(37,99,235,0.12);
  box-shadow: 0 0 0 1px var(--blue);
}
.selection-card-icon { font-size: 24px; margin-bottom: 12px; }
.selection-card-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.selection-card-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }
.selection-card-check {
  position: absolute; top: 16px; right: 16px; width: 20px; height: 20px;
  background: var(--blue); border-radius: 50%; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; opacity: 0; transform: scale(0.8); transition: all 0.2s ease;
}
.selection-card.active .selection-card-check { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em;
}
.form-group .hint {
  font-size: 12px; color: var(--muted); margin-top: 4px;
}

.form-input, .form-select {
  width: 100%;
  background: var(--bg3);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.form-input:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-input::placeholder { color: var(--muted); }
.form-input.error, .form-select.error { border-color: var(--red); }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; display: none; }
.form-group.has-error .form-error { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23627597' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Checkbox */
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}
.form-checkbox span { font-size: 13px; color: var(--muted-lt); line-height: 1.5; }
.form-checkbox a { color: var(--blue-lt); text-decoration: underline; }

/* ═══════════════════════════════════════
   PROGRESS BAR (assessment steps)
═══════════════════════════════════════ */
.progress-container {
  padding: 24px 0 8px;
  margin-bottom: 12px;
}
.progress-bar-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  border-radius: 100px;
  transition: width 0.4s ease;
}
.progress-label {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; font-size: 12px; color: var(--muted);
}
.progress-label .current { color: var(--white); font-weight: 700; }

/* ═══════════════════════════════════════
   LIKERT SCALE (question answering)
═══════════════════════════════════════ */
.question-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}
.question-card.answered { border-color: rgba(52,211,153,0.3); }
.question-card .q-number {
  font-size: 11px; font-weight: 800; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
}
.question-card .q-pillar {
  display: inline-block; font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px; margin-left: 8px;
}
.question-card .q-statement {
  font-size: 15px; color: var(--white); line-height: 1.6; margin-bottom: 18px;
  font-weight: 500;
}

.likert-scale {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.likert-option {
  flex: 1; min-width: 80px;
}
.likert-option input { display: none; }
.likert-option label {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 90px; border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--bg3);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.likert-option label:hover {
  border-color: var(--blue);
  background: var(--blue-tint);
}
.likert-option input:checked + label {
  border-color: var(--blue);
  background: rgba(37,99,235,0.15);
  box-shadow: 0 0 0 1px var(--blue);
}
.likert-option .likert-value {
  font-size: 18px; font-weight: 800; color: var(--white);
  margin-bottom: 4px;
}
.likert-option .likert-label {
  font-size: 10px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.05em; line-height: 1.3;
}

/* N/A option */
.likert-option.na-option label {
  border-color: rgba(255,255,255,0.08);
  background: transparent;
}
.likert-option.na-option input:checked + label {
  border-color: var(--muted);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 1px var(--muted);
}
.likert-option.na-option .likert-value { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════
   RESULTS PAGE
═══════════════════════════════════════ */
.results-hero {
  text-align: center;
  padding: 100px 0 40px;
}
.score-circle {
  width: 200px; height: 200px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  background: var(--card);
  border: 3px solid var(--line);
  position: relative;
}
.score-circle .score-value {
  font-size: 56px; font-weight: 900; color: var(--white);
  letter-spacing: -0.04em; line-height: 1;
}
.score-circle .score-label {
  font-size: 14px; color: var(--muted); margin-top: 4px;
}
.score-circle .score-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
}

.band-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  font-size: 16px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.band-badge.bee       { color: var(--band-bee);      background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.3); }
.band-badge.elephant  { color: var(--band-elephant);  background: rgba(96,165,250,0.12); border: 1px solid rgba(96,165,250,0.3); }
.band-badge.dolphin   { color: var(--band-dolphin);   background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.3); }
.band-badge.unicorn   { color: var(--band-unicorn);   background: rgba(167,139,250,0.12); border: 1px solid rgba(167,139,250,0.3); }

.confidence-line {
  font-size: 13px; color: var(--muted); margin-top: 12px;
}

/* Readiness Spectrum */
.spectrum {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rl);
}
.spectrum-bar {
  display: flex; height: 12px; border-radius: 100px; overflow: hidden;
  margin: 16px 0 8px;
}
.spectrum-bar .seg { flex: 1; }
.spectrum-bar .seg-bee      { background: var(--band-bee); }
.spectrum-bar .seg-elephant { background: var(--band-elephant); }
.spectrum-bar .seg-dolphin  { background: var(--band-dolphin); }
.spectrum-bar .seg-unicorn  { background: var(--band-unicorn); }

.spectrum-labels {
  display: flex; font-size: 11px; color: var(--muted); letter-spacing: 0.05em;
}
.spectrum-labels span { flex: 1; text-align: center; }
.spectrum-marker {
  position: relative; height: 24px; margin-top: -4px;
}
.spectrum-marker .marker {
  position: absolute; transform: translateX(-50%);
  width: 3px; height: 20px; background: var(--white);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

/* Chart containers */
.chart-container {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  padding: 24px;
  margin-bottom: 20px;
}
.chart-container h3 { margin-bottom: 16px; font-size: 16px; }
.chart-canvas-wrap { position: relative; max-width: 400px; margin: 0 auto; }

/* Pillar bars */
.pillar-bars { margin-bottom: 24px; }
.pillar-bar-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.pillar-bar-label {
  font-size: 13px; font-weight: 600; color: var(--white);
  min-width: 140px; text-align: right;
}
.pillar-bar-track {
  flex: 1; height: 12px; background: rgba(255,255,255,0.06);
  border-radius: 100px; overflow: hidden;
}
.pillar-bar-fill {
  height: 100%; border-radius: 100px;
  transition: width 0.8s ease;
}
.pillar-bar-value {
  font-size: 13px; font-weight: 700; color: var(--white);
  min-width: 48px;
}

/* Sub-tag map */
.subtag-map { margin-bottom: 24px; }
.subtag-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.subtag-label {
  font-size: 12px; font-weight: 600; color: var(--muted-lt);
  min-width: 160px; text-align: right;
}
.subtag-bar-track {
  flex: 1; height: 8px; background: rgba(255,255,255,0.06);
  border-radius: 100px; overflow: hidden;
}
.subtag-bar-fill {
  height: 100%; border-radius: 100px;
  transition: width 0.8s ease;
}
.subtag-value {
  font-size: 12px; font-weight: 700; color: var(--white);
  min-width: 60px;
}
.subtag-na { color: var(--muted); font-style: italic; font-weight: 400; }

/* Strengths & Gaps */
.insight-list { list-style: none; padding: 0; }
.insight-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 12px;
}
.insight-item:last-child { border-bottom: none; }
.insight-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0; margin-top: 2px;
}
.insight-icon.strength { background: var(--green-tint); }
.insight-icon.gap      { background: var(--amber-tint); }
.insight-text { font-size: 14px; color: var(--white); line-height: 1.5; }
.insight-meta { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.cta-section h2 { font-size: 28px; margin-bottom: 12px; }
.cta-section p { margin-bottom: 28px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px; color: var(--muted);
}
.footer a { color: var(--blue-lt); }

/* ═══════════════════════════════════════
   STEP NAVIGATION
═══════════════════════════════════════ */
.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  margin-top: 12px;
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.slide-in-right {
  animation: slideInRight 0.4s ease forwards;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .likert-scale { flex-direction: column; }
  .likert-option { min-width: 100%; }
  .pillar-bar-label { min-width: 100px; font-size: 12px; }
  .subtag-label { min-width: 120px; font-size: 11px; }
  .card { padding: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .step-nav { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .pillar-bar-row { flex-direction: column; align-items: stretch; gap: 4px; }
  .pillar-bar-label { text-align: left; min-width: unset; }
  .subtag-row { flex-direction: column; align-items: stretch; gap: 4px; }
  .subtag-label { text-align: left; min-width: unset; }
}

/* ═══════════════════════════════════════
   LOADING / SPINNER
═══════════════════════════════════════ */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--line);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Hidden utility */
.hidden { display: none !important; }

/* ═══════════════════════════════════════
   ASSESSMENT STEP CONTAINER
═══════════════════════════════════════ */
.assess-wrap {
  padding-top: 80px;
  min-height: 100vh;
}
.step-content {
  padding: 20px 0 40px;
}

/* ═══════════════════════════════════════
   ROADMAP (blurred respondent view + full admin view)
═══════════════════════════════════════ */
.roadmap-bucket { margin-bottom: 20px; }
.roadmap-bucket-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 10px;
}
.roadmap-row {
  display: flex; gap: 12px; padding: 12px 14px; margin-bottom: 8px;
  background: rgba(8,18,32,0.85); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.roadmap-locked { position: relative; overflow: hidden; border-radius: 12px; }
.roadmap-blur {
  filter: blur(7px); opacity: 0.55; pointer-events: none; user-select: none;
}
.roadmap-unlock {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 24px;
  background: radial-gradient(ellipse at center, rgba(2,9,16,0.55) 0%, rgba(2,9,16,0.85) 100%);
}
