/* ============================================================
   PRICING PULSE — Altstart Studio
   Standalone quiz styles, inheriting brand tokens
============================================================ */

:root {
  /* Brand (from altstart main) */
  --color-petrol: #264653;
  --color-yellow: #FFC000;
  --color-yellow-light: rgba(255,192,0,.12);
  --color-yellow-hover: #e6ad00;
  --color-light-petrol: #9DBDBF;
  --color-warm-grey: #F6F3EE;
  --color-light-grey: #F5F5F5;
  --color-teal: #2A9D8F;
  --color-ink: #0f172a;
  --color-white: #ffffff;

  /* Accent — yellow is primary, petrol for text-accent where yellow is low contrast */
  --accent: var(--color-yellow);
  --accent-text: var(--color-petrol);

  /* Text */
  --text-strong: #0b1320;
  --text-default: #1f2937;
  --text-muted: #5b677a;

  /* Scoring colors */
  --color-reactive: #E76F51;
  --color-intuitive: #E9A948;
  --color-intentional: #8AB660;
  --color-strategic: #2A9D8F;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(2,8,20,.08), 0 1px 2px rgba(2,8,20,.06);
  --shadow-md: 0 8px 24px rgba(2,8,20,.08);
  --shadow-lg: 0 12px 32px rgba(2,8,20,.10);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* Spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-7: 32px; --space-8: 40px;
  --space-9: 56px; --space-10: 72px;

  /* Type */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2,.65,.3,1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-default);
  background: var(--color-warm-grey);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--color-yellow); outline-offset: 3px; border-radius: 6px; }

/* --- Header offset --- */
body { padding-top: var(--header-h, 60px); }
:root { --header-h: 60px; }

/* --- Screens --- */
.screen { display: none; min-height: calc(100dvh - var(--header-h)); }
.screen.active { display: flex; align-items: center; justify-content: center; }
#screen-quiz.active { align-items: stretch; }
#screen-results.active { align-items: flex-start; }

/* ============================================================
   LANDING
============================================================ */
.landing {
  width: min(1080px, 92vw);
  margin: 0 auto;
  padding: var(--space-7) 0;
  display: flex;
  align-items: stretch;
  gap: var(--space-8);
}
.landing__copy { flex: 1; display: flex; flex-direction: column; }
.landing__dims { flex: 1; }
.landing__form-card {
  flex: 0 0 340px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-petrol);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.landing__h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  margin-bottom: var(--space-4);
}

.landing__lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: var(--space-6);
}
.landing__subheadline {
  font-size: 18px;
  color: var(--text-default);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: var(--space-4);
}
.landing__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.landing__secondary {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-6);
}

/* Dimension pills */
.landing__dims { display: flex; flex-direction: column; gap: var(--space-3); }

.dim-pill {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease);
}
.dim-pill:hover { box-shadow: var(--shadow-md); }
.dim-pill__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-petrol);
  color: var(--color-yellow);
  font-weight: 800;
  font-size: 14px;
}
.dim-pill__text { min-width: 0; }
.dim-pill__label { font-weight: 700; color: var(--text-strong); font-size: 14px; display: block; }
.dim-pill__sub { color: var(--text-muted); font-size: 13px; display: block; line-height: 1.4; }

/* Form card */
.landing__form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: var(--space-3);
}
.landing__time {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}
.landing__time svg { flex-shrink: 0; }

.landing__email-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}
.landing__form { display: flex; flex-direction: column; gap: var(--space-3); }
.input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-default);
  background: var(--color-white);
  transition: border-color .15s;
}
.input:focus { border-color: var(--color-yellow); outline: none; box-shadow: 0 0 0 3px rgba(255,192,0,.2); }
.form-error { color: var(--color-reactive); font-size: 13px; margin-top: var(--space-1); }
.landing__pause-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--space-3);
  text-align: center;
}

@media (max-width: 768px) {
  .landing { flex-direction: column; padding: var(--space-6) var(--space-4); gap: var(--space-6); }
  .landing__form-card { flex: none; width: 100%; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-petrol);
  color: var(--color-white);
}
.btn--primary:hover { background: #1d3a47; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary:disabled { opacity: .45; pointer-events: none; }
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid #d1d5db;
}
.btn--ghost:hover { border-color: var(--color-petrol); color: var(--color-petrol); }
.btn--ghost:disabled { opacity: .3; pointer-events: none; }
.btn--link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: var(--space-2) 0;
}
.btn--link:hover { color: var(--color-petrol); }
.btn--cta {
  background: var(--color-yellow);
  color: var(--text-strong);
  padding: 14px 32px;
  font-size: 16px;
}
.btn--cta:hover { background: #e6ad00; transform: translateY(-1px); box-shadow: var(--shadow-md); }

@media (max-width: 540px) {
  .btn { width: 100%; justify-content: center; }
}

/* Quiz nav buttons: always side-by-side, even on mobile */
.quiz__nav .btn { width: auto !important; flex: 0 1 auto; padding: 8px 16px; font-size: 13px; }
.quiz__nav .btn + .btn { margin-top: 0 !important; margin-left: 0; }

/* ============================================================
   QUIZ
============================================================ */
.quiz {
  width: min(720px, 92vw);
  margin: 0 auto;
  padding: var(--space-3) 0 0;
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
}

/* Progress bar */
.progress-bar { margin-bottom: var(--space-3); }
.progress-bar__track { display: flex; gap: 4px; height: 5px; border-radius: 3px; overflow: hidden; }
.progress-bar__segment { flex: 1; background: #e0e0e0; border-radius: 3px; overflow: hidden; position: relative; }
.progress-bar__fill {
  position: absolute;
  inset: 0;
  background: var(--color-yellow);
  border-radius: 3px;
  width: 0%;
  transition: width .4s var(--ease);
}
.progress-bar__labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-2);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .02em;
}
.progress-bar__labels span { flex: 1; text-align: center; }
.progress-bar__labels span[data-active="true"] { color: var(--color-petrol); font-weight: 800; }

