All files / web/src/components/practice DetailedProblemCard.tsx

89.51% Statements 1033/1154
57.89% Branches 110/190
90.9% Functions 10/11
89.51% Lines 1033/1154

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 11551x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 22x 22x 22x 22x 22x 22x 22x 19x 22x 1x 22x 1x 22x 1x 22x 22x 1x 1x 1x 1x                     1x 1x 1x 1x 21x 21x 21x 1x 1x 1x 1x 44x 44x 44x 44x 44x 40x 40x 44x 40x 40x 44x 4x 4x 2x 2x 2x 2x     4x 44x 44x 44x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 5x 5x 5x 5x 5x 5x 5x     5x     5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x     1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x   2x 2x 2x   2x 2x 1x 1x 1x 1x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x                 5x 5x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 5x 5x 5x 5x 5x 5x 5x 1x 1x 1x 1x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 1x   1x 9x       9x   9x 10x 10x 1x   1x 9x       9x   9x 10x 10x 1x   1x 9x       9x   9x 10x 10x 10x 10x 10x 10x 10x 10x 1x 1x 1x 1x 1x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 19x   19x 19x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 19x 19x       19x   19x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 8x 8x 8x 8x 8x 8x   8x       8x 8x 8x 38x 38x 38x 38x 8x 8x 8x         8x 8x 8x 8x 38x 38x 38x 38x 8x 8x 8x 8x 8x 8x 8x 38x 38x 38x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 4x 3x   3x 1x   1x 15x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 4x 3x   3x 1x   1x 15x   15x 19x 19x 19x 19x 19x 19x 19x 19x 19x 4x 4x 4x 4x 4x 4x 4x 4x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 19x 4x 4x 3x 3x 3x 3x 3x 3x 3x 3x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 4x 4x 19x 19x 19x 19x 19x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 19x 19x 19x 19x 19x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 4x 4x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x               2x   2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x               2x   2x 2x 2x 2x 2x 2x 2x 2x 2x                                                                   2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x   1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x   1x 1x       1x   1x 2x 2x 2x 2x 2x 1x 1x   1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 1x 1x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 4x 3x   3x 1x   1x 18x   18x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 21x 21x 19x 19x 19x 19x 19x 19x 19x 19x 19x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 21x 21x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 22x 42x 22x 22x 22x 22x 22x 22x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 22x 22x 22x 22x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 1x   1x 3x 4x 4x 4x 4x 1x 1x 4x 4x 4x 22x 22x 22x 22x 22x  
/**
 * Detailed Problem Card Component
 *
 * Shows a single problem with full debugging information:
 * - Problem display (vertical or linear based on part type)
 * - Per-term skill annotations with effective costs
 * - Total complexity cost
 * - Problem constraints (from slot)
 * - Auto-pause timing info
 * - Result (if completed)
 */
 
import type {
  GenerationTrace,
  GenerationTraceStep,
  ProblemSlot,
  SessionPart,
  SkillMasteryDisplay,
  SlotResult,
} from '@/db/schema/session-plans'
import type { PracticeLevel } from '@/db/schema/player-skill-mastery'
import { css } from '../../../styled-system/css'
import type { AutoPauseStats } from './autoPauseCalculator'
import { formatMs, getAutoPauseExplanation } from './autoPauseCalculator'
 
export interface DetailedProblemCardProps {
  /** The problem slot with constraints and generated problem */
  slot: ProblemSlot
  /** The session part this problem belongs to */
  part: SessionPart
  /** Result if the problem was answered */
  result?: SlotResult
  /** Auto-pause stats at this problem position */
  autoPauseStats?: AutoPauseStats
  /** Dark mode */
  isDark: boolean
  /** Problem index within the session (1-based for display) */
  problemNumber: number
}
 
/**
 * Get display label for slot purpose
 */
