/*
 * 越秀外语微专业智评平台 · V0.4.3 visual layer
 * -------------------------------------------------
 * Load this file after styles.css. It deliberately supports both the
 * original V0.4 DOM and the v43 semantic class contract.
 * No external fonts, images, scripts, or network resources are required.
 */

:root {
  --v43-navy-950: #061b46;
  --v43-navy-900: #0b2555;
  --v43-navy-800: #17396f;
  --v43-blue-700: #075dd9;
  --v43-blue-600: #0b6bff;
  --v43-blue-500: #2f7cff;
  --v43-blue-400: #65a2ff;
  --v43-blue-100: #eaf3ff;
  --v43-blue-050: #f5f9ff;
  --v43-cyan-500: #21b7bd;
  --v43-green-600: #08a85d;
  --v43-green-500: #18bd70;
  --v43-green-100: #e8f8f0;
  --v43-orange-600: #f28a00;
  --v43-orange-500: #ff9d1a;
  --v43-orange-100: #fff2df;
  --v43-purple-600: #6b55e8;
  --v43-purple-500: #8267f2;
  --v43-purple-100: #f0edff;
  --v43-red-600: #df454c;
  --v43-red-100: #ffebed;
  --v43-ink: #14264c;
  --v43-text: #34435f;
  --v43-muted: #7c899f;
  --v43-faint: #a5afbf;
  --v43-line: #e2e9f3;
  --v43-line-strong: #d4deec;
  --v43-canvas: #f4f7fc;
  --v43-card: #ffffff;
  --v43-sidebar: 266px;
  --v43-topbar: 66px;
  --v43-radius-xl: 15px;
  --v43-radius-lg: 12px;
  --v43-radius-md: 9px;
  --v43-radius-sm: 7px;
  --v43-shadow-card: 0 4px 18px rgba(24, 58, 112, 0.065);
  --v43-shadow-float: 0 18px 52px rgba(15, 45, 96, 0.16);
  --v43-shadow-blue: 0 10px 24px rgba(11, 107, 255, 0.24);
  --v43-ease: cubic-bezier(0.2, 0.72, 0.2, 1);
  --v43-font:
    "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC",
    "Source Han Sans SC", "Segoe UI", sans-serif;

  /* Keep legacy variables aligned with the new layer. */
  --blue: var(--v43-blue-600);
  --blue2: var(--v43-blue-400);
  --navy: var(--v43-navy-900);
  --text: var(--v43-text);
  --muted: var(--v43-muted);
  --line: var(--v43-line);
  --bg: var(--v43-canvas);
  --card: var(--v43-card);
  --green: var(--v43-green-600);
  --orange: var(--v43-orange-500);
  --purple: var(--v43-purple-600);
  --red: var(--v43-red-600);
  --cyan: var(--v43-cyan-500);
  --shadow: var(--v43-shadow-card);
}

html {
  background: var(--v43-canvas);
  color-scheme: light;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--v43-font);
}

body {
  color: var(--v43-text);
  background:
    radial-gradient(circle at 78% -14%, rgba(90, 149, 255, 0.13), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0, var(--v43-canvas) 14rem);
}

button,
a,
[data-nav],
[data-action],
[data-select-major],
[data-select-job],
[data-select-exam],
[data-select-student],
[data-select-review] {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(11, 107, 255, 0.22);
  outline-offset: 2px;
}

::selection {
  color: var(--v43-navy-950);
  background: #cfe3ff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #bccbe0 transparent;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: #c2cede;
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}

/* -------------------------------------------------------------------------- */
/* Login                                                                       */
/* -------------------------------------------------------------------------- */

.login-page {
  min-height: 100%;
  grid-template-columns: minmax(520px, 1.08fr) minmax(430px, 0.92fr);
  background:
    radial-gradient(circle at 72% 12%, rgba(72, 137, 255, 0.16), transparent 26rem),
    #f7faff;
}

.login-visual {
  padding: clamp(46px, 6vw, 88px);
  background:
    linear-gradient(145deg, rgba(7, 48, 126, 0.97), rgba(12, 101, 233, 0.96)),
    var(--v43-blue-700);
}

.login-visual::before {
  opacity: 0.65;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  border: 0;
  border-radius: 0;
  transform: perspective(600px) rotateX(58deg) scale(1.5);
}

.login-card-wrap,
.login-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 5vw, 72px);
}

.login-card {
  width: min(450px, 100%);
  border: 1px solid rgba(207, 220, 239, 0.9);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(22, 60, 121, 0.16);
}

.login-title {
  margin-bottom: 26px;
}

.login-title h2 {
  margin: 0 0 8px;
  color: var(--v43-navy-950);
  font-size: 28px;
  letter-spacing: -0.02em;
}

.login-title p,
.login-note {
  color: var(--v43-muted);
  line-height: 1.7;
}

.login-card > label {
  display: block;
  margin: 15px 0 7px;
  color: #566680;
  font-size: 13px;
  font-weight: 650;
}

.login-card > .btn {
  width: 100%;
  margin-top: 24px;
}

.demo-accounts,
.role-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--v43-line);
}

.demo-accounts button,
.role-button {
  min-height: 38px;
  border: 1px solid #dbe5f3;
  border-radius: 8px;
  color: #47617f;
  background: var(--v43-blue-050);
  transition: 160ms var(--v43-ease);
}

.demo-accounts button:hover,
.role-button:hover {
  color: var(--v43-blue-700);
  border-color: #8eb7fa;
  background: #edf5ff;
  transform: translateY(-1px);
}

/* -------------------------------------------------------------------------- */
/* App shell: 266px sidebar / 66px topbar                                      */
/* -------------------------------------------------------------------------- */

.shell {
  min-width: 0;
  background: var(--v43-canvas);
}

.sidebar {
  width: var(--v43-sidebar);
  flex: 0 0 var(--v43-sidebar);
  border-right: 1px solid var(--v43-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 253, 255, 0.98)),
    #fff;
  box-shadow: 10px 0 32px rgba(27, 60, 110, 0.025);
}

.brand {
  height: var(--v43-topbar);
  padding: 0 20px;
  gap: 12px;
  border-bottom: 1px solid var(--v43-line);
}

.brand .seal {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--v43-navy-800);
  border: 2px solid currentColor;
  font-size: 15px;
  background:
    radial-gradient(circle, #fff 54%, #edf4ff 55%, #fff 72%);
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 5px currentColor;
}

.brand strong {
  overflow: hidden;
  color: var(--v43-navy-950);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
}

.nav-list {
  padding: 16px 10px;
  gap: 5px;
}

.nav-item {
  height: 49px;
  gap: 14px;
  padding: 0 16px;
  border-radius: 9px;
  color: #354b70;
  font-size: 14px;
  font-weight: 520;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.nav-item > span,
.nav-symbol {
  width: 24px;
  flex: 0 0 24px;
  color: #35547d;
  font-size: 18px;
  text-align: center;
}

.nav-item:hover {
  color: var(--v43-blue-700);
  background: #f2f7ff;
  transform: translateX(2px);
}

.nav-item:hover > span {
  color: var(--v43-blue-600);
}

.nav-item.active {
  color: var(--v43-blue-700);
  font-weight: 750;
  background: linear-gradient(90deg, #e9f2ff 0%, #eef5ff 100%);
  box-shadow: inset 0 0 0 1px rgba(168, 199, 246, 0.2);
}

.nav-item.active::before {
  left: -10px;
  top: 7px;
  bottom: 7px;
  width: 3px;
  background: var(--v43-blue-600);
  box-shadow: 0 0 12px rgba(11, 107, 255, 0.36);
}

.nav-item.active > span {
  color: var(--v43-blue-600);
}

.promo {
  min-height: 164px;
  margin: 0 15px 18px;
  padding: 17px 16px;
  overflow: hidden;
  border: 1px solid #d5e4f8;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 244, 255, 0.98));
}

.promo::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -45px;
  top: -35px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 128, 255, 0.18), transparent 68%);
}

.promo-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background:
    linear-gradient(145deg, #ffffff 10%, #dceaff 100%);
  box-shadow: 0 10px 24px rgba(33, 91, 184, 0.14);
}

.promo b {
  color: var(--v43-blue-700);
  font-size: 14px;
}

.promo p {
  color: #667895;
  font-size: 12px;
}

.workspace {
  min-width: 0;
}

