:root {
  --ink: #1d2a3b;
  --muted: #8090a5;
  --line: #e6ebf2;
  --canvas: #f5f7fb;
  --panel: #ffffff;
  --blue: #4c78f0;
  --blue-soft: #edf2ff;
  --green: #51b982;
  --green-soft: #eaf9f1;
  --orange: #f29a61;
  --orange-soft: #fff3ea;
  --purple: #9473df;
  --purple-soft: #f3effd;
  --shadow: 0 12px 30px rgba(37, 55, 87, .05);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: var(--canvas); }
button, input { font: inherit; }
button { cursor: pointer; border: 0; }

.app-shell { display: flex; min-height: 100vh; }
.sidebar { width: 234px; flex: 0 0 234px; background: #fff; border-right: 1px solid var(--line); padding: 28px 18px 20px; display: flex; flex-direction: column; }
.brand { display: flex; gap: 11px; align-items: center; padding: 0 12px 31px; }
.brand-mark { width: 36px; height: 36px; border-radius: 10px; color: #fff; background: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: 18px; box-shadow: 0 6px 12px rgba(76,120,240,.22); }
.brand strong { display: block; font-size: 17px; letter-spacing: .02em; }
.brand span { display: block; color: var(--muted); font-size: 10px; margin-top: 2px; letter-spacing: .08em; }
.role-switcher { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: #f3f6fa; border-radius: 8px; margin-bottom: 27px; }
.role-option { padding: 9px 4px; color: #91a0b2; background: transparent; border-radius: 6px; font-size: 12px; }
.role-option.active { color: var(--blue); background: #fff; box-shadow: 0 3px 9px rgba(37,55,87,.08); font-weight: 700; }
.main-nav { display: grid; gap: 8px; }
.nav-item { position: relative; display: flex; align-items: center; gap: 13px; padding: 12px 13px; color: #7d8da1; background: transparent; border-radius: 8px; text-align: left; font-size: 13px; }
.nav-item.active { color: var(--blue); background: var(--blue-soft); font-weight: 700; }
.nav-icon { width: 17px; text-align: center; font-size: 19px; line-height: 1; }
.nav-badge { margin-left: auto; background: #ffeadf; color: #e7884d; border-radius: 12px; font-size: 10px; padding: 3px 7px; }
.sidebar-bottom { margin-top: auto; }
.coach-card { display: flex; align-items: center; gap: 9px; padding: 13px 9px; border-top: 1px solid var(--line); }
.coach-avatar { width: 29px; height: 29px; border-radius: 9px; background: #e4ecff; color: var(--blue); display: grid; place-items: center; font-size: 10px; font-weight: 800; }
.coach-avatar.large { width: 38px; height: 38px; border-radius: 12px; }
.coach-card strong { display: block; font-size: 11px; }
.coach-card span:not(.status-dot) { display: block; margin-top: 3px; font-size: 10px; color: var(--muted); }
.status-dot { width: 7px; height: 7px; background: var(--green); border: 2px solid #fff; border-radius: 50%; margin-left: auto; align-self: flex-start; }
.sidebar-link { display: flex; gap: 12px; align-items: center; color: #9aa7b7; background: transparent; padding: 10px 13px; font-size: 12px; }

.main-content { flex: 1; min-width: 0; }
.topbar { height: 76px; padding: 0 44px; background: #fff; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 12px; color: #a1adbb; }
.breadcrumb strong { color: var(--ink); font-size: 13px; }
.breadcrumb-separator { color: #c8d0da; }
.topbar-actions { display: flex; gap: 24px; align-items: center; }
.icon-button { position: relative; color: #91a0b2; background: transparent; font-size: 21px; }
.notification-dot { position: absolute; top: 0; right: -2px; width: 6px; height: 6px; background: var(--orange); border: 2px solid white; border-radius: 50%; }
.profile { display: flex; align-items: center; gap: 9px; }
.profile-avatar { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: #f39b61; font-size: 13px; font-weight: 700; }
.profile-copy strong { display: block; font-size: 12px; }
.profile-copy span { display: block; color: var(--muted); font-size: 10px; margin-top: 3px; }
.profile-chevron { color: #98a7b7; font-size: 16px; margin-left: 2px; }
.content-wrap { max-width: 1440px; margin: 0 auto; padding: 34px 44px 52px; }
.view { display: none; }
.view.active { display: block; animation: viewIn .22s ease-out; }
@keyframes viewIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.page-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.eyebrow { margin: 0 0 9px; color: #9ba9bb; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 8px; color: #1e2c3f; font-size: clamp(24px, 2.2vw, 31px); letter-spacing: -.02em; }
h2 { margin-bottom: 0; font-size: 16px; letter-spacing: -.01em; }
h3 { font-size: 16px; margin-bottom: 10px; }
.heading-subtitle { margin: 0; color: var(--muted); font-size: 12px; }
.wave { font-size: 22px; display: inline-block; transform: rotate(-10deg); }
.primary-button, .secondary-button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 42px; padding: 0 18px; border-radius: 7px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.primary-button { color: #fff; background: var(--blue); box-shadow: 0 7px 15px rgba(76,120,240,.18); }
.primary-button:hover { background: #3f69dc; }
.secondary-button { color: var(--blue); background: var(--blue-soft); }
.secondary-button:hover { background: #e0e8ff; }
.compact { min-height: 36px; padding: 0 13px; gap: 8px; }
.text-button, .inline-link { color: var(--blue); background: transparent; font-size: 11px; font-weight: 700; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.stat-card { position: relative; min-height: 130px; padding: 19px 20px 15px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 9px; box-shadow: var(--shadow); }
.stat-card::after { content: ""; position: absolute; width: 82px; height: 82px; border-radius: 50%; right: -29px; top: -30px; opacity: .65; }
.accent-blue::after { background: var(--blue-soft); }.accent-green::after { background: var(--green-soft); }.accent-orange::after { background: var(--orange-soft); }.accent-purple::after { background: var(--purple-soft); }
.stat-label { color: #8493a5; font-size: 11px; margin-bottom: 10px; }
.stat-value { color: #24344a; font-size: 28px; line-height: 1; font-weight: 800; }
.stat-value small { color: #98a5b4; font-size: 11px; font-weight: 500; }
.progress-track { height: 5px; overflow: hidden; background: #edf1f5; border-radius: 4px; }
.stat-card .progress-track { margin-top: 18px; }
.progress-track span { display: block; height: 100%; border-radius: inherit; background: var(--blue); }
.stat-foot { display: flex; justify-content: space-between; gap: 10px; margin-top: 10px; color: #9aa8b6; font-size: 10px; }
.stat-foot .positive { color: var(--green); font-weight: 700; }
.streak-row { display: flex; gap: 6px; margin-top: 15px; }
.streak-dot { width: 20px; height: 20px; display: grid; place-items: center; color: #aeb9c5; background: #f0f3f7; border-radius: 50%; font-size: 8px; }
.streak-dot.done { color: #fff; background: var(--green); }
.score-sparkline { height: 31px; display: flex; align-items: end; gap: 5px; margin-top: 11px; }
.score-sparkline span { flex: 1; max-width: 12px; background: #f4b383; border-radius: 3px 3px 0 0; }
.section-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; margin-top: 16px; }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: 9px; box-shadow: var(--shadow); }
.panel-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.today-panel, .coach-panel, .recent-panel, .level-panel { padding: 22px; }
.pill { border-radius: 12px; padding: 5px 9px; font-size: 10px; font-weight: 700; }
.pill-blue { color: var(--blue); background: var(--blue-soft); }
.mission-body { display: flex; align-items: center; gap: 22px; margin-top: 18px; }
.mission-illustration { position: relative; flex: 0 0 51%; height: 147px; overflow: hidden; border-radius: 8px; background: #f3f6ff; }
.mission-illustration::before { content: ""; position: absolute; width: 240px; height: 140px; top: 34px; left: 11%; background: #dfe8ff; border-radius: 50%; }
.speech-bubble { position: absolute; z-index: 2; padding: 8px 10px; color: #44536b; background: #fff; box-shadow: 0 5px 13px rgba(37,55,87,.08); border-radius: 9px; font-size: 8px; }
.bubble-one { top: 21px; left: 13%; }.bubble-two { top: 56px; right: 10%; color: #fff; background: var(--blue); }
.desk-shape { position: absolute; z-index: 1; bottom: 12px; left: 18%; width: 61%; height: 14px; border-radius: 8px; background: #8ba5ee; transform: rotate(-4deg); }
.book-shape { position: absolute; z-index: 2; bottom: 27px; right: 25%; width: 38px; height: 23px; border-radius: 3px; background: #f1b176; transform: rotate(12deg); }
.mission-copy { flex: 1; }.mission-copy p { margin-bottom: 16px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.mission-meta { display: flex; gap: 13px; color: #96a3b1; font-size: 10px; margin-bottom: 17px; }
.coach-panel { background: #fffdfb; }.coach-spark { color: var(--orange); font-size: 22px; }
.coach-message { display: flex; align-items: flex-start; gap: 12px; margin: 23px 0 18px; }
.coach-message p { margin: 0; color: #64748a; font-size: 11px; line-height: 1.8; }
.coach-message strong { color: var(--blue); }.coach-message em { color: #df8a54; font-style: normal; font-weight: 700; }
.message-time { display: block; color: #b3bdc9; font-size: 10px; margin-top: 7px; }
.tip-row { display: flex; align-items: flex-start; gap: 8px; padding-top: 14px; border-top: 1px solid #f0e9e1; color: #ac957f; font-size: 10px; line-height: 1.55; }
.tip-icon { width: 15px; height: 15px; flex: 0 0 15px; display: grid; place-items: center; color: #c58a56; border: 1px solid #e9c8aa; border-radius: 50%; font-size: 9px; }
.lower-grid { grid-template-columns: 1.35fr 1fr; }
.practice-list { margin-top: 13px; }.practice-row { display: grid; grid-template-columns: 35px 1fr auto 26px; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid #eff2f5; }.practice-row:last-child { border-bottom: 0; padding-bottom: 0; }
.practice-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; font-size: 10px; font-weight: 800; }.practice-icon.purple { color: #8b67dc; background: #f1ecfd; }.practice-icon.yellow { color: #d5a13f; background: #fff6dc; }.practice-icon.pink { color: #df7a9c; background: #fff0f5; }
.practice-info strong { display: block; font-size: 11px; }.practice-info span, .practice-score span { display: block; color: #9da9b8; font-size: 9px; margin-top: 4px; }.practice-score { text-align: right; }.practice-score strong { font-size: 14px; }.mini-icon-button { width: 25px; height: 25px; display: grid; place-items: center; color: #9aa8b6; background: #f5f7fa; border-radius: 7px; font-size: 14px; }
.level-number { color: #f09a60; font-size: 12px; font-weight: 800; }.level-progress { display: flex; align-items: center; gap: 15px; margin: 22px 0 17px; }.level-orbit { width: 49px; height: 49px; padding: 4px; border: 4px solid #f9ddc7; border-right-color: var(--orange); border-radius: 50%; }.level-orbit span { width: 33px; height: 33px; display: grid; place-items: center; color: #fff; background: var(--orange); border-radius: 50%; font-weight: 800; font-size: 14px; }.level-copy { flex: 1; }.level-copy strong { display: block; font-size: 12px; }.level-copy span { display: block; margin: 5px 0 8px; color: #9ba9b8; font-size: 10px; }.level-copy .progress-track span { background: var(--orange); }.badge-row { display: flex; gap: 8px; flex-wrap: wrap; }.badge-row span { padding: 6px 8px; color: #8494a7; background: #f7f9fb; border-radius: 5px; font-size: 9px; }

.practice-heading { align-items: center; }.mode-control { display: flex; align-items: center; gap: 10px; }.mode-label { color: #6f7f92; font-size: 11px; }.toggle { position: relative; width: 39px; height: 23px; padding: 3px; border-radius: 15px; background: #dce3eb; transition: .2s; }.toggle span { display: block; width: 17px; height: 17px; background: #fff; border-radius: 50%; box-shadow: 0 2px 4px rgba(37,55,87,.14); transition: .2s; }.toggle.on { background: var(--blue); }.toggle.on span { transform: translateX(16px); }
.practice-layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(270px, .75fr); gap: 16px; align-items: start; }.practice-stage { padding: 24px 28px 22px; }.stage-topline { display: flex; align-items: center; justify-content: space-between; }.stepper { display: flex; align-items: center; }.step { width: 21px; height: 21px; display: grid; place-items: center; color: #a9b4c2; background: #f0f3f6; border-radius: 50%; font-size: 9px; }.step.done, .step.active { color: #fff; background: var(--blue); }.step.active { box-shadow: 0 0 0 4px var(--blue-soft); }.step-line { width: 28px; height: 2px; background: #e8edf3; }.step-line.done { background: #aebff8; }.stage-counter { color: #a3afbd; font-size: 10px; }.scenario-tag { width: fit-content; margin: 30px auto 15px; padding: 6px 10px; color: #6e84bf; background: var(--blue-soft); border-radius: 5px; font-size: 10px; }.scenario-visual { position: relative; width: min(440px, 72%); height: 132px; margin: 0 auto 8px; background: #fbfcff; border-bottom: 3px solid #edf1f8; }.character { position: absolute; bottom: 0; width: 78px; height: 98px; }.character-left { left: 16%; }.character-right { right: 16%; }.character-head { position: absolute; top: 0; left: 20px; width: 38px; height: 38px; border-radius: 50%; background: #f3bd91; }.character-body { position: absolute; bottom: 0; left: 5px; width: 68px; height: 63px; border-radius: 27px 27px 7px 7px; }.blue-body { background: #7e9bef; }.coral-body { background: #ee9c89; }.table-object { position: absolute; bottom: 16px; left: 33%; width: 34%; height: 22px; border-radius: 7px; background: #eab37d; }.pencil-object { position: absolute; left: 18%; top: -8px; width: 47px; height: 5px; background: #f5c95f; transform: rotate(-13deg); }.book-object { position: absolute; right: 15%; top: -6px; width: 25px; height: 17px; background: #7e9bef; transform: rotate(9deg); }.conversation { display: grid; gap: 16px; max-width: 510px; margin: 0 auto; }.speaker-line { display: flex; align-items: flex-start; gap: 10px; }.right-line { justify-content: flex-end; }.speaker-avatar { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 25px; color: #fff; border-radius: 8px; font-size: 9px; font-weight: 800; }.speaker-avatar.blue { background: var(--blue); }.speaker-avatar.coral { background: var(--orange); }.speaker-name { display: block; margin: 0 0 5px 2px; color: #9aa8b7; font-size: 9px; }.line-bubble { padding: 10px 13px; border-radius: 4px 12px 12px 12px; font-size: 12px; }.user-bubble { color: #fff; background: var(--blue); }.ai-bubble { color: #4f6076; background: #f2f5fa; border-radius: 12px 4px 12px 12px; }.record-area { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; }.listen-button { display: inline-flex; align-items: center; gap: 7px; color: #8493a6; background: transparent; font-size: 11px; }.listen-icon { width: 25px; height: 25px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 9px; }.record-button { min-width: 140px; min-height: 42px; display: inline-flex; justify-content: center; align-items: center; gap: 8px; color: #fff; background: var(--orange); border-radius: 7px; box-shadow: 0 7px 15px rgba(242,154,97,.22); font-size: 11px; font-weight: 700; }.record-button.recording { background: #e86f62; animation: pulse 1.2s infinite; }.mic-icon { width: 13px; height: 13px; display: grid; place-items: center; background: #fff; color: var(--orange); border-radius: 50%; font-size: 7px; }.record-hint { color: #aab5c2; font-size: 10px; }.practice-feedback { display: flex; align-items: center; gap: 13px; max-width: 510px; margin: 19px auto 0; padding: 11px 13px; background: #f7fbf8; border: 1px solid #dff1e5; border-radius: 7px; }.hidden { display: none !important; }.feedback-score { padding-right: 13px; border-right: 1px solid #d7ebdd; }.feedback-score span { display: block; color: #88a38e; font-size: 9px; }.feedback-score strong { display: block; color: var(--green); font-size: 23px; line-height: 1; margin-top: 4px; }.feedback-copy { flex: 1; }.feedback-copy strong { display: block; color: #3a6c4b; font-size: 11px; }.feedback-copy span { display: block; color: #80988a; font-size: 10px; margin-top: 4px; }.practice-aside { display: grid; gap: 16px; }.word-panel, .mode-panel, .teacher-note { padding: 20px; }.count-label { color: #a0acba; font-size: 10px; }.phrase-list { margin-top: 15px; }.phrase-item { display: grid; grid-template-columns: 25px 1fr 20px; align-items: center; gap: 9px; padding: 11px 0; border-bottom: 1px solid #eff2f5; }.phrase-item:last-child { border-bottom: 0; padding-bottom: 0; }.phrase-item.active { padding: 11px 8px; margin: 0 -8px; background: #f7f9ff; border-radius: 6px; }.phrase-number { color: #aeb9c6; font-size: 9px; }.phrase-item strong { display: block; color: #53647a; font-size: 10px; font-weight: 700; }.phrase-item span:not(.phrase-number):not(.phrase-play) { display: block; margin-top: 3px; color: #a0adba; font-size: 9px; }.phrase-play { color: #98a7b7; font-size: 10px; text-align: right; }.mode-panel { display: grid; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: start; background: #fffaf4; border-color: #f6ead9; }.mode-panel-icon { width: 29px; height: 29px; display: grid; place-items: center; color: var(--orange); background: #fff0df; border-radius: 8px; }.mode-panel strong { display: block; font-size: 11px; }.mode-panel p { margin: 5px 0 0; color: #a58f7c; font-size: 10px; line-height: 1.5; }.mode-panel .text-button { padding: 0; margin-top: 3px; }.teacher-note { background: #f7f9ff; border-color: #e4eaff; }.note-heading { display: flex; gap: 7px; align-items: center; color: #566aa1; font-size: 11px; }.note-pin { color: #7894e3; }.teacher-note p { margin: 13px 0 9px; color: #75839a; font-size: 10px; line-height: 1.7; }.teacher-note p strong { color: #506da9; }.note-author { color: #a5b0bf; font-size: 9px; }

.report-stats { grid-template-columns: repeat(4, minmax(0,1fr)); margin-bottom: 16px; }.report-stats .stat-card { min-height: 114px; }.report-stats .stat-foot { margin-top: 20px; }.report-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 16px; margin-bottom: 16px; }.chart-panel, .focus-panel, .student-table-panel { padding: 22px; }.legend { display: flex; align-items: center; gap: 15px; color: #95a2b2; font-size: 10px; }.legend span { display: flex; align-items: center; gap: 5px; }.legend-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }.legend-dot.blue { background: var(--blue); }.legend-dot.orange { background: var(--orange); }.chart-area { display: flex; height: 230px; margin-top: 22px; }.chart-y-axis { width: 31px; display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 24px; color: #a8b3bf; font-size: 9px; }.chart-main { position: relative; flex: 1; padding-bottom: 24px; }.chart-grid-lines { position: absolute; inset: 0 0 24px; display: flex; flex-direction: column; justify-content: space-between; }.chart-grid-lines span { display: block; width: 100%; border-top: 1px dashed #e9eef4; }.chart-bars { position: absolute; inset: 0 0 24px; display: flex; align-items: end; justify-content: space-around; padding: 0 4%; }.chart-bars i { display: block; width: 22px; max-width: 7%; border-radius: 5px 5px 0 0; background: #dbe5ff; }.chart-bars i:last-child { background: #9cb1f8; }.trend-line { position: absolute; inset: 0 0 24px; width: 100%; height: calc(100% - 24px); overflow: visible; }.chart-x-axis { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: space-around; color: #a8b3bf; font-size: 9px; }.focus-panel { background: #fffdfb; }.insight-item { display: flex; align-items: flex-start; gap: 10px; padding: 15px 0; border-bottom: 1px solid #f2ece7; }.insight-item:last-child { border-bottom: 0; }.insight-icon { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 7px; font-size: 12px; font-weight: 800; }.insight-icon.blue { color: var(--blue); background: var(--blue-soft); }.insight-icon.orange { color: var(--orange); background: var(--orange-soft); }.insight-icon.purple { color: var(--purple); background: var(--purple-soft); }.insight-item strong { display: block; color: #48576b; font-size: 11px; }.insight-item p { margin: 5px 0 0; color: #9b8c80; font-size: 10px; line-height: 1.6; }.table-tools { display: flex; gap: 9px; align-items: center; }.search-box { display: flex; gap: 6px; align-items: center; width: 130px; padding: 6px 9px; border: 1px solid var(--line); border-radius: 5px; color: #a7b2bf; }.search-box input { width: 100%; border: 0; outline: 0; color: var(--ink); font-size: 10px; background: transparent; }.search-box input::placeholder { color: #b0bbc6; }.filter-button { padding: 7px 9px; color: #7d8ca0; background: #f5f7fa; border-radius: 5px; font-size: 10px; }.table-wrap { overflow-x: auto; margin-top: 12px; }table { width: 100%; border-collapse: collapse; min-width: 650px; }th { padding: 11px 9px; color: #a1adba; text-align: left; font-size: 9px; font-weight: 600; background: #fbfcfd; }td { padding: 13px 9px; color: #63748a; border-bottom: 1px solid #eef2f5; font-size: 10px; }tbody tr:last-child td { border-bottom: 0; }.student-cell { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; }.student-avatar { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; color: #fff; background: #8399e6; font-size: 9px; }.trend-up { color: var(--green); font-weight: 700; }.trend-down { color: #e58a68; font-weight: 700; }.issue { color: #a1816c; }.status { display: inline-block; padding: 4px 7px; border-radius: 10px; font-size: 9px; }.status.good { color: #48a875; background: var(--green-soft); }.status.attention { color: #d88651; background: var(--orange-soft); }.row-action { color: #9ba8b7; background: transparent; font-size: 16px; }

.call-badge { color: #5cad85; background: var(--green-soft); }
.call-banner { display: flex; align-items: center; gap: 21px; margin-top: 16px; padding: 19px 22px; background: #f9fbff; border-color: #e3eaff; }.call-banner-visual { width: 118px; height: 72px; position: relative; flex: 0 0 118px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #eef3ff; border-radius: 8px; }.phone-ring { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--blue); border: 5px solid #d8e2ff; border-radius: 50%; box-shadow: 0 0 0 7px #e4ebff; z-index: 2; }.phone-ring span { font-size: 17px; }.call-wave { position: absolute; bottom: 11px; left: 15px; display: flex; align-items: center; gap: 3px; opacity: .7; }.call-wave i { width: 3px; height: 11px; background: #9ab1f4; border-radius: 2px; }.call-wave i:nth-child(2), .call-wave i:nth-child(4) { height: 17px; }.call-wave i:nth-child(3) { height: 23px; }.call-banner-copy { flex: 1; }.call-banner-copy h2 { margin: 0 0 7px; font-size: 15px; }.call-banner-copy p:not(.eyebrow) { margin: 0 0 10px; color: var(--muted); font-size: 10px; line-height: 1.55; }.call-banner-meta { display: flex; gap: 14px; color: #91a0b2; font-size: 9px; }.call-banner .secondary-button { flex: 0 0 auto; }
.muscle-panel { padding: 20px; }.muscle-intro { margin: 12px 0 13px; color: #9aa7b5; font-size: 10px; line-height: 1.5; }.muscle-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 4px; background: #f4f6fa; border-radius: 6px; }.muscle-tab { padding: 7px 2px; color: #98a5b4; background: transparent; border-radius: 4px; font-size: 9px; }.muscle-tab.active { color: var(--blue); background: #fff; box-shadow: 0 2px 6px rgba(37,55,87,.07); font-weight: 700; }.muscle-tip { display: flex; align-items: flex-start; gap: 9px; margin-top: 14px; padding: 10px; background: #fffaf4; border: 1px solid #f5e8d8; border-radius: 6px; }.muscle-tip-icon { width: 22px; height: 22px; flex: 0 0 22px; display: grid; place-items: center; color: #e19056; background: #ffeddc; border-radius: 6px; font-size: 9px; font-weight: 800; }.muscle-tip strong { display: block; color: #6d6055; font-size: 10px; }.muscle-tip p { margin: 4px 0 0; color: #a59484; font-size: 9px; line-height: 1.5; }.muscle-tip b { color: #d7814d; font-weight: 700; }
.call-heading { align-items: center; }.mode-caption { display: block; color: #a3afbb; font-size: 9px; margin-top: 4px; }.call-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 16px; }.call-session-panel { min-height: 500px; padding: 22px; background: #fbfcff; border-color: #e3eaff; }.call-session-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; }.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; color: #6074b1; background: var(--blue-soft); border-radius: 14px; font-size: 10px; }.live-pill i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }.call-schedule { color: #a3afbd; font-size: 10px; }.phone-stage { position: relative; height: 330px; display: flex; align-items: center; flex-direction: column; padding-top: 68px; overflow: hidden; }.phone-orbit { position: absolute; width: 205px; height: 205px; top: 37px; border: 1px solid #dfe7fb; border-radius: 50%; }.orbit-two { width: 285px; height: 285px; top: -4px; border-color: #edf1fb; }.caller-avatar { position: relative; z-index: 2; width: 73px; height: 73px; display: grid; place-items: center; color: #fff; background: var(--blue); border: 7px solid #dce6ff; border-radius: 50%; box-shadow: 0 0 0 10px rgba(225,233,255,.72); font-size: 26px; font-weight: 800; }.caller-avatar i { position: absolute; right: 1px; bottom: 3px; width: 14px; height: 14px; background: var(--green); border: 3px solid #fff; border-radius: 50%; }.phone-stage > strong { position: relative; z-index: 2; margin-top: 23px; color: #33445b; font-size: 14px; }.caller-subtitle { position: relative; z-index: 2; margin-top: 5px; color: #9ba9b9; font-size: 10px; }.call-timer { position: relative; z-index: 2; margin-top: 18px; color: var(--blue); font-size: 23px; font-weight: 800; letter-spacing: .08em; }.call-waveform { position: relative; z-index: 2; display: flex; align-items: center; gap: 4px; height: 26px; margin-top: 11px; }.call-waveform i { width: 4px; height: 7px; background: #adc0f8; border-radius: 3px; }.call-waveform i:nth-child(2), .call-waveform i:nth-child(6) { height: 14px; }.call-waveform i:nth-child(3), .call-waveform i:nth-child(5) { height: 19px; }.call-waveform i:nth-child(4) { height: 25px; }.call-waveform.speaking i { animation: voiceWave .8s ease-in-out infinite alternate; }.call-waveform.speaking i:nth-child(2) { animation-delay: .12s; }.call-waveform.speaking i:nth-child(3) { animation-delay: .24s; }.call-waveform.speaking i:nth-child(4) { animation-delay: .36s; }.call-waveform.speaking i:nth-child(5) { animation-delay: .48s; }.call-controls { display: flex; align-items: center; justify-content: center; gap: 33px; }.call-secondary, .call-primary { display: flex; align-items: center; flex-direction: column; gap: 7px; color: #94a2b2; background: transparent; }.call-secondary span, .call-primary span { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: #eef2f7; font-size: 14px; }.call-primary span { width: 53px; height: 53px; color: #fff; background: var(--green); box-shadow: 0 7px 16px rgba(81,185,130,.22); font-size: 20px; }.call-primary.active span { background: #eb786c; }.call-controls small { font-size: 9px; }.call-hint { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 24px auto 0; padding-top: 15px; max-width: 500px; color: #96a5b4; border-top: 1px solid #edf1f7; font-size: 10px; text-align: center; }.call-hint span { width: 15px; height: 15px; display: grid; place-items: center; flex: 0 0 15px; color: var(--blue); border: 1px solid #b7c8f7; border-radius: 50%; font-size: 9px; }.call-aside { display: grid; gap: 16px; }.call-agenda-panel, .sen-panel, .call-history-panel { padding: 20px; }.agenda-copy { margin: 15px 0 16px; color: #8090a3; font-size: 10px; line-height: 1.7; }.agenda-steps { display: grid; gap: 12px; }.agenda-step { display: flex; align-items: center; gap: 10px; }.agenda-step > span { width: 23px; height: 23px; display: grid; place-items: center; color: #a8b4c1; background: #f1f3f6; border-radius: 7px; font-size: 9px; }.agenda-step.active > span { color: var(--blue); background: var(--blue-soft); }.agenda-step strong { display: block; font-size: 10px; }.agenda-step small { display: block; margin-top: 3px; color: #a6b1be; font-size: 9px; }.sen-panel { display: flex; align-items: flex-start; gap: 10px; background: #fffaf4; border-color: #f4e7d7; }.sen-icon { width: 30px; height: 30px; display: grid; place-items: center; color: #e68d55; background: #ffeedc; border-radius: 8px; }.sen-panel strong { display: block; color: #6f5e4f; font-size: 11px; }.sen-panel p { margin: 5px 0 0; color: #a3917e; font-size: 10px; line-height: 1.6; }.sen-panel b { color: #d9814b; }.call-history-row { display: grid; grid-template-columns: 34px 1fr auto; gap: 7px; align-items: center; padding: 12px 0; border-bottom: 1px solid #eff2f5; }.call-history-row:last-child { padding-bottom: 0; border-bottom: 0; }.history-day { color: #9eabb9; font-size: 9px; }.call-history-row strong { color: #5e7087; font-size: 10px; }.history-score { color: var(--green); font-size: 10px; font-weight: 700; }
.report-detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; margin-bottom: 16px; }.heatmap-panel, .progress-panel, .metric-list-panel, .action-panel { padding: 22px; }.heatmap-legend { display: flex; align-items: center; gap: 5px; color: #a1adba; font-size: 9px; }.heatmap-legend .heat { width: 16px; height: 16px; }.heat { display: block; width: 16px; height: 16px; border-radius: 3px; }.heat.low { background: #ecf3ff; }.heat.mid { background: #b8c9fb; }.heat.high { background: #6686e8; }.heatmap-wrap { margin-top: 22px; }.heatmap-labels { display: grid; grid-template-columns: 58px repeat(5, 1fr); gap: 7px; margin-bottom: 8px; color: #a0adbb; font-size: 9px; text-align: center; }.heatmap-labels span:first-child { text-align: left; }.heatmap-grid { display: grid; grid-template-columns: 58px repeat(5, 1fr); gap: 7px; align-items: center; }.heatmap-grid > span { color: #7d8ca0; font-size: 9px; }.heatmap-grid .heat { width: 100%; height: 27px; border-radius: 4px; }.heatmap-callout { display: flex; gap: 8px; align-items: flex-start; margin-top: 17px; padding: 10px; color: #8c7c6b; background: #fffaf4; border: 1px solid #f5e7d6; border-radius: 6px; font-size: 9px; line-height: 1.55; }.heatmap-callout span { width: 15px; height: 15px; display: grid; place-items: center; flex: 0 0 15px; color: var(--orange); border: 1px solid #efc8a8; border-radius: 50%; }.heatmap-callout p { margin: 0; }.heatmap-callout strong { color: #c67e4a; }.progress-panel .student-select { padding: 6px 8px; color: #73839a; background: #f4f6fa; border-radius: 5px; font-size: 9px; }.progress-profile { display: flex; align-items: center; gap: 8px; margin: 20px 0 13px; }.progress-profile .student-avatar { width: 31px; height: 31px; }.progress-profile strong { display: block; font-size: 11px; }.progress-profile span { display: block; margin-top: 3px; color: #9ba8b7; font-size: 9px; }.progress-profile em { margin-left: auto; color: var(--green); font-size: 15px; font-style: normal; font-weight: 800; }.mini-line-chart { position: relative; height: 125px; padding-left: 28px; }.mini-line-chart svg { width: 100%; height: 92px; margin-top: 5px; background: repeating-linear-gradient(to bottom, transparent 0, transparent 30px, #eef2f7 31px); overflow: visible; }.mini-y-labels { position: absolute; top: 1px; left: 0; height: 87px; display: flex; flex-direction: column; justify-content: space-between; color: #a8b3bf; font-size: 8px; }.mini-x-labels { display: flex; justify-content: space-between; margin-top: 3px; color: #a8b3bf; font-size: 8px; }.progress-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding-top: 15px; border-top: 1px solid #eef2f5; }.progress-facts span { display: block; }.progress-facts b { display: block; color: #a0acba; font-size: 9px; font-weight: 500; }.progress-facts strong { display: block; margin-top: 5px; color: #4d6076; font-size: 11px; }.report-insights-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; margin-bottom: 16px; }.metric-list { margin-top: 10px; }.metric-row { display: grid; grid-template-columns: 26px 1fr auto auto; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid #eff2f5; }.metric-row:last-child { border-bottom: 0; padding-bottom: 0; }.metric-icon { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; font-size: 8px; font-weight: 800; }.metric-icon.blue { color: var(--blue); background: var(--blue-soft); }.metric-icon.orange { color: var(--orange); background: var(--orange-soft); }.metric-icon.purple { color: var(--purple); background: var(--purple-soft); }.metric-row strong { display: block; color: #5f7188; font-size: 10px; }.metric-row small { display: block; margin-top: 3px; color: #a1adbb; font-size: 9px; }.metric-row b { color: #4b5d73; font-size: 10px; }.metric-row em { color: var(--green); font-size: 9px; font-style: normal; font-weight: 700; }.metric-row em.warn { color: var(--orange); }.action-panel { display: flex; align-items: center; gap: 12px; background: #f7f9ff; border-color: #e3eaff; }.action-panel-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; color: var(--blue); background: var(--blue-soft); border-radius: 9px; font-size: 17px; }.action-panel h2 { margin-bottom: 5px; font-size: 13px; }.action-panel p:not(.eyebrow) { margin: 0; color: #8d9bb0; font-size: 9px; line-height: 1.5; }.action-panel .secondary-button { margin-left: auto; flex: 0 0 auto; }
.group-badge { color: #8e6bd4; background: var(--purple-soft); }.group-mode-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: #edf1f7; border-radius: 7px; }.group-mode-switch button { padding: 8px 11px; color: #94a1b1; background: transparent; border-radius: 5px; font-size: 10px; }.group-mode-switch button.active { color: var(--blue); background: #fff; box-shadow: 0 3px 8px rgba(37,55,87,.08); font-weight: 700; }.group-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(270px, .65fr); gap: 16px; }.discussion-room { min-height: 610px; padding: 22px; background: #fbfcff; border-color: #e3eaff; }.room-topline, .room-members, .room-topic { display: flex; align-items: center; }.room-topline { justify-content: space-between; gap: 14px; }.room-topic { gap: 7px; color: #6e81ba; font-size: 10px; }.room-live-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }.room-members { gap: 4px; color: #9ba8b7; font-size: 9px; }.member-dot { width: 22px; height: 22px; display: grid; place-items: center; color: #fff; border: 2px solid #fff; border-radius: 7px; font-size: 8px; margin-left: -5px; }.member-dot:first-child { margin-left: 0; }.member-dot.blue, .agent-avatar.blue, .transcript-avatar.blue { background: var(--blue); }.member-dot.coral, .agent-avatar.coral, .transcript-avatar.coral, .transcript-avatar.orange { background: var(--orange); }.member-dot.green, .agent-avatar.green, .transcript-avatar.green { background: var(--green); }.member-dot.purple, .agent-avatar.purple, .transcript-avatar.purple { background: var(--purple); }.discussion-title { margin: 34px auto 20px; max-width: 650px; text-align: center; }.project-tag { display: inline-block; padding: 5px 8px; color: #7e91cb; background: var(--blue-soft); border-radius: 5px; font-size: 9px; font-weight: 700; }.discussion-title h2 { margin: 12px 0 8px; color: #2f4056; font-size: 22px; }.discussion-title p { margin: 0; color: #93a1b2; font-size: 10px; line-height: 1.6; }.agent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 720px; margin: 0 auto 22px; }.agent-card { display: flex; align-items: center; gap: 8px; min-width: 0; padding: 10px; background: #fff; border: 1px solid #edf1f6; border-radius: 7px; }.agent-card.speaking { border-color: #b9cafb; box-shadow: 0 0 0 3px #f0f4ff; }.agent-avatar { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; color: #fff; border-radius: 8px; font-size: 10px; font-weight: 800; }.agent-card strong { display: block; overflow: hidden; color: #586b83; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }.agent-card span:not(.agent-avatar) { display: block; margin-top: 4px; overflow: hidden; color: #a2afbc; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }.agent-status { width: 6px; height: 6px; margin-left: auto; flex: 0 0 6px; background: var(--green); border-radius: 50%; }.agent-status.waiting { background: #dfe4eb; }.agent-bars { display: flex; align-items: center; gap: 2px; margin-left: auto; }.agent-bars b { width: 2px; height: 8px; background: var(--orange); border-radius: 2px; }.agent-bars b:nth-child(2) { height: 14px; }.agent-bars b:nth-child(3) { height: 10px; }.discussion-transcript { display: grid; gap: 12px; max-width: 690px; max-height: 215px; overflow: auto; margin: 0 auto; padding: 14px 16px; background: #f8faff; border: 1px solid #e7edf9; border-radius: 8px; }.transcript-item { display: flex; align-items: flex-start; gap: 9px; }.transcript-avatar { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 24px; color: #fff; border-radius: 7px; font-size: 8px; font-weight: 800; }.transcript-item small { display: block; margin: 2px 0 4px; color: #9ba8b7; font-size: 9px; }.transcript-item p { max-width: 490px; margin: 0; padding: 9px 11px; color: #5e6f85; background: #fff; border-radius: 4px 10px 10px 10px; font-size: 10px; line-height: 1.55; }.transcript-item.cue, .transcript-item.summary { align-items: center; gap: 8px; padding-top: 5px; border-top: 1px dashed #d9e2f4; }.cue-mark { flex: 0 0 auto; padding: 4px 6px; color: var(--blue); background: var(--blue-soft); border-radius: 4px; font-size: 8px; font-weight: 700; }.transcript-item.cue p, .transcript-item.summary p { padding: 0; color: #7385b7; background: transparent; font-size: 9px; }.transcript-item.summary { padding: 9px; background: #fffaf4; border: 1px solid #f6e8d8; border-radius: 6px; }.transcript-item.summary p { color: #9c856e; }.discussion-footer { display: flex; align-items: center; gap: 12px; max-width: 690px; margin: 18px auto 0; }.discussion-timer { color: #a2afbd; font-size: 10px; }.discussion-timer b { color: #6d7fa1; }.turn-hint { flex: 1; color: #8c9ab0; font-size: 9px; }.discussion-actions { display: flex; gap: 7px; }.outline-action { display: inline-flex; align-items: center; gap: 5px; padding: 0 10px; color: #e28c55; background: var(--orange-soft); border-radius: 6px; font-size: 10px; }.outline-action span { font-size: 14px; }.group-aside { display: grid; gap: 16px; }.project-panel, .skill-panel, .group-tip-panel { padding: 20px; }.project-steps { display: grid; gap: 15px; margin: 20px 0; }.project-step { display: flex; align-items: center; gap: 10px; }.project-step > span { width: 24px; height: 24px; display: grid; place-items: center; color: #a7b2be; background: #f0f3f6; border-radius: 7px; font-size: 9px; }.project-step.done > span, .project-step.active > span { color: #fff; background: var(--blue); }.project-step.active > span { box-shadow: 0 0 0 4px var(--blue-soft); }.project-step strong { display: block; color: #5d6e84; font-size: 10px; }.project-step small { display: block; margin-top: 3px; color: #a2aebb; font-size: 9px; }.project-summary-button { width: 100%; }.skill-progress-row { display: grid; grid-template-columns: 42px 1fr 27px; align-items: center; gap: 8px; margin-top: 16px; color: #8291a3; font-size: 9px; }.skill-progress-row .progress-track { height: 5px; }.skill-progress-row b { color: #73839a; text-align: right; font-size: 9px; }.group-tip-panel { display: flex; align-items: flex-start; gap: 8px; background: #fffaf4; border-color: #f4e7d7; }.group-tip-panel p { margin: 0; color: #9b8876; font-size: 9px; line-height: 1.6; }.group-tip-panel strong { color: #c17d4d; }.group-tip-panel b { color: #c17d4d; }
.realtime-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; color: #4ca878; background: var(--green-soft); border-radius: 16px; font-size: 10px; font-weight: 700; }.realtime-chip i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }.live-heading { align-items: center; }.live-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); gap: 16px; }.live-room { min-height: 590px; padding: 22px; background: #fbfcff; border-color: #dfe8fa; }.live-room-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }.live-room-note { color: #9caab9; font-size: 9px; }.live-agent-stage { display: flex; align-items: center; flex-direction: column; padding-top: 41px; }.live-agent-avatar { position: relative; width: 73px; height: 73px; display: grid; place-items: center; color: #fff; background: var(--purple); border: 7px solid #e9e1fb; border-radius: 50%; box-shadow: 0 0 0 9px #f6f2ff; font-size: 26px; font-weight: 800; }.live-agent-avatar span { position: absolute; right: 0; bottom: 1px; width: 13px; height: 13px; background: var(--green); border: 3px solid #fff; border-radius: 50%; }.live-agent-avatar.active { animation: agentPulse 1.7s ease-in-out infinite; }.live-agent-stage > strong { margin-top: 22px; color: #3f5068; font-size: 14px; }.live-agent-stage > small { margin-top: 5px; color: #9ba8b7; font-size: 10px; }.live-wave { display: flex; align-items: center; gap: 4px; height: 26px; margin-top: 14px; }.live-wave i { width: 4px; height: 7px; background: #c3b3ee; border-radius: 3px; }.live-wave i:nth-child(2), .live-wave i:nth-child(7) { height: 14px; }.live-wave i:nth-child(3), .live-wave i:nth-child(6) { height: 19px; }.live-wave i:nth-child(4), .live-wave i:nth-child(5) { height: 25px; }.live-wave.speaking i { animation: voiceWave .75s ease-in-out infinite alternate; }.live-wave.speaking i:nth-child(2) { animation-delay: .1s; }.live-wave.speaking i:nth-child(3) { animation-delay: .2s; }.live-wave.speaking i:nth-child(4) { animation-delay: .3s; }.live-wave.speaking i:nth-child(5) { animation-delay: .4s; }.live-wave.speaking i:nth-child(6) { animation-delay: .5s; }.live-transcript { display: grid; gap: 10px; max-width: 640px; height: 168px; overflow: auto; margin: 20px auto 0; padding: 15px; background: #f8faff; border: 1px solid #e7edf9; border-radius: 8px; }.live-message { max-width: 77%; }.live-message.agent { justify-self: start; }.live-message.student { justify-self: end; text-align: right; }.live-message.correction { max-width: 100%; padding: 10px; background: #fffaf4; border: 1px solid #f5e7d6; border-radius: 6px; }.live-message-label { display: block; margin-bottom: 4px; color: #9ba8b7; font-size: 9px; }.live-message p { margin: 0; padding: 9px 11px; color: #5d6e84; background: #fff; border-radius: 4px 10px 10px 10px; font-size: 10px; line-height: 1.55; }.live-message.student p { color: #fff; background: var(--blue); border-radius: 10px 4px 10px 10px; }.live-message.correction p { padding: 0; color: #a08367; background: transparent; }.live-message.pause { justify-self: center; padding: 5px 8px; color: #8d9bb1; background: #eef2ff; border-radius: 10px; font-size: 9px; }.live-controls { display: flex; align-items: flex-start; justify-content: center; gap: 33px; margin-top: 21px; }.live-control { display: flex; align-items: center; flex-direction: column; gap: 7px; color: #94a2b2; background: transparent; }.live-control > span { width: 39px; height: 39px; display: grid; place-items: center; color: #7d8da2; background: #eef2f7; border-radius: 50%; font-size: 15px; }.live-control.main > span { width: 53px; height: 53px; color: #fff; background: var(--purple); box-shadow: 0 7px 16px rgba(148,115,223,.22); font-size: 16px; }.live-control.interrupt > span { color: #e18c55; background: var(--orange-soft); }.live-control.active > span { background: #eb786c; }.live-control small { font-size: 9px; }.live-bottom-tools { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 21px; padding-top: 15px; border-top: 1px solid #edf1f7; }.live-tool { padding: 6px 8px; color: #7183b6; background: var(--blue-soft); border-radius: 5px; font-size: 9px; }.live-tool span { margin-left: 4px; color: var(--blue); }.live-bottom-tools > span { color: #9aa8b6; font-size: 9px; }.live-aside { display: grid; gap: 16px; }.live-behavior-panel, .live-skills-panel, .live-tip-panel { padding: 20px; }.behavior-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 0; border-bottom: 1px solid #eff2f5; }.behavior-item:last-child { border-bottom: 0; padding-bottom: 0; }.behavior-item strong { display: block; color: #5d6e84; font-size: 10px; }.behavior-item small { display: block; margin-top: 4px; color: #a0adba; font-size: 9px; }.behavior-item .toggle { width: 34px; height: 20px; padding: 3px; }.behavior-item .toggle span { width: 14px; height: 14px; }.behavior-item .toggle.on span { transform: translateX(14px); }.live-skill-row { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 9px; padding: 13px 0; border-bottom: 1px solid #eff2f5; }.live-skill-row:last-child { border-bottom: 0; padding-bottom: 0; }.skill-signal { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 7px; font-size: 9px; font-weight: 800; }.skill-signal.green { color: var(--green); background: var(--green-soft); }.skill-signal.blue { color: var(--blue); background: var(--blue-soft); }.skill-signal.orange { color: var(--orange); background: var(--orange-soft); }.live-skill-row strong { display: block; color: #5d6e84; font-size: 10px; }.live-skill-row small { display: block; margin-top: 3px; color: #a0adba; font-size: 9px; }.live-skill-row b { color: var(--green); font-size: 9px; }.live-skill-row b.needs-work { color: var(--blue); }.live-tip-panel { display: flex; align-items: flex-start; gap: 8px; background: #fffaf4; border-color: #f4e7d7; }.live-tip-panel p { margin: 0; color: #9b8876; font-size: 9px; line-height: 1.6; }.live-tip-panel strong { color: #c17d4d; }
.quest-panel { margin-top: 16px; padding: 22px; background: #fffdfb; border-color: #f2e7dc; }.quest-xp { color: var(--orange); font-size: 14px; font-weight: 800; }.quest-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 16px; }.quest-item { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 8px; min-width: 0; padding: 10px; background: #fff; border: 1px solid #f1e7dd; border-radius: 7px; }.quest-item > span { width: 25px; height: 25px; display: grid; place-items: center; color: var(--orange); background: var(--orange-soft); border-radius: 7px; font-size: 10px; font-weight: 800; }.quest-item.done > span { color: #fff; background: var(--green); }.quest-item strong { display: block; overflow: hidden; color: #5d6e84; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }.quest-item small { display: block; margin-top: 3px; color: #a0adba; font-size: 9px; }.quest-item b { color: #d88950; font-size: 10px; }.reward-chest { display: flex; align-items: center; gap: 11px; margin-top: 14px; padding: 12px; background: #f7f9ff; border: 1px solid #e4eaff; border-radius: 8px; }.reward-chest > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 9px; font-size: 18px; }.reward-chest strong { display: block; color: #4f6076; font-size: 11px; }.reward-chest p { margin: 4px 0 0; color: #94a2b2; font-size: 9px; }.reward-chest .secondary-button { margin-left: auto; }.reward-chest.ready { border-color: #f1cfae; background: #fff7ef; }.reward-chest.ready > span { color: #fff; background: var(--orange); animation: chestGlow 1.4s ease-in-out infinite; }.reward-chest.opened { opacity: .76; }.dkt-panel, .dkt-report-panel { padding: 20px; }.dkt-score { color: var(--blue); font-size: 18px; font-weight: 800; }.dkt-list { display: grid; gap: 11px; margin-top: 16px; }.dkt-row { display: grid; grid-template-columns: 62px 1fr 34px; align-items: center; gap: 8px; color: #74849a; font-size: 9px; }.dkt-row .progress-track { height: 6px; }.dkt-row .progress-track span { background: var(--blue); }.dkt-row.mid .progress-track span { background: var(--orange); }.dkt-row.low .progress-track span { background: #e9786d; }.dkt-row.good .progress-track span { background: var(--green); }.dkt-row b { text-align: right; color: #53647a; font-size: 9px; }.dkt-next { margin-top: 15px; padding: 11px; background: #f7f9ff; border: 1px solid #e4eaff; border-radius: 6px; }.dkt-next span { display: block; color: #8fa0c9; font-size: 9px; margin-bottom: 5px; }.dkt-next strong { display: block; color: #50659d; font-size: 10px; line-height: 1.55; }.dkt-report-panel { margin-bottom: 16px; }.dkt-report-grid { margin-top: 16px; overflow-x: auto; }.dkt-report-head, .dkt-report-row { display: grid; grid-template-columns: 82px repeat(6, minmax(54px, 1fr)); gap: 7px; align-items: center; min-width: 560px; }.dkt-report-head { color: #9da9b8; font-size: 9px; margin-bottom: 7px; }.dkt-report-row { margin-top: 7px; }.dkt-report-row strong { color: #53647a; font-size: 10px; }.dkt-cell { display: grid; place-items: center; min-height: 27px; border-radius: 5px; font-size: 9px; font-weight: 700; }.dkt-cell.good { color: #388f62; background: var(--green-soft); }.dkt-cell.mid { color: #c47a46; background: var(--orange-soft); }.dkt-cell.low { color: #ce665d; background: #fff0ee; }.dkt-report-note { display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; padding: 10px; color: #8794a5; background: #fbfcff; border: 1px solid #edf1f7; border-radius: 6px; font-size: 9px; line-height: 1.55; }.dkt-report-note span { width: 15px; height: 15px; display: grid; place-items: center; flex: 0 0 15px; color: var(--blue); border: 1px solid #b7c8f7; border-radius: 50%; font-size: 9px; }.dkt-report-note p { margin: 0; }.voice-diagnostic { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 18px; padding: 11px 13px; background: #fffaf4; border: 1px solid #f4dfc8; border-radius: 8px; color: #9a7c63; font-size: 10px; line-height: 1.55; }.voice-diagnostic.ok { background: #f3fbf6; border-color: #d8efdf; color: #5a8a6b; }.voice-diagnostic span { width: 17px; height: 17px; display: grid; place-items: center; flex: 0 0 17px; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 800; }.voice-diagnostic p { margin: 0; }.voice-line { display: flex; align-items: center; gap: 7px; }.voice-line p { flex: 1; }.voice-play { width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 22px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 8px; }.voice-play:hover { color: #fff; background: var(--blue); }.transcript-item .voice-line p { max-width: none; }.live-message .voice-line p { max-width: none; }.call-controls { flex-wrap: wrap; }.call-secondary.recording span { color: #fff; background: #eb786c; }.toast { position: fixed; left: 50%; bottom: 24px; z-index: 10; padding: 10px 14px; color: #fff; background: #29384d; border-radius: 6px; box-shadow: 0 8px 22px rgba(29,42,59,.2); font-size: 11px; opacity: 0; transform: translate(-50%, 10px); pointer-events: none; transition: .2s; }.toast.show { opacity: 1; transform: translate(-50%, 0); }
.diagnosis-panel { margin: 20px 0 22px; padding: 16px; background: #fbfcff; border: 1px solid #e4eaff; border-radius: 8px; }.diagnosis-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }.diagnosis-head h2 { margin: 3px 0 0; color: #42536a; font-size: 13px; }.diagnosis-head > span { flex: 0 0 auto; padding: 6px 9px; color: var(--blue); background: var(--blue-soft); border-radius: 13px; font-size: 10px; font-weight: 800; }.diagnosis-options { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }.diagnosis-chip { padding: 7px 9px; color: #7d8ca0; background: #fff; border: 1px solid #e7ecf4; border-radius: 6px; font-size: 10px; }.diagnosis-chip.active { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 5px 12px rgba(126,155,239,.18); }.diagnosis-result { display: grid; grid-template-columns: minmax(0, .95fr) minmax(220px, 1.05fr); gap: 14px; margin-top: 14px; padding-top: 13px; border-top: 1px solid #edf1f7; }.diagnosis-result strong { color: #405168; font-size: 12px; }.diagnosis-result p { margin: 6px 0 0; color: #7f8fa4; font-size: 10px; line-height: 1.65; }.diagnosis-result ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }.diagnosis-result li { display: flex; align-items: center; gap: 7px; min-width: 0; color: #687991; font-size: 10px; }.diagnosis-result li span { width: 19px; height: 19px; display: grid; place-items: center; flex: 0 0 19px; color: var(--orange); background: var(--orange-soft); border-radius: 6px; font-size: 9px; font-weight: 800; }
.scaffold-panel { margin-top: 15px; padding-top: 14px; border-top: 1px dashed #dfe7f5; }.scaffold-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }.scaffold-step { display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 34px; padding: 7px 6px; color: #7c8ca1; background: #fff; border: 1px solid #e7ecf4; border-radius: 7px; font-size: 10px; font-weight: 700; }.scaffold-step span { width: 18px; height: 18px; display: grid; place-items: center; color: #8ea0d7; background: var(--blue-soft); border-radius: 50%; font-size: 8px; }.scaffold-step.active { color: #fff; background: var(--blue); border-color: var(--blue); }.scaffold-step.active span { color: var(--blue); background: #fff; }.scaffold-step.done { color: #5ca879; border-color: #d6ecdf; background: #f4fbf6; }.scaffold-step.done span { color: #fff; background: var(--green); }.scaffold-card { display: flex; justify-content: space-between; gap: 14px; margin-top: 12px; padding: 13px; background: #fff; border: 1px solid #eaf0f8; border-radius: 8px; }.scaffold-card strong { display: block; color: #405168; font-size: 12px; }.scaffold-card p { margin: 6px 0 0; color: #74859c; font-size: 10px; line-height: 1.65; }.scaffold-card small { display: block; margin-top: 6px; color: #d1814e; font-size: 9px; line-height: 1.5; }.scaffold-actions { display: flex; align-items: center; gap: 7px; flex: 0 0 auto; }
.personal-goal-panel { padding: 20px; background: #fbfdf9; border-color: #e5f0df; }.goal-profile { flex: 0 0 auto; padding: 6px 8px; color: #4fa471; background: var(--green-soft); border-radius: 13px; font-size: 9px; font-weight: 800; }.personal-goal-list { display: grid; gap: 9px; margin-top: 15px; }.personal-goal { display: grid; grid-template-columns: 24px 1fr auto; gap: 9px; align-items: start; padding: 11px; background: #fff; border: 1px solid #e8f1e5; border-radius: 8px; }.goal-check { width: 22px; height: 22px; display: grid; place-items: center; color: #fff; background: #dfe9dd; border-radius: 50%; font-size: 10px; font-weight: 800; }.personal-goal strong { display: block; color: #46586d; font-size: 10px; }.personal-goal p { margin: 5px 0 0; color: #7f8e82; font-size: 9px; line-height: 1.55; }.personal-goal span { display: inline-block; margin-top: 7px; padding: 4px 6px; color: #5ca879; background: var(--green-soft); border-radius: 5px; font-size: 8px; font-weight: 700; }.goal-complete { align-self: center; padding: 6px 8px; color: #5ca879; background: var(--green-soft); border-radius: 6px; font-size: 9px; font-weight: 800; }.personal-goal.done { background: #f7fbf5; }.personal-goal.done .goal-check { background: var(--green); }.personal-goal.done .goal-complete { color: #a0ad9d; background: #edf3ea; cursor: default; }.goal-micro-note { margin-top: 12px; padding: 10px; color: #6f8e74; background: #f5fbf2; border: 1px dashed #d7ead1; border-radius: 7px; font-size: 9px; line-height: 1.6; }
.textbook-panel { padding: 20px; background: #fffdfb; border-color: #f2e7dc; }.textbook-grade { padding: 6px 8px; color: #d1814e; background: var(--orange-soft); border-radius: 13px; font-size: 9px; font-weight: 800; }.textbook-select { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; margin-top: 15px; }.textbook-unit { min-height: 30px; color: #8c9aac; background: #fff; border: 1px solid #eee6de; border-radius: 6px; font-size: 8px; font-weight: 800; }.textbook-unit.active { color: #fff; background: var(--orange); border-color: var(--orange); box-shadow: 0 5px 12px rgba(242,154,97,.17); }.textbook-card { margin-top: 12px; padding: 13px; background: #fff; border: 1px solid #f1e7dd; border-radius: 8px; }.textbook-card > span { display: inline-block; padding: 5px 7px; color: #d1814e; background: var(--orange-soft); border-radius: 5px; font-size: 8px; font-weight: 800; }.textbook-card strong { display: block; margin-top: 9px; color: #48576b; font-size: 13px; }.textbook-card p { margin: 7px 0 0; color: #8a7d72; font-size: 10px; line-height: 1.6; }.textbook-meta, .textbook-agent-pack { display: grid; gap: 8px; margin-top: 12px; }.textbook-meta div, .textbook-agent-pack div { padding: 9px; background: #fffaf5; border-radius: 7px; }.textbook-agent-pack div { background: #fbfcff; border: 1px solid #e9eff8; }.textbook-meta small, .textbook-agent-pack small { display: block; color: #b09a87; font-size: 8px; margin-bottom: 4px; }.textbook-agent-pack small { color: #8d9ccc; }.textbook-meta b { color: #6e5f53; font-size: 9px; line-height: 1.45; }.textbook-agent-pack span { display: block; color: #64748a; font-size: 9px; line-height: 1.55; }.textbook-apply { width: 100%; margin-top: 12px; justify-content: center; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(232,111,98,.25); } 50% { box-shadow: 0 0 0 9px rgba(232,111,98,0); } }
@keyframes voiceWave { from { transform: scaleY(.45); } to { transform: scaleY(1.2); } }
@keyframes agentPulse { 0%, 100% { box-shadow: 0 0 0 9px #f6f2ff; } 50% { box-shadow: 0 0 0 16px rgba(235,225,251,.25); } }
@keyframes chestGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(242,154,97,.28); } 50% { box-shadow: 0 0 0 8px rgba(242,154,97,0); } }

.voice-diagnostic p { flex: 1; }
.voice-test-button { flex: 0 0 auto; padding: 7px 9px; color: #fff; background: var(--blue); border-radius: 6px; font-size: 10px; font-weight: 800; }

@media (max-width: 1100px) {
  .sidebar { width: 196px; flex-basis: 196px; }.topbar { padding: 0 28px; }.content-wrap { padding-left: 28px; padding-right: 28px; }.section-grid, .lower-grid, .report-grid, .report-detail-grid, .report-insights-grid, .group-layout, .live-layout { grid-template-columns: 1fr; }.mission-illustration { flex-basis: 42%; }.report-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .app-shell { display: block; }.sidebar { width: auto; height: auto; padding: 14px 16px 10px; border-right: 0; border-bottom: 1px solid var(--line); }.brand { padding: 0 0 12px; }.role-switcher { margin-bottom: 9px; }.main-nav { display: flex; overflow-x: auto; gap: 4px; }.nav-item { min-width: max-content; padding: 9px 11px; }.sidebar-bottom { display: none; }.topbar { height: 63px; padding: 0 17px; }.topbar-actions { gap: 12px; }.profile-copy, .profile-chevron { display: none; }.content-wrap { padding: 24px 17px 36px; }.page-heading { display: block; margin-bottom: 22px; }.page-heading .primary-button, .report-actions { margin-top: 17px; }.report-actions { display: flex; }.practice-heading, .call-heading, .live-heading { display: flex; align-items: flex-start; }.practice-heading .mode-control, .call-heading .mode-control { flex: 0 0 auto; }.stats-grid, .report-stats { grid-template-columns: 1fr; }.mission-body { display: block; }.mission-illustration { width: 100%; margin-bottom: 17px; }.practice-layout, .call-layout, .group-layout, .live-layout { grid-template-columns: 1fr; }.practice-stage { padding: 18px 15px; }.scenario-visual { width: 100%; }.record-area { flex-wrap: wrap; }.record-hint { width: 100%; text-align: center; }.chart-panel, .focus-panel, .student-table-panel { padding: 17px; }.legend { flex-wrap: wrap; justify-content: flex-end; gap: 8px; }.table-tools { flex-wrap: wrap; justify-content: flex-end; }.student-table-panel .panel-header { align-items: flex-end; }.student-table-panel .panel-header > div:first-child { flex: 1; }.search-box { width: 110px; }.call-banner { display: grid; grid-template-columns: 78px 1fr; gap: 14px; }.call-banner-visual { width: 78px; height: 78px; flex-basis: 78px; }.call-banner .secondary-button { grid-column: 1 / -1; }.call-banner-meta { flex-wrap: wrap; gap: 7px 12px; }.call-session-panel { min-height: 0; }.call-session-top { align-items: flex-start; flex-direction: column; }.phone-stage { height: 300px; }.call-controls, .live-controls { gap: 22px; }.call-hint { align-items: flex-start; }.action-panel { align-items: flex-start; flex-wrap: wrap; }.action-panel .secondary-button { margin-left: 46px; }.heatmap-panel, .progress-panel, .metric-list-panel, .action-panel { padding: 17px; }.group-mode-switch { width: 100%; margin-top: 16px; }.discussion-room, .live-room { min-height: 0; padding: 17px; }.room-topline, .room-members { align-items: flex-start; }.room-topline { flex-direction: column; }.discussion-title { margin-top: 24px; }.discussion-title h2 { font-size: 18px; }.agent-grid { grid-template-columns: 1fr; }.discussion-footer { align-items: flex-start; flex-direction: column; }.discussion-actions { width: 100%; }.discussion-actions .outline-action, .discussion-actions .primary-button { flex: 1; }.live-room-top { align-items: flex-start; flex-direction: column; }.live-agent-stage { padding-top: 28px; }.live-transcript { height: 185px; }.live-bottom-tools { align-items: flex-start; flex-wrap: wrap; }.live-bottom-tools > span { width: 100%; text-align: center; }.live-behavior-panel, .live-skills-panel, .live-tip-panel { padding: 17px; }
}
@media (max-width: 760px) {
  .diagnosis-head, .diagnosis-result { grid-template-columns: 1fr; display: grid; }.diagnosis-head > span { width: fit-content; }.diagnosis-options, .scaffold-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }.diagnosis-chip { min-height: 34px; }.scaffold-card { display: grid; }.scaffold-actions { justify-content: stretch; flex-wrap: wrap; }.scaffold-actions button { flex: 1; }.personal-goal { grid-template-columns: 24px 1fr; }.goal-complete { grid-column: 2; justify-self: start; }.textbook-select { grid-template-columns: repeat(3, minmax(0, 1fr)); }.textbook-unit { min-height: 32px; }
}