function getPurposeLabel(purpose: ProblemSlot['purpose']): {
  label: string
  emoji: string
  color: string
} {
  switch (purpose) {
    case 'focus':
      return { label: 'Focus', emoji: '🎯', color: 'blue' }
    case 'reinforce':
      return { label: 'Reinforce', emoji: '💪', color: 'green' }
    case 'review':
      return { label: 'Review', emoji: '📝', color: 'purple' }
    case 'challenge':
      return { label: 'Challenge', emoji: '⭐', color: 'orange' }
  }
}
 
/**
 * Get display label for part type
 */
function getPartTypeLabel(type: SessionPart['type']): string {
  switch (type) {
    case 'abacus':
      return 'Use Abacus'
    case 'visualization':
      return 'Mental Math (Visualization)'
    case 'linear':
      return 'Linear Math'
  }
}
 
/**
 * Check if part type uses vertical layout
 */
function isVerticalPart(type: SessionPart['type']): boolean {
  return type === 'abacus' || type === 'visualization'
}
 
/**
 * Format constraints for display
 */
function formatConstraints(slot: ProblemSlot): string[] {
  const lines: string[] = []
  const c = slot.constraints
 
  if (c.termCount) {
    lines.push(`Terms: ${c.termCount.min}-${c.termCount.max}`)
  }
  if (c.digitRange) {
    lines.push(`Digits: ${c.digitRange.min}-${c.digitRange.max}`)
  }
  if (slot.complexityBounds) {
    const { min, max } = slot.complexityBounds
    if (min !== undefined && max !== undefined) {
      lines.push(`Budget: ${min}-${max}/term`)
    } else if (max !== undefined) {
      lines.push(`Max budget: ${max}/term`)
    } else if (min !== undefined) {
      lines.push(`Min budget: ${min}/term`)
    }
  }
 
  return lines
}
 
/**
 * Cell dimensions matching VerticalProblem.tsx
 */
const CELL_WIDTH = '1.4rem'
const CELL_HEIGHT = '1.8rem'
 
/**
 * Format a skill ID for human-readable display
 */
function formatSkillName(skillId: string): string {
  const parts = skillId.split('.')
  const category = parts[0]
  const specific = parts[1] || skillId
 
  // Make complement skills readable
  if (category === 'fiveComplements' || category === 'fiveComplementsSub') {
    return `5's complement: ${specific}`
  }
  if (category === 'tenComplements' || category === 'tenComplementsSub') {
    return `10's complement: ${specific}`
  }
  if (category === 'basic') {
    const names: Record<string, string> = {
      directAddition: 'Direct addition',
      heavenBead: 'Heaven bead',
      simpleCombinations: 'Simple combinations',
      directSubtraction: 'Direct subtraction',
      heavenBeadSubtraction: 'Heaven bead (sub)',
      simpleCombinationsSub: 'Simple combinations (sub)',
    }
    return names[specific] || specific
  }
  return specific
}
 
/**
 * Get rotation status label
 *
 * Note: BKT provides fine-grained mastery (pKnown). The isPracticing flag here
 * is a simplified fallback indicating whether the skill is in the active practice rotation.
 */
function getRotationLabel(practiceLevel: PracticeLevel): {
  label: string
  color: string
} {
  switch (practiceLevel) {
    case 'abacus':
      return { label: 'Abacus Only', color: 'blue' }
    case 'visual':
      return { label: 'Full Practice', color: 'green' }
    case 'none':
      return { label: 'Not in rotation', color: 'gray' }
  }
}
 
/**
 * Inline skill list - just the skills, no total (total is rendered separately for alignment)
 */