/* Question page */
.quiz__page {
  flex: 1;
  min-height: 0;
  padding-bottom: var(--space-4);
  animation: fadeUp .35s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz__page-header {
  margin-bottom: var(--space-2);
}
.quiz__meta-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-petrol);
  font-weight: 700;
  margin-bottom: 2px;
}
.quiz__axis-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

/* Question card */
.question-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 10px var(--space-5) 12px;
  margin-bottom: 6px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease);
}
.question-card:hover { box-shadow: var(--shadow-md); }
.question-card__number {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.question-card__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.45;
  margin-bottom: var(--space-2);
}

/* Likert scale */
.likert {
  display: flex;
  gap: 0;
  width: 100%;
}
.likert__option {
  flex: 1;
  position: relative;
}
.likert__option input { position: absolute; opacity: 0; width: 0; height: 0; }
.likert__option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px 7px;
  cursor: pointer;
  border: 1.5px solid #e5e7eb;
  border-right: none;
  background: var(--color-white);
  transition: all .15s var(--ease);
  text-align: center;
}
.likert__option:first-child label { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.likert__option:last-child label { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; border-right: 1.5px solid #e5e7eb; }
.likert__option label .likert__num {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--color-light-grey);
  transition: all .15s var(--ease);
}
.likert__option label .likert__label {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.2;
  min-height: 24px;
  display: flex;
  align-items: center;
}
.likert__option input:checked + label {
  background: rgba(255,192,0,.1);
  border-color: var(--color-yellow);
  z-index: 1;
  position: relative;
}
.likert__option input:checked + label .likert__num {
  background: var(--color-petrol);
  color: var(--color-yellow);
}
.likert__option label:hover { background: rgba(255,192,0,.06); }

/* Multiple choice */
.mc-options { display: flex; flex-direction: column; gap: 3px; }
.mc-option {
  position: relative;
}
.mc-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.mc-option label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px var(--space-3);
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s var(--ease);
  font-size: 13px;
  line-height: 1.3;
  color: var(--text-default);
}
.mc-option label::before {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  transition: all .15s var(--ease);
}
.mc-option input:checked + label {
  border-color: var(--color-yellow);
  background: rgba(255,192,0,.08);
}
.mc-option input:checked + label::before {
  border-color: var(--color-petrol);
  background: var(--color-petrol);
  box-shadow: inset 0 0 0 3px var(--color-white);
}
.mc-option label:hover { border-color: var(--color-yellow); background: rgba(255,192,0,.04); }

/* Quiz nav — sticky at bottom of viewport */
.quiz__nav {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0 var(--space-3);
  margin-top: auto;
  flex-shrink: 0;
  background: linear-gradient(to bottom, rgba(246,243,238,0) 0%, var(--color-warm-grey) 30%);
  z-index: 10;
}
.quiz__nav .btn {
  padding: 8px 20px;
  font-size: 13px;
}

@media (max-width: 540px) {
  .quiz { height: auto; min-height: 100dvh; overflow: visible; }
  .likert { flex-wrap: nowrap; }
  .likert__option label { padding: 8px 2px 6px; }
  .likert__option label .likert__num { width: 26px; height: 26px; font-size: 12px; }
  .likert__option label .likert__label { font-size: 9px; }
}

/* ============================================================
   TRANSITION
============================================================ */
.transition {
  width: min(560px, 90vw);
  margin: 0 auto;
  text-align: center;
  padding: var(--space-9) var(--space-6);
  animation: fadeUp .4s var(--ease) both;
}
.transition__check { margin-bottom: var(--space-6); }
.transition__check svg { display: inline-block; }
.transition__text {
  font-size: 19px;
  color: var(--text-default);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}
.transition__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

/* ============================================================
   RESULTS
============================================================ */
.results {
  width: min(780px, 92vw);
  margin: 0 auto;
  padding: var(--space-6) 0 var(--space-8);
  animation: fadeUp .5s var(--ease) both;
}

/* Section 1: Big picture */
.results__hero {
  text-align: center;
  padding: var(--space-6) var(--space-6) var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-6);
}

