/* ─────────────────────────────────────────────
   Clarity Engine — Simplifico
   Brand: #262a56 · #e3ccae · #222 · #fff · #000
   ───────────────────────────────────────────── */

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #262a56;
  --warm: #e3ccae;
  --warm-light: #f5ead9;
  --warm-dark: #c9a97a;
  --dark: #222222;
  --black: #000000;
  --white: #ffffff;
  --grey-50: #f9f9f9;
  --grey-100: #f2f2f2;
  --grey-200: #e5e5e5;
  --grey-300: #d4d4d4;
  --grey-400: #a3a3a3;
  --grey-500: #737373;
  --grey-600: #525252;
  --red: #c0392b;
  --amber: #d4920a;
  --green: #1e7a46;
  --blue: #2563eb;

  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--grey-50);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Screens ── */
.screen {
  display: none;
  min-height: 100vh;
}
.screen.active {
  display: flex;
}

/* ════════════════════════════════════════════ */
/* WELCOME SCREEN                              */
/* ════════════════════════════════════════════ */
#screen-welcome {
  background: var(--navy);
  color: var(--white);
  align-items: center;
  justify-content: center;
}

.welcome-container {
  width: 100%;
  max-width: 640px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.welcome-header {
  padding-bottom: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  flex-shrink: 0;
  object-fit: contain;
}

/* Invert logo on dark backgrounds */
#screen-welcome .brand-mark,
#screen-processing .processing-icon {
  filter: invert(1);
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.welcome-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 3rem;
}

.welcome-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm);
  margin-bottom: 1rem;
}

.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.welcome-title .accent {
  color: var(--warm);
}

.welcome-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.welcome-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(227, 204, 174, 0.12);
  border: 1px solid rgba(227, 204, 174, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-text strong {
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--warm);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--warm-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(227, 204, 174, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-start {
  align-self: flex-start;
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.welcome-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.welcome-footer {
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ════════════════════════════════════════════ */
/* QUESTIONNAIRE SCREEN                        */
/* ════════════════════════════════════════════ */
#screen-questionnaire {
  background: var(--white);
  flex-direction: column;
}

.questionnaire-container {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.q-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-200);
}

.brand-sm .brand-name {
  font-size: 0.9rem;
  color: var(--dark);
}

.progress-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-500);
  display: none;
}

@media (min-width: 600px) {
  .section-label { display: inline; }
}

.progress-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(38, 42, 86, 0.06);
  padding: 4px 10px;
  border-radius: 20px;
}

.progress-track {
  height: 3px;
  background: var(--grey-100);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

/* Question container */
.question-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.question-card {
  width: 100%;
}

.slide-in .question-card {
  animation: slideIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.question-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.question-subtext {
  font-size: 0.9rem;
  color: var(--grey-500);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.multi-hint {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  background: rgba(38, 42, 86, 0.05);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* Radio/Multi options */
.options-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: all 0.18s ease;
  position: relative;
}

.option-btn:hover {
  border-color: var(--navy);
  background: rgba(38, 42, 86, 0.02);
}

.option-btn.selected {
  border-color: var(--navy);
  background: rgba(38, 42, 86, 0.05);
  box-shadow: 0 0 0 1px var(--navy);
}

.option-label {
  font-weight: 500;
}

.option-desc {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin-left: auto;
}

.check-indicator {
  width: 20px;
  height: 20px;
  border: 2px solid var(--grey-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.18s ease;
  color: transparent;
}

.option-btn.selected .check-indicator {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Scale options */
.scale-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.scale-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.18s ease;
}

.scale-btn:hover {
  border-color: var(--navy);
}

.scale-btn.selected {
  border-color: var(--navy);
  background: rgba(38, 42, 86, 0.05);
  box-shadow: 0 0 0 1px var(--navy);
}

.scale-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--grey-400);
  transition: color 0.18s ease;
}

.scale-btn.selected .scale-num {
  color: var(--navy);
}

.scale-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey-500);
  text-align: center;
  line-height: 1.3;
}

/* Text inputs */
.text-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease;
  outline: none;
}

.text-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(38, 42, 86, 0.08);
}

.text-input.textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.text-input::placeholder {
  color: var(--grey-400);
}

/* Navigation */
.q-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--grey-100);
  gap: 12px;
}

.btn-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-500);
  background: transparent;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn-nav:hover {
  border-color: var(--grey-400);
  color: var(--dark);
}

.btn-skip {
  color: var(--grey-400);
  border-color: transparent;
}

.btn-skip:hover {
  color: var(--grey-600);
  border-color: transparent;
  background: var(--grey-100);
}

.btn-continue {
  margin-left: auto;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

.btn-submit {
  background: var(--navy);
  color: var(--white);
}

.btn-submit:hover {
  background: #1e2248;
  box-shadow: 0 4px 20px rgba(38, 42, 86, 0.25);
}

/* ════════════════════════════════════════════ */
/* PROCESSING SCREEN                           */
/* ════════════════════════════════════════════ */
#screen-processing {
  background: var(--navy);
  align-items: center;
  justify-content: center;
}

.processing-container {
  text-align: center;
  color: var(--white);
}