function InlineSkillList({
  step,
  skillMasteryContext,
  isDark,
}: {
  step: GenerationTraceStep
  skillMasteryContext?: Record<string, SkillMasteryDisplay>
  isDark: boolean
}) {
  const { skillsUsed } = step
 
  // No skills = starting value
  if (skillsUsed.length === 0) {
    return (
      <span
        className={css({
          fontSize: '0.75rem',
          color: isDark ? 'gray.500' : 'gray.400',
          fontStyle: 'italic',
        })}
      >
        (start)
      </span>
    )
  }
 
  return (
    <div
      data-element="inline-skill-list"
      className={css({
        display: 'flex',
        alignItems: 'center',
        flexWrap: 'wrap',
        gap: '0.375rem',
        flex: 1,
      })}
    >
      {skillsUsed.map((skillId, i) => {
        const masteryInfo = skillMasteryContext?.[skillId]
        const baseCost = masteryInfo?.baseCost ?? 1
        const effectiveCost = masteryInfo?.effectiveCost ?? baseCost
        const practiceLevel = masteryInfo?.practiceLevel ?? 'none'
        const rotation = masteryInfo ? getRotationLabel(practiceLevel) : null
        const hasMultiplier = rotation && effectiveCost !== baseCost
        const isZeroCost = effectiveCost === 0
 
        return (
          <span
            key={i}
            data-element="skill-pill"
            data-zero-cost={isZeroCost || undefined}
            className={css({
              display: 'inline-flex',
              alignItems: 'center',
              gap: '0.25rem',
              padding: '0.125rem 0.5rem',
              backgroundColor: isDark ? 'gray.800' : 'gray.100',
              borderRadius: '9999px',
              fontSize: '0.6875rem',
              whiteSpace: 'nowrap',
              opacity: isZeroCost ? 0.75 : 1,
            })}
          >
            <span className={css({ color: isDark ? 'gray.300' : 'gray.600' })}>
              {formatSkillName(skillId)}
            </span>
            <span
              className={css({
                fontWeight: 'bold',
                color: isDark ? 'blue.300' : 'blue.600',
              })}
            >
              {effectiveCost}
            </span>
            {hasMultiplier && (
              <span
                className={css({
                  color: isDark ? 'gray.500' : 'gray.400',
                  fontSize: '0.625rem',
                })}
              >
                ({baseCost}×{effectiveCost / baseCost})
              </span>
            )}
            {rotation && (
              <span
                className={css({
                  padding: '0 0.25rem',
                  borderRadius: '4px',
                  fontSize: '0.5625rem',
                  backgroundColor: isDark ? `${rotation.color}.900` : `${rotation.color}.100`,
                  color: isDark ? `${rotation.color}.300` : `${rotation.color}.600`,
                })}
              >
                {rotation.label}
              </span>
            )}
          </span>
        )
      })}
    </div>
  )
}
 
/**
 * Term total badge - rendered separately for alignment
 */
function TermTotalBadge({
  cost,
  maxBudget,
  minBudget,
  isFirstTerm,
  isDark,
}: {
  cost: number | undefined
  maxBudget?: number
  minBudget?: number
  isFirstTerm: boolean
  isDark: boolean
}) {
  if (cost === undefined) return null
 
  const isOverBudget = maxBudget !== undefined && cost > maxBudget
  const isUnderBudget = minBudget !== undefined && cost < minBudget && !isFirstTerm
  const budgetStatus = isOverBudget ? 'over' : isUnderBudget ? 'under' : 'ok'
  const isZeroCost = cost === 0
 
  return (
    <span
      data-element="term-total"
      data-zero-cost={isZeroCost || undefined}
      className={css({
        opacity: isZeroCost ? 0.75 : 1,
        display: 'inline-flex',
        alignItems: 'center',
        justifyContent: 'center',
        minWidth: '2.5rem',
        padding: '0.25rem 0.5rem',
        borderRadius: '4px',
        fontSize: '0.875rem',
        fontWeight: 'bold',
        fontFamily: 'var(--font-mono, monospace)',
        border: '2px solid',
        backgroundColor:
          budgetStatus === 'over'
            ? isDark
              ? 'red.900'
              : 'red.50'
            : budgetStatus === 'under'
              ? isDark
                ? 'yellow.900'
                : 'yellow.50'
              : isDark
                ? 'green.900'
                : 'green.50',
        borderColor:
          budgetStatus === 'over'
            ? isDark
              ? 'red.600'
              : 'red.300'
            : budgetStatus === 'under'
              ? isDark
                ? 'yellow.600'
                : 'yellow.300'
              : isDark
                ? 'green.600'
                : 'green.300',
        color:
          budgetStatus === 'over'
            ? isDark
              ? 'red.300'
              : 'red.700'
            : budgetStatus === 'under'
              ? isDark
                ? 'yellow.300'
                : 'yellow.700'
              : isDark
                ? 'green.300'
                : 'green.700',
      })}
    >
      {cost}
      {budgetStatus === 'over' && '!'}
      {budgetStatus === 'under' && '↓'}
    </span>
  )
}
 