.results__score-ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-4);
}
.results__score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.results__score-ring circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}
.results__score-ring .ring-bg { stroke: #e8e8e8; }
.results__score-ring .ring-fill { transition: stroke-dashoffset 1.2s var(--ease); }
.results__score-number {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1;
}
.results__score-number small {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 6px;
  white-space: nowrap;
}

.results__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: var(--space-4);
}
.results__desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto var(--space-7);
  line-height: 1.65;
}

.results__radar-wrap {
  max-width: 300px;
  margin: 0 auto var(--space-5);
}
#radar-main {
  max-width: 360px;
  height: 300px;
  margin: 0 auto;
}

.results__cta-box {
  padding: var(--space-5) var(--space-6);
  background: rgba(255,192,0,.08);
  border-radius: var(--radius-md);
  margin-top: var(--space-5);
}
.results__cta-box p {
  font-size: 15px;
  color: var(--text-default);
  margin-bottom: var(--space-4);
}

/* Section 2: Meta breakdown */
.results__section-title {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: var(--space-5);
}

.meta-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-7);
  margin-bottom: var(--space-6);
  transition: box-shadow .2s var(--ease);
}
.meta-card:hover { box-shadow: var(--shadow-md); }

.meta-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
.meta-card__score {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  color: var(--color-white);
}
.meta-card__info { flex: 1; }
.meta-card__name { font-size: 18px; font-weight: 800; color: var(--text-strong); }
.meta-card__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 4px;
}

.meta-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.meta-card__radar {
  max-width: 300px;
  height: 220px;
  margin: 0 auto var(--space-6);
}

/* Axis rows */
.axis-row {
  padding: var(--space-4) 0;
  border-top: 1px solid #f0f0f0;
}
.axis-row__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
}
.axis-row__name { font-weight: 700; font-size: 14px; color: var(--text-strong); }
.axis-row__pct { font-weight: 800; font-size: 14px; }
.axis-row__bar {
  height: 6px;
  background: #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: var(--space-2);
}
.axis-row__bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width .8s var(--ease);
}
.axis-row__diag {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Meta-level tips container */
.meta-tips {
  margin-top: var(--space-5);
  background: var(--color-warm-grey);
  border-left: 3px solid var(--color-teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-4);
}
.meta-tips__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--space-3);
}
.meta-tips__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.meta-tips__item {
  font-size: 13px;
  color: var(--text-default);
  line-height: 1.55;
  padding-left: var(--space-4);
  position: relative;
}
.meta-tips__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
}

/* Priority callout (NEW) */
.priority-callout {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
  margin: var(--space-6) 0;
  border-top: 4px solid var(--color-yellow);
  text-align: center;
}
.priority-callout__header {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.priority-callout__axis {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-strong);
  margin-bottom: var(--space-3);
}
.priority-callout__text {
  font-size: 15px;
  color: var(--text-default);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 auto;
}

/* Branded header */
.results__branded-header {
  text-align: center;
  margin-bottom: var(--space-6);
}
.results__h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1.15;
  margin-bottom: var(--space-1);
}
.results__subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* Altstart-style CTA button (matching main site .btn-cta) */
.btn-cta {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--text-strong);
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid #e4ad00;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.08);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-cta:hover {
  background: #ffcf40;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(38,70,83,0.15);
}

/* Section 3: Bottom CTA — Altstart style */
.results__bottom-cta {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  margin-top: var(--space-6);
}
.cta-card {
  background: var(--color-white);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  flex: 1;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--text-strong);
  line-height: 1.15;
}
.cta-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 38ch;
}
.cta-secondary {
  background: var(--color-white);
  border-radius: 28px;
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  min-width: 200px;
  max-width: 280px;
}
.cta-secondary p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 680px) {
  .results__bottom-cta { flex-direction: column; }
  .cta-secondary { max-width: none; }
}

/* Restart */
.results__restart {
  text-align: center;
  padding: var(--space-6) 0;
}

/* ============================================================
   UTILITY / RESPONSIVE
============================================================ */
@media (max-width: 640px) {
  .landing { padding: var(--space-6); margin: var(--space-7) auto; }
  .landing__h1 { font-size: clamp(24px, 7vw, 32px); }
  .quiz { padding: var(--space-5) var(--space-4) var(--space-7); }
  .question-card { padding: var(--space-5); }
  .progress-bar__labels { font-size: 10px; }
  .results { padding: var(--space-6) var(--space-4); }
  .results__hero { padding: var(--space-6) var(--space-5); }
  .meta-card { padding: var(--space-5); }
  .meta-card__header { flex-direction: column; text-align: center; }
  .meta-card__radar { max-width: 100%; height: 220px; }
  #radar-main { height: 260px; max-width: 100%; }
  .priority-callout { padding: var(--space-5) var(--space-4); }
  .priority-callout__axis { font-size: 18px; }
}

@media (max-width: 380px) {
  .meta-card__radar { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0ms !important; transition-duration: 0ms !important; }
}