.processing-visual {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(227, 204, 174, 0.2);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

.pulse-ring.delay-1 { animation-delay: 0.5s; }
.pulse-ring.delay-2 { animation-delay: 1s; }

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.processing-icon {
  position: relative;
  z-index: 1;
  animation: breathe 1.5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.processing-msg {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  animation: fadeInUp 0.5s ease;
}

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

/* ════════════════════════════════════════════ */
/* RESULTS SCREEN                              */
/* ════════════════════════════════════════════ */
#screen-results {
  background: var(--grey-50);
  flex-direction: column;
}

.results-container {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  background: var(--grey-50);
  z-index: 10;
}

.toolbar-actions {
  display: flex;
  gap: 8px;
}

.btn-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-600);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn-toolbar:hover {
  border-color: var(--grey-400);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

/* Results content */
.results-content {
  padding: 2rem 0;
}

.result-section {
  margin-bottom: 2.5rem;
}

.result-hero {
  text-align: center;
  padding: 3rem 0 2rem;
}

.result-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: rgba(38, 42, 86, 0.06);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.result-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.snapshot-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--grey-600);
  max-width: 600px;
  margin: 0 auto;
}

.snapshot-text strong {
  color: var(--navy);
  font-weight: 600;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-subtext {
  font-size: 0.9rem;
  color: var(--grey-500);
  margin-bottom: 1.5rem;
}

/* Score Cards */
.score-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 500px) {
  .score-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.score-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.score-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.score-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.score-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.score-value.critical { color: var(--red); }
.score-value.weak { color: var(--amber); }
.score-value.developing { color: var(--amber); }
.score-value.solid { color: var(--green); }
.score-value.strong { color: var(--green); }

.score-max {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--grey-400);
}

.score-bar-track {
  height: 6px;
  background: var(--grey-100);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.score-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-bar-fill.critical { background: var(--red); }
.score-bar-fill.weak { background: var(--amber); }
.score-bar-fill.developing { background: var(--amber); }
.score-bar-fill.solid { background: var(--green); }
.score-bar-fill.strong { background: var(--green); }

.score-level-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
}

.score-level-tag.critical { color: var(--red); background: rgba(192,57,43,0.08); }
.score-level-tag.weak { color: var(--amber); background: rgba(212,146,10,0.08); }
.score-level-tag.developing { color: var(--amber); background: rgba(212,146,10,0.08); }
.score-level-tag.solid { color: var(--green); background: rgba(30,122,70,0.08); }
.score-level-tag.strong { color: var(--green); background: rgba(30,122,70,0.08); }

/* Bottleneck */
.bottleneck-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--navy);
}

.bottleneck-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(38, 42, 86, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.bottleneck-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.bottleneck-content p {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.5;
}

/* Priorities */
.priorities-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.priority-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
}

.priority-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--warm);
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.priority-text {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
}

/* Insights Row */
.insights-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .insights-row {
    grid-template-columns: 1fr 1fr;
  }
}

.insight-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  background: var(--white);
}

.insight-card.warning {
  border-left: 4px solid var(--amber);
}

.insight-card.opportunity {
  border-left: 4px solid var(--green);
}

.insight-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.warning .insight-icon {
  background: rgba(212,146,10,0.08);
  color: var(--amber);
}

.opportunity .insight-icon {
  background: rgba(30,122,70,0.08);
  color: var(--green);
}

.insight-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.insight-card p {
  font-size: 0.88rem;
  color: var(--grey-600);
  line-height: 1.6;
}

/* 30-Day Plan Timeline */
.plan-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--grey-200);
  margin-left: 16px;
  padding-left: 0;
}

.plan-week {
  padding: 0 0 1.5rem 2rem;
  position: relative;
}

.plan-week:last-child { padding-bottom: 0; }

.plan-week::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--white);
}

.week-marker {
  margin-bottom: 0.75rem;
}

.week-num {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.week-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  margin-top: 2px;
}

.week-actions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.week-actions li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.5;
}

.week-actions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm-dark);
}

/* Roadmap Pillars */
.roadmap-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
}

.pillar-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--warm-light);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.9rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--grey-600);
  line-height: 1.6;
}

/* Next Step */
.next-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
}

.next-step-icon {
  flex-shrink: 0;
  color: var(--warm);
}

.next-step-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* CTA */
.cta-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--warm-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--warm);
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.cta-card p {
  font-size: 0.95rem;
  color: var(--grey-600);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #1e2248;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(38, 42, 86, 0.25);
}

/* Results Footer */
.results-footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--grey-200);
  margin-top: 1rem;
}

.results-footer p {
  font-size: 0.8rem;
  color: var(--grey-400);
}

.results-footer strong {
  color: var(--grey-600);
}

/* ════════════════════════════════════════════ */
/* PRINT STYLES                                */
/* ════════════════════════════════════════════ */
@media print {
  body { background: white; }
  .screen { display: none !important; }
  #screen-results { display: block !important; }
  .results-toolbar { display: none !important; }
  .cta-section { display: none !important; }
  .results-container { max-width: 100%; padding: 0 1cm; }
  .result-section { break-inside: avoid; }
  .score-bar-fill { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .bottleneck-card { border-left-color: var(--navy) !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .next-step-card { background: var(--navy) !important; color: white !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .priority-num { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

/* ════════════════════════════════════════════ */
/* RESPONSIVE                                  */
/* ════════════════════════════════════════════ */
@media (max-width: 480px) {
  .welcome-container { padding: 1.5rem 1.25rem; }
  .btn-start { width: 100%; justify-content: center; }
  .scale-group { grid-template-columns: 1fr 1fr; }
  .option-desc { display: none; }
  .btn-toolbar span:not(.sr-only) {
    /* Hide text on small screens, keep icon */
  }
  .bottleneck-card { flex-direction: column; gap: 1rem; }
  .q-nav { flex-wrap: wrap; }
  .btn-continue { width: 100%; order: -1; }
}

@media (max-width: 360px) {
  .scale-group { grid-template-columns: 1fr; }
}