/**
 * Render vertical problem display with skill annotations
 * Compact layout: one line per term, fits more on screen
 */
function DetailedVerticalProblem({
  terms,
  answer,
  trace,
  maxBudget,
  minBudget,
  isDark,
  result,
}: {
  terms: number[]
  answer: number
  trace?: GenerationTrace
  maxBudget?: number
  minBudget?: number
  isDark: boolean
  result?: SlotResult
}) {
  // Calculate max digits for alignment
  const maxDigits = Math.max(
    ...terms.map((t) => Math.abs(t).toString().length),
    Math.abs(answer).toString().length
  )
 
  const hasTrace = trace && trace.steps.length > 0
 
  return (
    <div
      data-element="detailed-vertical-problem"
      className={css({
        display: 'flex',
        flexDirection: 'column',
        gap: '0.25rem',
      })}
    >
      {/* Terms - compact single line each */}
      {terms.map((term, i) => {
        const isNegative = term < 0
        const absValue = Math.abs(term)
        const digits = absValue.toString().padStart(maxDigits, ' ').split('')
        const step = trace?.steps[i]
 
        return (
          <div
            key={i}
            data-element="term-row"
            className={css({
              display: 'flex',
              alignItems: 'center',
              gap: '0.75rem',
              padding: '0.25rem 0.5rem',
              borderRadius: '4px',
              backgroundColor:
                i % 2 === 0
                  ? isDark
                    ? 'rgba(255,255,255,0.02)'
                    : 'rgba(0,0,0,0.015)'
                  : 'transparent',
            })}
          >
            {/* Term display */}
            <div
              data-element="term-display"
              className={css({
                display: 'flex',
                alignItems: 'center',
                fontFamily: 'var(--font-mono, monospace)',
                fontSize: '1.25rem',
                fontWeight: 'bold',
                flexShrink: 0,
              })}
            >
              {/* Operator */}
              <span
                className={css({
                  width: '1.25rem',
                  textAlign: 'center',
                  color:
                    i === 0
                      ? 'transparent'
                      : isNegative
                        ? isDark
                          ? 'red.400'
                          : 'red.600'
                        : isDark
                          ? 'green.400'
                          : 'green.600',
                })}
              >
                {i === 0 ? '' : isNegative ? '−' : '+'}
              </span>
              {/* Digits */}
              {digits.map((digit, di) => (
                <span
                  key={di}
                  className={css({
                    width: '0.9rem',
                    textAlign: 'center',
                    color: isDark ? 'gray.100' : 'gray.900',
                  })}
                >
                  {digit}
                </span>
              ))}
            </div>
 
            {/* Vertical separator */}
            {hasTrace && (
              <div
                className={css({
                  width: '2px',
                  height: '1.25rem',
                  backgroundColor: step
                    ? isDark
                      ? 'blue.600'
                      : 'blue.400'
                    : isDark
                      ? 'gray.700'
                      : 'gray.300',
                  flexShrink: 0,
                })}
              />
            )}
 
            {/* Skill breakdown - inline (no total, that's separate) */}
            {hasTrace && (
              <InlineSkillList
                step={
                  step ??
                  ({
                    termAdded: term,
                    skillsUsed: [],
                  } as unknown as GenerationTraceStep)
                }
                skillMasteryContext={trace.skillMasteryContext}
                isDark={isDark}
              />
            )}
 
            {/* Term total - in its own column for alignment */}
            {hasTrace && step && (
              <TermTotalBadge
                cost={step.complexityCost}
                maxBudget={maxBudget}
                minBudget={minBudget}
                isFirstTerm={i === 0}
                isDark={isDark}
              />
            )}
          </div>
        )
      })}
 
      {/* Separator line */}
      <div
        className={css({
          display: 'flex',
          alignItems: 'center',
          gap: '0.75rem',
          padding: '0.125rem 0.5rem',
        })}
      >
        <div
          className={css({
            width: `calc(1.25rem + ${maxDigits} * 0.9rem)`,
            height: '2px',
            backgroundColor: isDark ? 'gray.500' : 'gray.400',
          })}
        />
      </div>
 
      {/* Answer row */}
      <div
        data-element="answer-row"
        className={css({
          display: 'flex',
          alignItems: 'center',
          gap: '0.75rem',
          padding: '0.25rem 0.5rem',
          borderRadius: '4px',
          backgroundColor: result
            ? result.isCorrect
              ? isDark
                ? 'green.900/40'
                : 'green.50'
              : isDark
                ? 'red.900/40'
                : 'red.50'
            : 'transparent',
        })}
      >
        {/* Answer display */}
        <div
          className={css({
            display: 'flex',
            alignItems: 'center',
            fontFamily: 'var(--font-mono, monospace)',
            fontSize: '1.25rem',
            fontWeight: 'bold',
            flexShrink: 0,
          })}
        >
          <span
            className={css({
              width: '1.25rem',
              textAlign: 'center',
              color: isDark ? 'gray.400' : 'gray.500',
            })}
          >
            =
          </span>
          {Math.abs(answer)
            .toString()
            .padStart(maxDigits, ' ')
            .split('')
            .map((digit, di) => (
              <span
                key={di}
                className={css({
                  width: '0.9rem',
                  textAlign: 'center',
                  color: result
                    ? result.isCorrect
                      ? isDark
                        ? 'green.300'
                        : 'green.700'
                      : isDark
                        ? 'red.300'
                        : 'red.700'
                    : isDark
                      ? 'gray.100'
                      : 'gray.900',
                })}
              >
                {digit}
              </span>
            ))}
        </div>
 
        {/* Vertical separator - same as term rows */}
        {hasTrace && (
          <div
            className={css({
              width: '2px',
              height: '1.25rem',
              backgroundColor: isDark ? 'blue.600' : 'blue.400',
              flexShrink: 0,
            })}
          />
        )}
 
        {/* Result indicator - takes up flexible space */}
        <div
          className={css({
            display: 'flex',
            alignItems: 'center',
            gap: '0.5rem',
            flex: 1,
          })}
        >
          {result && (
            <>
              {result.isCorrect ? (
                <span
                  className={css({
                    fontSize: '1rem',
                    color: isDark ? 'green.400' : 'green.600',
                  })}
                >
                  ✓
                </span>
              ) : (
                <span
                  className={css({
                    display: 'inline-flex',
                    alignItems: 'center',
                    gap: '0.25rem',
                    padding: '0.125rem 0.5rem',
                    borderRadius: '4px',
                    fontSize: '0.875rem',
                    backgroundColor: isDark ? 'red.900/60' : 'red.100',
                    color: isDark ? 'red.300' : 'red.700',
                  })}
                >
                  You said {result.studentAnswer}
                </span>
              )}
            </>
          )}
        </div>
 
        {/* Grand total - aligned with term totals */}
        {hasTrace && trace.totalComplexityCost !== undefined && (
          <span
            data-element="grand-total"
            className={css({
              display: 'inline-flex',
              alignItems: 'center',
              justifyContent: 'center',
              minWidth: '2.5rem',
              padding: '0.25rem 0.5rem',
              borderRadius: '4px',
              fontSize: '0.875rem',
              fontWeight: 'bold',
              fontFamily: 'var(--font-mono, monospace)',
              border: '2px solid',
              backgroundColor: isDark ? 'blue.900' : 'blue.50',
              borderColor: isDark ? 'blue.600' : 'blue.300',
              color: isDark ? 'blue.200' : 'blue.700',
            })}
          >
            Σ{trace.totalComplexityCost}
          </span>
        )}
      </div>
    </div>
  )
}
 
