
  :root {
    --teal: #0D9488;
    --teal-light: #CCFBF1;
    --teal-mid: #5EEAD4;
    --coral: #F87171;
    --coral-light: #FEE2E2;
    --gold: #F6B93B;
    --gold-light: #FEF3C7;
    --navy: #1E3A5F;
    --cream: #FFF8F0;
    --sky: #38BDF8;
    --sky-light: #E0F7FF;
    --lavender: #E0E7FF;
    --text-dark: #1E3A5F;
    --text-mid: #4B6A8A;
    --text-soft: #7A94AB;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 24px rgba(13,148,136,0.10);
    --shadow-card: 0 8px 40px rgba(30,58,95,0.12);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* ── PROGRESS HEADER ── */
  .prog-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    border-bottom: 2px solid var(--teal-light);
    padding: 10px 14px 10px 10px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 2px 12px rgba(13,148,136,0.08);
  }
  .hamburger-btn {
    width: 42px; height: 42px;
    background: var(--teal);
    border: none;
    border-radius: var(--radius-xs);
    cursor: pointer;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    padding: 0;
  }
  .hamburger-btn:hover { background: #0B7A70; transform: scale(1.05); }
  .hamburger-btn:active { transform: scale(0.96); }
  .ham-bar {
    width: 18px; height: 2.5px;
    background: white;
    border-radius: 99px;
    transition: all 0.25s;
  }
  .prog-page-label {
    font-family: 'Fredoka One', cursive;
    color: var(--text-dark);
    font-size: 14px;
    white-space: nowrap;
    min-width: 80px;
  }
  /* nav slider wrapper — sits between page-label and pct */
  .nav-slider-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
  }
  /* filled-track visual sits behind the range thumb */
  .nav-slider-track {
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    height: 8px;
    border-radius: 99px;
    background: var(--teal-light);
    width: 100%;
    pointer-events: none;
  }
  .nav-slider-fill {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--teal), var(--sky));
    transition: width 0.25s;
    pointer-events: none;
  }
  /* the actual range input, transparent track so our custom track shows */
  .nav-slider {
    position: relative;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: transparent;
    outline: none;
    cursor: pointer;
    z-index: 1;
  }
  .nav-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(13,148,136,0.40);
    cursor: grab;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .nav-slider::-webkit-slider-thumb:hover {
    transform: scale(1.18);
    box-shadow: 0 3px 12px rgba(13,148,136,0.55);
  }
  .nav-slider:active::-webkit-slider-thumb { cursor: grabbing; }
  .nav-slider::-moz-range-thumb {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(13,148,136,0.40);
    cursor: grab;
  }
  #menuSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(13,148,136,0.40);
    cursor: grab;
    transition: transform 0.15s;
  }
  #menuSlider::-webkit-slider-thumb:hover { transform: scale(1.2); }
  #menuSlider:active::-webkit-slider-thumb { cursor: grabbing; }
  #menuSlider::-moz-range-thumb {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(13,148,136,0.40);
    cursor: grab;
  }
  /* floating tooltip shown while dragging */
  .nav-slider-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    background: var(--navy);
    color: white;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.15s, transform 0.15s;
    z-index: 9;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-slider-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--navy);
  }
  .nav-slider-wrap:hover .nav-slider-tooltip,
  .nav-slider-wrap.dragging .nav-slider-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .prog-pct {
    font-size: 12px;
    font-weight: 800;
    color: var(--teal);
    min-width: 32px;
    text-align: right;
    flex-shrink: 0;
  }
  .prog-phase-label {
    display: none;
  }

  /* ── MENU OVERLAY ── */
  .menu-overlay {
    position: fixed; inset: 0;
    background: rgba(30,58,95,0.45);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .menu-overlay.open { opacity: 1; pointer-events: all; }

  /* ── MENU PANEL ── */
  .menu-panel {
    position: fixed;
    top: 0; right: 0;
    width: 320px; max-width: 92vw;
    height: 100vh;
    background: var(--white);
    z-index: 201;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(30,58,95,0.18);
  }
  .menu-panel.open { transform: translateX(0); }

  .menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 2px solid var(--teal-light);
    flex-shrink: 0;
  }
  .menu-title {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: var(--navy);
  }
  .menu-close {
    width: 34px; height: 34px;
    background: #F1F5F9;
    border: none; border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-mid);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    line-height: 1;
  }
  .menu-close:hover { background: var(--teal-light); color: var(--teal); }

  .menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0 0;
  }
  .menu-body::-webkit-scrollbar { width: 4px; }
  .menu-body::-webkit-scrollbar-track { background: transparent; }
  .menu-body::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 99px; }

  /* Go to page section */
  .menu-goto {
    padding: 0 16px 16px;
    border-bottom: 1px solid var(--teal-light);
    margin-bottom: 4px;
  }
  .menu-goto-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 8px;
  }
  .menu-goto-row {
    display: flex; gap: 8px; align-items: center;
  }
  .menu-goto-select {
    flex: 1;
    padding: 9px 12px;
    border: 2px solid var(--teal-light);
    border-radius: var(--radius-xs);
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    background: white;
    cursor: pointer;
    outline: none;
  }
  .menu-goto-select:focus { border-color: var(--teal); }
  .menu-goto-btn {
    padding: 9px 18px;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: var(--radius-xs);
    font-family: 'Fredoka One', cursive;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .menu-goto-btn:hover { background: #0B7A70; }

  /* Screen list sections */
  .menu-section-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 16px 6px;
  }
  .menu-section-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-soft);
  }
  .menu-section-status {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-soft);
  }
  .menu-screen-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 16px;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 0;
  }
  .menu-screen-item:hover { background: var(--teal-light); }
  .menu-screen-item.current { background: #E0FFFE; }
  .menu-screen-item.current .menu-item-name { color: var(--teal); font-weight: 800; }
  .menu-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid #CBD5E1;
    background: transparent;
    transition: all 0.2s;
  }
  .menu-dot.done { background: var(--teal); border-color: var(--teal); }
  .menu-dot.current { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 3px rgba(246,185,59,0.25); }
  .menu-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
  }
  .menu-item-check {
    font-size: 11px;
    color: var(--teal);
    font-weight: 800;
  }

  /* Action buttons at bottom */
  .menu-actions {
    flex-shrink: 0;
    padding: 12px 16px 20px;
    border-top: 2px solid var(--teal-light);
    display: flex; flex-direction: column; gap: 8px;
  }
  .menu-action-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 16px;
    border-radius: var(--radius-xs);
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    text-align: left;
    transition: all 0.2s;
  }
  .menu-action-btn.restart {
    background: var(--sky-light);
    color: #0369A1;
  }
  .menu-action-btn.restart:hover { background: #BAE6FD; }
  .menu-action-btn.logoff {
    background: var(--gold-light);
    color: #92400E;
  }
  .menu-action-btn.logoff:hover { background: #FDE68A; }
  .menu-action-btn.exit-reset {
    background: var(--coral-light);
    color: #991B1B;
  }
  .menu-action-btn.exit-reset:hover { background: #FECACA; }
  .menu-action-icon { font-size: 16px; }

  /* ── SCREEN SYSTEM ── */
  .screen {
    display: none;
    min-height: calc(100vh - 58px);
    padding: 0 0 40px;
    animation: fadeIn 0.4s ease;
  }
  .screen.active { display: block; }
  @keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

  /* ── HERO BANDS ── */
  .hero-band {
    width: 100%;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
  }
  .hero-band.teal-grad { background: linear-gradient(135deg, #0D9488 0%, #0891B2 100%); }
  .hero-band.warm-grad { background: linear-gradient(135deg, #FFF8F0 0%, #FEF3C7 100%); }
  .hero-band.coral-grad { background: linear-gradient(135deg, #FFF1F2 0%, #FEE2E2 100%); }
  .hero-band.sky-grad { background: linear-gradient(135deg, #E0F7FF 0%, #CCFBF1 100%); }
  .hero-band.lavender-grad { background: linear-gradient(135deg, #E0E7FF 0%, #EDE9FE 100%); }

  .hero-emoji-wrap {
    width: 100px; height: 100px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 16px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    position: relative;
    z-index: 0;
  }
  .hero-band.warm-grad .hero-emoji-wrap,
  .hero-band.coral-grad .hero-emoji-wrap,
  .hero-band.sky-grad .hero-emoji-wrap,
  .hero-band.lavender-grad .hero-emoji-wrap {
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px rgba(13,148,136,0.12);
  }

  .screen-title {
    font-family: 'Fredoka One', cursive;
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 520px;
  }
  .hero-band.warm-grad .screen-title,
  .hero-band.coral-grad .screen-title,
  .hero-band.sky-grad .screen-title,
  .hero-band.lavender-grad .screen-title { color: var(--navy); }

  .screen-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    max-width: 420px;
    line-height: 1.5;
  }
  .hero-band.warm-grad .screen-subtitle,
  .hero-band.coral-grad .screen-subtitle,
  .hero-band.sky-grad .screen-subtitle,
  .hero-band.lavender-grad .screen-subtitle { color: var(--text-mid); }

  /* ── CONTENT ZONE ── */
  .content-zone {
    max-width: 580px;
    margin: 0 auto;
    padding: 24px 20px 0;
  }

  /* ── BENNE BUBBLE ── */
  .benne-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--white);
    border: 2px solid var(--teal-light);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
  }
  .benne-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 3px solid var(--teal);
    background: linear-gradient(135deg, #CCFBF1, #0D9488);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(13,148,136,0.25);
  }
  .benne-content { flex: 1; }
  .benne-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .benne-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.65;
  }
  .benne-text strong { color: var(--teal); }
  .benne-text em { color: var(--coral); font-style: normal; font-weight: 700; }

  /* ── PHASE BANNER ── */
  .phase-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--teal);
    color: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
  }
  .phase-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
  }
  .phase-banner-text { flex: 1; }
  .phase-banner-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    opacity: 0.8;
    text-transform: uppercase;
  }
  .phase-banner-title {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    line-height: 1.2;
  }
  .phase-banner-sub {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 2px;
    font-weight: 600;
  }

  /* ── STEPS VISUAL ── */
  .steps-visual {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 20px 16px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 24px;
    border: 2px solid var(--teal-light);
    box-shadow: var(--shadow-soft);
    flex-wrap: wrap;
  }
  .step-stone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    min-width: 76px;
    transition: all 0.3s;
  }
  .step-stone.active {
    background: var(--teal);
    box-shadow: 0 4px 16px rgba(13,148,136,0.3);
  }
  .step-stone.done {
    background: var(--teal-light);
  }
  .step-stone.next {
    background: var(--gold-light);
    border: 2px dashed var(--gold);
  }
  .step-stone.future {
    background: #F1F5F9;
  }
  .step-emoji { font-size: 24px; }
  .step-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .step-stone.active .step-label { color: var(--white); }
  .step-stone.done .step-label { color: var(--teal); }
  .step-stone.next .step-label { color: var(--gold); }
  .step-stone.future .step-label { color: #94A3B8; }
  .step-name {
    font-size: 10px;
    font-weight: 700;
  }
  .step-stone.active .step-name { color: rgba(255,255,255,0.9); }
  .step-stone.done .step-name { color: var(--text-mid); }
  .step-stone.next .step-name { color: var(--text-mid); }
  .step-stone.future .step-name { color: #94A3B8; }

  /* ── CHOICE CARDS ── */
  .choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  .choice-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border: 2px solid var(--teal-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    box-shadow: 0 2px 8px rgba(13,148,136,0.06);
  }
  .choice-card:hover {
    border-color: var(--teal);
    background: var(--teal-light);
    transform: translateX(4px);
    box-shadow: var(--shadow-soft);
  }
  .choice-card.selected {
    border-color: var(--teal);
    background: linear-gradient(135deg, var(--teal-light), #E0FFFE);
    box-shadow: 0 4px 16px rgba(13,148,136,0.2);
  }
  .choice-card.selected .choice-check { opacity: 1; transform: scale(1); }
  .choice-icon { font-size: 22px; flex-shrink: 0; }
  .choice-text { flex: 1; }
  .choice-check {
    width: 22px; height: 22px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
  }

  /* ── BENNE RESPONSE ── */
  .benne-response {
    background: linear-gradient(135deg, var(--teal-light), #E0FFFE);
    border: 2px solid var(--teal-mid);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 24px;
    display: none;
    animation: slideUp 0.35s ease;
  }
  .benne-response.visible { display: block; }
  @keyframes slideUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
  .benne-response-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
  }
  .benne-response-text::before {
    content: '✨ ';
  }

  /* ── SCENARIO CARD ── */
  .scenario-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--teal-light);
  }
  .scenario-image {
    background: linear-gradient(135deg, #E0F7FF 0%, var(--teal-light) 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
  }
  .scenario-image::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(13,148,136,0.4);
    text-transform: uppercase;
  }
  .scenario-image.warm { background: linear-gradient(135deg, #FFF8F0, var(--gold-light)); }
  .scenario-image.soft { background: linear-gradient(135deg, var(--lavender), #F0F4FF); }
  .scenario-image.coral-bg { background: linear-gradient(135deg, var(--coral-light), #FFF1F2); }
  .scenario-body { padding: 18px 20px; }
  .scenario-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .scenario-title {
    font-family: 'Fredoka One', cursive;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .scenario-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.6;
  }

  /* ── MULTI-SELECT ── */
  .multi-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
  }
  .multi-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border: 2px solid var(--teal-light);
    border-radius: 99px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-mid);
    transition: all 0.2s;
  }
  .multi-chip:hover { border-color: var(--teal); color: var(--teal); }
  .multi-chip.selected {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(13,148,136,0.3);
  }

  /* ── INFO CARD ── */
  .info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--teal);
    box-shadow: var(--shadow-soft);
  }
  .info-card.gold { border-left-color: var(--gold); }
  .info-card.coral { border-left-color: var(--coral); }
  .info-card-title {
    font-family: 'Fredoka One', cursive;
    font-size: 16px;
    color: var(--teal);
    margin-bottom: 8px;
  }
  .info-card.gold .info-card-title { color: #B45309; }
  .info-card.coral .info-card-title { color: #DC2626; }
  .info-card-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.65;
  }

  /* ── SPLIT COMPARISON ── */
  .split-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .compare-side {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--teal-light);
    box-shadow: 0 2px 8px rgba(13,148,136,0.06);
  }
  .compare-image {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    background: var(--teal-light);
  }
  .compare-side:last-child .compare-image { background: var(--coral-light); }
  .compare-body { padding: 12px; }
  .compare-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 4px;
  }
  .compare-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
  }

  /* ── STEPS PROGRESS ROW ── */
  .steps-row {
    display: flex;
    gap: 8px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 20px;
    border: 2px solid var(--teal-light);
    box-shadow: var(--shadow-soft);
  }
  .step-pip {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
  }
  .step-pip-dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
  }
  .step-pip-dot.lit { background: var(--teal); color: white; }
  .step-pip-dot.dim { background: #E2E8F0; color: #94A3B8; }
  .step-pip-dot.active { background: var(--gold); color: white; box-shadow: 0 2px 8px rgba(246,185,59,0.4); }
  .step-pip-word { font-size: 9px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-soft); }
  .step-pip-arrow { font-size: 14px; color: var(--teal-mid); flex-shrink: 0; }

  /* ── PLEDGE BUILDER ── */
  .pledge-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    border: 2px solid var(--teal-light);
    box-shadow: var(--shadow-soft);
  }
  .pledge-section-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
  }

  /* ── TOOLKIT CARD ── */
  .toolkit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .toolkit-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px;
    border: 2px solid var(--teal-light);
    box-shadow: 0 2px 8px rgba(13,148,136,0.06);
  }
  .toolkit-emoji { font-size: 28px; margin-bottom: 8px; display: block; }
  .toolkit-title {
    font-family: 'Fredoka One', cursive;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .toolkit-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.4;
  }

  /* ── CERTIFICATE ── */
  .certificate {
    background: var(--cream);
    border: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 8px 40px rgba(246,185,59,0.2);
  }
  .certificate::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--teal), var(--sky), var(--gold), var(--coral));
  }
  .cert-brand {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
  }
  .cert-title {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .cert-rule {
    width: 60px; height: 3px;
    background: var(--gold);
    border-radius: 99px;
    margin: 10px auto;
  }
  .cert-certifies {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 6px;
  }
  .cert-name {
    font-family: 'Fredoka One', cursive;
    font-size: 32px;
    color: var(--teal);
    margin-bottom: 6px;
  }
  .cert-line {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
  }
  .cert-commitment {
    background: var(--teal-light);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 20px;
    text-align: left;
  }
  .cert-commit-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
  }
  .cert-commit-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
  }
  .cert-steps-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .cert-step-badge {
    background: var(--teal);
    color: white;
    border-radius: 99px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
  }
  .cert-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 2px solid var(--teal-light);
  }
  .cert-benne {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    border: 3px solid var(--teal);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }
  .cert-signature { text-align: left; }
  .cert-sig-name {
    font-family: 'Fredoka One', cursive;
    font-size: 15px;
    color: var(--teal);
  }
  .cert-sig-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-soft);
  }

  /* ── CTA BUTTON ── */
  .btn-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--teal), #0891B2);
    color: white;
    font-family: 'Fredoka One', cursive;
    font-size: 18px;
    border: none;
    border-radius: 99px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(13,148,136,0.35);
    transition: all 0.2s;
    letter-spacing: 0.3px;
  }
  .btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(13,148,136,0.45);
  }
  .btn-continue:active { transform: translateY(0); }

  .btn-secondary {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 10px auto 0;
    padding: 12px 24px;
    background: transparent;
    color: var(--teal);
    font-family: 'Fredoka One', cursive;
    font-size: 16px;
    border: 2px solid var(--teal);
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
  }
  .btn-secondary:hover { background: var(--teal-light); }

  .pw-screen {
    min-height: 100vh;
    background: linear-gradient(135deg, #0D9488 0%, #0891B2 60%, #0369A1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
  }
  .pw-logo-emoji {
    font-size: 72px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  }
  .pw-title {
    font-family: 'Fredoka One', cursive;
    font-size: 32px;
    color: white;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .pw-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 300px;
  }
  .pw-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 24px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  }
  .pw-card-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
  }
  .pw-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--teal-light);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 14px;
    text-align: center;
    letter-spacing: 2px;
  }
  .pw-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
  .pw-hint {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
    margin-top: 8px;
  }
  .pw-hint span { color: var(--teal); font-weight: 800; }

  /* ── EMOTION GRID ── */
  .emotion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
  .emotion-card {
    background: var(--white);
    border: 2px solid var(--teal-light);
    border-radius: var(--radius-sm);
    padding: 14px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(13,148,136,0.05);
  }
  .emotion-card:hover { border-color: var(--teal); transform: scale(1.03); }
  .emotion-card.matched {
    background: var(--teal-light);
    border-color: var(--teal);
    box-shadow: 0 4px 16px rgba(13,148,136,0.2);
  }
  .emotion-emoji { font-size: 36px; display: block; margin-bottom: 6px; }
  .emotion-label-box {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-soft);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .emotion-select {
    width: 100%;
    padding: 6px 8px;
    border: 1.5px solid var(--teal-light);
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    background: white;
    cursor: pointer;
    margin-top: 6px;
  }
  .emotion-select:focus { outline: none; border-color: var(--teal); }
  .emotion-card.correct .emotion-select { border-color: var(--teal); background: var(--teal-light); }

  /* ── INVISIBLE BACKPACK ── */
  .backpack-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid var(--lavender);
    box-shadow: var(--shadow-soft);
    text-align: center;
  }
  .backpack-visual {
    font-size: 64px;
    margin-bottom: 12px;
    display: block;
    filter: opacity(0.85);
  }
  .backpack-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
  }
  .backpack-item {
    background: var(--lavender);
    border-radius: 99px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 4px;
  }

  /* ── NOTIFICATION TOAST ── */
  .toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--teal);
    color: white;
    padding: 12px 24px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transition: all 0.3s;
    z-index: 999;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(13,148,136,0.4);
  }
  .toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  /* ── SLIDER ── */
  .slider-wrap {
    background: var(--white);
    border: 2px solid var(--teal-light);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
  }
  .slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-soft);
  }
  input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 99px;
    background: var(--teal-light);
    outline: none;
    margin-bottom: 10px;
  }
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--teal);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(13,148,136,0.35);
    transition: transform 0.15s;
  }
  input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
  .slider-value {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: var(--teal);
  }

  /* ── DON'T / DO CARD ── */
  .dodo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .dodo-card {
    border-radius: var(--radius-sm);
    padding: 14px;
  }
  .dodo-card.dont { background: var(--coral-light); border: 2px solid var(--coral); }
  .dodo-card.do { background: var(--teal-light); border: 2px solid var(--teal); }
  .dodo-header {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .dodo-card.dont .dodo-header { color: #DC2626; }
  .dodo-card.do .dodo-header { color: var(--teal); }
  .dodo-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 6px;
    padding-left: 4px;
  }

  /* ── NAV BUTTONS ── */
  .nav-strip {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    max-width: 580px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  /* ── COMPLETION CELEBRATION ── */
  .celebration-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 50%, var(--teal) 100%);
    padding: 40px 24px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .celebration-header::before {
    content: '🎉✨🌟💫⭐🎊';
    position: absolute;
    top: 0; left: 0; right: 0;
    font-size: 28px;
    opacity: 0.3;
    letter-spacing: 6px;
    white-space: pre;
    overflow: hidden;
    padding: 4px 0;
  }
  .celebration-emoji { font-size: 72px; margin-bottom: 12px; display: block; }
  .celebration-title {
    font-family: 'Fredoka One', cursive;
    font-size: 30px;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
  }


  /* ── IMAGE PLACEMENT FIXES ── */
  .hero-emoji-wrap {
    width: min(140px, 32vw);
    height: min(140px, 32vw);
  }
  .hero-emoji-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 18% !important;
    display: block;
  }

  .benne-avatar img,
  .cert-benne img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 18% !important;
    border-radius: 50% !important;
    display: block;
  }

  .scenario-image {
    height: auto !important;
    min-height: 180px;
    padding: 12px;
    overflow: visible !important;
  }
  .scenario-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 320px;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
    margin: 0 auto;
  }

  .compare-image {
    height: auto !important;
    min-height: 110px;
    padding: 8px;
    overflow: visible !important;
  }
  .compare-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 180px;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
    margin: 0 auto;
  }

  div[style*="border-radius:16px"][style*="overflow:hidden"] {
    overflow: visible !important;
    background: var(--white);
  }
  div[style*="border-radius:16px"][style*="overflow:hidden"] > img {
    width: 100% !important;
    height: auto !important;
    max-height: 340px;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
    background: var(--white);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 480px) {
    .steps-visual { gap: 4px; }
    .step-stone { min-width: 58px; padding: 8px 6px; }
    .split-compare { grid-template-columns: 1fr; }
    .dodo-grid { grid-template-columns: 1fr; }
    .toolkit-grid { grid-template-columns: 1fr; }
    .emotion-grid { grid-template-columns: repeat(2, 1fr); }
  }
