  :root {
    --pampas-100: #F7F6F4;
    --almond-100: #ECDBC8;
    --turtle-50: #F2FCFD;
    --turtle-500: #01AFB2;
    --turtle-700: #019698;
    --darkBlue-200: #BFBDD0;
    --darkBlue-300: #ABA9C0;
    --darkBlue-400: #6C688B;
    --darkBlue-500: #363253;
    --bitterSweet-500: #FF8D70;
    --neutral-50: #F0EFF5;
    --neutral-100: #DAD9E0;
    --begonia-1: #F86F75;
    --peachYellow-1: #F8E0A4;
    --springBud-1: #BFD185;
    --crystal-1: #B0DAD9;
    --glaucous-100: #99A6C7;
    --glaucous-200: #6B7EAE;
    --shadow-card: 0px 4px 8px rgba(0,0,0,0.1);
  }

  /* ── Demo watermark & banner ── */
  .demo-banner {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: var(--darkBlue-500); color: #fff;
    text-align: center; font-size: 13px; font-weight: 700;
    padding: 6px 16px; letter-spacing: .5px;
    text-transform: uppercase;
  }
  .demo-banner span { color: var(--peachYellow-1); }
  .demo-watermark {
    position: fixed; bottom: 100px; right: 24px; z-index: 199;
    background: var(--darkBlue-500); color: #fff;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .8px; padding: 5px 12px; border-radius: 3px;
    opacity: .7; pointer-events: none;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  body, html { height: 100%; }
  body {
    font-family: 'Manrope', -apple-system, 'Segoe UI', system-ui, sans-serif;
    color: var(--darkBlue-500);
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

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

  /* ── QUIZ SCREEN ── */
  .quiz-shell { position: relative; padding: 56px 38px 120px; }
  .close-btn {
    position: absolute; top: 18px; right: 22px;
    width: 36px; height: 36px; border: none; background: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
  }
  .close-btn svg { width: 20px; height: 20px; fill: var(--darkBlue-400); }

  .quiz-header { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding-top: 18px; }
  .progress-ring { width: 52px; height: 52px; flex-shrink: 0; }
  .progress-ring circle { fill: none; stroke-width: 4; }
  .progress-ring .track { stroke: var(--neutral-50); }
  .progress-ring .fill { stroke: var(--turtle-500); stroke-linecap: round; transition: stroke-dashoffset .4s ease; }
  .progress-text { font-size: 11px; font-weight: 700; fill: var(--darkBlue-500); }

  .quiz-icon-circle {
    width: 80px; height: 80px;
    border: 6px solid var(--neutral-50);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 18px; flex-shrink: 0;
  }
  .quiz-icon-circle svg { width: 43px; height: 43px; }

  .quiz-heading .title { font-weight: 700; font-size: 18px; line-height: 32px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
  .quiz-heading .sub { font-size: 16px; font-weight: 700; color: var(--darkBlue-400); }
  .badge-core { font-size: 10px; text-transform: uppercase; font-weight: 700; background: var(--begonia-1); color: #fff; padding: 2px 5px; border-radius: 3px; letter-spacing: .3px; }

  .quiz-body { margin-top: 43px; display: flex; flex-direction: column; align-items: center; width: 100%; margin-bottom: 50px; }
  .skill-label { font-weight: 700; font-size: 12px; line-height: 20px; text-transform: uppercase; margin-bottom: 4px; text-align: center; }
  .question-text { font-weight: 700; font-size: 24px; margin-bottom: 8px; text-align: center; text-wrap: balance; }
  .instruction { color: var(--darkBlue-400); font-weight: 700; text-align: center; font-size: 14px; }

  .answer-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 38px; width: 100%; max-width: 960px; }
  @media (max-width: 900px) { .answer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .answer-grid { grid-template-columns: 1fr; } }

  .answer-card {
    position: relative; border: 1px solid var(--neutral-100); border-radius: 4px;
    padding: 24px 16px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: border-color .15s, background .15s; user-select: none;
  }
  .answer-card:hover { border-color: var(--darkBlue-200); }
  .answer-card.selected { border-color: var(--turtle-500); background: var(--turtle-50); }
  .answer-card.selected .num-circle { fill: var(--turtle-50); stroke: var(--turtle-500); }
  .answer-card.selected .num-text { fill: var(--turtle-500); }

  .answer-card.inactive { background: var(--pampas-100); border-color: var(--pampas-100); pointer-events: none; }
  .answer-card.inactive .answer-label { color: var(--darkBlue-300); }
  .answer-card.inactive .num-circle { fill: var(--almond-100); stroke: none; }
  .answer-card.inactive .num-text { fill: var(--darkBlue-200); }

  .answer-card.current-mark { border-color: var(--darkBlue-200); background: var(--neutral-50); }
  .answer-card.future-selected { border-color: var(--turtle-500); background: var(--turtle-50); }
  .answer-card.future-selected .num-circle { fill: var(--turtle-50); stroke: var(--turtle-500); }
  .answer-card.future-selected .num-text { fill: var(--turtle-500); }

  .where-pill, .where-pill-default, .where-pill-future {
    position: absolute; top: -10px; left: 4px;
    font-size: 10px; font-weight: 700; color: #fff;
    padding: 2px 5px; border-radius: 3px; line-height: 1.3; letter-spacing: .2px; display: none;
  }
  .where-pill { background: var(--turtle-500); }
  .where-pill-default { background: var(--darkBlue-400); }
  .where-pill-future { background: var(--turtle-500); }
  .answer-card.selected .where-pill { display: block; }
  .answer-card.current-mark .where-pill-default { display: block; }
  .answer-card.future-selected .where-pill-future { display: block; }

  .number-circle { margin-right: 16px; flex-shrink: 0; }
  .number-circle svg { width: 28px; height: 28px; }
  .answer-label { font-size: 14px; font-weight: 700; }

  .descriptor-note {
    max-width: 640px; width: 100%; text-align: center;
    margin-top: 16px; font-size: 18px; line-height: 32px;
    padding: 20px 10px; background: #fff; box-shadow: var(--shadow-card);
    display: none;
  }
  .descriptor-note.visible { display: block; }

  .chime-prompt { font-weight: 700; font-size: 14px; color: var(--darkBlue-400); margin-bottom: 14px; text-align: center; }
  .chime-text { text-align: left; font-size: 16px; line-height: 34px; }
  .chime-hint { font-size: 12px; color: var(--darkBlue-400); margin-top: 14px; text-align: center; line-height: 20px; }

  .improve-row { display: none; align-items: center; margin-top: 32px; gap: 9px; }
  .improve-row.visible { display: flex; }
  .improve-label { font-weight: 700; }

  .toggle-track {
    width: 44px; height: 24px; background: var(--neutral-100); border-radius: 12px;
    position: relative; cursor: pointer; transition: background .2s; flex-shrink: 0;
  }
  .toggle-track.on { background: var(--turtle-500); }
  .toggle-knob {
    width: 20px; height: 20px; background: #fff; border-radius: 50%;
    position: absolute; top: 2px; left: 2px; transition: left .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
  }
  .toggle-track.on .toggle-knob { left: 22px; }

  .future-section { display: none; flex-direction: column; align-items: center; width: 100%; }
  .future-section.visible { display: flex; }
  .future-instruction { color: var(--darkBlue-400); font-weight: 700; margin-top: 32px; font-size: 14px; }

  .quiz-footer {
    position: fixed; bottom: 0; left: 0; right: 0; height: 90px; background: #fff;
    box-shadow: 0px -4px 8px rgba(0,0,0,.06);
    display: flex; align-items: center; justify-content: space-between; padding: 0 38px; z-index: 50;
  }

  .btn {
    height: 42px; min-width: 133px; border-radius: 4px; font-size: 14px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; border: none; font-family: inherit; padding: 0 20px; transition: opacity .15s;
  }
  .btn:hover { opacity: .85; }
  .btn-primary { background: var(--turtle-500); color: #fff; }
  .btn-outline { background: #fff; color: var(--turtle-500); border: 1px solid var(--turtle-500); }
  .btn-disabled { background: var(--neutral-100); color: var(--darkBlue-300); cursor: default; pointer-events: none; }
  .btn svg.chev { width: 14px; height: 14px; }

  /* ── PRIO SCREEN ── */
  .prio-shell { padding: 112px 146px 120px; min-height: 100vh; overflow: auto; }
  @media (max-width: 800px) { .prio-shell { padding: 40px 24px 120px; } }
  .prio-shell h1 { font-size: 30px; line-height: 40px; font-weight: 700; margin-bottom: 10px; }
  .prio-intro { font-size: 18px; line-height: 32px; margin-bottom: 50px; }

  .prio-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  @media (max-width: 800px) { .prio-columns { grid-template-columns: 1fr; gap: 32px; } }

  .prio-left-title { font-weight: 700; font-size: 18px; margin-bottom: 28px; }
  .prio-area-item {
    border: 1px solid var(--bitterSweet-500); border-radius: 4px;
    padding: 12px 20px; box-shadow: var(--shadow-card); margin-bottom: 12px;
    background: #fff; cursor: pointer; transition: transform .15s;
  }
  .prio-area-item:hover { transform: scale(1.02); }
  .prio-area-item.added { opacity: .4; pointer-events: none; }
  .prio-area-item .skill-name { font-size: 14px; line-height: 24px; font-weight: 700; }
  .prio-area-item .skill-area { font-size: 14px; line-height: 20px; }

  .prio-right { border: 1px solid var(--almond-100); border-radius: 4px; padding: 32px 40px; }
  @media (max-width: 800px) { .prio-right { padding: 24px 20px; } }
  .prio-right h2 { font-weight: 700; font-size: 24px; margin-bottom: 8px; }
  .prio-right .info { font-size: 14px; color: var(--darkBlue-400); margin-bottom: 24px; line-height: 22px; }

  .prio-slot {
    display: flex; align-items: center; margin-bottom: 8px; min-height: 100px;
  }
  .prio-slot-num { margin-right: 20px; flex-shrink: 0; }
  .prio-slot-placeholder {
    background: var(--pampas-100); border: 1px dashed var(--almond-100);
    border-radius: 4px; min-height: 100px; width: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--darkBlue-300); font-size: 13px;
  }
  .prio-slot-filled {
    background: #fff; border: 1px solid var(--bitterSweet-500); border-radius: 4px;
    min-height: 68px; width: 100%; padding: 12px 20px;
    box-shadow: var(--shadow-card); display: flex; align-items: center;
  }
  .prio-slot-filled .skill-name { font-size: 14px; font-weight: 700; }
  .prio-slot-filled .skill-area { font-size: 14px; }

  .prio-footer {
    position: fixed; bottom: 0; left: 0; right: 0; height: 90px; background: #fff;
    box-shadow: 0px -4px 8px rgba(0,0,0,.06);
    display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 38px; z-index: 50;
  }

  /* ── GOAL SETTING SCREEN ── */
  .goal-shell { padding: 112px 146px 120px; min-height: 100vh; overflow: auto; }
  @media (max-width: 800px) { .goal-shell { padding: 40px 24px 120px; } }
  .goal-shell h1 { font-size: 30px; line-height: 40px; font-weight: 700; margin-bottom: 10px; }
  .goal-subtitle { font-size: 18px; line-height: 32px; margin-bottom: 36px; }

  .goal-layout { display: flex; gap: 40px; }
  @media (max-width: 900px) { .goal-layout { flex-direction: column; } }

  /* Left rail */
  .goal-rail { width: 416px; flex-shrink: 0; }
  @media (max-width: 900px) { .goal-rail { width: 100%; } }
  .goal-rail-item {
    display: flex; align-items: center; padding: 11px 29px; margin-bottom: 8px;
    cursor: pointer; border: 1px solid transparent; border-radius: 0 100px 100px 0;
  }
  .goal-rail-item.active { background: rgba(236,219,200,.3); border-color: var(--almond-100); }
  .goal-rail-item .rail-num { margin-right: 22px; flex-shrink: 0; }
  .goal-rail-item .rail-skill { font-weight: 700; font-size: 18px; line-height: 32px; }
  .goal-rail-item .rail-area { font-size: 14px; }

  .goal-content { flex: 1; min-width: 0; }

  /* "This is what you said" */
  .said-heading { font-weight: 700; font-size: 18px; line-height: 32px; margin-bottom: 20px; }
  .said-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
  @media (max-width: 600px) { .said-grid { grid-template-columns: 1fr; } }
  .said-card { border: 1px solid var(--almond-100); border-radius: 4px; padding: 16px 24px; }
  .said-label { font-weight: 700; font-size: 14px; line-height: 24px; color: var(--darkBlue-400); margin-bottom: 4px; }
  .said-body { display: flex; align-items: center; }
  .said-body .number-circle { margin-right: 20px; }
  .said-level { font-size: 14px; margin-bottom: 4px; }
  .said-readmore { color: var(--turtle-500); font-weight: 700; font-size: 14px; cursor: pointer; }
  .said-chimes-label { font-size: 12px; font-weight: 700; color: var(--darkBlue-400); margin-top: 14px; }
  .said-chimes { margin-top: 6px; font-size: 13px; line-height: 26px; }
  .said-chime { background: var(--peachYellow-1); border-radius: 3px; padding: 2px 4px; }
  .said-whereto-hint { font-size: 12px; color: var(--darkBlue-400); margin-top: 2px; }

  /* Stepper sections */
  .step-row { display: flex; margin-bottom: 0; }
  .step-line { display: flex; flex-direction: column; align-items: center; margin-right: 16px; width: 28px; flex-shrink: 0; }
  .step-circle {
    width: 28px; height: 28px; border-radius: 50%; font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .step-circle-filled { background: var(--turtle-500); color: #fff; }
  .step-circle-outline { background: #fff; border: 1px solid var(--neutral-100); color: var(--darkBlue-300); }
  .step-connector { width: 1px; background: var(--almond-100); flex: 1; margin-top: 8px; }
  .step-body { padding-bottom: 40px; flex: 1; min-width: 0; }
  .step-title { font-weight: 700; font-size: 18px; line-height: 32px; margin-bottom: 4px; }
  .step-desc { font-size: 14px; color: var(--darkBlue-400); margin-bottom: 16px; line-height: 22px; }

  .optional-tag {
    font-size: 12px; color: var(--darkBlue-400); border: 1px solid var(--neutral-100);
    border-radius: 100px; padding: 2px 8px; margin-left: 8px;
  }

  /* Highlightable descriptor */
  .highlight-card { border-radius: 4px; box-shadow: var(--shadow-card); padding: 32px 36px; }
  .highlight-card p { font-size: 14px; line-height: 32px; }
  .highlight-seg {
    cursor: pointer; border-radius: 3px; padding: 2px 4px;
    transition: background .15s; background: var(--pampas-100);
  }
  .highlight-seg:hover { background: var(--almond-100); }
  .highlight-seg.on { background: var(--peachYellow-1); }
  .highlight-summary { font-size: 12px; color: var(--darkBlue-400); margin-top: 8px; line-height: 20px; }

  /* Steps editor */
  .step-editor-item {
    border: 1px solid var(--almond-100); border-radius: 4px;
    padding: 16px; margin-bottom: 12px; background: #fff;
  }
  .step-editor-label { font-size: 14px; font-weight: 700; color: var(--darkBlue-400); margin-bottom: 8px; }
  .step-textarea {
    width: 100%; border: 1px solid var(--almond-100); border-radius: 4px;
    padding: 10px 12px; font-family: inherit; font-size: 14px; resize: none;
    height: 68px; outline: none; transition: border-color .15s;
  }
  .step-textarea:focus { border-color: var(--turtle-500); }
  .step-textarea::placeholder { color: var(--darkBlue-300); }
  .helper-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
  .helper-label { font-size: 12px; color: var(--darkBlue-400); }
  .helper-pill {
    border: 1px solid var(--neutral-100); border-radius: 100px;
    padding: 4px 12px; font-size: 14px; cursor: pointer;
    color: var(--darkBlue-400); background: #fff; font-family: inherit;
    transition: all .15s;
  }
  .helper-pill:hover { background: var(--pampas-100); }
  .helper-pill.on { background: var(--turtle-50); border-color: var(--turtle-500); color: var(--turtle-700); }

  /* Commit section */
  .commit-label { font-size: 14px; line-height: 16px; margin-bottom: 4px; }
  .commit-textarea {
    width: 100%; border: 1px solid var(--almond-100); border-radius: 4px;
    padding: 10px 12px; font-family: inherit; font-size: 14px; resize: none;
    height: 92px; outline: none; margin-bottom: 24px;
  }
  .commit-textarea:focus { border-color: var(--turtle-500); }
  .commit-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
  .commit-draft { font-size: 14px; color: var(--turtle-500); font-weight: 700; cursor: pointer; white-space: nowrap; }
  .commit-draft:hover { text-decoration: underline; }

  .date-input {
    border: 1px solid var(--almond-100); border-radius: 4px;
    padding: 10px 12px; font-family: inherit; font-size: 14px; outline: none;
    width: 200px;
  }
  .date-input:focus { border-color: var(--turtle-500); }

  .goal-footer {
    position: fixed; bottom: 0; left: 0; right: 0; height: 90px; background: #fff;
    box-shadow: 0px -4px 8px rgba(0,0,0,.06);
    display: flex; align-items: center; justify-content: space-between; padding: 0 146px; z-index: 50;
  }
  @media (max-width: 800px) { .goal-footer { padding: 0 24px; } }

  /* Tick icon */
  .tick-icon { display: none; margin-left: 8px; }
  .tick-icon.visible { display: inline-block; }
  .tick-icon svg { width: 20px; height: 20px; vertical-align: middle; }

  /* ── Fade transitions ── */
  .fade-in { animation: fadeIn .3s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

  /* Add step button */
  .add-step-btn {
    background: #fff; border: 1px solid var(--turtle-500); color: var(--turtle-500);
    border-radius: 4px; padding: 10px 20px; font-family: inherit; font-size: 14px;
    font-weight: 700; cursor: pointer; transition: opacity .15s;
  }
  .add-step-btn:hover { opacity: .8; }

  /* check icon for rail */
  .rail-check { display: none; margin-left: auto; flex-shrink: 0; }
  .rail-check svg { width: 28px; height: 28px; }

  /* ── DONE SCREEN ── */
  .done-shell { padding: 112px 146px 80px; min-height: 100vh; max-width: 1280px; margin: 0 auto; }
  @media (max-width: 800px) { .done-shell { padding: 96px 24px 60px; } }
  .done-shell h1 { font-size: 30px; line-height: 40px; font-weight: 700; margin-bottom: 10px; }
  .done-lede { font-size: 18px; line-height: 32px; margin-bottom: 36px; color: var(--darkBlue-500); }

  .done-recap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
  @media (max-width: 800px) { .done-recap { grid-template-columns: 1fr; } }
  .recap-card {
    border: 1px solid var(--almond-100); border-radius: 4px; padding: 20px 24px;
    display: flex; align-items: flex-start; gap: 14px; background: #fff;
  }
  .recap-card svg { width: 28px; height: 28px; flex-shrink: 0; }
  .recap-card .recap-title { font-weight: 700; font-size: 14px; line-height: 22px; margin-bottom: 2px; }
  .recap-card .recap-sub { font-size: 13px; line-height: 20px; color: var(--darkBlue-400); }

  .done-pitch { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 48px; }
  @media (max-width: 900px) { .done-pitch { grid-template-columns: 1fr; gap: 32px; } }
  .done-pitch h2 { font-size: 22px; line-height: 32px; font-weight: 700; margin-bottom: 16px; text-wrap: balance; }
  .pitch-list { list-style: none; }
  .pitch-list li {
    display: flex; gap: 12px; font-size: 15px; line-height: 26px; margin-bottom: 14px;
  }
  .pitch-list li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }

  /* PDP document mockup */
  .pdp-wrap { position: relative; }
  .pdp-doc {
    background: #fff; border: 1px solid var(--neutral-100); border-radius: 3px;
    box-shadow: 0px 8px 24px rgba(54,50,83,.18);
    padding: 28px 30px; transform: rotate(-1deg);
    font-size: 12px; line-height: 18px;
  }
  .pdp-ribbon {
    position: absolute; top: -12px; right: 14px; z-index: 2;
    background: var(--peachYellow-1); color: var(--darkBlue-500);
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
    padding: 4px 10px; border-radius: 3px; transform: rotate(2deg);
    box-shadow: var(--shadow-card);
  }
  .pdp-head { border-bottom: 2px solid var(--darkBlue-500); padding-bottom: 12px; margin-bottom: 14px; }
  .pdp-brand { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--turtle-500); margin-bottom: 4px; }
  .pdp-title { font-size: 17px; font-weight: 700; line-height: 24px; }
  .pdp-meta { font-size: 11px; color: var(--darkBlue-400); margin-top: 2px; }
  .pdp-section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--darkBlue-400); margin: 14px 0 8px; }
  .pdp-goal { border: 1px solid var(--neutral-50); border-left: 3px solid var(--turtle-500); border-radius: 3px; padding: 10px 12px; margin-bottom: 8px; background: var(--pampas-100); }
  .pdp-goal-name { font-weight: 700; font-size: 12px; }
  .pdp-goal-journey { color: var(--darkBlue-400); font-size: 11px; margin-top: 1px; }
  .pdp-goal-commit { font-size: 11px; font-style: italic; color: var(--darkBlue-500); margin-top: 4px; }
  .pdp-reviews { display: flex; gap: 18px; margin-top: 4px; }
  .pdp-review { flex: 1; border-top: 1px dashed var(--neutral-100); padding-top: 6px; }
  .pdp-review .rv-label { font-weight: 700; font-size: 11px; }
  .pdp-review .rv-date { font-size: 11px; color: var(--darkBlue-400); }
  .pdp-sign { display: flex; gap: 24px; margin-top: 18px; }
  .pdp-sign div { flex: 1; border-top: 1px solid var(--neutral-100); padding-top: 4px; font-size: 10px; color: var(--darkBlue-400); }

  /* Rich 6-month PDP document (mirrors the real pdp-creation template) */
  .pdp2-wrap { position: relative; margin-top: 36px; }
  .pdp2-doc {
    background: #fff; border: 1px solid var(--neutral-100); border-radius: 3px;
    box-shadow: 0px 8px 24px rgba(54,50,83,.18);
    transform: rotate(.8deg); overflow: hidden;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 10.5px; line-height: 1.45; color: #2a2a2a;
  }
  .pdp2-header { background: #2a7d7d; color: #fff; padding: 13px 18px 10px; }
  .pdp2-header h3 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
  .pdp2-header .pdp2-sub { font-size: 10px; opacity: .92; }
  .pdp2-body { padding: 12px 18px 16px; }
  .pdp2-narrative { margin-bottom: 12px; }
  .pdp2-priority { margin-bottom: 12px; }
  .pdp2-priority h4 { font-size: 11.5px; font-weight: 600; color: #2a7d7d; margin-bottom: 1px; }
  .pdp2-linked { font-size: 9.5px; font-style: italic; color: #555; margin-bottom: 4px; }
  .pdp2-activities { list-style: disc; padding-left: 16px; margin: 5px 0 8px; }
  .pdp2-activities li { margin-bottom: 3px; }
  .pdp2-goalbox { background: #f5f5f5; border-left: 3px solid #2a7d7d; padding: 8px 10px; }
  .pdp2-goalbox .gb-h { font-size: 9.5px; font-weight: 600; color: #2a7d7d; margin-bottom: 3px; }
  .pdp2-goalbox .gb-skill { font-weight: 600; }
  .pdp2-gantt-title { font-size: 11.5px; font-weight: 600; color: #2a7d7d; margin: 12px 0 5px; }
  .pdp2-gantt { width: 100%; border-collapse: collapse; font-size: 8.5px; margin-bottom: 12px; }
  .pdp2-gantt th { background: #2a7d7d; color: #fff; font-weight: 600; padding: 3px 4px; border: 1px solid #fff; text-align: center; }
  .pdp2-gantt th:nth-child(2) { text-align: left; }
  .pdp2-gantt td { border: 1px solid #ddd; padding: 3px 4px; vertical-align: top; }
  .pdp2-gantt .g-label { background: #2a7d7d; color: #fff; font-weight: 600; text-align: center; font-size: 8px; width: 44px; }
  .pdp2-gantt .g-act { width: 52%; }
  .pdp2-gantt .m-on { background: #b8d8d8; }
  .pdp2-success { background: #f5f5f5; border-left: 3px solid #2a7d7d; padding: 9px 10px; }
  .pdp2-success .s-h { font-size: 11px; font-weight: 600; color: #2a7d7d; margin-bottom: 4px; }
  .pdp2-success p { margin-bottom: 3px; }
  .pdp2-success .closing { font-style: italic; color: #444; margin-top: 5px; }
  .pdp-caption { font-size: 12px; line-height: 18px; color: var(--darkBlue-400); margin-top: 14px; text-align: center; }

  .done-cta { display: flex; gap: 12px; align-items: center; }

  /* ── INTRO SCREEN ── */
  .intro-steps { margin: 24px 0 32px; }
  .intro-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
  .intro-step .step-circle { flex-shrink: 0; margin-top: 2px; }
  .intro-step-text { font-size: 15px; line-height: 24px; }
  .intro-step-text strong { display: block; }
  .intro-note { font-size: 13px; color: var(--darkBlue-400); margin-top: 16px; }
  .aboutme-heading { font-weight: 700; font-size: 18px; line-height: 28px; margin-bottom: 8px; }
  .aboutme-sub { font-size: 14px; line-height: 22px; color: var(--darkBlue-400); margin-bottom: 24px; }

  /* ── Mobile: in-flow footers (fixed bottom-0 gets covered by gesture nav) ── */
  @media (max-width: 600px) {
    .demo-watermark { display: none; }
    .quiz-footer, .prio-footer, .goal-footer {
      position: static;
      height: auto;
      box-shadow: none;
      border-top: 1px solid var(--neutral-50);
      display: flex;
      gap: 10px;
      padding: 16px 16px max(env(safe-area-inset-bottom), 24px);
    }
    .quiz-footer .btn, .prio-footer .btn, .goal-footer .btn {
      flex: 1;
      min-width: 0;
      font-size: 13px;
      padding: 0 8px;
    }
    .goal-footer > div { display: flex; gap: 10px; flex: 2; min-width: 0; }
    .goal-footer .chev { display: none; }
    .quiz-shell, .prio-shell, .goal-shell { padding-bottom: 24px; }
  }