/**
 * Render linear problem display with skill annotations
 * Compact layout: equation header + one line per term
 */
function DetailedLinearProblem({
  terms,
  answer,
  trace,
  maxBudget,
  minBudget,
  isDark,
  result,
}: {
  terms: number[]
  answer: number
  trace?: GenerationTrace
  maxBudget?: number
  minBudget?: number
  isDark: boolean
  result?: SlotResult
}) {
  const equation = terms
    .map((term, i) => {
      if (i === 0) return String(term)
      return term < 0 ? ` − ${Math.abs(term)}` : ` + ${term}`
    })
    .join('')
 
  const hasTrace = trace && trace.steps.length > 0
 
  return (
    <div
      data-element="detailed-linear-problem"
      className={css({
        display: 'flex',
        flexDirection: 'column',
        gap: '0.375rem',
      })}
    >
      {/* Equation header - compact */}
      <div
        data-element="equation-section"
        className={css({
          display: 'flex',
          alignItems: 'center',
          gap: '0.75rem',
          padding: '0.375rem 0.5rem',
          borderRadius: '6px',
          backgroundColor: result
            ? result.isCorrect
              ? isDark
                ? 'green.900/40'
                : 'green.50'
              : isDark
                ? 'red.900/40'
                : 'red.50'
            : isDark
              ? 'gray.800/50'
              : 'gray.50',
          flexWrap: 'wrap',
        })}
      >
        {/* Equation */}
        <div
          className={css({
            fontFamily: 'var(--font-mono, monospace)',
            fontSize: '1.25rem',
            fontWeight: 'bold',
          })}
        >
          <span className={css({ color: isDark ? 'gray.200' : 'gray.800' })}>{equation} = </span>
          <span
            className={css({
              color: result
                ? result.isCorrect
                  ? isDark
                    ? 'green.300'
                    : 'green.700'
                  : isDark
                    ? 'red.300'
                    : 'red.700'
                : isDark
                  ? 'gray.100'
                  : 'gray.900',
            })}
          >
            {answer}
          </span>
        </div>
 
        {/* Result indicator */}
        {result && (
          <span
            className={css({
              display: 'inline-flex',
              alignItems: 'center',
              gap: '0.5rem',
              fontSize: '0.875rem',
            })}
          >
            {result.isCorrect ? (
              <span
                className={css({
                  color: isDark ? 'green.400' : 'green.600',
                  fontSize: '1rem',
                })}
              >

              </span>
            ) : (
              <span
                className={css({
                  display: 'inline-flex',
                  alignItems: 'center',
                  gap: '0.25rem',
                  padding: '0.125rem 0.5rem',
                  borderRadius: '4px',
                  backgroundColor: isDark ? 'red.900/60' : 'red.100',
                  color: isDark ? 'red.300' : 'red.700',
                })}
              >
                You said {result.studentAnswer}
              </span>
            )}
          </span>
        )}
      </div>
 
      {/* Per-term skill breakdown - compact rows */}
      {hasTrace && (
        <div
          data-element="term-breakdown"
          className={css({
            display: 'flex',
            flexDirection: 'column',
            gap: '0.25rem',
          })}
        >
          {trace.steps.map((step, i) => (
            <div
              key={i}
              data-element="term-row"
              className={css({
                display: 'flex',
                alignItems: 'center',
                gap: '0.75rem',
                padding: '0.25rem 0.5rem',
                borderRadius: '4px',
                backgroundColor:
                  i % 2 === 0
                    ? isDark
                      ? 'rgba(255,255,255,0.02)'
                      : 'rgba(0,0,0,0.015)'
                    : 'transparent',
              })}
            >
              {/* Term value - compact */}
              <div
                data-element="term-label"
                className={css({
                  display: 'flex',
                  alignItems: 'center',
                  gap: '0.25rem',
                  flexShrink: 0,
                })}
              >
                <span
                  className={css({
                    fontFamily: 'var(--font-mono, monospace)',
                    fontSize: '1rem',
                    fontWeight: 'bold',
                    color:
                      i === 0
                        ? isDark
                          ? 'gray.300'
                          : 'gray.700'
                        : step.termAdded >= 0
                          ? isDark
                            ? 'green.400'
                            : 'green.600'
                          : isDark
                            ? 'red.400'
                            : 'red.600',
                    minWidth: '3.5rem',
                    textAlign: 'right',
                  })}
                >
                  {i === 0
                    ? step.termAdded
                    : step.termAdded >= 0
                      ? `+${step.termAdded}`
                      : step.termAdded}
                </span>
              </div>
 
              {/* Vertical separator */}
              <div
                className={css({
                  width: '2px',
                  height: '1.25rem',
                  backgroundColor: isDark ? 'blue.600' : 'blue.400',
                  flexShrink: 0,
                })}
              />
 
              {/* Skill breakdown - inline (no total) */}
              <InlineSkillList
                step={step}
                skillMasteryContext={trace.skillMasteryContext}
                isDark={isDark}
              />
 
              {/* Term total - separate for alignment */}
              <TermTotalBadge
                cost={step.complexityCost}
                maxBudget={maxBudget}
                minBudget={minBudget}
                isFirstTerm={i === 0}
                isDark={isDark}
              />
            </div>
          ))}
 
          {/* Summary row with grand total - aligned with term totals */}
          {trace.totalComplexityCost !== undefined && (
            <div
              data-element="summary-row"
              className={css({
                display: 'flex',
                alignItems: 'center',
                gap: '0.75rem',
                padding: '0.25rem 0.5rem',
                borderRadius: '4px',
                marginTop: '0.25rem',
                borderTop: '2px solid',
                borderColor: isDark ? 'gray.600' : 'gray.300',
              })}
            >
              {/* Spacer for term column */}
              <div className={css({ minWidth: '3.5rem' })} />
 
              {/* Vertical separator */}
              <div
                className={css({
                  width: '2px',
                  height: '1.25rem',
                  backgroundColor: isDark ? 'blue.600' : 'blue.400',
                  flexShrink: 0,
                })}
              />
 
              {/* Label takes flexible space */}
              <div
                className={css({
                  flex: 1,
                  fontSize: '0.75rem',
                  fontWeight: 'bold',
                  color: isDark ? 'gray.400' : 'gray.600',
                })}
              >
                Total complexity
              </div>
 
              {/* Grand total - aligned with term totals */}
              <span
                data-element="grand-total"
                className={css({
                  display: 'inline-flex',
                  alignItems: 'center',
                  justifyContent: 'center',
                  minWidth: '2.5rem',
                  padding: '0.25rem 0.5rem',
                  borderRadius: '4px',
                  fontSize: '0.875rem',
                  fontWeight: 'bold',
                  fontFamily: 'var(--font-mono, monospace)',
                  border: '2px solid',
                  backgroundColor: isDark ? 'blue.900' : 'blue.50',
                  borderColor: isDark ? 'blue.600' : 'blue.300',
                  color: isDark ? 'blue.200' : 'blue.700',
                })}
              >
                Σ{trace.totalComplexityCost}
              </span>
            </div>
          )}
        </div>
      )}
    </div>
  )
}
 