.topbar {
  height: var(--v43-topbar);
  flex-basis: var(--v43-topbar);
  padding: 0 24px;
  gap: 22px;
  border-bottom: 1px solid var(--v43-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(24, 58, 112, 0.025);
  backdrop-filter: blur(14px);
}

.icon-button {
  min-width: 36px;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  color: #334d76;
  transition: 160ms ease;
}

.icon-button:hover {
  color: var(--v43-blue-700);
  background: var(--v43-blue-050);
}

.global-search {
  width: min(340px, 32vw);
  height: 39px;
  border-color: #d5dfed;
  color: #8996aa;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(24, 58, 112, 0.025);
  transition: 160ms ease;
}

.global-search:hover,
.global-search:focus-within {
  color: #536780;
  border-color: #a9c8f9;
  box-shadow: 0 0 0 3px rgba(11, 107, 255, 0.08);
}

.top-actions {
  gap: 13px;
}

.notice-count {
  right: -3px;
  top: -4px;
  border: 2px solid #fff;
  background: #ee464e;
}

.avatar {
  width: 40px;
  height: 40px;
  color: var(--v43-navy-800);
  background:
    linear-gradient(145deg, #dbe9ff, #9fc2ff);
  border: 2px solid #f6f9ff;
  box-shadow: 0 3px 10px rgba(31, 79, 153, 0.14);
}

.user-meta strong {
  color: var(--v43-navy-950);
  font-size: 14px;
}

.user-meta small {
  color: #8693a8;
  font-size: 11px;
}

/* -------------------------------------------------------------------------- */
/* Page frame, hero, notice                                                    */
/* -------------------------------------------------------------------------- */

.main {
  padding: 16px 18px 24px;
  background:
    radial-gradient(circle at 94% 0%, rgba(96, 156, 255, 0.08), transparent 24rem),
    var(--v43-canvas);
}

.page {
  width: 100%;
  max-width: 1600px;
  min-width: 0;
}

.page-dashboard,
.page-majors,
.page-jobs,
.page-assessment,
.page-profiles,
.page-recommend,
.page-review,
.page-reports,
.page-settings {
  --hero-glyph: "AI";
  --hero-accent: #4f8fff;
  min-width: 0;
}

.page-dashboard { --hero-glyph: "AI"; --hero-accent: #4e8dff; }
.page-majors { --hero-glyph: "学"; --hero-accent: #4e8dff; }
.page-jobs { --hero-glyph: "JD"; --hero-accent: #2e7cf3; }
.page-assessment { --hero-glyph: "评"; --hero-accent: #4b85ed; }
.page-profiles { --hero-glyph: "像"; --hero-accent: #5b91f8; }
.page-recommend { --hero-glyph: "岗"; --hero-accent: #3f82f1; }
.page-review { --hero-glyph: "AI"; --hero-accent: #6d71ee; }
.page-reports { --hero-glyph: "报"; --hero-accent: #3585f3; }
.page-settings { --hero-glyph: "设"; --hero-accent: #5f78e9; }

.v04-notice {
  min-height: 32px;
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-color: #eed08a;
  color: #7d5a0c;
  background:
    linear-gradient(90deg, rgba(255, 249, 231, 0.98), rgba(255, 252, 241, 0.98));
  box-shadow: 0 2px 8px rgba(139, 100, 10, 0.035);
  line-height: 1.55;
}

.card,
.hero.card,
.kpi-card.card {
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-lg);
  background: var(--v43-card);
  box-shadow: var(--v43-shadow-card);
}

.hero,
.hero.card {
  min-height: 100px;
  display: flex;
  align-items: center;
  isolation: isolate;
  margin: 0 0 12px;
  padding: 20px 28px;
  overflow: hidden;
  border: 1px solid #e0e9f6;
  border-radius: var(--v43-radius-lg);
  background:
    linear-gradient(96deg, #ffffff 0%, #f8fbff 48%, #edf5ff 100%);
  box-shadow: 0 4px 18px rgba(24, 58, 112, 0.045);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -5% -64px 42%;
  height: 128px;
  opacity: 0.48;
  background:
    linear-gradient(rgba(72, 132, 232, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 132, 232, 0.11) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: perspective(360px) rotateX(60deg) rotateZ(-3deg);
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 26%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 26%, #000);
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: min(760px, 65%);
}

.hero h1 {
  margin: 0 0 7px;
  color: var(--v43-navy-950);
  font-size: clamp(24px, 2vw, 29px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: #71819a;
  font-size: 14px;
  line-height: 1.65;
}

.hero-art {
  position: absolute;
  z-index: 2;
  width: min(410px, 34%);
  height: 100%;
  right: 18px;
  top: 0;
  pointer-events: none;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 178px;
  height: 68px;
  right: 64px;
  top: 18px;
  border: 1px solid rgba(121, 168, 244, 0.35);
  border-radius: 13px;
  background:
    linear-gradient(90deg, transparent 14px, rgba(83, 142, 239, 0.13) 15px, transparent 16px) 0 0 / 28px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(207, 226, 255, 0.5));
  box-shadow:
    0 16px 34px rgba(43, 100, 193, 0.13),
    inset 0 0 28px rgba(255, 255, 255, 0.7);
  transform: skewY(-4deg);
}

.hero-art::after {
  content: var(--hero-glyph);
  position: absolute;
  right: 17px;
  top: 22px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 15px;
  color: #fff;
  background:
    linear-gradient(145deg, #82b2ff 0%, var(--hero-accent) 55%, #236ce3 100%);
  box-shadow:
    0 14px 30px rgba(43, 101, 201, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.04em;
  transform: rotate(-4deg);
}

.hero-mark {
  position: absolute;
  z-index: 2;
  right: 42px;
  top: 17px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #89b8ff, #327df3 58%, #1b63d5);
  box-shadow: var(--v43-shadow-blue);
  font-size: 20px;
  font-weight: 850;
  transform: rotate(-3deg);
}

/* -------------------------------------------------------------------------- */
/* KPI cards                                                                   */
/* -------------------------------------------------------------------------- */

.kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 12px;
}

.kpi-card,
.kpi-card.card {
  min-width: 0;
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 21px;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-lg);
  background:
    linear-gradient(145deg, #fff 0%, #fff 72%, #fbfdff 100%);
  box-shadow: var(--v43-shadow-card);
  transition:
    transform 180ms var(--v43-ease),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.kpi-card:hover {
  border-color: #d1def0;
  box-shadow: 0 10px 28px rgba(31, 68, 126, 0.09);
  transform: translateY(-2px);
}

.kpi-card > div:last-child {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.kpi-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #7caeff, #2f78f4);
  box-shadow:
    0 10px 23px rgba(42, 91, 178, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  font-size: 23px;
  font-weight: 780;
}

.kpi-card.blue .kpi-icon,
.kpi-icon.blue {
  background: linear-gradient(145deg, #72aaff, #2f7dff 58%, #0960df);
  box-shadow: 0 10px 23px rgba(35, 107, 235, 0.23);
}

.kpi-card.green .kpi-icon,
.kpi-icon.green {
  background: linear-gradient(145deg, #4bd88d, #11b868 58%, #06974e);
  box-shadow: 0 10px 23px rgba(13, 171, 91, 0.22);
}

.kpi-card.orange .kpi-icon,
.kpi-icon.orange {
  background: linear-gradient(145deg, #ffbe4b, #ff9914 58%, #ed7900);
  box-shadow: 0 10px 23px rgba(241, 139, 5, 0.22);
}

.kpi-card.purple .kpi-icon,
.kpi-icon.purple {
  background: linear-gradient(145deg, #a591ff, #7d65f0 58%, #6249d8);
  box-shadow: 0 10px 23px rgba(103, 77, 221, 0.22);
}

.kpi-card.cyan .kpi-icon,
.kpi-icon.cyan {
  background: linear-gradient(145deg, #5dd4dc, #25b8c1 58%, #1095a1);
  box-shadow: 0 10px 23px rgba(29, 167, 178, 0.22);
}

.kpi-label,
.kpi-card small {
  display: block;
  margin: 0 0 3px;
  color: #42516b;
  font-size: 13px;
  font-style: normal;
  font-weight: 680;
  white-space: nowrap;
}

.kpi-value,
.kpi-card strong {
  display: block;
  color: var(--v43-navy-950);
  font-size: clamp(24px, 2vw, 29px);
  font-style: normal;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.kpi-sub,
.kpi-card em {
  display: block;
  margin-top: 5px;
  color: #8a96a9;
  font-size: 11px;
  font-style: normal;
  line-height: 1.25;
}

.kpi-delta {
  margin-left: 7px;
  color: var(--v43-green-600);
  font-weight: 700;
}

.kpi-delta.down {
  color: var(--v43-red-600);
}

/* -------------------------------------------------------------------------- */
/* Shared panels, controls, tables                                             */
/* -------------------------------------------------------------------------- */

.panel {
  min-width: 0;
  padding: 16px;
}

.panel-title {
  min-height: 28px;
  gap: 12px;
  margin-bottom: 13px;
}

.panel-title h3 {
  color: var(--v43-navy-950);
  font-size: 16px;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.panel-title small,
.panel-title .desc {
  color: var(--v43-muted);
}

.split-layout,
.review-layout,
.profile-grid {
  display: grid;
  grid-template-columns: minmax(360px, 39fr) minmax(0, 61fr);
  gap: 12px;
  align-items: stretch;
}

.list-panel,
.detail-panel {
  min-width: 0;
  overflow: hidden;
}

.detail-panel {
  padding: 16px;
}

.tabs {
  min-height: 48px;
  align-items: stretch;
  gap: 26px;
  padding: 0 16px;
  border-bottom: 1px solid var(--v43-line);
}

.tab {
  height: 48px;
  color: #60708a;
  font-size: 14px;
  font-weight: 560;
}

.tab:hover {
  color: var(--v43-blue-700);
}

.tab.active {
  color: var(--v43-blue-700);
  font-weight: 760;
}

.tab.active::after {
  height: 3px;
  border-radius: 4px 4px 0 0;
  background: var(--v43-blue-600);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  padding: 13px 14px;
  border-bottom: 1px solid #edf1f6;
  background: #fff;
}

.filter-item {
  min-width: 120px;
  flex: 1 1 120px;
}

.filter-item.grow {
  min-width: 180px;
  flex: 2 1 190px;
}

.filter-item label {
  display: block;
  margin: 0 0 6px;
  color: #6c7990;
  font-size: 11px;
  font-weight: 650;
}

.input,
.select,
.search-input {
  min-height: 38px;
  border: 1px solid #d7e1ee;
  border-radius: var(--v43-radius-sm);
  color: #43536d;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(23, 57, 108, 0.025);
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.input:hover,
.select:hover,
.search-input:hover {
  border-color: #b8cbe6;
}

.input:focus,
.select:focus,
.search-input:focus,
textarea:focus {
  border-color: #77a9fa;
  box-shadow: 0 0 0 3px rgba(11, 107, 255, 0.1);
}

.btn {
  min-height: 38px;
  border-color: #d4deec;
  border-radius: var(--v43-radius-sm);
  color: #40516d;
  background: #fff;
  font-size: 13px;
  font-weight: 650;
  transition:
    transform 150ms var(--v43-ease),
    color 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease;
}

.btn:hover {
  color: var(--v43-blue-700);
  border-color: #7faaf0;
  background: #f8fbff;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  border-color: var(--v43-blue-600);
  color: #fff;
  background: linear-gradient(180deg, #1778ff, #0866eb);
  box-shadow: 0 7px 17px rgba(11, 107, 255, 0.2);
}

.btn.primary:hover {
  color: #fff;
  border-color: #075cdb;
  background: linear-gradient(180deg, #2b85ff, #0866eb);
  box-shadow: 0 10px 22px rgba(11, 107, 255, 0.24);
}

.btn.success {
  border-color: var(--v43-green-600);
  color: #fff;
  background: linear-gradient(180deg, #20bd73, #0da55c);
}

.btn.warning {
  border-color: var(--v43-orange-500);
  color: #fff;
  background: linear-gradient(180deg, #ffad35, #f28a00);
}

.btn.danger {
  border-color: var(--v43-red-600);
  color: #fff;
  background: linear-gradient(180deg, #f15c63, #db4148);
}

.btn.ghost {
  color: #3067b7;
  background: #f7faff;
}

.btn.large {
  min-height: 44px;
  padding-inline: 22px;
}

.toolbar,
.toolbar-right,
.action-row,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.toolbar-right {
  justify-content: flex-end;
}

.action-row {
  padding-top: 15px;
  border-top: 1px solid #edf1f6;
}

.action-row .btn {
  min-width: 112px;
}

.table-wrap {
  min-width: 0;
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.data-table th {
  height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid var(--v43-line);
  color: #63718a;
  background: #f7f9fc;
  font-size: 11.5px;
  font-weight: 680;
}

.data-table td {
  height: 47px;
  padding: 0 12px;
  border-bottom: 1px solid #edf1f6;
  color: #485873;
  font-size: 12px;
}

.data-table b {
  color: #263a5d;
  font-weight: 700;
}

.data-table tbody tr {
  transition:
    background 140ms ease,
    box-shadow 140ms ease;
}

.data-table tbody tr:hover {
  background: #f7faff;
}

.data-table tbody tr.selected {
  background: #edf5ff;
  box-shadow:
    inset 2px 0 var(--v43-blue-600),
    inset 0 0 0 1px rgba(81, 139, 234, 0.18);
}

.pager {
  min-height: 58px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  padding: 13px;
  border-top: 1px solid #edf1f6;
  color: var(--v43-muted);
}

.page-button {
  width: 31px;
  height: 31px;
  border: 1px solid #d8e1ee;
  border-radius: 6px;
  color: #52617a;
  background: #fff;
  transition: 140ms ease;
}

.page-button:hover,
.page-button.active {
  color: var(--v43-blue-700);
  border-color: #6c9ff4;
  background: #eef5ff;
}

.page-button.active {
  box-shadow: inset 0 0 0 1px rgba(11, 107, 255, 0.15);
  font-weight: 750;
}

.badge {
  min-height: 24px;
  padding: 2px 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 660;
}

.badge.success {
  color: #07964f;
  border-color: #cceedd;
  background: var(--v43-green-100);
}

.badge.primary,
.badge.info {
  color: #1766dc;
  border-color: #d7e6ff;
  background: var(--v43-blue-100);
}

.badge.warning {
  color: #e27d00;
  border-color: #f6dfbc;
  background: var(--v43-orange-100);
}

.badge.danger {
  color: #d93d46;
  border-color: #f8d3d6;
  background: var(--v43-red-100);
}

.badge.purple {
  color: var(--v43-purple-600);
  border-color: #dfd8ff;
  background: var(--v43-purple-100);
}

.tag {
  min-height: 27px;
  padding: 4px 10px;
  border-color: #d8e7ff;
  border-radius: 7px;
  color: #1766dc;
  background: #edf5ff;
  font-size: 11px;
}

.tag.warn,
.tag.warning {
  color: #d57900;
  border-color: #f2dbb5;
  background: #fff4e3;
}

.tag.success {
  color: #078c4c;
  border-color: #ccebdc;
  background: #eaf8f1;
}

.section-title {
  color: var(--v43-navy-900);
  font-size: 14px;
  font-weight: 780;
}

.desc {
  color: #596a83;
  font-size: 12.5px;
  line-height: 1.75;
}

.detail-head {
  gap: 16px;
}

.detail-head h2 {
  color: var(--v43-navy-950);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.meta-row {
  gap: 7px;
}

.meta {
  min-height: 27px;
  height: auto;
  padding: 4px 9px;
  border: 1px solid #e2e9f3;
  border-radius: 7px;
  color: #53647f;
  background: #f7f9fc;
  font-size: 11px;
}

.inner-card {
  border-color: var(--v43-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(28, 62, 115, 0.025);
}

.progress {
  height: 7px;
  background: #e7edf6;
}

.progress > i {
  background: linear-gradient(90deg, #106dff, #4d91ff);
  box-shadow: 0 0 10px rgba(11, 107, 255, 0.18);
}

/* -------------------------------------------------------------------------- */
/* Charts and visual data components                                           */
/* -------------------------------------------------------------------------- */

.chart-shell {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--v43-line);
  border-radius: 10px;
  background: #fff;
}

.chart {
  min-width: 0;
}

.chart svg {
  overflow: visible;
}

.chart-grid {
  stroke: #e7edf6;
  stroke-width: 1;
}

.chart-axis {
  stroke: #d5dfed;
  stroke-width: 1;
}

.chart-label {
  fill: #7d899d;
  font-family: var(--v43-font);
  font-size: 10px;
}

.chart-value {
  fill: var(--v43-navy-800);
  font-family: var(--v43-font);
  font-size: 10px;
  font-weight: 700;
}

.chart-bar,
.bar {
  fill: url("#v43-blue-gradient");
}

.chart-line,
.line-green {
  fill: none;
  stroke: var(--v43-green-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.chart-point,
.point-green {
  fill: #fff;
  stroke: var(--v43-green-600);
  stroke-width: 2;
}

.bar-chart {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 2vw, 24px);
  padding: 24px 16px 30px;
  border-bottom: 1px solid #dce5f1;
  background:
    repeating-linear-gradient(
      to top,
      transparent 0,
      transparent 43px,
      #edf1f6 44px
    );
}

.bar-column {
  position: relative;
  min-width: 20px;
  height: calc(var(--value, 60) * 1%);
  flex: 1 1 0;
  border-radius: 5px 5px 1px 1px;
  background: linear-gradient(180deg, #65a1ff, #176fff);
  box-shadow: 0 7px 16px rgba(25, 104, 232, 0.14);
}

.bar-column::before {
  content: attr(data-value);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  color: #46556f;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  transform: translateX(-50%);
}

.bar-column::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  color: #718099;
  font-size: 10px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.donut-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.donut {
  --d1: 29.7%;
  --d2: 69.9%;
  --d3: 89.6%;
  position: relative;
  width: 166px;
  height: 166px;
  flex: 0 0 166px;
  border-radius: 50%;
  background:
    conic-gradient(
      var(--v43-blue-600) 0 var(--d1),
      var(--v43-cyan-500) var(--d1) var(--d2),
      var(--v43-orange-500) var(--d2) var(--d3),
      var(--v43-purple-500) var(--d3) 100%
    );
  box-shadow: inset 0 0 0 1px rgba(30, 71, 137, 0.05);
}

.donut::after {
  inset: 34px;
  border: 1px solid #edf1f6;
  background: #fff;
  box-shadow: 0 2px 12px rgba(24, 58, 112, 0.05);
}

.donut-center {
  color: var(--v43-muted);
}

.donut-center b {
  color: var(--v43-navy-950);
  font-size: 22px;
}

.legend {
  gap: 11px;
}

.legend-item {
  color: #596983;
  font-size: 11px;
}

.legend-dot {
  box-shadow: 0 0 0 3px rgba(30, 92, 193, 0.06);
}

.radar-wrap {
  min-height: 236px;
}

.radar {
  width: min(250px, 100%);
  height: auto;
  aspect-ratio: 1;
}

.radar polygon {
  fill: rgba(238, 245, 255, 0.5);
  stroke: #d4e1f3;
}

.radar polygon:nth-of-type(even) {
  fill: rgba(226, 238, 255, 0.34);
}

.radar line {
  stroke: #dce6f4;
}

.radar .shape {
  fill: rgba(11, 107, 255, 0.16);
  stroke: var(--v43-blue-600);
  stroke-width: 2;
  filter: drop-shadow(0 4px 5px rgba(11, 107, 255, 0.11));
}

.radar circle {
  fill: #fff;
  stroke: var(--v43-blue-600);
  stroke-width: 1.5;
}

.radar text {
  fill: #53647e;
  font-family: var(--v43-font);
  font-size: 10px;
}

.horizontal-bar,
.score-bar {
  color: #4a5a74;
}

.horizontal-bar .track,
.score-bar .track {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8eef7;
}

.horizontal-bar i,
.score-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #176fff, #4d91ff);
}

.mini-distribution {
  display: grid;
  grid-template-columns: max-content 1fr 42px;
  gap: 8px 12px;
  align-items: center;
  color: #68768d;
  font-size: 11px;
}

.mini-distribution .track {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #e9eef6;
}

.mini-distribution .track i {
  display: block;
  width: calc(var(--value, 0) * 1%);
  height: 100%;
  border-radius: inherit;
  background: var(--bar-color, var(--v43-blue-600));
}

.timeline,
.flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  padding: 20px 5px 4px;
}

.timeline-item,
.flow-item {
  position: relative;
  min-width: 0;
  flex: 1 1 0;
  color: #8490a3;
  font-size: 10px;
  text-align: center;
}

.timeline-item::before,
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  right: -50%;
  top: 10px;
  height: 2px;
  background: #dce6f5;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-dot,
.flow-icon {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #cbd6e6;
  box-shadow: 0 0 0 1px #d7e1ee;
}

.timeline-item.done .timeline-dot,
.timeline-item.active .timeline-dot,
.flow-item.done .flow-icon,
.flow-item.active .flow-icon {
  background: var(--v43-blue-600);
  box-shadow: 0 0 0 1px #8db8fa;
}

.timeline-item.done::before,
.flow-item.done:not(:last-child)::after {
  background: #8ab6fb;
}

.timeline-item small {
  color: #99a4b5;
  line-height: 1.55;
}

/* -------------------------------------------------------------------------- */
/* Dashboard                                                                   */
/* -------------------------------------------------------------------------- */

.dashboard-main {
  grid-template-columns: minmax(0, 1.24fr) minmax(250px, 0.72fr) minmax(270px, 0.88fr);
  gap: 12px;
}

.dashboard-bottom {
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.35fr);
  gap: 12px;
}

.dashboard-analytics {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.72fr) minmax(290px, 0.95fr);
  gap: 12px;
}

.dashboard-operations {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.45fr);
  gap: 12px;
  margin-top: 12px;
}

.todo-item,
.activity-item {
  min-height: 46px;
  border-bottom-color: #edf1f6;
  color: #52617a;
  font-size: 12px;
}

.todo-icon,
.activity-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--v43-blue-700);
  background: #eaf3ff;
}

.rank-row {
  min-height: 45px;
  color: #53617a;
  font-size: 12px;
}

.rank-no,
.job-rank {
  border-radius: 6px;
  font-weight: 750;
}

.rank-row:nth-of-type(1) .rank-no,
.job-card:nth-of-type(1) .job-rank {
  background: #ef5a55;
}

.rank-row:nth-of-type(2) .rank-no,
.job-card:nth-of-type(2) .job-rank {
  background: #f39a18;
}

.rank-row:nth-of-type(3) .rank-no,
.job-card:nth-of-type(3) .job-rank {
  background: #347cf0;
}

/* -------------------------------------------------------------------------- */
/* Majors and jobs                                                             */
/* -------------------------------------------------------------------------- */

.major-detail-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
  gap: 12px;
}

.mapping-row,
.stat-row,
.setting-row {
  min-height: 40px;
  border-bottom-color: #edf1f6;
  color: #53627a;
  font-size: 11.5px;
}

.jobs-detail-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 12px;
}

.weight-row {
  grid-template-columns: minmax(110px, 1.1fr) 54px 90px minmax(120px, 1fr);
  min-height: 40px;
  border-bottom-color: #edf1f6;
  color: #53627a;
  font-size: 11px;
}

.weight-row b {
  color: #293b5d;
}

.stars {
  color: #1c72ef;
  letter-spacing: 1.5px;
}

.prewrap {
  color: #53637d;
  background: #fbfcfe;
  line-height: 1.78;
}

/* -------------------------------------------------------------------------- */
/* Assessment                                                                  */
/* -------------------------------------------------------------------------- */

.assessment-structure {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(250px, 0.95fr);
  gap: 12px;
}

.assessment-overview {
  display: grid;
  grid-template-columns: minmax(210px, 0.86fr) minmax(290px, 1.18fr) minmax(210px, 0.96fr);
  gap: 12px;
  margin-top: 12px;
}

.assessment-tabs {
  display: flex;
  gap: 6px;
  margin: 16px 0 10px;
  padding: 4px;
  border: 1px solid var(--v43-line);
  border-radius: 9px;
  background: #f6f8fc;
}

.assessment-tabs button {
  min-height: 34px;
  flex: 0 1 140px;
  border: 0;
  border-radius: 6px;
  color: #66748b;
  background: transparent;
}

.assessment-tabs button.active {
  color: var(--v43-blue-700);
  background: #fff;
  box-shadow: 0 2px 8px rgba(28, 62, 115, 0.08);
  font-weight: 700;
}

.question-row {
  grid-template-columns: 42px 92px minmax(180px, 1fr) 68px 82px 82px;
  min-height: 50px;
  padding: 7px 0;
  border-bottom-color: #edf1f6;
  color: #52617a;
  font-size: 11.5px;
}

.question-row:hover {
  background: #fafcff;
}

.question-row .stem {
  color: #33445f;
}

.exam-list-card {
  border-color: var(--v43-line);
  border-radius: 11px;
  box-shadow: 0 2px 9px rgba(28, 62, 115, 0.035);
  transition: 160ms ease;
}

.exam-list-card:hover {
  border-color: #bcd2f1;
  box-shadow: 0 8px 22px rgba(28, 62, 115, 0.075);
  transform: translateY(-1px);
}

.exam-overlay {
  background:
    radial-gradient(circle at 80% 0%, rgba(83, 143, 242, 0.09), transparent 24rem),
    #eef3fa;
}

.exam-top {
  height: 70px;
  border-bottom-color: #d9e3f0;
  box-shadow: 0 4px 18px rgba(25, 58, 109, 0.04);
}

.exam-nav,
.exam-content {
  border-color: #dce5f1;
  box-shadow: 0 5px 18px rgba(24, 58, 112, 0.05);
}

.q-index {
  border-color: #d5dfec;
  color: #50617c;
  transition: 140ms ease;
}

.q-index:hover {
  color: var(--v43-blue-700);
  border-color: #82adf3;
}

.q-index.answered {
  color: #175fc8;
  border-color: #75a7f6;
  background: #eaf3ff;
}

.q-index.active {
  color: #fff;
  border-color: var(--v43-blue-600);
  background: var(--v43-blue-600);
  box-shadow: 0 5px 12px rgba(11, 107, 255, 0.22);
}

.answer-option {
  min-height: 52px;
  border-color: #dfe6f0;
  background: #fff;
  transition: 150ms ease;
}

.answer-option:hover {
  border-color: #91b6f2;
  background: #f8fbff;
}

.answer-option:has(input:checked) {
  border-color: var(--v43-blue-600);
  background: #edf5ff;
  box-shadow: 0 0 0 2px rgba(11, 107, 255, 0.07);
}

.exam-timer {
  border: 1px solid #ffd7da;
  color: #df444c;
  background: #fff1f2;
  font-variant-numeric: tabular-nums;
}

/* -------------------------------------------------------------------------- */
/* Profiles                                                                    */
/* -------------------------------------------------------------------------- */

.profile-grid {
  grid-template-columns: minmax(360px, 39fr) minmax(0, 61fr);
}

.profile-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.88fr);
  gap: 12px;
}

.profile-detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(220px, 0.86fr) minmax(260px, 1.12fr);
  gap: 12px;
  margin-top: 12px;
}

.profile-bars {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 16px;
}

.profile-bar {
  grid-template-columns: minmax(88px, 105px) minmax(70px, 1fr) 36px;
  gap: 9px;
  color: #52617a;
  font-size: 11.5px;
}

.profile-bar b {
  color: var(--v43-navy-800);
  font-variant-numeric: tabular-nums;
}

.profile-bar i {
  background: linear-gradient(90deg, #176fff, #5798ff);
}

.student-score {
  color: var(--v43-blue-700);
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.skill-chips {
  gap: 3px;
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.profile-metric {
  min-width: 0;
  padding: 12px 9px;
  border: 1px solid var(--v43-line);
  border-radius: 9px;
  text-align: center;
  background: #fbfdff;
}

.profile-metric b {
  display: block;
  margin-top: 5px;
  color: var(--v43-navy-950);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.profile-metric small {
  color: #7d899d;
}

.project-item,
.growth-item {
  position: relative;
  min-height: 44px;
  padding: 8px 18px;
  border-bottom: 1px solid #edf1f6;
  color: #52627b;
  font-size: 11.5px;
  line-height: 1.55;
}

.project-item::before,
.growth-item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 7px;
  height: 7px;
  border: 2px solid #dbe9ff;
  border-radius: 50%;
  background: var(--v43-blue-600);
}

/* -------------------------------------------------------------------------- */
/* Recommendations                                                             */
/* -------------------------------------------------------------------------- */

.recommend-top {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 12px;
}

.recommend-bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.recommend-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: 12px;
}

.recommend-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.job-card {
  min-height: 48px;
  border-bottom-color: #edf1f6;
  color: #52617a;
}

.job-card:hover {
  background: #fafcff;
}

.job-card b {
  color: #263a5c;
}

.job-rank {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
}

.requirement-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.requirement-table th,
.requirement-table td {
  height: 34px;
  padding: 0 10px;
  border: 1px solid #e6ebf3;
  text-align: left;
}

.requirement-table th {
  color: #65728a;
  background: #f7f9fc;
}

.requirement-table td:last-child {
  color: var(--v43-green-600);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.recommend-basis,
.recommend-gaps,
.recommend-suggestions {
  margin: 0;
  padding-left: 18px;
  color: #52617a;
  font-size: 11.5px;
  line-height: 1.85;
}

.recommend-basis li::marker,
.recommend-suggestions li::marker {
  color: var(--v43-blue-600);
}

.recommend-gaps li::marker {
  color: var(--v43-orange-500);
}

/* -------------------------------------------------------------------------- */
/* AI review                                                                   */
/* -------------------------------------------------------------------------- */

.review-layout {
  grid-template-columns: minmax(360px, 39fr) minmax(0, 61fr);
}

.review-filter {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr)) minmax(180px, 1.25fr) auto;
  gap: 10px;
  margin-bottom: 12px;
  padding: 13px;
}

.dimension-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.dimension {
  min-height: 104px;
  padding: 13px;
  border-color: var(--v43-line);
  border-radius: 10px;
  background: #fff;
}

.dimension b {
  color: var(--v43-navy-950);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

.dimension small {
  color: #8490a3;
}

.rubric-line {
  grid-template-columns: minmax(110px, 140px) 72px minmax(0, 1fr);
  min-height: 40px;
  border-bottom-color: #edf1f6;
  color: #53627b;
  font-size: 11.5px;
}

.rubric-line b {
  color: #2d3e5e;
}

.evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.evidence-grid .inner-card {
  min-height: 132px;
}

.evidence-grid ul {
  color: #53627b;
  font-size: 11px;
  line-height: 1.85;
}

.review-score-card {
  display: grid;
  place-items: center;
  min-width: 128px;
  min-height: 142px;
  border: 1px solid var(--v43-line);
  border-radius: 10px;
  background: linear-gradient(145deg, #fff, #f8fbff);
  text-align: center;
}

.review-score-card strong {
  color: var(--v43-navy-950);
  font-size: 36px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

/* -------------------------------------------------------------------------- */
/* Reports                                                                     */
/* -------------------------------------------------------------------------- */

.reports-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.78fr) minmax(280px, 0.95fr);
  gap: 12px;
}

.reports-bottom {
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 12px;
  margin-top: 12px;
}

.report-item {
  grid-template-columns: 30px minmax(150px, 1fr) 132px 66px 54px;
  min-height: 42px;
  border-bottom-color: #edf1f6;
  color: #52617a;
  font-size: 11px;
}

.report-item:hover {
  background: #fafcff;
}

.report-file-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--v43-blue-700);
  background: #eaf3ff;
}

.reports-actions {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) repeat(2, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.reports-actions .btn {
  min-height: 48px;
}

/* -------------------------------------------------------------------------- */
/* Settings                                                                    */
/* -------------------------------------------------------------------------- */

.settings-layout {
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 12px;
}

.settings-nav {
  padding: 9px;
}

.settings-nav button {
  min-height: 48px;
  border-radius: 8px;
  color: #52617a;
  font-size: 12px;
  transition: 140ms ease;
}

.settings-nav button:hover {
  color: var(--v43-blue-700);
  background: #f3f7fd;
}

.settings-nav button.active {
  color: var(--v43-blue-700);
  background: #eaf3ff;
  box-shadow: inset 2px 0 var(--v43-blue-600);
  font-weight: 730;
}

.settings-top {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.18fr);
  gap: 12px;
}

.settings-mid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.12fr);
  gap: 12px;
}

.settings-bottom {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 12px;
}

.settings-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.setting-row {
  grid-template-columns: minmax(96px, 120px) minmax(0, 1fr) auto;
  gap: 10px;
}

.role-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.role-card {
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 9px;
}

.role-card.blue { border-color: #d7e6ff; }
.role-card.green { border-color: #d2eedf; }
.role-card.orange { border-color: #f5e0bf; }
.role-card.purple { border-color: #e0d9ff; }

.switch {
  width: 40px;
  height: 23px;
  box-shadow: inset 0 1px 2px rgba(14, 39, 80, 0.12);
}

.switch.on {
  background: linear-gradient(90deg, #2478f6, #0b6bff);
}

/* -------------------------------------------------------------------------- */
/* Notifications, modal, toast                                                 */
/* -------------------------------------------------------------------------- */

.notification-panel {
  top: calc(var(--v43-topbar) - 3px);
  right: 14px;
  width: min(372px, calc(100vw - 28px));
  border-color: var(--v43-line);
  border-radius: 12px;
  box-shadow: var(--v43-shadow-float);
}

.notification-head {
  min-height: 52px;
  align-items: center;
}

.notification-item {
  padding: 14px 16px;
  transition: 140ms ease;
}

.notification-item:hover {
  background: #f8fbff;
}

.modal-overlay {
  background: rgba(12, 29, 61, 0.42);
  backdrop-filter: blur(3px);
}

.modal {
  border: 1px solid rgba(217, 227, 240, 0.9);
  border-radius: 15px;
  box-shadow: 0 28px 78px rgba(12, 34, 75, 0.28);
  animation: v43-modal-in 220ms var(--v43-ease) both;
}

.modal-head {
  border-bottom-color: var(--v43-line);
}

.modal-head h3 {
  color: var(--v43-navy-950);
  font-size: 17px;
}

.modal-footer {
  border-top-color: var(--v43-line);
  background: #fbfcfe;
}

.toast {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 31, 68, 0.94);
  box-shadow: 0 16px 42px rgba(7, 24, 57, 0.28);
  backdrop-filter: blur(10px);
}

/* -------------------------------------------------------------------------- */
/* Empty, loading, error, skeleton                                             */
/* -------------------------------------------------------------------------- */

.empty-state {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 34px;
  color: #8793a7;
  font-size: 12px;
  line-height: 1.7;
}

.empty-state::before {
  content: "—";
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #dce7f5;
  border-radius: 15px;
  color: #7ca5e6;
  background: linear-gradient(145deg, #fff, #edf5ff);
  box-shadow: 0 8px 18px rgba(34, 85, 164, 0.08);
  font-size: 23px;
}

.empty-state.compact {
  min-height: 100px;
  padding: 20px;
}

.error-state {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: #a54b50;
  background: #fffafb;
}

.error-state::before {
  content: "!";
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #f5d4d6;
  border-radius: 50%;
  color: #d6484f;
  background: #fff0f1;
  font-size: 22px;
  font-weight: 800;
}

.loading-layer {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
}

.spinner {
  border-color: #dce8fa;
  border-top-color: var(--v43-blue-600);
  box-shadow: 0 5px 14px rgba(11, 107, 255, 0.12);
}

.skeleton {
  position: relative;
  overflow: hidden;
  color: transparent !important;
  border-color: transparent !important;
  background: #edf2f8 !important;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.76) 46%,
    transparent 72%
  );
  transform: translateX(-100%);
  animation: v43-shimmer 1.25s infinite;
}

/* -------------------------------------------------------------------------- */
/* Motion                                                                      */
/* -------------------------------------------------------------------------- */

.hero,
.kpi-grid,
.split-layout,
.dashboard-main,
.dashboard-analytics,
.review-layout,
.settings-layout {
  animation: v43-rise 360ms var(--v43-ease) both;
}

.kpi-grid {
  animation-delay: 35ms;
}

.split-layout,
.dashboard-main,
.dashboard-analytics,
.review-layout,
.settings-layout {
  animation-delay: 70ms;
}

@keyframes v43-rise {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes v43-modal-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes v43-shimmer {
  to {
    transform: translateX(100%);
  }
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                  */
/* -------------------------------------------------------------------------- */

@media (max-width: 1420px) {
  :root {
    --v43-sidebar: 238px;
  }

  .brand strong {
    font-size: 17px;
  }

  .main {
    padding-inline: 12px;
  }

  .kpi-card {
    gap: 14px;
    padding-inline: 16px;
  }

  .kpi-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .dashboard-main,
  .dashboard-analytics {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  }

  .dashboard-main > :last-child,
  .dashboard-analytics > :last-child {
    grid-column: 1 / -1;
  }

  .assessment-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assessment-overview > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) {
  :root {
    --v43-sidebar: 220px;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .review-layout,
  .profile-grid {
    grid-template-columns: minmax(330px, 42fr) minmax(0, 58fr);
  }

  .recommend-bottom,
  .recommend-detail-grid,
  .profile-detail-grid,
  .reports-grid,
  .reports-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommend-bottom > :last-child,
  .recommend-detail-grid > :last-child,
  .profile-detail-grid > :last-child,
  .reports-grid > :last-child,
  .reports-bottom > :last-child {
    grid-column: 1 / -1;
  }

  .dimension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-grid > :last-child {
    grid-column: 1 / -1;
  }

  .review-filter {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }
}

@media (max-width: 960px) {
  :root {
    --v43-sidebar: 82px;
  }

  .brand {
    justify-content: center;
    padding-inline: 8px;
  }

  .brand strong,
  .promo,
  .user-meta {
    display: none;
  }

  .nav-list {
    padding-inline: 9px;
  }

  .nav-item {
    justify-content: center;
    padding-inline: 0;
    font-size: 0;
  }

  .nav-item > span,
  .nav-symbol {
    width: 28px;
    flex-basis: 28px;
    font-size: 19px;
  }

  .nav-item.active::before {
    left: -9px;
  }

  .global-search {
    width: min(310px, 42vw);
  }

  .hero-copy {
    max-width: 72%;
  }

  .hero-art {
    width: 32%;
    right: 8px;
    opacity: 0.78;
  }

  .split-layout,
  .review-layout,
  .profile-grid,
  .recommend-top,
  .profile-summary,
  .recommend-overview,
  .settings-layout,
  .settings-top,
  .settings-mid,
  .settings-bottom,
  .dashboard-bottom,
  .dashboard-operations {
    grid-template-columns: minmax(0, 1fr);
  }

  .settings-nav {
    display: flex;
    overflow-x: auto;
  }

  .settings-nav button {
    min-width: 128px;
    text-align: center;
  }

  .settings-nav button.active {
    box-shadow: inset 0 -2px var(--v43-blue-600);
  }

  .assessment-structure,
  .assessment-overview,
  .dashboard-main,
  .dashboard-analytics {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-main > :last-child,
  .dashboard-analytics > :last-child,
  .assessment-overview > :last-child {
    grid-column: auto;
  }

  .list-panel {
    max-height: none;
  }

  .exam-body {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }
}

@media (max-width: 700px) {
  :root {
    --v43-sidebar: 68px;
  }

  .topbar {
    padding-inline: 10px;
    gap: 8px;
  }

  .global-search {
    display: none;
  }

  .main {
    padding: 10px 8px 20px;
  }

  .hero,
  .hero.card {
    min-height: 104px;
    padding: 18px;
  }

  .hero h1 {
    font-size: 23px;
  }

  .hero p {
    font-size: 12px;
  }

  .hero-copy {
    max-width: calc(100% - 76px);
  }

  .hero-art {
    display: none;
  }

  .hero-mark {
    right: 16px;
    top: 20px;
    width: 54px;
    height: 54px;
  }

  .kpi-grid,
  .recommend-bottom,
  .recommend-detail-grid,
  .profile-detail-grid,
  .reports-grid,
  .reports-bottom,
  .reports-actions,
  .dimension-grid,
  .evidence-grid,
  .profile-metrics,
  .role-cards,
  .settings-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .recommend-bottom > :last-child,
  .recommend-detail-grid > :last-child,
  .profile-detail-grid > :last-child,
  .reports-grid > :last-child,
  .reports-bottom > :last-child,
  .evidence-grid > :last-child {
    grid-column: auto;
  }

  .kpi-card {
    min-height: 88px;
  }

  .kpi-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .profile-bars {
    grid-template-columns: minmax(0, 1fr);
  }

  .review-filter {
    grid-template-columns: minmax(0, 1fr);
  }

  .toolbar-right,
  .action-row {
    justify-content: stretch;
  }

  .toolbar-right .btn,
  .action-row .btn {
    flex: 1 1 130px;
  }

  .question-row {
    grid-template-columns: 34px 72px minmax(150px, 1fr) 58px 70px;
  }

  .question-row > :last-child {
    display: none;
  }

  .exam-body {
    display: block;
    overflow: auto;
  }

  .exam-nav {
    margin-bottom: 10px;
    overflow: visible;
  }

  .question-grid {
    grid-template-columns: repeat(8, minmax(34px, 1fr));
  }

  .exam-content {
    padding: 18px;
  }

  .exam-foot {
    flex-wrap: wrap;
    gap: 10px;
  }

  .save-state {
    width: 100%;
    order: -1;
    text-align: center;
  }

  .donut-wrap {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root {
    --v43-canvas: #fff;
  }

  body {
    overflow: visible;
    background: #fff;
  }

  .sidebar,
  .topbar,
  .v04-notice,
  .action-row,
  .toolbar,
  .filter-row,
  .tabs,
  .pager,
  .toast,
  .notification-panel {
    display: none !important;
  }

  .main {
    overflow: visible;
    padding: 0;
    background: #fff;
  }

  .card,
  .hero,
  .kpi-card {
    break-inside: avoid;
    box-shadow: none !important;
  }

  .page {
    max-width: none;
  }
}

/* -------------------------------------------------------------------------- */
/* V0.4.3 page-module integration                                              */
/* -------------------------------------------------------------------------- */

.brand > div:last-child {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  display: block;
  white-space: nowrap;
}

.brand small {
  overflow: hidden;
  color: #8793a6;
  font-size: 10.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav-item {
  width: 100%;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 16px;
  align-items: center;
}

.nav-item > span,
.nav-item .nav-symbol,
.nav-item .nav-label,
.nav-item .nav-arrow {
  width: auto;
  min-width: 0;
  flex: initial;
}

.nav-item .nav-symbol {
  display: grid;
  place-items: center;
  color: #35547d;
}

.nav-item .nav-label {
  overflow: hidden;
  color: inherit;
  font-size: 13.5px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav-item .nav-arrow {
  display: grid;
  place-items: center;
  color: #9aa8ba;
}

.promo-art {
  position: relative;
  width: 58px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 13px;
  color: #176ef3;
  background: linear-gradient(145deg, #fff, #dfeeff);
  box-shadow: 0 8px 18px rgba(31, 102, 208, 0.12);
}

.promo-art i,
.promo-art b {
  position: absolute;
  border-radius: 50%;
  background: #7caeff;
}

.promo-art i {
  width: 8px;
  height: 8px;
  right: -17px;
  top: 7px;
}

.promo-art b {
  width: 5px;
  height: 5px;
  right: -6px;
  bottom: 4px;
}

.promo > strong {
  display: block;
  color: #203658;
  font-size: 14px;
}

.promo > button {
  position: absolute;
  right: 16px;
  bottom: 15px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #176ef3;
  background: #e2edff;
}

.hero-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #526b91;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.kpi-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.title-with-badge {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.title-with-badge h2,
.title-with-badge h3 {
  margin: 0;
}

.icon-button.soft,
.soft-select {
  border-color: #dce6f2;
  color: #60708a;
  background: #f7faff;
}

.soft-select {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #dce6f2;
  border-radius: 6px;
  font-size: 10.5px;
}

.text-button {
  padding: 4px 0;
  border: 0;
  color: #246bda;
  background: transparent;
  font-size: 11px;
}

.text-button:hover {
  color: #074eaf;
}

.compact-card {
  padding: 12px;
}

.detail-stack {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.detail-section {
  margin-top: 12px;
}

.sticky-actions {
  position: sticky;
  z-index: 4;
  bottom: -15px;
  margin: 14px -15px -15px;
  padding: 12px 15px;
  border-top: 1px solid #e7edf5;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.v43-filter-row {
  align-items: end;
}

.list-panel .v43-filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 12px;
  border-bottom: 1px solid #e8edf5;
  background: #fbfcfe;
}

.filter-item {
  min-width: 0;
}

.filter-item > span {
  display: block;
  margin-bottom: 5px;
  color: #77849a;
  font-size: 10px;
}

.filter-item.grow {
  grid-column: 1 / -1;
}

.search-control {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid #dbe3ef;
  border-radius: 6px;
  color: #8a97aa;
  background: #fff;
}

.search-control:focus-within {
  border-color: #80aef5;
  box-shadow: 0 0 0 3px rgba(36, 107, 254, 0.08);
}

.search-control .search-input {
  width: 100%;
  height: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.filter-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.page-review > .v43-filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr)) minmax(190px, 1.25fr) auto;
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #dfe6f0;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(23, 59, 114, 0.04);
}

.page-review > .v43-filter-row .filter-item.grow {
  grid-column: auto;
}

.page-review > .v43-filter-row .filter-actions {
  grid-column: auto;
}

.v43-pager {
  justify-content: flex-end;
  padding-inline: 12px;
}

.col-index {
  width: 46px;
}

.list-footer {
  padding: 11px 12px;
  border-top: 1px solid #e8edf5;
}

.chart-large {
  min-height: 190px;
}

.chart-large > svg {
  display: block;
}

.chart-summary {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 4px;
  color: #78859a;
  font-size: 10.5px;
}

.chart-summary span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chart-summary b {
  margin-left: auto;
  color: #53627b;
  font-weight: 600;
}

.rank-row > span:nth-child(2),
.job-card > span:nth-child(2) {
  min-width: 0;
}

.rank-row small,
.job-card small {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #8b97aa;
  font-size: 9.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.donut-layout {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.donut-layout.mini {
  min-height: 145px;
  gap: 10px;
}

.donut-chart {
  flex: 0 0 auto;
}

.donut-chart svg {
  display: block;
  max-width: 100%;
}

.legend {
  min-width: 104px;
}

.legend-item {
  justify-content: space-between;
}

.legend-item span {
  flex: 1;
}

.legend-dot.blue,
.legend-dot.tone-1 { background: #2d73ef; }
.legend-dot.green,
.legend-dot.tone-2 { background: #2faf84; }
.legend-dot.tone-3 { background: #f19a24; }
.legend-dot.tone-4 { background: #7869e8; }

.todo-item {
  width: 100%;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) 30px 16px;
  gap: 8px;
  align-items: center;
  padding: 6px 2px;
  border: 0;
  border-bottom: 1px solid #edf1f6;
  color: #52617a;
  background: transparent;
  text-align: left;
}

.todo-item > span:nth-child(2) {
  min-width: 0;
}

.todo-item small,
.activity-item small {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #8b97aa;
  font-size: 9.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.todo-item > strong {
  color: #e05258;
  text-align: center;
}

.todo-icon.blue { color: #246bfe; background: #eaf3ff; }
.todo-icon.orange { color: #e58b13; background: #fff3e0; }
.todo-icon.purple { color: #6d5ddd; background: #f0edff; }

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #77849a;
  font-size: 10px;
}

.live-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20b678;
  box-shadow: 0 0 0 4px rgba(32, 182, 120, 0.1);
}

.course-map-item,
.project-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 7px 0;
  border-bottom: 1px solid #edf1f6;
}

.course-map-icon,
.project-icon,
.report-icon,
.exam-card-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #246bda;
  background: #eaf3ff;
}

.course-map-item small,
.project-item small {
  display: block;
  margin-top: 2px;
  color: #8a96a9;
  font-size: 10px;
}

.weight-table {
  margin-top: 9px;
}

.weight-head {
  display: grid;
  grid-template-columns: minmax(110px, 1.1fr) 54px 90px minmax(120px, 1fr);
  gap: 7px;
  min-height: 32px;
  align-items: center;
  padding: 0 7px;
  color: #77849a;
  background: #f7f9fc;
  font-size: 10px;
}

.weight-table .weight-row {
  padding-inline: 7px;
}

.weight-row small {
  display: block;
  margin-top: 4px;
  color: #8b97aa;
}

.jd-details,
.answer-details {
  margin-top: 9px;
  border-top: 1px solid #edf1f6;
}

.jd-details summary,
.answer-details summary {
  padding: 9px 0;
  color: #246bda;
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
}

.jd-details .prewrap {
  max-height: 185px;
  overflow: auto;
  padding: 10px;
  border-radius: 7px;
}

.summary-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 9px;
}

.summary-numbers.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.summary-numbers > div {
  min-width: 0;
  padding: 11px 6px;
  border: 1px solid #e6ebf3;
  border-radius: 8px;
  background: #fbfdff;
  text-align: center;
}

.summary-numbers strong {
  display: block;
  color: #172b50;
  font-size: 20px;
}

.summary-numbers span {
  display: block;
  margin-top: 3px;
  color: #8a96a9;
  font-size: 9.5px;
}

.question-manager {
  margin-top: 11px;
}

.question-list {
  overflow: auto;
}

.student-exam-panel {
  margin-top: 12px;
}

.student-exam-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.student-exam-list .exam-list-card {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  margin: 0;
}

.exam-card-action {
  display: flex;
  align-items: center;
}

.result-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 8px;
}

.result-inline strong {
  color: #176eea;
  font-size: 25px;
}

.ai-task-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  padding: 10px 12px;
  border: 1px solid #dbe7fa;
  border-radius: 9px;
  background: #f5f9ff;
  color: #31527f;
  font-size: 12px;
}

.ai-task-inline small { color: #8390a4; }
.ai-task-inline .btn { margin-left: auto; }
.ai-task-inline.succeeded { border-color: #cdebdc; background: #f1fbf6; color: #137847; }
.ai-task-inline.failed { border-color: #f4d1d1; background: #fff5f5; color: #b53a3a; }

.profile-grid.single,
.recommend-layout.single {
  display: block;
}

.profile-overview-grid,
.recommend-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 11px;
  margin-top: 12px;
}

.radar-card {
  min-width: 0;
}

.radar-card .radar-wrap {
  min-height: 230px;
}

.fit-score {
  min-width: 105px;
  text-align: right;
}

.fit-score strong {
  display: block;
  color: #176eea;
  font-size: 30px;
  line-height: 1;
}

.fit-score span {
  display: block;
  margin-top: 5px;
  color: #8793a6;
  font-size: 9.5px;
}

.fit-text {
  color: #169a67;
}

.evidence-pairs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 11px;
}

.evidence-pairs > div {
  padding: 9px;
  border-radius: 8px;
  background: #f8faff;
}

.recommend-layout {
  display: grid;
  grid-template-columns: minmax(360px, 39fr) minmax(0, 61fr);
  gap: 12px;
}

.recommend-rank {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto 15px;
  gap: 8px;
  align-items: center;
  padding: 5px 7px;
  border: 0;
  border-bottom: 1px solid #edf1f6;
  color: #52617a;
  background: transparent;
  text-align: left;
}

.recommend-rank.active {
  border-radius: 8px;
  background: #f1f6ff;
}

.recommend-rank small {
  display: block;
  color: #8a96a9;
  font-size: 9.5px;
}

.recommend-rank > strong {
  color: #179a67;
}

.recommend-evidence-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(190px, 0.9fr) minmax(260px, 1.2fr);
  gap: 11px;
  margin-top: 11px;
}

.evidence-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  display: flex;
  gap: 7px;
  margin: 7px 0;
  color: #53627b;
  font-size: 11px;
  line-height: 1.55;
}

.evidence-list.success svg { color: #1ca674; }
.evidence-list.warning svg { color: #e99a22; }

.skill-compare-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(150px, 1.1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid #edf1f6;
}

.skill-compare-row small {
  display: block;
  margin-top: 3px;
  color: #8995a8;
  font-size: 9.5px;
}

.skill-compare-row > div {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 6px;
  align-items: center;
}

.muted-text {
  color: #939eb0;
  font-size: 10px;
}

.review-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(155px, 0.78fr)) minmax(290px, 1.55fr);
  gap: 12px;
  margin-bottom: 12px;
}

.confidence-card {
  padding: 13px 16px;
}

.confidence-bars > div {
  display: grid;
  grid-template-columns: 70px minmax(80px, 1fr) 26px;
  gap: 8px;
  align-items: center;
  margin: 7px 0;
  color: #69778d;
  font-size: 9.5px;
}

.confidence-bars .track {
  height: 6px;
  overflow: hidden;
  border-radius: 6px;
  background: #e9eef5;
}

.confidence-bars i {
  display: block;
  height: 100%;
  border-radius: 6px;
}

.confidence-bars i.tone-1 { background: #2daf7e; }
.confidence-bars i.tone-2 { background: #f1a028; }
.confidence-bars i.tone-3 { background: #ed6567; }

.review-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 11px;
  align-items: start;
}

.ai-score-card {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 10px;
  border: 1px solid #dce7f5;
  border-radius: 10px;
  background: linear-gradient(145deg, #fff, #f4f8ff);
  text-align: center;
}

.ai-score-card span,
.ai-score-card small {
  color: #8490a3;
  font-size: 9.5px;
}

.ai-score-card strong {
  color: #176eea;
  font-size: 33px;
  line-height: 1;
}

.ai-score-card em {
  color: #1aa070;
  font-size: 9.5px;
  font-style: normal;
}

.answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.dimension-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin: 0 auto 7px;
  border-radius: 8px;
  color: #176eea;
  background: #eaf3ff;
}

.dimension b em {
  color: #8a96a9;
  font-size: 11px;
  font-style: normal;
}

.dimension p {
  margin: 7px 0 0;
  color: #8490a3;
  font-size: 9px;
  line-height: 1.45;
}

.v43-bar-list {
  margin-top: 6px;
}

.v43-bar-row {
  display: grid;
  grid-template-columns: minmax(90px, 120px) minmax(70px, 1fr) 34px;
  gap: 8px;
  align-items: center;
  margin: 11px 0;
  color: #58677e;
  font-size: 10px;
}

.v43-bar-track {
  height: 7px;
  overflow: hidden;
  border-radius: 7px;
  background: #e9eef5;
}

.v43-bar-track i {
  display: block;
  height: 100%;
  border-radius: 7px;
  background: linear-gradient(90deg, #2c75ef, #72a9ff);
}

.report-list {
  overflow: auto;
}

.report-icon {
  width: 26px;
  height: 26px;
}

.settings-content {
  min-width: 0;
}

.settings-nav button {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr) 14px;
  gap: 7px;
  align-items: center;
  text-align: left;
}

.settings-nav button > span {
  white-space: nowrap;
}

.role-cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.permission-table {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #e5ebf3;
  border-radius: 8px;
}

.permission-table > div {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) repeat(3, 72px);
  align-items: center;
  min-height: 37px;
  padding: 0 10px;
  border-bottom: 1px solid #edf1f6;
  color: #66748a;
  font-size: 10.5px;
  text-align: center;
}

.permission-table > div:first-child {
  background: #f7f9fc;
  font-weight: 700;
}

.permission-table > div:last-child {
  border-bottom: 0;
}

.permission-table b {
  text-align: left;
}

.switch-row {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 42px;
}

.switch-row > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-row > span:first-child small {
  display: block;
  margin-top: 3px;
}

.ai-model-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #176eea;
  background: #eaf3ff;
}

.notice-preview,
.backup-status {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-height: 94px;
  margin: 10px 0 14px;
  padding: 13px;
  border: 1px solid #e0e8f3;
  border-radius: 10px;
  background: #f8fbff;
}

.notice-preview > span:first-child,
.backup-status > span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #176eea;
  background: #e7f1ff;
}

.notice-preview p,
.backup-status p {
  margin: 5px 0 0;
  color: #7f8b9f;
  font-size: 10.5px;
}

.security-list > div,
.log-card {
  width: 100%;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 52px;
  padding: 8px 4px;
  border: 0;
  border-bottom: 1px solid #edf1f6;
  color: #52617a;
  background: transparent;
  text-align: left;
}

.security-list small,
.log-card small {
  display: block;
  margin-top: 3px;
  color: #8793a6;
  font-size: 9.5px;
}

.settings-actions {
  margin-inline: 0;
}

.settings-safe-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: #7b879a;
  font-size: 10px;
}

.v43-empty::before {
  display: none;
}

.v43-empty b,
.v43-empty span {
  display: block;
}

.fallback-chart {
  min-height: 180px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 8px;
  padding: 18px 12px 25px;
  border-bottom: 1px solid #e9eef5;
}

.fallback-column {
  height: 150px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 5px;
}

.fallback-column i {
  width: min(26px, 60%);
  min-height: 2px;
  border-radius: 4px 4px 0 0;
  background: #397cf5;
}

.fallback-column span {
  color: #7d899c;
  font-size: 9px;
}

@media (max-width: 1320px) {
  .review-kpi-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }

  .confidence-card {
    grid-column: 1 / -1;
  }

  .recommend-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommend-evidence-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .page-review > .v43-filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-review > .v43-filter-row .filter-actions {
    grid-column: 1 / -1;
  }

  .profile-overview-grid,
  .recommend-overview,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .summary-numbers.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Functional compact navigation state. */
.shell.sidebar-collapsed .sidebar {
  width: 76px;
  flex-basis: 76px;
}

.shell.sidebar-collapsed .brand {
  justify-content: center;
  padding-inline: 8px;
}

.shell.sidebar-collapsed .brand > div:last-child,
.shell.sidebar-collapsed .nav-label,
.shell.sidebar-collapsed .nav-arrow,
.shell.sidebar-collapsed .promo > strong,
.shell.sidebar-collapsed .promo > p,
.shell.sidebar-collapsed .promo-art i,
.shell.sidebar-collapsed .promo-art b {
  display: none;
}

.shell.sidebar-collapsed .nav-list {
  padding-inline: 8px;
}

.shell.sidebar-collapsed .nav-item {
  grid-template-columns: 1fr;
  justify-items: center;
  padding-inline: 0;
}

.shell.sidebar-collapsed .nav-item .nav-symbol {
  width: 24px;
}

.shell.sidebar-collapsed .promo {
  min-height: 104px;
  margin-inline: 8px;
  padding: 14px 8px;
}

.shell.sidebar-collapsed .promo-art {
  margin-inline: auto;
}

.shell.sidebar-collapsed .promo > button {
  right: 50%;
  bottom: 10px;
  transform: translateX(50%);
}

.detail-head > .icon-button.soft:not(button) {
  cursor: default;
}

/* Public identity and classroom foundation · V0.5 */
.public-entry {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, .84fr);
  background: #f4f0e7;
  color: #16243a;
}

.passport-stage {
  min-height: 100vh;
  padding: clamp(32px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: #f8f4e8;
  background:
    linear-gradient(115deg, rgba(8, 26, 44, .98), rgba(12, 45, 58, .95)),
    #0b2233;
}

.passport-stage::before {
  content: "";
  position: absolute;
  width: 52vw;
  aspect-ratio: 1;
  right: -22vw;
  top: -14vw;
  border: 1px solid rgba(241, 184, 79, .34);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(255,255,255,.018), 0 0 0 14vw rgba(255,255,255,.014);
}

.passport-stage::after {
  content: "职业成长 / LEARNING EVIDENCE / CAREER FIT";
  position: absolute;
  left: 0;
  bottom: 18%;
  width: 100%;
  padding-block: 11px;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.16);
  font: 700 clamp(12px, 1.1vw, 18px)/1 var(--v43-font);
  letter-spacing: .35em;
  white-space: nowrap;
  transform: rotate(-5deg) scale(1.08);
}

.public-brand,
.passport-copy,
.passport-route,
.passport-stage footer { position: relative; z-index: 1; }

.public-brand { display: flex; align-items: center; gap: 14px; }
.public-brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.public-brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.public-brand-mark span { font-size: 20px; font-weight: 800; color: #f2b84b; }
.public-brand strong { display: block; max-width: 35vw; font-size: 18px; letter-spacing: .02em; }
.public-brand small { display: block; max-width: 35vw; margin-top: 4px; color: rgba(255,255,255,.62); }

.passport-copy { margin-block: auto; max-width: 760px; padding-block: 56px; }
.eyebrow { display: block; color: #dca941; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.passport-copy h1 { margin: 20px 0 24px; font-size: clamp(44px, 5vw, 78px); line-height: 1.08; letter-spacing: -.055em; }
.passport-copy h1 em { color: #efb548; font-style: normal; }
.passport-copy > p { max-width: 600px; margin: 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.9; }

.passport-route { display: flex; align-items: center; max-width: 620px; margin-bottom: clamp(54px, 9vh, 100px); }
.passport-route > div { min-width: 96px; }
.passport-route b { display: block; color: #efb548; font-size: 13px; }
.passport-route span { display: block; margin-top: 7px; font-size: 14px; }
.passport-route i { flex: 1; height: 1px; margin: 0 18px; background: linear-gradient(90deg, rgba(239,181,72,.85), rgba(255,255,255,.18)); }
.passport-stage footer { display: flex; flex-wrap: wrap; gap: 12px 26px; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .08em; }

.auth-desk {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px clamp(28px, 5vw, 74px);
  background:
    linear-gradient(90deg, rgba(17, 35, 45, .045) 1px, transparent 1px) 0 0/34px 34px,
    linear-gradient(rgba(17, 35, 45, .045) 1px, transparent 1px) 0 0/34px 34px,
    #f7f3ea;
}
.auth-card { width: min(470px, 100%); }
.public-auth-form { padding: 38px 40px; border-top: 4px solid var(--brand-accent); background: #fffdf8; box-shadow: 0 28px 80px rgba(16, 36, 46, .14); }
.auth-heading { margin-bottom: 25px; }
.auth-heading > span { color: var(--brand-accent); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.auth-heading h2 { margin: 9px 0 8px; color: #14283a; font-size: 27px; line-height: 1.25; }
.auth-heading p { margin: 0; color: #74808c; font-size: 13px; line-height: 1.7; }
.public-auth-form > label { display: block; margin: 15px 0 7px; color: #415263; font-size: 12px; font-weight: 700; }
.public-auth-form .input { height: 46px; border-radius: 3px; background: #fff; }
.public-auth-form .input:focus { border-color: var(--brand-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-accent) 14%, transparent); }
.auth-primary { width: 100%; margin-top: 24px; border-radius: 3px; background: var(--brand-accent) !important; border-color: var(--brand-accent) !important; }
.field-hint { display: block; margin-top: 6px; color: #8a949d; font-size: 10px; }
.auth-links { display: flex; justify-content: space-between; gap: 18px; margin-top: 18px; }
.auth-links button { padding: 0; border: 0; background: none; color: #466273; font-size: 12px; cursor: pointer; }
.auth-links button:hover { color: var(--brand-accent); }
.demo-accounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 25px; padding-top: 18px; border-top: 1px solid #e4e0d8; }
.demo-accounts span { grid-column: 1 / -1; color: #89929b; font-size: 10px; }
.demo-accounts button { min-height: 32px; border: 1px solid #ddd8cd; background: #f8f5ee; color: #586875; font-size: 11px; cursor: pointer; }
.auth-privacy { margin: 15px 14px 0; color: #7e898e; font-size: 10px; line-height: 1.6; text-align: center; }
.auth-status { margin-bottom: 12px; padding: 13px 16px; border-left: 4px solid #4b6f7b; background: #edf3f2; }
.auth-status.success { border-color: #148657; background: #eaf7f0; }
.auth-status.error { border-color: #c94a45; background: #fff0ee; }
.auth-status b { display: block; color: #243944; font-size: 13px; }
.auth-status p { margin: 4px 0 0; color: #667780; font-size: 11px; line-height: 1.55; }
.turnstile-mount { min-height: 66px; margin-top: 18px; }
.auth-result { min-height: 260px; display: grid; align-content: center; text-align: center; }
.auth-loader { width: 36px; height: 36px; margin: 0 auto 18px; border: 3px solid #dce5df; border-top-color: var(--brand-accent); border-radius: 50%; animation: spin .8s linear infinite; }

.brand-logo { overflow: hidden; background: #fff; }
.brand-logo img, .avatar img { width: 100%; height: 100%; object-fit: cover; }
.brand-logo span { font-weight: 800; }
.avatar { overflow: hidden; }

.account-page { color: #28384c; }
.account-hero {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  padding: 28px 34px;
  border: 1px solid #d8e1e8;
  background: linear-gradient(110deg, #102d3d, #174959 70%, #f0b84b 70%, #e3a533);
  color: #fff;
  box-shadow: 0 12px 30px rgba(22, 58, 71, .12);
}
.account-hero h1 { margin: 7px 0 8px; font-size: 28px; }
.account-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.68); line-height: 1.75; }
.account-hero .btn { flex: 0 0 auto; background: #fff; border-color: #fff; color: #173b48; box-shadow: none; }
.account-stamp { min-width: 120px; color: #173744; font-size: 44px; font-weight: 900; text-align: center; }
.account-stamp small { display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.account-grid { display: grid; gap: 14px; }
.admin-account-grid { grid-template-columns: minmax(0, 1.35fr) minmax(350px, .65fr); align-items: start; }
.teacher-panel, .brand-panel { padding: 22px; }
.compact-actions { display: flex; gap: 6px; }
.brand-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.brand-form label { color: #5a6879; font-size: 11px; }
.brand-form .input { display: block; margin-top: 6px; }
.brand-form .full { grid-column: 1 / -1; }
.brand-color { padding: 4px; }
.brand-assets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.brand-assets label, .avatar-upload { padding: 10px; border: 1px dashed #bdc9d4; background: #f8fafb; color: #536676; font-size: 11px; text-align: center; cursor: pointer; }
.brand-assets input, .avatar-upload input { display: block; width: 100%; margin-top: 8px; font-size: 9px; }

.invite-reveal { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 14px; padding: 17px 24px; border: 1px solid #d5a13e; background: #fff7de; box-shadow: 0 8px 22px rgba(115, 78, 9, .08); }
.invite-reveal span { display: block; color: #8a6728; font-size: 10px; letter-spacing: .1em; }
.invite-reveal strong { display: block; margin-top: 5px; color: #3b3427; font: 800 22px/1.2 Consolas, monospace; letter-spacing: .06em; }
.classroom-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 14px; }
.classroom-list { padding: 18px; }
.classroom-list h3 { margin: 0 0 14px; color: #1e3445; }
.classroom-item { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 13px 10px; border: 0; border-bottom: 1px solid #e8edf0; background: transparent; color: #4a5e6d; text-align: left; cursor: pointer; }
.classroom-item.active { color: #123a4b; background: #edf5f5; box-shadow: inset 3px 0 #178a8a; }
.classroom-list .avatar-upload { display: block; margin-top: 22px; }
.classroom-detail { min-height: 430px; padding: 22px; }
.classroom-kpis { display: grid; grid-template-columns: repeat(2, 160px); gap: 10px; margin-bottom: 18px; }
.classroom-kpis > div { padding: 14px; border-left: 3px solid #178a8a; background: #f3f8f8; }
.classroom-kpis strong { display: block; color: #183946; font-size: 24px; }
.classroom-kpis span { color: #74848c; font-size: 10px; }
.invite-list > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid #edf0f2; font-size: 11px; }
.student-classroom-grid { display: grid; grid-template-columns: minmax(300px, .55fr) minmax(0, 1.45fr); gap: 14px; }
.student-space-stack { display: grid; gap: 14px; min-width: 0; }
.student-profile-card { padding: 22px; background: linear-gradient(135deg, #f8fbfa 0%, #fffdf7 100%); }
.student-profile-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 12px; }
.student-profile-form label { display: block; margin-bottom: 7px; color: #566673; font-size: 11px; }
.student-profile-form .btn { min-height: 40px; }
.profile-avatar-rule { margin: 11px 0 0; color: #7b878d; font-size: 10px; line-height: 1.6; }
.join-card { position: relative; overflow: hidden; padding: 28px; background: #fbfcf9; }
.join-number { position: absolute; right: -5px; top: -17px; color: rgba(20, 68, 74, .055); font-size: 76px; font-weight: 900; letter-spacing: -.08em; }
.join-card h3 { position: relative; margin-top: 0; }
.join-card form label { display: block; margin: 24px 0 7px; color: #566673; font-size: 11px; }
.join-card form .btn { width: 100%; margin-top: 14px; }
.join-card .avatar-upload { display: block; margin-top: 28px; }
.student-room { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 16px 4px; border-bottom: 1px solid #e8edf1; }
.student-room > div { display: flex; align-items: center; gap: 13px; }
.student-room h3 { margin: 0 0 4px; color: #1d3546; font-size: 15px; }
.student-room p { margin: 0; color: #869199; font-size: 10px; }
.room-monogram { width: 42px; height: 42px; display: grid; place-items: center; background: #173e49; color: #efb548; font-weight: 800; }

@media (max-width: 1050px) {
  .public-entry { grid-template-columns: 1fr; }
  .passport-stage { min-height: 430px; }
  .public-brand strong, .public-brand small { max-width: 70vw; }
  .passport-copy { padding-block: 58px 38px; }
  .passport-copy h1 { font-size: clamp(38px, 8vw, 58px); }
  .passport-route { margin-bottom: 30px; }
  .auth-desk { min-height: auto; padding-block: 56px; }
  .admin-account-grid, .student-classroom-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .student-profile-form { grid-template-columns: 1fr; }
  .passport-stage { padding: 28px 24px; }
  .passport-stage footer { display: none; }
  .passport-route > div { min-width: 74px; }
  .passport-route i { margin-inline: 8px; }
  .auth-desk { padding: 28px 16px; }
  .public-auth-form { padding: 30px 24px; }
  .account-hero { align-items: flex-start; flex-direction: column; padding: 24px; background: #133b4a; }
  .account-stamp { color: #efb548; text-align: left; }
  .classroom-layout { grid-template-columns: 1fr; }
  .brand-form { grid-template-columns: 1fr; }
  .brand-form .full { grid-column: auto; }
  .brand-assets { grid-template-columns: 1fr; }
}
