  :root {
    --um-green: #005030;
    --um-orange: #F47321;
    --um-gold: #C9A84C;
    --cream: #FAF7F2;
    --dark: #0E1E14;
    --mid: #2C4A35;
    --light-green: #E8F0EB;
    --text-muted: #6B7C70;
    --shadow: 0 4px 30px rgba(0,80,48,0.12);
    --shadow-lg: 0 12px 60px rgba(0,80,48,0.2);
  }

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

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

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 10% 20%, rgba(0,80,48,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 50% 60% at 90% 80%, rgba(244,115,33,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .header {
    background: var(--um-green);
    padding: 18px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 10;
  }

  .game-wrapper {
    position: relative; z-index: 1;
    max-width: 780px; margin: 0 auto; padding: 48px 24px 80px;
  }

  .screen { display: none; animation: fadeIn 0.5s ease forwards; }
  .screen.active { display: block; }

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

  /* ── INTRO ── */
  .intro-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--um-orange); margin-bottom: 16px;
  }
  .intro-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 3.8rem); font-weight: 900;
    color: var(--um-green); line-height: 1.08; margin-bottom: 24px;
  }
  .intro-headline em { font-style: italic; color: var(--um-orange); }
  .intro-sub {
    font-size: 17px; color: var(--text-muted); line-height: 1.65;
    max-width: 540px; margin-bottom: 40px;
  }
  .intro-card {
    background: var(--um-green); border-radius: 20px;
    padding: 36px 40px; margin-bottom: 36px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .intro-stat { text-align: center; color: white; }
  .intro-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700; color: var(--um-orange); line-height: 1; margin-bottom: 6px;
  }
  .intro-stat-label {
    font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4;
  }

  .btn-start {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--um-orange); color: white;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 16px;
    padding: 18px 40px; border-radius: 50px; border: none; cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 24px rgba(244,115,33,0.35); letter-spacing: 0.01em;
  }
  .btn-start:hover { background: #d96218; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(244,115,33,0.45); }
  .btn-start svg { transition: transform 0.2s; }
  .btn-start:hover svg { transform: translateX(4px); }

  /* ── PROGRESS ── */
  .progress-wrap { margin-bottom: 40px; }
  .progress-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
  .progress-label { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
  .progress-count { font-size: 13px; font-weight: 600; color: var(--um-green); }
  .progress-bar-track { height: 6px; background: rgba(0,80,48,0.12); border-radius: 99px; overflow: hidden; }
  .progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--um-green), var(--um-orange));
    border-radius: 99px; transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
  }

  /* ── QUESTION ── */
  .scenario-badge {
    display: inline-block; background: var(--light-green); color: var(--um-green);
    font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 99px; margin-bottom: 20px;
  }
  .scenario-q {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 700;
    color: var(--dark); line-height: 1.25; margin-bottom: 10px;
  }
  .scenario-context {
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 36px; max-width: 580px;
  }

  /* ── CHOICES ── */
  .choices { display: grid; gap: 14px; margin-bottom: 28px; }
  .choice-btn {
    background: white; border: 2px solid rgba(0,80,48,0.12); border-radius: 16px;
    padding: 22px 26px; cursor: pointer; text-align: left;
    transition: all 0.22s ease; display: flex; align-items: flex-start; gap: 18px;
    box-shadow: 0 2px 12px rgba(0,80,48,0.06); position: relative; overflow: hidden;
  }
  .choice-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,80,48,0.03), transparent);
    opacity: 0; transition: opacity 0.2s;
  }
  .choice-btn:hover { border-color: var(--um-green); transform: translateY(-2px); box-shadow: var(--shadow); }
  .choice-btn:hover::before { opacity: 1; }
  .choice-btn.selected {
    border-color: var(--um-orange);
    background: linear-gradient(135deg, #fff8f4, white);
    box-shadow: 0 4px 20px rgba(244,115,33,0.2);
  }
  .choice-emoji { font-size: 26px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
  .choice-text { flex: 1; }
  .choice-title { font-weight: 600; font-size: 15px; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
  .choice-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
  .choice-check {
    width: 22px; height: 22px; border: 2px solid rgba(0,80,48,0.2); border-radius: 50%;
    flex-shrink: 0; margin-top: 3px; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .choice-btn.selected .choice-check { background: var(--um-orange); border-color: var(--um-orange); }
  .choice-btn.selected .choice-check::after { content: '✓'; color: white; font-size: 12px; font-weight: 700; }

  .btn-next {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--um-green); color: white;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
    padding: 16px 36px; border-radius: 50px; border: none; cursor: pointer;
    transition: all 0.25s ease; opacity: 0.4; pointer-events: none;
  }
  .btn-next.enabled { opacity: 1; pointer-events: all; box-shadow: 0 6px 24px rgba(0,80,48,0.3); }
  .btn-next.enabled:hover { background: var(--mid); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,80,48,0.4); }

  /* ── RESULTS ── */
  .results-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--um-orange); margin-bottom: 16px; }
  .results-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 900;
    color: var(--um-green); line-height: 1.1; margin-bottom: 12px;
  }
  .results-sub { font-size: 16px; color: var(--text-muted); line-height: 1.65; margin-bottom: 48px; max-width: 520px; }

  .causes-grid { display: grid; gap: 20px; margin-bottom: 48px; }

  .cause-card {
    background: white; border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid rgba(0,80,48,0.08);
    animation: slideUp 0.5s ease both;
  }
  .cause-card:nth-child(1) { animation-delay: 0.05s; }
  .cause-card:nth-child(2) { animation-delay: 0.15s; }
  .cause-card:nth-child(3) { animation-delay: 0.25s; }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .cause-card.primary { border: 2px solid var(--um-orange); box-shadow: var(--shadow-lg); }

  .cause-header {
    padding: 28px 28px 22px; display: flex; align-items: flex-start; gap: 18px;
    border-bottom: 1px solid rgba(0,80,48,0.08);
  }
  .cause-icon-wrap {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0;
  }
  .cause-icon-wrap.green  { background: rgba(0,80,48,0.08); }
  .cause-icon-wrap.orange { background: rgba(244,115,33,0.1); }
  .cause-icon-wrap.gold   { background: rgba(201,168,76,0.12); }

  .cause-tag-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: nowrap; }
  .cause-rank-tag { white-space: nowrap; flex-shrink: 0; }
  .cause-rank-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 99px;
  }
  .cause-rank-tag.top    { background: var(--um-orange); color: white; }
  .cause-rank-tag.second { background: var(--light-green); color: var(--um-green); }
  .cause-rank-tag.third  { background: rgba(201,168,76,0.15); color: #8B6E2A; }
  .cause-match { font-size: 12px; color: var(--text-muted); font-weight: 500; }
  .cause-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--dark); line-height: 1.2; }

  .cause-body { padding: 22px 28px 26px; }
  .cause-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }

  .programs-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--um-green); margin-bottom: 12px; }
  .programs-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
  .program-chip {
    background: var(--light-green); color: var(--um-green);
    font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 99px;
    white-space: nowrap; text-decoration: none; display: inline-block; transition: all 0.2s;
  }
  .program-chip:hover { background: var(--um-green); color: white; }

  .give-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--um-orange); font-weight: 600; font-size: 14px; text-decoration: none;
    padding: 12px 22px; border: 2px solid var(--um-orange); border-radius: 99px; transition: all 0.2s;
  }
  .give-link:hover { background: var(--um-orange); color: white; }

  /* ── SCORE SECTION ── */
  .score-section { background: var(--um-green); border-radius: 20px; padding: 32px 36px; margin-bottom: 36px; color: white; }
  .score-title { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
  .score-bars { display: grid; gap: 16px; }
  .score-row { display: flex; flex-direction: column; gap: 7px; }
  .score-row-meta { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
  .score-row-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 7px; }
  .score-track { height: 8px; background: rgba(255,255,255,0.12); border-radius: 99px; overflow: hidden; }
  .score-fill {
    height: 100%; background: linear-gradient(90deg, rgba(255,255,255,0.4), var(--um-orange));
    border-radius: 99px; transition: width 1s cubic-bezier(0.4,0,0.2,1); width: 0%;
  }
  .score-pct { font-size: 12px; font-weight: 700; color: var(--um-orange); white-space: nowrap; flex-shrink: 0; }
  .score-track-wrap { width: 100%; }

  /* ── ACTIONS ── */
  .results-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-restart {
    display: inline-flex; align-items: center; gap: 8px; background: transparent;
    color: var(--um-green); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px;
    padding: 14px 28px; border-radius: 50px; border: 2px solid rgba(0,80,48,0.25); cursor: pointer; transition: all 0.2s;
  }
  .btn-restart:hover { border-color: var(--um-green); background: rgba(0,80,48,0.04); }
  .btn-give-all {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--um-orange); color: white;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px;
    padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
    text-decoration: none; transition: all 0.25s; box-shadow: 0 6px 20px rgba(244,115,33,0.3);
  }
  .btn-give-all:hover { background: #d96218; transform: translateY(-2px); }

  .divider { height: 1px; background: rgba(0,80,48,0.1); margin: 40px 0; }

  @media (max-width: 560px) {
    .intro-card { grid-template-columns: 1fr; }


  }