export function DetailedProblemCard({
  slot,
  part,
  result,
  autoPauseStats,
  isDark,
  problemNumber,
}: DetailedProblemCardProps) {
  const problem = slot.problem
  const {
    label: purposeLabel,
    emoji: purposeEmoji,
    color: purposeColor,
  } = getPurposeLabel(slot.purpose)
 
  // Get budget constraints
  const maxBudget = slot.complexityBounds?.max ?? slot.constraints.maxComplexityBudgetPerTerm
  const minBudget = slot.complexityBounds?.min ?? slot.constraints.minComplexityBudgetPerTerm
 
  return (
    <div
      data-component="detailed-problem-card"
      data-purpose={slot.purpose}
      className={css({
        display: 'flex',
        flexDirection: 'column',
        gap: '0.75rem',
        padding: '1rem',
        borderRadius: '8px',
        border: '1px solid',
        borderColor: isDark ? 'gray.700' : 'gray.200',
        backgroundColor: result
          ? result.isCorrect
            ? isDark
              ? 'green.900/30'
              : 'green.50'
            : isDark
              ? 'red.900/30'
              : 'red.50'
          : isDark
            ? 'gray.800'
            : 'white',
      })}
    >
      {/* Header */}
      <div
        className={css({
          display: 'flex',
          justifyContent: 'space-between',
          alignItems: 'center',
        })}
      >
        <div
          className={css({
            display: 'flex',
            alignItems: 'center',
            gap: '0.5rem',
          })}
        >
          <span
            className={css({
              fontWeight: 'bold',
              color: isDark ? 'gray.200' : 'gray.800',
            })}
          >
            #{problemNumber}
          </span>
          <span
            className={css({
              padding: '0.125rem 0.5rem',
              borderRadius: '4px',
              fontSize: '0.75rem',
              fontWeight: '500',
              backgroundColor: isDark ? `${purposeColor}.900` : `${purposeColor}.100`,
              color: isDark ? `${purposeColor}.200` : `${purposeColor}.700`,
            })}
          >
            {purposeEmoji} {purposeLabel}
          </span>
        </div>
      </div>
 
      {/* Problem display with annotations */}
      {problem && (
        <div className={css({ marginTop: '0.5rem' })}>
          {isVerticalPart(part.type) ? (
            <DetailedVerticalProblem
              terms={problem.terms}
              answer={problem.answer}
              trace={problem.generationTrace}
              maxBudget={maxBudget}
              minBudget={minBudget}
              isDark={isDark}
              result={result}
            />
          ) : (
            <DetailedLinearProblem
              terms={problem.terms}
              answer={problem.answer}
              trace={problem.generationTrace}
              maxBudget={maxBudget}
              minBudget={minBudget}
              isDark={isDark}
              result={result}
            />
          )}
        </div>
      )}
 
      {/* Constraints and timing info */}
      <div
        className={css({
          display: 'flex',
          flexWrap: 'wrap',
          gap: '1rem',
          paddingTop: '0.5rem',
          borderTop: '1px dashed',
          borderColor: isDark ? 'gray.700' : 'gray.200',
          fontSize: '0.75rem',
          color: isDark ? 'gray.400' : 'gray.500',
        })}
      >
        {/* Constraints */}
        <div
          className={css({
            display: 'flex',
            flexDirection: 'column',
            gap: '0.125rem',
          })}
        >
          <span className={css({ fontWeight: 'bold' })}>Constraints:</span>
          {formatConstraints(slot).map((line, i) => (
            <span key={i}>{line}</span>
          ))}
          {formatConstraints(slot).length === 0 && <span>(none)</span>}
        </div>
 
        {/* Timing */}
        {autoPauseStats && (
          <div
            className={css({
              display: 'flex',
              flexDirection: 'column',
              gap: '0.125rem',
            })}
          >
            <span className={css({ fontWeight: 'bold' })}>Auto-pause threshold:</span>
            <span>{formatMs(autoPauseStats.thresholdMs)}</span>
            <span className={css({ fontSize: '0.625rem', maxWidth: '200px' })}>
              {getAutoPauseExplanation(autoPauseStats)}
            </span>
          </div>
        )}
 
        {/* Result timing */}
        {result && (
          <div
            className={css({
              display: 'flex',
              flexDirection: 'column',
              gap: '0.125rem',
            })}
          >
            <span className={css({ fontWeight: 'bold' })}>Response:</span>
            <span
              className={css({
                color:
                  autoPauseStats && result.responseTimeMs > autoPauseStats.thresholdMs
                    ? isDark
                      ? 'yellow.400'
                      : 'yellow.600'
                    : undefined,
              })}
            >
              {formatMs(result.responseTimeMs)}
              {autoPauseStats &&
                result.responseTimeMs > autoPauseStats.thresholdMs &&
                ' (over threshold)'}
            </span>
            {result.hadHelp && <span>Used help</span>}
          </div>
        )}
      </div>
    </div>
  )
}