 /* ── STAGES ── */
    .stage { display: none; }
    .stage.active { display: block; }

    /* ── INTRO ── */
    .intro-wrap {
      padding: 80px 24px 96px;
      max-width: 720px;
      margin: 0 auto;
      animation: fadeUp 0.4s ease both;
    }
    .eyebrow {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: block;
    }
    .intro-wrap h1 {
      font-size: clamp(2rem, 1rem + 4vw, 3.4rem);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 24px;
    }
    .intro-wrap p.lead {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 40px;
    }
    .dimensions-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 40px;
    }
    .dim-card {
      border: 1px solid var(--divider);
      background: var(--surface);
      padding: 20px;
    }
    .dim-card__dot {
      width: 8px;
      height: 8px;
      background: var(--text);
      margin-bottom: 12px;
    }
    .dim-card__title {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 6px;
    }
    .dim-card__desc {
      font-size: 0.78rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.6;
    }
    .meta-row {
      display: flex;
      gap: 28px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--muted);
    }
    .meta-item svg { flex-shrink: 0; }

    /* ── BUTTONS ── */
    .btn-primary {
      background: var(--gold);
      color: var(--bg);
      border: none;
      padding: 14px 32px;
      font-family: var(--font);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s;
    }
  /*.btn-primary:hover { background: var(--gold-dark); }*/
    .btn-primary:hover {
    background: var(--gold-dark);
    color: var(--gold);
    border: 1px solid var(--gold);
}


    .btn-primary:disabled { opacity: 0.3; cursor: not-allowed; }
    .btn-ghost {
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--divider);
      padding: 14px 32px;
      font-family: var(--font);
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: var(--muted); color: var(--text); }
    .btn-text {
      background: none;
      border: none;
      color: var(--muted);
      font-family: var(--font);
      font-size: 0.82rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0;
      transition: color 0.2s;
    }
    .btn-text:hover { color: var(--text); }

    /* ── QUESTIONS ── */
    .question-wrap {
      padding: 48px 24px 96px;
      max-width: 720px;
      margin: 0 auto;
    }
    .progress-bar-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }
    .dim-indicators {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .dim-indicator {
      height: 3px;
      background: var(--divider);
      border-radius: 2px;
      transition: all 0.3s;
      width: 28px;
    }
    .dim-indicator.active {
      background: var(--text);
      width: 40px;
    }
    .dim-indicator.done {
      background: var(--text);
      width: 28px;
    }
    .q-counter {
      font-size: 0.75rem;
      color: var(--muted);
    }
    .q-dimension-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .question-block { animation: fadeUp 0.3s ease both; }
    .question-block h2 {
      font-size: clamp(1.3rem, 0.5rem + 2.5vw, 1.8rem);
      font-weight: 400;
      line-height: 1.35;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 10px;
    }
    .question-block .context {
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--muted);
      margin-bottom: 32px;
      line-height: 1.65;
    }
    .no-context { margin-bottom: 32px; }
    .options { display: flex; flex-direction: column; gap: 10px; }
    .option-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      background: var(--surface);
      border: 1px solid var(--divider);
      cursor: pointer;
      font-family: var(--font);
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--text);
      text-align: left;
      line-height: 1.55;
      transition: border-color 0.15s, background 0.15s;
      width: 100%;
    }
    .option-card:hover { border-color: var(--muted); }
    .option-card.selected {
      border-color: var(--gold);
      background: var(--surface2);
    }
    .option-indicator {
      width: 16px;
      height: 16px;
      border: 1px solid var(--divider);
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.15s, background 0.15s;
    }
    .option-card.selected .option-indicator {
      border-color: var(--gold);
      background: var(--gold);
    }
    .option-indicator-dot {
      width: 6px;
      height: 6px;
      background: var(--bg);
      border-radius: 50%;
      display: none;
    }
    .option-card.selected .option-indicator-dot { display: block; }
    .nav-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 40px;
    }

    /* ── LEAD CAPTURE ── */
    .lead-wrap {
      max-width: 520px;
      margin: 0 auto;
      padding: 64px 24px 96px;
      animation: fadeUp 0.4s ease both;
    }
    .lead-icon {
      width: 48px;
      height: 48px;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }
    .lead-wrap h2 {
      font-size: 1.9rem;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 12px;
    }
    .lead-wrap p.sub {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-field { margin-bottom: 16px; }
    .form-field label {
      display: block;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .form-field input {
      width: 100%;
      background: var(--surface);
      border: 1px solid var(--divider);
      border-radius: 0;
      color: var(--text);
      font-family: var(--font);
      font-size: 0.9rem;
      font-weight: 300;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.15s;
    }
    .form-field input:focus { border-color: var(--gold); }
    .form-field input::placeholder { color: var(--faint); }
    .form-field .label-note {
      font-size: 0.78rem;
      font-weight: 300;
      color: var(--muted);
      text-transform: none;
      letter-spacing: 0;
    }
    .form-actions { margin-top: 8px; }
    .form-actions .btn-primary { width: 100%; justify-content: center; margin-bottom: 12px; }
    .btn-skip {
      width: 100%;
      background: none;
      border: none;
      color: var(--muted);
      font-family: var(--font);
      font-size: 0.82rem;
      padding: 12px;
      cursor: pointer;
      transition: color 0.2s;
    }
    .btn-skip:hover { color: var(--text); }
    .form-note {
      font-size: 0.72rem;
      font-weight: 300;
      color: var(--faint);
      text-align: center;
      line-height: 1.65;
      margin-top: 16px;
    }

    /* ── RESULTS ── */
    .results-wrap {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 32px 96px;
      animation: fadeUp 0.4s ease both;
    }
    .results-hero {
      padding: 64px 0 48px;
      border-bottom: 1px solid var(--divider);
      margin-bottom: 64px;
    }
    .results-hero .eyebrow { margin-bottom: 16px; }
    .results-hero h1 {
      font-size: clamp(2rem, 1rem + 3vw, 3.2rem);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.08;
      margin-bottom: 10px;
      color: var(--text);
    }
    .results-hero .job-title {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--muted);
      margin-bottom: 12px;
    }
    .results-hero .date-line {
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--faint);
    }

    /* Overall + chart row */
    .overview-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--divider);
      margin-bottom: 64px;
    }
    .overview-card {
      background: var(--surface);
      padding: 40px 32px;
    }
    .overview-card__label {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--faint);
      margin-bottom: 24px;
    }
    .score-ring-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .score-ring-desc {
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--muted);
      text-align: center;
      max-width: 200px;
      line-height: 1.65;
      margin-top: 16px;
    }

    /* Radar chart canvas */
    #radar-canvas {
      display: block;
      margin: 0 auto;
    }

    /* Breakdown */
    .breakdown-title {
      font-size: 1.4rem;
      font-weight: 500;
      letter-spacing: -0.015em;
      color: var(--text);
      margin-bottom: 32px;
    }
    .breakdown-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
      background: var(--divider);
      margin-bottom: 64px;
    }
    .dim-row {
      background: var(--surface);
      padding: 32px;
    }
    .dim-row__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 16px;
    }
    .dim-row__info h3 {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 4px;
    }
    .dim-row__info p {
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--muted);
    }
    .dim-row__score {
      text-align: right;
      margin-left: 24px;
      flex-shrink: 0;
    }
    .dim-row__score .num {
      font-size: 2rem;
      font-weight: 500;
      color: var(--text);
    }
    .dim-row__score .denom {
      font-size: 0.82rem;
      color: var(--muted);
    }
    .dim-row__score .badge {
      font-size: 0.7rem;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.06em;
      margin-top: 2px;
    }
    .score-bar-track {
      height: 2px;
      background: var(--divider);
      margin-bottom: 24px;
    }
    .score-bar-fill {
      height: 100%;
      background: var(--gold);
      transition: width 1s ease;
    }
    .q-breakdown {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .q-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .q-item__text {
      font-size: 0.75rem;
      color: var(--faint);
      flex: 1;
      line-height: 1.5;
    }
    .q-item__bar {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      width: 120px;
    }
    .q-item__track {
      flex: 1;
      height: 1px;
      background: var(--divider);
    }
    .q-item__fill {
      height: 100%;
      background: var(--muted);
    }
    .q-item__val {
      font-size: 0.7rem;
      color: var(--faint);
      width: 24px;
      text-align: right;
    }
    .dim-row__footer {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--divider);
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.65;
    }

    /* Strengths / gaps */
    .sg-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--divider);
      margin-bottom: 64px;
    }
    .sg-card { padding: 32px; }
    .sg-card--light { background: var(--surface); }
    .sg-card--dark  { background: var(--surface2); }
    .sg-card__label {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--faint);
      margin-bottom: 24px;
    }
    .sg-item { margin-bottom: 20px; }
    .sg-item__row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 4px;
    }
    .sg-item__name { font-size: 0.88rem; font-weight: 500; color: var(--text); }
    .sg-item__pct-strong { font-size: 0.82rem; color: var(--gold); }
    .sg-item__pct-weak   { font-size: 0.82rem; color: var(--muted); }
    .sg-item__desc { font-size: 0.75rem; font-weight: 300; color: var(--muted); line-height: 1.6; }

    /* CTA block */
    .cta-block {
      border: 1px solid var(--divider);
      border-top: 3px solid var(--gold);
      background: var(--surface);
      padding: 48px;
      text-align: center;
      margin-bottom: 64px;
    }
    .cta-block h2 {
      font-size: clamp(1.3rem, 0.4rem + 2vw, 2rem);
      font-weight: 500;
      letter-spacing: -0.015em;
      color: var(--text);
      margin-bottom: 16px;
    }
    .cta-block p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--muted);
      max-width: 480px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }
    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Results footer */
    .results-footer {
      padding-top: 24px;
      border-top: 1px solid var(--divider);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Download PDF header button */
    .btn-download {
      background: var(--gold);
      color: var(--bg);
      border: none;
      cursor: pointer;
      padding: 9px 20px;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      font-family: var(--font);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s;
    }
    .btn-download:hover { background: var(--gold-dark); }
    .btn-download:disabled { opacity: 0.6; cursor: not-allowed; }

    /* ── ANIMATION ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── HIDDEN PDF TEMPLATE ── */
    #pdf-report {
      display: none;
      position: absolute;
      z-index: -1;
      width: 794px;
      background: #fff;
      color: #111;
      font-family: 'General Sans', sans-serif;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .dimensions-grid { grid-template-columns: 1fr; }
      .overview-row    { grid-template-columns: 1fr; }
      .sg-row          { grid-template-columns: 1fr; }
      .form-row        { grid-template-columns: 1fr; }
      .results-wrap    { padding: 0 16px 80px; }
      .cta-block       { padding: 32px 20px; }
      .cta-actions     { flex-direction: column; align-items: stretch; }
      .cta-actions .btn-primary,
      .cta-actions .btn-ghost { justify-content: center; }
    }