/* Hallmark pre-emit critique: Philosophy 5, Hierarchy 4, Execution 4, Specificity 5, Restraint 4, Variety 4. */

html,
body {
  min-width: 0;
  overflow-x: clip;
}

body.v43 {
  margin: 0;
  background: var(--v43-canvas);
  color: var(--v43-ink);
  font-family: var(--v43-font-ui);
  font-size: var(--v43-text-base);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.v43 *,
.v43 *::before,
.v43 *::after {
  box-sizing: border-box;
}

.v43 button,
.v43 input,
.v43 textarea,
.v43 select {
  font: inherit;
  letter-spacing: 0;
}

.v43 button,
.v43 a {
  -webkit-tap-highlight-color: transparent;
}

.v43 [hidden] {
  display: none !important;
}

.v43 button:active,
.v43 a:active {
  transform: scale(0.98);
  transition: transform var(--v43-duration-press) var(--v43-ease-out);
}

.v43 :focus-visible {
  outline: 3px solid rgb(40 108 159 / 24%);
  outline-offset: 2px;
}

.v43 h1,
.v43 h2,
.v43 h3,
.v43 h4,
.v43 p {
  margin-block-start: 0;
}

.v43 .app-shell {
  display: grid;
  grid-template-columns: var(--v43-sidebar-wide) minmax(0, 1fr);
  min-height: 100dvh;
  background: var(--v43-canvas);
}

.v43 .sidebar {
  position: sticky;
  inset-block-start: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: auto;
  height: 100dvh;
  min-width: 0;
  padding: 20px 14px 16px;
  overflow: hidden auto;
  background: var(--v43-surface);
  border-inline-end: 1px solid var(--v43-line);
  color: var(--v43-ink);
}

.v43 .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin: 0 4px 22px;
  padding: 0;
}

.v43 .brand-mark {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--v43-radius-sm);
  background: var(--v43-navy);
  color: #fff;
  font-family: var(--v43-font-display);
  font-size: 20px;
  font-weight: 700;
}

.v43 .brand p {
  margin: 0 0 2px;
  color: var(--v43-ink-faint);
  font-size: 11px;
  line-height: 1.2;
}

.v43 .brand h1 {
  margin: 0;
  color: var(--v43-ink-strong);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.25;
}

.v43 .resources-quick-entry {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  margin: 0 0 20px;
  padding: 10px;
  border: 0;
  border-radius: var(--v43-radius-sm);
  background: var(--v43-navy);
  color: #fff;
  box-shadow: none;
  text-align: start;
  cursor: pointer;
}

.v43 .resources-entry-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: rgb(255 255 255 / 12%);
}

.v43 .resources-entry-icon svg,
.v43 .resources-entry-arrow {
  width: 17px;
  height: 17px;
}

.v43 .resources-entry-text {
  min-width: 0;
}

.v43 .resources-entry-text strong,
.v43 .resources-entry-text small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .resources-entry-text strong {
  font-size: 14px;
}

.v43 .resources-entry-text small {
  margin-top: 2px;
  color: rgb(255 255 255 / 62%);
  font-size: 11px;
}

.v43 .nav,
.v43 .nav-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.v43 .nav-group + .nav-group {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--v43-line);
}

.v43 .nav-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  padding: 0 9px;
  border: 0;
  background: transparent;
  color: var(--v43-ink-faint);
  font-size: 11px;
  font-weight: 650;
}

.v43 .nav-group-toggle svg {
  width: 13px;
}

.v43 .nav-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--v43-ink-soft);
  text-align: start;
  cursor: pointer;
}

.v43 .nav-item svg {
  width: 18px;
  height: 18px;
}

.v43 .nav-item span {
  overflow: hidden;
  font-size: 14px;
  font-weight: 580;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .nav-item.active {
  background: var(--v43-surface-blue);
  color: var(--v43-blue-strong);
}

.v43 .nav-item.active::before {
  position: absolute;
  inset-block: 9px;
  inset-inline-start: 0;
  width: 3px;
  border-radius: 2px;
  background: var(--v43-blue);
  content: "";
}

@media (hover: hover) and (pointer: fine) {
  .v43 .nav-item:hover {
    background: var(--v43-surface-soft);
    color: var(--v43-ink-strong);
  }

  .v43 .resources-quick-entry:hover {
    background: #113955;
  }
}

.v43 .sidebar-pulse {
  display: none;
}

.v43 .local-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  margin-top: auto;
  padding: 10px;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  background: transparent;
  color: var(--v43-ink-soft);
}

.v43 .local-status > svg {
  width: 18px;
  color: var(--v43-green);
}

.v43 .local-status strong,
.v43 .local-status small {
  display: block;
}

.v43 .local-status strong {
  color: var(--v43-ink);
  font-size: 12px;
}

.v43 .local-status small {
  margin-top: 2px;
  color: var(--v43-ink-faint);
  font-size: 10px;
}

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

.v43 .topbar {
  position: sticky;
  inset-block-start: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(260px, 620px) auto;
  align-items: center;
  gap: 24px;
  min-height: var(--v43-topbar-height);
  padding: 10px clamp(20px, 3vw, 44px);
  background: rgb(246 248 251 / 88%);
  border-bottom: 1px solid rgb(220 229 238 / 82%);
  backdrop-filter: blur(18px) saturate(140%);
}

.v43 .topbar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.v43 .topbar-title > div {
  min-width: 0;
}

.v43 .topbar-title .eyebrow {
  margin: 0;
  color: var(--v43-blue);
  font-size: 10px;
  font-weight: 720;
}

.v43 .topbar-title h2 {
  margin: 2px 0 0;
  overflow: hidden;
  color: var(--v43-ink-strong);
  font-size: 17px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 #mobileMenuBtn,
.v43 #sidebarToggleBtn {
  display: none !important;
}

.v43 .global-search-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  background: var(--v43-surface);
  box-shadow: 0 1px 1px rgb(16 42 67 / 3%);
}

.v43 .global-search-wrap > svg {
  width: 17px;
  color: var(--v43-ink-faint);
}

.v43 .global-search-wrap input {
  min-width: 0;
  height: 40px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--v43-ink);
  font-size: 13px;
}

.v43 .global-search-wrap kbd {
  padding: 3px 6px;
  border: 1px solid var(--v43-line);
  border-radius: 5px;
  background: var(--v43-surface-soft);
  color: var(--v43-ink-faint);
  font-size: 10px;
}

.v43 .top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.v43 .date-text,
.v43 .save-feedback,
.v43 #themeBtn,
.v43 #exportBtn {
  display: none;
}

.v43 .icon-button,
.v43 .sync-status {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  background: var(--v43-surface);
  color: var(--v43-ink-soft);
  cursor: pointer;
}

.v43 .icon-button svg,
.v43 .sync-status svg {
  width: 17px;
  height: 17px;
}

.v43 .sync-status {
  grid-auto-flow: column;
  gap: 7px;
  padding: 0 10px;
  color: var(--v43-green);
  font-size: 12px;
  white-space: nowrap;
}

.v43 .context-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 clamp(20px, 3vw, 44px);
  overflow-x: auto;
  background: var(--v43-surface);
  border-bottom: 1px solid var(--v43-line);
  scrollbar-width: none;
}

.v43 .context-nav > span {
  flex: 0 0 auto;
  color: var(--v43-ink-faint);
  font-size: 11px;
  font-weight: 700;
}

.v43 .context-nav > div {
  display: flex;
  gap: 2px;
  min-width: max-content;
}

.v43 .context-nav button {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--v43-ink-soft);
  cursor: pointer;
}

.v43 .context-nav button svg {
  width: 15px;
}

.v43 .context-nav button b {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.v43 .context-nav button.active {
  background: var(--v43-surface-blue);
  color: var(--v43-blue-strong);
}

.v43 .studio-pulse {
  display: none !important;
}

.v43 .main {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 44px);
}

.v43 .view {
  display: none;
  min-width: 0;
}

.v43 .view.active {
  display: block;
}

.v43 .page-lead,
.v43 .hub-intro,
.v43 .resource-header {
  margin: 0 0 28px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .page-lead h1,
.v43 .hub-intro h1,
.v43 .resource-header h1 {
  margin: 0;
  color: var(--v43-ink-strong);
  font-family: var(--v43-font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-style: normal;
  font-weight: 620;
  line-height: 1.18;
}

.v43 .page-lead p,
.v43 .hub-intro p,
.v43 .resource-header p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--v43-ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.v43 .panel,
.v43 .hub-card,
.v43 .growth-visual-card,
.v43 .admin-visual-card {
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  background: var(--v43-surface);
  box-shadow: none;
}

.v43 .panel-heading,
.v43 .visual-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.v43 .panel-heading h3,
.v43 .visual-card-heading strong {
  margin: 3px 0 0;
  color: var(--v43-ink-strong);
  font-size: 16px;
  font-weight: 700;
}

.v43 .panel-kicker,
.v43 .section-label {
  margin: 0;
  color: var(--v43-blue);
  font-size: 10px;
  font-weight: 740;
}

.v43 .primary-button,
.v43 .secondary-button,
.v43 .text-button {
  min-height: 38px;
  border-radius: 7px;
  white-space: nowrap;
}

.v43 .primary-button {
  border-color: var(--v43-navy);
  background: var(--v43-navy);
  color: #fff;
}

.v43 .secondary-button {
  border: 1px solid var(--v43-line);
  background: var(--v43-surface);
  color: var(--v43-ink);
}

/* Today: one action desk, two rails and a compact journey strip. */
.v43 #dashboard.active {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.8fr) minmax(260px, 0.8fr);
  grid-template-areas:
    "action deadline research"
    "journey journey journey";
  gap: 26px;
  align-items: start;
}

.v43 #dashboard > :not(.journey-console, .dashboard-action-layout) {
  display: none !important;
}

.v43 #dashboard .dashboard-action-layout,
.v43 #dashboard .dashboard-priority-rail {
  display: contents;
}

.v43 #dashboard .action-board {
  grid-area: action;
  min-width: 0;
  padding: 28px;
  border: 0;
  border-radius: var(--v43-radius-sm);
  background: var(--v43-surface);
  box-shadow: var(--v43-shadow-sm);
}

.v43 .action-board-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .action-board-heading h3 {
  margin: 4px 0 6px;
  color: var(--v43-ink-strong);
  font-family: var(--v43-font-display);
  font-size: 25px;
  font-weight: 620;
}

.v43 .action-board-heading p {
  margin: 0;
  color: var(--v43-ink-soft);
  font-size: 13px;
}

.v43 .action-board-score {
  flex: 0 0 auto;
  text-align: end;
}

.v43 .action-board-score strong,
.v43 .action-board-score span {
  display: block;
}

.v43 .action-board-score strong {
  color: var(--v43-blue-strong);
  font-family: var(--v43-font-display);
  font-size: 30px;
}

.v43 .action-board-score span {
  color: var(--v43-ink-faint);
  font-size: 11px;
}

.v43 .action-queue {
  margin-top: 18px;
}

.v43 .action-row,
.v43 .action-empty {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid var(--v43-line);
  background: transparent;
  color: var(--v43-ink);
  text-align: start;
}

.v43 .action-row-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: var(--v43-surface-blue);
  color: var(--v43-blue-strong);
}

.v43 .action-row-copy small,
.v43 .action-row-copy strong,
.v43 .action-row-copy em {
  display: block;
  min-width: 0;
  font-style: normal;
}

.v43 .action-row-copy small,
.v43 .action-row-copy em {
  color: var(--v43-ink-faint);
  font-size: 11px;
}

.v43 .action-row-copy strong {
  margin: 2px 0;
  font-size: 14px;
}

.v43 .task-worklist {
  margin-top: 24px;
}

.v43 .task-worklist-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
}

.v43 .task-worklist-heading > span {
  margin-inline-start: auto;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .batch-toggle-btn {
  min-height: 30px;
  border: 0;
  background: transparent;
  color: var(--v43-blue);
  font-size: 11px;
}

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

.v43 .task-item {
  min-height: 48px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .task-add-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px 82px;
  gap: 8px;
  margin-top: 16px;
}

.v43 .task-add-form input,
.v43 .task-add-form select {
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--v43-line);
  border-radius: 7px;
  background: var(--v43-surface-soft);
}

.v43 #dashboard .priority-panel {
  grid-area: deadline;
}

.v43 #dashboard .research-next-panel {
  grid-area: research;
}

.v43 #dashboard .priority-panel,
.v43 #dashboard .research-next-panel {
  min-width: 0;
  padding: 4px 0 0 20px;
  border: 0;
  border-inline-start: 1px solid var(--v43-line-strong);
  border-radius: 0;
  background: transparent;
}

.v43 .deadline-list,
.v43 .next-list {
  margin-top: 18px;
}

.v43 .deadline-item,
.v43 .next-item {
  border-bottom: 1px solid var(--v43-line);
  background: transparent;
}

.v43 #dashboard .journey-console {
  grid-area: journey;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: center;
  min-width: 0;
  padding: 16px 20px;
  border: 0;
  border-radius: var(--v43-radius-sm);
  background: var(--v43-navy);
  color: #fff;
}

.v43 .journey-level,
.v43 .journey-quests {
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.v43 .journey-level-copy small,
.v43 .journey-level-copy em,
.v43 .journey-quests-heading {
  color: rgb(255 255 255 / 62%);
}

.v43 .journey-level-rail {
  background: rgb(255 255 255 / 12%);
}

.v43 .journey-level-rail i {
  background: var(--v43-orange);
}

.v43 .journey-badge-shelf {
  grid-column: 1 / -1;
  border-top-color: rgb(255 255 255 / 12%);
}

/* The v38 runtime composes the four dashboard regions into this container. */
.v43 #dashboard.active {
  display: block;
}

.v43 #dashboard > .v38-dashboard-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.v43 .v38-today-workspace,
.v43 .v38-dashboard-side {
  display: grid;
  min-width: 0;
  gap: 22px;
}

.v43 #dashboard .dashboard-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-width: 0;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--v43-line);
  background: transparent;
}

.v43 #dashboard .dashboard-brief-copy {
  min-width: 0;
}

.v43 #dashboard .dashboard-brief-copy h1 {
  margin: 4px 0 14px;
  color: var(--v43-ink-strong);
  font-size: 28px;
  font-weight: 720;
  line-height: 1.28;
}

.v43 #dashboard .dashboard-week-line,
.v43 #dashboard .dashboard-nudge {
  display: none;
}

.v43 #dashboard .dashboard-focus-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  background: var(--v43-surface);
}

.v43 #dashboard .dashboard-focus-line input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.v43 #dashboard .dashboard-brief-status {
  display: flex;
  gap: 10px;
}

.v43 #dashboard .focus-status,
.v43 #dashboard .compact-completion {
  display: none;
}

.v43 #dashboard .check-in-btn {
  min-width: 98px;
  min-height: 64px;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  background: var(--v43-surface);
  color: var(--v43-ink);
}

.v43 #dashboard .action-board {
  grid-area: auto;
}

.v43 #dashboard .v38-dashboard-side > .journey-console {
  grid-area: auto;
  grid-template-columns: minmax(0, 1fr);
  padding: 18px;
}

.v43 #dashboard .v38-dashboard-side .journey-quests {
  display: none;
}

.v43 #dashboard .v38-dashboard-side > .priority-panel,
.v43 #dashboard .v38-dashboard-side > .research-next-panel {
  grid-area: auto;
  padding: 20px 0 0;
  border-top: 1px solid var(--v43-line);
  border-inline-start: 0;
}

/* Learning: timetable first, then a vertical deadline narrative. */
.v43 #learningHub.active {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.v43 #learningHub > .hub-intro,
.v43 #learningHub > .hub-metric-grid {
  grid-column: 1 / -1;
}

.v43 #learningHub > .hub-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  background: var(--v43-line);
}

.v43 #learningHub > .hub-metric-grid > * {
  min-height: 86px;
  border: 0;
  border-radius: 0;
  background: var(--v43-surface);
}

.v43 .learning-course-overview {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  background: var(--v43-surface);
}

.v43 .learning-course-week {
  display: grid;
  grid-template-columns: repeat(7, minmax(86px, 1fr));
  gap: 1px;
  min-width: 0;
  margin-top: 18px;
  overflow-x: auto;
  background: var(--v43-line);
  border: 1px solid var(--v43-line);
}

.v43 .learning-course-day {
  min-width: 86px;
  min-height: 240px;
  padding: 10px;
  background: var(--v43-surface);
}

.v43 .learning-course-day.today {
  background: var(--v43-surface-blue);
}

.v43 .learning-course-day > strong {
  font-size: 12px;
}

.v43 .learning-course-day button {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: 0;
  border-inline-start: 3px solid var(--v43-blue);
  border-radius: 4px;
  background: var(--v43-surface-soft);
  color: var(--v43-ink);
  text-align: start;
}

.v43 .learning-timeline-panel {
  min-width: 0;
  padding-inline-start: 22px;
  border-inline-start: 1px solid var(--v43-line-strong);
}

.v43 .learning-deadline-timeline {
  margin-top: 16px;
}

.v43 .learning-deadline-item {
  display: grid;
  grid-template-columns: 54px 12px minmax(0, 1fr) auto 16px;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 62px;
  border: 0;
  border-bottom: 1px solid var(--v43-line);
  background: transparent;
  color: var(--v43-ink);
  text-align: start;
}

/* Research: a horizontal evidence pipeline with a relation board below. */
.v43 #researchHub.active {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.v43 #researchHub > .hub-intro,
.v43 #researchHub > .research-metrics,
.v43 #researchHub > .research-pipeline-panel {
  grid-column: 1 / -1;
}

.v43 .research-metrics {
  display: flex;
  gap: 28px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .research-metrics > * {
  flex: 0 1 180px;
  padding: 0;
  border: 0;
  background: transparent;
}

.v43 .research-pipeline-panel {
  padding: 24px;
  border-radius: var(--v43-radius-sm);
  background: var(--v43-navy);
  color: #fff;
}

.v43 .research-pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 20px;
}

.v43 .research-pipeline button {
  position: relative;
  min-width: 0;
  min-height: 128px;
  padding: 14px;
  border: 0;
  border-inline-end: 1px solid rgb(255 255 255 / 14%);
  background: transparent;
  color: #fff;
  text-align: start;
}

.v43 .research-pipeline button:last-child {
  border-inline-end: 0;
}

.v43 .research-pipeline button > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 7px;
  background: rgb(255 255 255 / 10%);
}

.v43 .research-pipeline button small,
.v43 .research-pipeline button em {
  color: rgb(255 255 255 / 58%);
  font-style: normal;
}

.v43 .research-relation-panel,
.v43 .research-evidence-panel {
  min-width: 0;
  padding: 24px;
}

/* Sports: an instrument panel with one chart, one mix and one live log. */
.v43 #sportsHub.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.v43 .sports-main-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  min-height: 180px;
  padding: 30px;
  border: 0;
  border-radius: var(--v43-radius-sm);
  background: var(--v43-navy);
  color: #fff;
}

.v43 .sports-hero-copy h1 {
  margin: 5px 0 8px;
  font-family: var(--v43-font-display);
  font-size: 30px;
  font-weight: 620;
}

.v43 .sports-hero-copy p,
.v43 .sports-hero-week small,
.v43 .sports-hero-week span {
  color: rgb(255 255 255 / 64%);
}

.v43 .sports-hero-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.v43 .sports-record-trigger,
.v43 .sports-quick-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 7px;
  background: rgb(255 255 255 / 10%);
  color: #fff;
  white-space: nowrap;
}

.v43 .sports-record-plus {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--v43-orange);
}

.v43 .sports-hero-week {
  min-width: 190px;
  text-align: end;
}

.v43 .sports-hero-week strong {
  display: block;
  margin: 5px 0;
  font-family: var(--v43-font-display);
  font-size: 22px;
}

.v43 .sports-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  overflow: hidden;
  background: var(--v43-line);
}

.v43 .sports-kpi-grid > * {
  border: 0;
  border-radius: 0;
  background: var(--v43-surface);
}

.v43 .sports-achievement-track {
  padding: 0;
  border: 0;
  background: transparent;
}

.v43 .sports-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.65fr) minmax(300px, 0.85fr);
  gap: 24px;
}

.v43 .sports-dashboard-grid > article {
  min-width: 0;
  padding: 22px;
}

.v43 .sports-week-chart {
  min-height: 230px;
}

.v43 .sports-day-column {
  min-width: 0;
}

.v43 .sports-goal-panel {
  padding: 20px;
  border-top: 1px solid var(--v43-line);
  background: transparent;
}

/* Growth: radar and trend own the page; metrics become a narrow caption row. */
.v43 #growthHub.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.v43 .growth-metrics {
  display: flex;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .growth-metrics > * {
  flex: 0 1 180px;
  padding: 0;
  border: 0;
  background: transparent;
}

.v43 .growth-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.v43 .growth-dashboard-grid > * {
  min-width: 0;
  padding: 20px;
}

.v43 .growth-analytics-panel {
  padding-top: 24px;
  border-top: 1px solid var(--v43-line);
}

.v43 .growth-visual-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
}

.v43 .growth-visual-card {
  min-width: 0;
  padding: 24px;
}

/* Administration: status board and expense chart, with forms kept below. */
.v43 #admin.active {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.v43 #admin > .page-lead,
.v43 #admin > .admin-operations-panel {
  grid-column: 1 / -1;
}

.v43 .admin-operations-panel {
  padding: 24px 0 0;
  border-top: 1px solid var(--v43-line);
}

.v43 .admin-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
}

.v43 .admin-visual-card {
  min-width: 0;
  padding: 24px;
}

/* Resources: an app library, not a wall of links. */
.v43 #resources.active {
  display: block;
}

.v43 #resources .resource-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.v43 .resource-header-side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.v43 .resource-header-metrics {
  display: flex;
  gap: 18px;
}

.v43 .resource-header-metrics span {
  min-width: 72px;
  padding-inline-start: 12px;
  border-inline-start: 1px solid var(--v43-line);
}

.v43 .resource-header-metrics strong,
.v43 .resource-header-metrics small {
  display: block;
}

.v43 .resource-header-metrics strong {
  color: var(--v43-ink-strong);
  font-family: var(--v43-font-display);
  font-size: 20px;
}

.v43 .resource-header-metrics small {
  color: var(--v43-ink-faint);
  font-size: 10px;
}

.v43 #resourceForm {
  margin-bottom: 18px;
}

.v43 #resourceFavorites,
.v43 #resourceRecent {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.v43 #resourceFavorites > span,
.v43 #resourceRecent > span {
  flex: 0 0 auto;
  color: var(--v43-ink-faint);
  font-size: 11px;
}

.v43 #resourceFavorites > div,
.v43 #resourceRecent > div {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.v43 #resourceFavorites a,
.v43 #resourceRecent a {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--v43-line);
  border-radius: 7px;
  background: var(--v43-surface);
  color: var(--v43-ink);
  text-decoration: none;
}

.v43 #resourceFavorites a span,
.v43 #resourceRecent a span {
  color: var(--v43-blue);
}

.v43 #resourceFavorites a strong,
.v43 #resourceRecent a strong {
  max-width: 130px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .resource-group-filters {
  position: sticky;
  inset-block-start: calc(var(--v43-topbar-height) + 20px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  background: var(--v43-surface);
}

.v43 .resource-group-filters button {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--v43-ink-soft);
  text-align: start;
}

.v43 .resource-group-filters button svg {
  width: 17px;
}

.v43 .resource-group-filters button span {
  font-size: 13px;
  white-space: nowrap;
}

.v43 .resource-group-filters button.active {
  background: var(--v43-navy);
  color: #fff;
}

.v43 .resource-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px auto;
  gap: 10px;
}

.v43 .resource-search,
.v43 .resource-category-select {
  min-height: 44px;
  border: 1px solid var(--v43-line);
  border-radius: 7px;
  background: var(--v43-surface);
}

.v43 .resource-health-summary {
  margin-top: 12px;
}

.v43 .resource-sections {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
}

.v43 .resource-section {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.v43 .resource-section-heading {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .resource-section-symbol {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 7px;
  background: var(--v43-surface-blue);
  color: var(--v43-blue);
}

.v43 .resource-section-heading small {
  color: var(--v43-ink-faint);
  font-size: 11px;
}

.v43 .link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.v43 .resource-tile {
  position: relative;
  min-width: 0;
  min-height: 106px;
  overflow: hidden;
  border: 1px solid var(--v43-line);
  border-radius: var(--v43-radius-sm);
  background: var(--v43-surface);
}

.v43 .resource-tile > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 16px;
  gap: 10px;
  align-items: start;
  height: 100%;
  padding: 14px 34px 14px 14px;
  color: var(--v43-ink);
  text-decoration: none;
}

.v43 .link-grid.single {
  grid-template-columns: minmax(0, 1fr);
}

.v43 #literatureLinks.link-grid.single > a {
  min-height: 48px;
}

.v43 .resource-site-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  background: var(--v43-surface-blue);
  color: var(--v43-blue);
}

.v43 .resource-link-copy {
  min-width: 0;
}

.v43 .resource-link-copy strong,
.v43 .resource-link-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .resource-link-copy strong {
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .resource-link-copy small {
  margin-top: 5px;
  color: var(--v43-ink-faint);
  font-size: 11px;
}

.v43 .resource-star {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-end: 8px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--v43-line-strong);
}

.v43 .resource-star.active {
  color: var(--v43-orange);
}

.v43 #customResources {
  margin-top: 24px;
}

.v43 .v38-resource-library {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 20px;
}

.v43 .v38-resource-directory,
.v43 .v38-resource-results {
  min-width: 0;
}

/* Compact desktop tiers. */
@media (max-width: 1500px) {
  :root {
    --v43-sidebar-wide: 222px;
  }

  .v43 .link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v43 .sports-dashboard-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  }

  .v43 .sports-recent-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1260px) {
  .v43 .app-shell {
    grid-template-columns: var(--v43-sidebar-compact) minmax(0, 1fr);
  }

  .v43 .sidebar {
    padding-inline: 10px;
  }

  .v43 .brand {
    justify-content: center;
    margin-inline: 0;
  }

  .v43 .brand > div:not(.brand-mark),
  .v43 .resources-entry-text,
  .v43 .resources-entry-arrow,
  .v43 .nav-label,
  .v43 .nav-group-toggle svg,
  .v43 .nav-item span,
  .v43 .local-status > div {
    display: none;
  }

  .v43 .resources-quick-entry {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 48px;
    padding: 7px;
  }

  .v43 .nav-group + .nav-group {
    margin-top: 12px;
    padding-top: 12px;
  }

  .v43 .nav-group-toggle {
    min-height: 8px;
    padding: 0;
  }

  .v43 .nav-item {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0;
  }

  .v43 .nav-item.active::before {
    inset-block: 8px;
    inset-inline-start: -10px;
  }

  .v43 .local-status {
    justify-content: center;
    padding: 0;
  }

  .v43 .topbar {
    grid-template-columns: minmax(160px, auto) minmax(220px, 1fr) auto;
    gap: 14px;
  }

  .v43 #dashboard.active {
    display: block;
  }

  .v43 #dashboard > .v38-dashboard-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  }

  .v43 #learningHub.active,
  .v43 #researchHub.active {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43 #learningHub > *,
  .v43 #researchHub > * {
    grid-column: 1 !important;
  }

  .v43 .learning-timeline-panel {
    padding-top: 22px;
    padding-inline-start: 0;
    border-top: 1px solid var(--v43-line);
    border-inline-start: 0;
  }

  .v43 .v38-resource-library {
    grid-template-columns: 190px minmax(0, 1fr);
  }
}

@media (max-width: 1040px) and (min-width: 821px) {
  .v43 .main {
    padding: 24px 20px;
  }

  .v43 .topbar {
    grid-template-columns: minmax(180px, 1fr) auto;
    padding-inline: 20px;
  }

  .v43 .global-search-wrap {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .v43 .topbar {
    padding-block: 10px;
  }

  .v43 #dashboard.active {
    display: block;
  }

  .v43 #dashboard > .v38-dashboard-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43 #dashboard .priority-panel,
  .v43 #dashboard .research-next-panel {
    padding: 20px 0 0;
    border-top: 1px solid var(--v43-line);
    border-inline-start: 0;
  }

  .v43 #learningHub > .hub-metric-grid,
  .v43 .sports-kpi-grid,
  .v43 .growth-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v43 .research-pipeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v43 .research-pipeline button:nth-child(3) {
    border-inline-end: 0;
  }

  .v43 .sports-dashboard-grid,
  .v43 .growth-visual-grid,
  .v43 .admin-visual-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43 .v38-resource-library {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43 .resource-group-filters {
    position: static;
    flex-direction: row;
    overflow-x: auto;
  }

  .v43 .resource-group-filters button {
    grid-template-columns: 18px auto;
    flex: 0 0 auto;
  }

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

/* Mobile is a distinct application surface. */
.v43-mobile-app {
  display: none;
}

@media (max-width: 820px) {
  .v43-mobile-app button {
    min-width: 44px;
    min-height: 44px;
  }

  .v43-mobile-app a.v43m-inline-action,
  .v43m-library-list article > a {
    min-width: 44px;
    min-height: 44px;
  }

  html,
  body {
    overscroll-behavior-x: none;
  }

  body.v43-mobile {
    min-height: 100dvh;
    background: var(--v43-surface);
  }

  body.v43-mobile > .app-shell,
  body.v43-mobile > .mobile-bottom-nav,
  body.v43-mobile > .mobile-quick-add,
  body.v43-mobile > .mobile-quick-actions,
  body.v43-mobile > .mobile-quick-actions-backdrop,
  body.v43-mobile > .more-sheet,
  body.v43-mobile > .sheet-backdrop {
    display: none !important;
  }

  body.v43-mobile.v43-mobile-legacy-open > .app-shell {
    display: block !important;
    padding: 58px 0 90px;
  }

  body.v43-mobile.v43-mobile-legacy-open > .app-shell .sidebar,
  body.v43-mobile.v43-mobile-legacy-open > .app-shell .topbar,
  body.v43-mobile.v43-mobile-legacy-open > .app-shell .context-nav,
  body.v43-mobile.v43-mobile-legacy-open > #v43MobileApp {
    display: none !important;
  }

  body.v43-mobile.v43-mobile-legacy-open > .app-shell .main {
    width: 100%;
    padding: 14px;
  }

  .v43-legacy-back {
    display: none;
  }

  body.v43-mobile.v43-mobile-legacy-open > .v43-legacy-back {
    position: fixed;
    inset: max(8px, env(safe-area-inset-top)) 12px auto;
    z-index: 120;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid var(--v43-line);
    border-radius: 21px;
    background: rgb(255 255 255 / 92%);
    color: var(--v43-ink);
    box-shadow: var(--v43-shadow-md);
    backdrop-filter: blur(18px);
  }

  .v43-mobile-app {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 100dvh;
    background: var(--v43-surface);
    color: var(--v43-ink);
  }

  .v43m-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    min-height: calc(56px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 12px 0;
    background: rgb(255 255 255 / 88%);
    backdrop-filter: blur(22px) saturate(160%);
  }

  .v43m-header::after {
    position: absolute;
    inset: auto 0 0;
    height: 12px;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%), rgb(16 42 67 / 4%));
    opacity: 0;
    pointer-events: none;
    content: "";
  }

  .v43m-header-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--v43-ink);
  }

  .v43m-header-button svg {
    width: 21px;
    height: 21px;
  }

  .v43m-header-copy {
    min-width: 0;
    text-align: center;
  }

  .v43m-header-copy small,
  .v43m-header-copy strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-header-copy small {
    color: var(--v43-ink-faint);
    font-size: 10px;
    font-weight: 620;
  }

  .v43m-header-copy strong {
    margin-top: 1px;
    color: var(--v43-ink-strong);
    font-size: 17px;
    font-weight: 720;
  }

  .v43m-sync {
    position: relative;
    color: var(--v43-green);
  }

  .v43m-sync span {
    position: absolute;
    inset: 9px 8px auto auto;
    width: 6px;
    height: 6px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: var(--v43-green);
  }

  .v43m-content {
    min-width: 0;
    padding: 14px 16px calc(var(--v43-mobile-nav-height) + 42px + env(safe-area-inset-bottom));
    overflow: visible;
    outline: 0;
  }

  .v43m-tabbar {
    position: fixed;
    z-index: 70;
    inset: auto 10px max(8px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    height: 66px;
    padding: 5px;
    border: 1px solid rgb(220 229 238 / 80%);
    border-radius: 20px;
    background: rgb(255 255 255 / 90%);
    box-shadow: 0 12px 34px rgb(7 27 45 / 14%);
    backdrop-filter: blur(24px) saturate(170%);
  }

  .v43m-tabbar button {
    display: flex;
    min-width: 0;
    min-height: 54px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: var(--v43-ink-faint);
  }

  .v43m-tabbar button svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
  }

  .v43m-tabbar button span {
    font-size: 10px;
    font-weight: 620;
    white-space: nowrap;
  }

  .v43m-tabbar button.active {
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
  }

  .v43m-fab {
    position: fixed;
    z-index: 75;
    inset: auto 20px calc(82px + env(safe-area-inset-bottom));
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--v43-navy);
    color: #fff;
    box-shadow: 0 12px 30px rgb(7 27 45 / 24%);
  }

  .v43m-fab svg {
    width: 23px;
    height: 23px;
  }

  .v43m-today-intro,
  .v43m-research-header,
  .v43m-resource-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 2px 18px;
  }

  .v43m-today-intro p,
  .v43m-research-header h1,
  .v43m-resource-head h1 {
    margin: 0;
    color: var(--v43-ink-strong);
    font-family: var(--v43-font-display);
    font-size: 24px;
    font-weight: 620;
    line-height: 1.22;
  }

  .v43m-today-intro time,
  .v43m-research-header small,
  .v43m-resource-head small {
    display: block;
    margin-top: 5px;
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43m-today-intro > button,
  .v43m-research-header > button,
  .v43m-resource-head > button {
    position: relative;
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--v43-line);
    border-radius: 50%;
    background: var(--v43-surface);
    color: var(--v43-blue-strong);
  }

  .v43m-today-intro > button span {
    position: absolute;
    inset: -3px -2px auto auto;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border: 2px solid #fff;
    border-radius: 9px;
    background: var(--v43-orange);
    color: #fff;
    font-size: 10px;
    line-height: 14px;
  }

  .v43m-mainline {
    position: relative;
    padding: 20px;
    border-radius: var(--v43-radius-sm);
    background: var(--v43-navy);
    color: #fff;
    overflow: hidden;
  }

  .v43m-mainline::after {
    position: absolute;
    inset: -30px -28px auto auto;
    width: 100px;
    height: 100px;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 50%;
    content: "";
    pointer-events: none;
  }

  .v43m-section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgb(255 255 255 / 58%);
    font-size: 11px;
  }

  .v43m-section-label em {
    font-style: normal;
  }

  .v43m-main-task {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 76px;
    margin: 10px 0 14px;
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
    background: transparent;
    color: #fff;
    text-align: start;
  }

  .v43m-main-task small,
  .v43m-main-task strong {
    display: block;
  }

  .v43m-main-task small {
    color: var(--v43-orange);
    font-size: 10px;
  }

  .v43m-main-task strong {
    margin-top: 3px;
    font-size: 18px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .v43m-task-check {
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid rgb(255 255 255 / 54%);
    border-radius: 50%;
  }

  .v43m-main-task-empty {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .v43m-main-task-empty > span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--v43-orange);
  }

  .v43m-focus-line {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 11px;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 7px;
    background: rgb(255 255 255 / 7%);
  }

  .v43m-focus-line > span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgb(255 255 255 / 62%);
    font-size: 11px;
    white-space: nowrap;
  }

  .v43m-focus-line svg {
    width: 15px;
  }

  .v43m-focus-line input {
    min-width: 0;
    height: 42px;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    color: #fff;
    font-size: 13px;
  }

  .v43m-focus-line input::placeholder {
    color: rgb(255 255 255 / 38%);
  }

  .v43m-task-stack {
    margin-top: 12px;
  }

  .v43m-task-stack button {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: start;
  }

  .v43m-task-stack .v43m-task-check {
    width: 18px;
    height: 18px;
    border-width: 1px;
  }

  .v43m-task-stack strong {
    overflow: hidden;
    font-size: 13px;
    font-weight: 570;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-task-stack small {
    color: rgb(255 255 255 / 46%);
    font-size: 10px;
  }

  .v43m-inline-add {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgb(255 255 255 / 66%);
    font-size: 12px;
    white-space: nowrap;
  }

  .v43m-inline-add svg {
    width: 16px;
  }

  .v43m-agenda-block,
  .v43m-deadline-block,
  .v43m-research-next,
  .v43m-upcoming-strip,
  .v43m-evidence-flow,
  .v43m-library-list,
  .v43m-project-list,
  .v43m-resource-results,
  .v43m-more-tools,
  .v43m-academic-timeline,
  .v43m-course-list,
  .v43m-skill-radar,
  .v43m-review-list,
  .v43m-admin-status,
  .v43m-data-actions {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--v43-line);
  }

  .v43m-agenda-block > header,
  .v43m-deadline-block > header,
  .v43m-research-next > header,
  .v43m-upcoming-strip > header,
  .v43m-evidence-flow > header,
  .v43m-library-list > header,
  .v43m-project-list > header,
  .v43m-resource-results > header,
  .v43m-more-tools > h2,
  .v43m-academic-timeline > header,
  .v43m-course-list > header,
  .v43m-skill-radar > header,
  .v43m-review-list > header,
  .v43m-admin-status > header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px;
  }

  .v43m-agenda-block h2,
  .v43m-deadline-block h2,
  .v43m-research-next h2,
  .v43m-upcoming-strip h2,
  .v43m-evidence-flow h2,
  .v43m-library-list h2,
  .v43m-project-list h2,
  .v43m-resource-results h2,
  .v43m-more-tools h2,
  .v43m-academic-timeline h2,
  .v43m-course-list h2,
  .v43m-skill-radar h2,
  .v43m-review-list h2,
  .v43m-admin-status h2,
  .v43m-data-actions h2 {
    margin: 2px 0 0;
    color: var(--v43-ink-strong);
    font-size: 18px;
    font-weight: 720;
  }

  .v43m-agenda-block header small,
  .v43m-deadline-block header small,
  .v43m-research-next header small,
  .v43m-upcoming-strip header small,
  .v43m-evidence-flow header small,
  .v43m-library-list header small,
  .v43m-project-list header small,
  .v43m-resource-results header small,
  .v43m-academic-timeline header small,
  .v43m-course-list header small,
  .v43m-skill-radar header small,
  .v43m-review-list header small,
  .v43m-admin-status header small {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-agenda-block header button,
  .v43m-research-next header button,
  .v43m-evidence-flow header button,
  .v43m-library-list header button,
  .v43m-project-list header button,
  .v43m-academic-timeline header button,
  .v43m-course-list header button,
  .v43m-skill-radar header button,
  .v43m-review-list header button {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--v43-blue);
    font-size: 12px;
    white-space: nowrap;
  }

  .v43m-agenda-block header button svg,
  .v43m-research-next header button svg {
    width: 15px;
  }

  .v43m-agenda-list article {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43m-agenda-list time {
    color: var(--v43-blue-strong);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
  }

  .v43m-agenda-list strong,
  .v43m-agenda-list small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-agenda-list strong {
    color: var(--v43-ink-strong);
    font-size: 14px;
  }

  .v43m-agenda-list small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 11px;
  }

  .v43m-agenda-list article > svg {
    width: 18px;
    color: var(--v43-ink-faint);
  }

  .v43m-deadline-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .v43m-deadline-track button {
    display: grid;
    grid-template-rows: auto 14px auto auto;
    flex: 0 0 148px;
    min-width: 0;
    min-height: 126px;
    padding: 14px;
    scroll-snap-align: start;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-surface);
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-deadline-track button time,
  .v43m-deadline-track button small {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-deadline-track button i {
    position: relative;
    display: block;
    margin: 5px 0;
    border-top: 1px solid var(--v43-line);
  }

  .v43m-deadline-track button i::before {
    position: absolute;
    inset: -4px auto auto 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--v43-blue);
    content: "";
  }

  .v43m-deadline-track button.is-urgent i::before,
  .v43m-deadline-track button.is-overdue i::before {
    background: var(--v43-orange);
  }

  .v43m-deadline-track button strong {
    align-self: end;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .v43m-research-next > button,
  .v43m-research-seed {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 62px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-research-next > button > span:first-child {
    color: var(--v43-blue);
    font-family: var(--v43-font-display);
    font-size: 15px;
  }

  .v43m-research-next strong,
  .v43m-research-next small {
    display: block;
  }

  .v43m-research-next strong {
    color: var(--v43-ink-strong);
    font-size: 14px;
  }

  .v43m-research-next small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 11px;
  }

  .v43m-journey-strip {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 10px;
    min-height: 84px;
    margin-top: 28px;
    padding: 12px 14px;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-surface-soft);
  }

  .v43m-journey-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--v43-navy);
    color: #fff;
  }

  .v43m-journey-strip small,
  .v43m-journey-strip strong {
    display: block;
  }

  .v43m-journey-strip small {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-journey-strip strong {
    margin: 3px 0 7px;
    color: var(--v43-ink-strong);
    font-size: 13px;
  }

  .v43m-journey-strip div > span {
    display: block;
    height: 4px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--v43-line);
  }

  .v43m-journey-strip div > span i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--v43-orange);
  }

  .v43m-journey-strip button {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--v43-ink-faint);
  }

  .v43m-empty {
    display: grid;
    min-height: 130px;
    place-items: center;
    align-content: center;
    padding: 18px;
    color: var(--v43-ink-faint);
    text-align: center;
  }

  .v43m-empty > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--v43-surface-soft);
    color: var(--v43-blue);
  }

  .v43m-empty strong {
    margin-top: 9px;
    color: var(--v43-ink);
    font-size: 13px;
  }

  .v43m-empty p {
    max-width: 240px;
    margin: 4px 0 0;
    font-size: 11px;
    line-height: 1.55;
  }

  /* Mobile schedule */
  .v43m-calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
  }

  .v43m-calendar-head > div {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .v43m-calendar-head button {
    display: grid;
    min-width: 40px;
    min-height: 40px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--v43-blue-strong);
  }

  .v43m-calendar-head > button {
    padding: 0 8px;
    font-size: 12px;
    white-space: nowrap;
  }

  .v43m-calendar-head strong {
    color: var(--v43-ink-strong);
    font-family: var(--v43-font-display);
    font-size: 18px;
    font-weight: 620;
    white-space: nowrap;
  }

  .v43m-week-strip {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 3px;
    padding: 4px;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-surface-soft);
  }

  .v43m-week-strip button {
    display: flex;
    min-width: 0;
    min-height: 62px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--v43-ink-soft);
  }

  .v43m-week-strip button small {
    font-size: 10px;
  }

  .v43m-week-strip button strong {
    font-size: 15px;
  }

  .v43m-week-strip button > i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
  }

  .v43m-week-strip button > i.has-events {
    background: var(--v43-orange);
  }

  .v43m-week-strip button.active {
    background: var(--v43-navy);
    color: #fff;
  }

  .v43m-day-agenda {
    margin-top: 24px;
  }

  .v43m-day-agenda > header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }

  .v43m-day-agenda h2 {
    margin: 2px 0 0;
    color: var(--v43-ink-strong);
    font-size: 19px;
  }

  .v43m-day-agenda header small,
  .v43m-day-agenda header span {
    color: var(--v43-ink-faint);
    font-size: 11px;
  }

  .v43m-day-agenda article {
    display: grid;
    grid-template-columns: 74px 16px minmax(0, 1fr);
    gap: 8px;
    min-height: 78px;
  }

  .v43m-day-agenda article > time {
    padding-top: 13px;
    color: var(--v43-ink-soft);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
  }

  .v43m-day-agenda article > i {
    position: relative;
    border-inline-start: 1px solid var(--v43-line);
  }

  .v43m-day-agenda article > i::before {
    position: absolute;
    inset: 15px auto auto -4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--v43-blue);
    content: "";
  }

  .v43m-day-agenda article.is-course > i::before {
    background: var(--v43-orange);
  }

  .v43m-day-agenda article > button {
    min-width: 0;
    min-height: 64px;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-day-agenda article small,
  .v43m-day-agenda article strong,
  .v43m-day-agenda article span {
    display: block;
  }

  .v43m-day-agenda article small,
  .v43m-day-agenda article span {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-day-agenda article strong {
    margin: 2px 0;
    color: var(--v43-ink-strong);
    font-size: 14px;
  }

  .v43m-upcoming-strip > div {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-line);
  }

  .v43m-upcoming-strip button {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 12px;
    border: 0;
    background: var(--v43-surface);
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-upcoming-strip button span,
  .v43m-upcoming-strip button time {
    color: var(--v43-ink-faint);
    font-size: 10px;
    white-space: nowrap;
  }

  .v43m-upcoming-strip button strong {
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Mobile research */
  .v43m-segmented {
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    gap: 3px;
    min-height: 44px;
    padding: 4px;
    overflow-x: auto;
    border-radius: 8px;
    background: var(--v43-surface-soft);
    scrollbar-width: none;
  }

  .v43m-segmented button {
    min-width: max-content;
    min-height: 36px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--v43-ink-soft);
    font-size: 12px;
    white-space: nowrap;
  }

  .v43m-segmented button.active {
    background: var(--v43-surface);
    color: var(--v43-ink-strong);
    box-shadow: 0 1px 4px rgb(16 42 67 / 9%);
  }

  .v43m-pipeline-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 24px;
    padding: 18px 8px;
    border-radius: var(--v43-radius-sm);
    background: var(--v43-navy);
    color: #fff;
  }

  .v43m-pipeline-map article {
    position: relative;
    display: grid;
    justify-items: center;
    min-width: 0;
  }

  .v43m-pipeline-map article > span {
    z-index: 1;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 50%;
    background: var(--v43-navy);
    color: rgb(255 255 255 / 58%);
  }

  .v43m-pipeline-map article.is-lit > span {
    border-color: var(--v43-orange);
    color: var(--v43-orange);
  }

  .v43m-pipeline-map article > i {
    position: absolute;
    inset: 17px -50% auto 50%;
    border-top: 1px solid rgb(255 255 255 / 18%);
  }

  .v43m-pipeline-map article:last-child > i {
    display: none;
  }

  .v43m-pipeline-map article > div {
    min-width: 0;
    margin-top: 10px;
    text-align: center;
  }

  .v43m-pipeline-map small,
  .v43m-pipeline-map strong,
  .v43m-pipeline-map em {
    display: block;
    overflow: hidden;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-pipeline-map small,
  .v43m-pipeline-map em {
    color: rgb(255 255 255 / 48%);
    font-size: 9px;
  }

  .v43m-pipeline-map strong {
    margin: 3px 0;
    font-size: 11px;
  }

  .v43m-evidence-flow > button {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 18px;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 70px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-evidence-flow small,
  .v43m-evidence-flow strong,
  .v43m-evidence-flow span {
    display: block;
  }

  .v43m-evidence-flow small,
  .v43m-evidence-flow span,
  .v43m-evidence-flow em {
    color: var(--v43-ink-faint);
    font-size: 10px;
    font-style: normal;
  }

  .v43m-evidence-flow strong {
    margin: 3px 0;
    color: var(--v43-ink-strong);
    font-size: 14px;
  }

  .v43m-library-list article {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 10px;
    min-height: 78px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43m-library-list article > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 7px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43m-library-list article > button {
    min-width: 0;
    padding: 9px 0;
    border: 0;
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-library-list small,
  .v43m-library-list strong,
  .v43m-library-list em {
    display: block;
    overflow: hidden;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-library-list small,
  .v43m-library-list em {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-library-list strong {
    margin: 3px 0;
    color: var(--v43-ink-strong);
    font-size: 13px;
  }

  .v43m-library-list article > a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--v43-blue);
  }

  .v43m-project-list article {
    margin-top: 10px;
    padding: 16px;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
  }

  .v43m-project-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-project-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--v43-green);
  }

  .v43m-project-list article > strong {
    display: block;
    margin-top: 9px;
    color: var(--v43-ink-strong);
    font-size: 16px;
  }

  .v43m-project-list article > p {
    margin: 5px 0 14px;
    color: var(--v43-ink-soft);
    font-size: 12px;
    line-height: 1.55;
  }

  .v43m-project-list footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--v43-line);
  }

  .v43m-project-list footer span,
  .v43m-project-list footer button {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-project-list footer button {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 32px;
    border: 0;
    background: transparent;
    color: var(--v43-blue);
  }

  /* Mobile resources */
  .v43m-resource-search {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 8px 0 13px;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-surface-soft);
    color: var(--v43-ink-faint);
  }

  .v43m-resource-search > svg {
    width: 18px;
  }

  .v43m-resource-search input {
    min-width: 0;
    height: 46px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--v43-ink);
    font-size: 14px;
  }

  .v43m-resource-search button {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--v43-ink-faint);
  }

  .v43m-recent-resources {
    margin-top: 22px;
  }

  .v43m-recent-resources header {
    margin-bottom: 10px;
  }

  .v43m-recent-resources h2 {
    margin: 2px 0 0;
    color: var(--v43-ink-strong);
    font-size: 16px;
  }

  .v43m-recent-resources small {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-recent-resources > div {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .v43m-recent-resources a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    flex: 0 0 145px;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 8px 10px;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    color: var(--v43-ink);
    text-decoration: none;
  }

  .v43m-recent-resources a > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 7px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43m-recent-resources a strong {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-category-rail {
    display: flex;
    gap: 7px;
    margin: 20px -16px 0;
    padding: 0 16px 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .v43m-category-rail button {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid var(--v43-line);
    border-radius: 18px;
    background: var(--v43-surface);
    color: var(--v43-ink-soft);
    font-size: 11px;
    white-space: nowrap;
  }

  .v43m-category-rail button.active {
    border-color: var(--v43-navy);
    background: var(--v43-navy);
    color: #fff;
  }

  .v43m-resource-results > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .v43m-resource-results > header > span {
    color: var(--v43-ink-faint);
    font-size: 11px;
  }

  .v43m-resource-tile {
    position: relative;
    min-width: 0;
    min-height: 142px;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-surface);
  }

  .v43m-resource-tile > a {
    display: flex;
    height: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    color: var(--v43-ink);
    text-decoration: none;
  }

  .v43m-resource-tile > a > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 8px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
  }

  .v43m-resource-tile strong,
  .v43m-resource-tile small,
  .v43m-resource-tile em {
    display: block;
    max-width: 100%;
    overflow: hidden;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-resource-tile strong {
    margin-top: 12px;
    color: var(--v43-ink-strong);
    font-size: 13px;
  }

  .v43m-resource-tile small {
    margin-top: 3px;
    color: var(--v43-blue);
    font-size: 9px;
  }

  .v43m-resource-tile em {
    margin-top: auto;
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43m-resource-tile > button {
    position: absolute;
    inset: 9px 8px auto auto;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--v43-line-strong);
  }

  .v43m-resource-tile > button.active {
    color: var(--v43-orange);
  }

  /* Mobile More and distinct centers */
  .v43m-more-profile {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 54px;
    align-items: center;
    gap: 12px;
    padding: 14px 0 22px;
  }

  .v43m-more-profile > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    background: var(--v43-navy);
    color: #fff;
    font-family: var(--v43-font-display);
    font-size: 21px;
  }

  .v43m-more-profile > .v43m-profile-mark {
    overflow: hidden;
    border: 1px solid var(--v43-line);
    background: #fff;
    box-shadow: 0 3px 12px rgb(22 53 91 / 8%);
  }

  .v43m-profile-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .v43m-more-profile h1 {
    margin: 0 0 3px;
    color: var(--v43-ink-strong);
    font-size: 18px;
  }

  .v43m-more-profile small,
  .v43m-more-profile p {
    margin: 0;
    overflow: hidden;
    color: var(--v43-ink-faint);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-more-profile > button {
    display: flex;
    min-height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 0;
    border-radius: 8px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
  }

  .v43m-more-profile > button span {
    font-size: 9px;
  }

  .v43m-more-grid {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-line);
  }

  .v43m-more-grid > button {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;
    min-height: 70px;
    padding: 0 13px;
    border: 0;
    background: var(--v43-surface);
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-more-grid > button > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 8px;
    background: var(--v43-surface-soft);
    color: var(--v43-blue);
  }

  .v43m-more-grid strong,
  .v43m-more-grid small {
    display: block;
  }

  .v43m-more-grid strong {
    color: var(--v43-ink-strong);
    font-size: 14px;
  }

  .v43m-more-grid small {
    margin-top: 4px;
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-more-tools > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .v43m-more-tools button {
    display: flex;
    min-width: 0;
    min-height: 52px;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-surface);
    color: var(--v43-ink);
    font-size: 11px;
    text-align: start;
  }

  .v43m-detail-hero {
    margin: 2px 0 24px;
    padding: 20px;
    border-radius: var(--v43-radius-sm);
    background: var(--v43-navy);
    color: #fff;
  }

  .v43m-detail-hero > small {
    color: rgb(255 255 255 / 58%);
    font-size: 10px;
  }

  .v43m-detail-hero h1 {
    margin: 4px 0 18px;
    font-family: var(--v43-font-display);
    font-size: 24px;
    font-weight: 620;
  }

  .v43m-detail-hero > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgb(255 255 255 / 16%);
  }

  .v43m-detail-hero > div > span {
    padding: 10px;
    background: var(--v43-navy);
  }

  .v43m-detail-hero strong,
  .v43m-detail-hero span small {
    display: block;
  }

  .v43m-detail-hero strong {
    font-family: var(--v43-font-display);
    font-size: 20px;
  }

  .v43m-detail-hero span small {
    margin-top: 3px;
    color: rgb(255 255 255 / 55%);
    font-size: 9px;
  }

  .v43m-academic-timeline article {
    display: grid;
    grid-template-columns: 48px 14px minmax(0, 1fr);
    gap: 8px;
    min-height: 68px;
  }

  .v43m-academic-timeline time {
    padding-top: 12px;
    color: var(--v43-blue);
    font-size: 10px;
  }

  .v43m-academic-timeline article > i {
    position: relative;
    border-inline-start: 1px solid var(--v43-line);
  }

  .v43m-academic-timeline article > i::before {
    position: absolute;
    inset: 14px auto auto -4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--v43-orange);
    content: "";
  }

  .v43m-academic-timeline article > div {
    padding: 9px 0;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43m-academic-timeline small,
  .v43m-academic-timeline strong,
  .v43m-academic-timeline span {
    display: block;
  }

  .v43m-academic-timeline small,
  .v43m-academic-timeline span {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-academic-timeline strong {
    margin: 2px 0;
    color: var(--v43-ink-strong);
    font-size: 13px;
  }

  .v43m-course-list article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 62px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43m-course-list article > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 8px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
    font-family: var(--v43-font-display);
  }

  .v43m-course-list strong,
  .v43m-course-list small {
    display: block;
  }

  .v43m-course-list strong {
    color: var(--v43-ink-strong);
    font-size: 13px;
  }

  .v43m-course-list small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-sport-chart {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
  }

  .v43m-sport-chart header {
    display: flex;
    justify-content: space-between;
  }

  .v43m-sport-chart h2 {
    margin: 0;
    font-size: 15px;
  }

  .v43m-sport-chart header span {
    color: var(--v43-blue);
    font-size: 12px;
  }

  .v43m-sport-chart > div {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    height: 140px;
    margin-top: 14px;
  }

  .v43m-sport-chart article {
    display: grid;
    grid-template-rows: minmax(0, 1fr) 18px;
    min-width: 0;
    text-align: center;
  }

  .v43m-sport-chart article > span {
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 2px 2px;
    background: var(--v43-surface-soft);
  }

  .v43m-sport-chart article i {
    position: absolute;
    inset: auto 0 0;
    min-height: 4px;
    border-radius: 5px 5px 2px 2px;
    background: var(--v43-blue);
    transition: height var(--v43-duration-ui) var(--v43-ease-out);
  }

  .v43m-sport-chart article small {
    color: var(--v43-ink-faint);
    font-size: 9px;
    line-height: 18px;
  }

  .v43m-sport-actions {
    display: grid;
    gap: 8px;
    margin-top: 16px;
  }

  .v43m-sport-actions button {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 64px;
    padding: 0 12px;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-surface);
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-sport-actions button > span {
    display: grid;
    width: 42px;
    height: 42px;
    grid-row: 1 / span 2;
    place-items: center;
    border-radius: 50%;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43m-sport-actions strong,
  .v43m-sport-actions small {
    grid-column: 2;
  }

  .v43m-sport-actions strong {
    align-self: end;
    font-size: 13px;
  }

  .v43m-sport-actions small {
    align-self: start;
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-sports-tabs {
    margin-top: 16px;
    grid-auto-columns: max-content;
    justify-content: start;
    overscroll-behavior-inline: contain;
  }

  .v43m-sports-tabs button {
    min-height: 44px;
    padding-inline: 15px;
  }

  .v43m-sport-focus {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-surface);
  }

  .v43m-sport-focus > header {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }

  .v43m-sport-focus > header > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
  }

  .v43m-sport-focus h2,
  .v43m-sport-log h2 {
    margin: 2px 0 0;
    color: var(--v43-ink-strong);
    font-size: 16px;
  }

  .v43m-sport-focus header small {
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43m-sport-focus header button {
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 44px;
    padding: 0 10px;
    border: 0;
    border-radius: 8px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
    font-size: 12px;
    white-space: nowrap;
  }

  .v43m-sport-focus header button svg {
    width: 16px;
  }

  .v43m-sport-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid var(--v43-line);
    border-radius: 9px;
    background: var(--v43-line);
  }

  .v43m-sport-metrics > span {
    min-width: 0;
    padding: 14px 8px;
    background: var(--v43-surface-soft);
    text-align: center;
  }

  .v43m-sport-metrics strong,
  .v43m-sport-metrics small {
    display: block;
  }

  .v43m-sport-metrics strong {
    color: var(--v43-ink-strong);
    font-size: 20px;
    font-variant-numeric: tabular-nums;
  }

  .v43m-sport-metrics small {
    margin-top: 3px;
    overflow: hidden;
    color: var(--v43-ink-faint);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-sport-log {
    margin-top: 22px;
  }

  .v43m-sport-log > article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 66px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43m-sport-log > article > span:not(.v43-record-actions) {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43m-sport-log strong,
  .v43m-sport-log small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-sport-log strong {
    color: var(--v43-ink-strong);
    font-size: 14px;
  }

  .v43m-sport-log small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43m-skill-radar article {
    display: grid;
    grid-template-columns: minmax(100px, 0.8fr) minmax(90px, 1fr) 24px;
    align-items: center;
    gap: 8px;
    min-height: 42px;
  }

  .v43m-skill-radar article > span {
    overflow: hidden;
    color: var(--v43-ink-soft);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43m-skill-radar article > div {
    height: 6px;
    overflow: hidden;
    border-radius: 3px;
    background: var(--v43-surface-soft);
  }

  .v43m-skill-radar article i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--v43-blue);
  }

  .v43m-skill-radar article strong {
    color: var(--v43-ink-faint);
    font-size: 10px;
    text-align: end;
  }

  .v43m-review-list article {
    padding: 13px 0;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43m-review-list time,
  .v43m-review-list strong,
  .v43m-review-list p {
    display: block;
  }

  .v43m-review-list time {
    color: var(--v43-blue);
    font-size: 10px;
  }

  .v43m-review-list strong {
    margin-top: 4px;
    color: var(--v43-ink-strong);
    font-size: 13px;
  }

  .v43m-review-list p {
    margin: 3px 0 0;
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-admin-status > button {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-admin-status > button > i {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border: 1px solid var(--v43-line-strong);
    border-radius: 50%;
    color: #fff;
  }

  .v43m-admin-status > button.done > i {
    border-color: var(--v43-green);
    background: var(--v43-green);
  }

  .v43m-admin-status strong {
    font-size: 12px;
  }

  .v43m-admin-status small {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43m-data-actions > button {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 64px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-data-actions > button > svg:first-child {
    color: var(--v43-blue);
  }

  .v43m-data-actions strong,
  .v43m-data-actions small {
    display: block;
  }

  .v43m-data-actions strong {
    color: var(--v43-ink-strong);
    font-size: 13px;
  }

  .v43m-data-actions small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  /* Bottom sheets */
  .v43m-sheet-backdrop {
    position: fixed;
    z-index: 190;
    inset: 0;
    background: rgb(7 27 45 / 36%);
    animation: v43-fade-in var(--v43-duration-ui) var(--v43-ease-out) both;
  }

  .v43m-sheet {
    position: fixed;
    z-index: 200;
    inset: auto 0 0;
    max-height: min(88dvh, 820px);
    padding: 8px 16px calc(16px + env(safe-area-inset-bottom));
    overflow: hidden;
    border-radius: var(--v43-radius-sheet) var(--v43-radius-sheet) 0 0;
    background: var(--v43-surface);
    box-shadow: var(--v43-shadow-sheet);
    animation: v43-sheet-in var(--v43-duration-sheet) var(--v43-ease-drawer) both;
  }

  .v43m-sheet.is-closing {
    animation: v43-sheet-out 220ms var(--v43-ease-drawer) both;
  }

  .v43m-sheet-backdrop.is-closing {
    animation: v43-fade-out 220ms var(--v43-ease-out) both;
  }

  .v43m-sheet-grabber {
    width: 38px;
    height: 5px;
    margin: 0 auto 8px;
    border-radius: 3px;
    background: var(--v43-line-strong);
  }

  .v43m-sheet > header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43m-sheet > header small {
    color: var(--v43-blue);
    font-size: 10px;
  }

  .v43m-sheet > header h2 {
    margin: 2px 0 0;
    color: var(--v43-ink-strong);
    font-size: 19px;
  }

  .v43m-sheet > header button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--v43-surface-soft);
    color: var(--v43-ink-soft);
  }

  .v43m-sheet-body {
    max-height: calc(88dvh - 90px - env(safe-area-inset-bottom));
    padding: 16px 0 0;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .v43m-sheet form {
    display: grid;
    gap: 14px;
  }

  .v43m-sheet label {
    display: grid;
    gap: 6px;
    min-width: 0;
  }

  .v43m-sheet label > span {
    color: var(--v43-ink-soft);
    font-size: 11px;
    font-weight: 620;
  }

  .v43m-sheet input,
  .v43m-sheet textarea,
  .v43m-sheet select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--v43-line-strong);
    border-radius: var(--v43-radius-sm);
    outline: 0;
    background: var(--v43-surface-soft);
    color: var(--v43-ink);
    font-size: 16px;
  }

  .v43m-sheet textarea {
    min-height: 86px;
    resize: vertical;
    line-height: 1.55;
  }

  .v43m-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .v43m-sheet form > button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    margin-top: 2px;
    border: 0;
    border-radius: var(--v43-radius-sm);
    background: var(--v43-navy);
    color: #fff;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
  }

  .v43m-sheet-actions {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--v43-line);
    border-radius: var(--v43-radius-sm);
    background: var(--v43-line);
  }

  .v43m-sheet-actions > button {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    min-height: 66px;
    padding: 0 12px;
    border: 0;
    background: var(--v43-surface);
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-sheet-actions strong,
  .v43m-sheet-actions small {
    display: block;
  }

  .v43m-sheet-actions strong {
    color: var(--v43-ink-strong);
    font-size: 13px;
  }

  .v43m-sheet-actions small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  body.v43-sheet-open {
    overflow: hidden;
  }

  body.keyboard-open .v43m-tabbar,
  body.keyboard-open .v43m-fab {
    opacity: 0;
    pointer-events: none;
  }

  @keyframes v43-sheet-in {
    from { transform: translate3d(0, 100%, 0); }
    to { transform: translate3d(0, 0, 0); }
  }

  @keyframes v43-sheet-out {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, 100%, 0); }
  }

  @keyframes v43-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes v43-fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
  }
}

/* Krispace brand mark. */
.v43 .brand-mark,
.v43 .v43d-brand > span {
  overflow: hidden;
  border: 1px solid #dfe7f1;
  background: #fff;
  box-shadow: 0 3px 12px rgb(22 53 91 / 8%);
}

.v43 .brand-mark img,
.v43 .v43d-brand > span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v43 .brand-mark img {
  border-radius: inherit;
}

/* v43.13: one complete, user-controlled night theme across both shells. */
body.v43.dark .v43m-tabbar {
  background: rgb(17 31 43 / 96%);
  box-shadow: 0 -8px 24px rgb(0 0 0 / 24%);
}

html:has(body.v43.dark),
body.v43.dark,
body.v43.dark .v43-mobile-app,
body.v43.dark .v43-desktop-app {
  background: var(--v43-canvas);
}

body.v43.dark .v43m-header,
body.v43.dark .v43d-topbar {
  background: rgb(17 31 43 / 94%);
}

body.v43.dark .v43m-header::after {
  background: linear-gradient(to bottom, rgb(17 31 43 / 0%), rgb(0 0 0 / 16%));
}

body.v43.dark .v43m-sheet,
body.v43.dark .v43d-search-panel,
body.v43.dark .auth-card {
  background: var(--v43-surface-raised);
}

body.v43.dark .v43-timetable-corner,
body.v43.dark .v43-timetable-day,
body.v43.dark .v43-timetable-period,
body.v43.dark .v43-timetable-cell,
body.v43.dark .v43-schedule-mode-tabs,
body.v43.dark .v43-course-timetable-mobile > nav {
  background: var(--v43-surface-soft);
}

body.v43.dark .v43-schedule-mode-tabs button.active,
body.v43.dark .v43-course-timetable-mobile > nav button.active {
  background: var(--v43-surface-raised);
}

body.v43.dark .v43-timetable-course {
  background: #183653;
  color: #dcecff;
}

body.v43.dark .v43-timetable-course small {
  color: rgb(220 236 255 / 68%);
}

body.v43.dark .v43-timetable-course.is-cyan { background: #163b43; color: #c8edf3; }
body.v43.dark .v43-timetable-course.is-indigo { background: #252f50; color: #d9dffc; }
body.v43.dark .v43-timetable-course.is-orange { background: #422e1f; color: #f4d6b9; }
body.v43.dark .v43-timetable-course.is-green { background: #1c382f; color: #cbe8dc; }

body.v43.dark .v43-record-actions > button[data-v43-delete]:hover,
body.v43.dark .v43-record-actions > button[data-v43-delete]:focus-visible {
  background: #422522;
  color: #f0a39b;
}

body.v43.dark .v43m-profile-mark,
body.v43.dark .brand-mark,
body.v43.dark .v43d-brand > span {
  border-color: var(--v43-line-strong);
  background: #f7f9fc;
}

body.v43.dark img,
body.v43.dark svg {
  color-scheme: normal;
}

/* v43.6: unified academic, growth and administration workspaces */
.v43 .v43d-center-tabs,
.v43 .v43m-center-tabs {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.v43 .v43d-center-tabs::-webkit-scrollbar,
.v43 .v43m-center-tabs::-webkit-scrollbar {
  display: none;
}

.v43 .v43d-center-tabs {
  position: relative;
  margin: -10px 0 30px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43d-center-tabs button,
.v43 .v43m-center-tabs button {
  position: relative;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--v43-ink-soft);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  cursor: pointer;
}

.v43 .v43d-center-tabs button:hover,
.v43 .v43m-center-tabs button:hover {
  background: var(--v43-surface-soft);
  color: var(--v43-ink-strong);
}

.v43 .v43d-center-tabs button.active,
.v43 .v43m-center-tabs button.active {
  background: var(--v43-surface-blue);
  color: var(--v43-blue-strong);
}

.v43 .v43d-center-tabs button.active::after {
  position: absolute;
  inset-inline: 13px;
  inset-block-end: -11px;
  height: 2px;
  border-radius: 2px;
  background: var(--v43-blue);
  content: "";
}

.v43 .v43m-center-head {
  display: none;
}

.v43 .v43-center-section {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.v43 .v43-center-section > header,
.v43 .v43-academic-deadlines > header,
.v43 .v43-admin-pending > header,
.v43 .v43-growth-path > header,
.v43 .v43-grade-chart > header,
.v43 .v43-exam-countdown > header,
.v43 .v43-competency-scale > header,
.v43 .v43-focus-week > header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.v43 .v43-center-section > header small,
.v43 .v43-academic-deadlines > header small,
.v43 .v43-admin-pending > header small,
.v43 .v43-growth-path > header small,
.v43 .v43-grade-chart > header small,
.v43 .v43-exam-countdown > header small,
.v43 .v43-competency-scale > header small,
.v43 .v43-focus-week > header small {
  display: block;
  margin-bottom: 3px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-center-section > header h2,
.v43 .v43-academic-deadlines > header h2,
.v43 .v43-admin-pending > header h2,
.v43 .v43-growth-path > header h2,
.v43 .v43-grade-chart > header h2,
.v43 .v43-exam-countdown > header h2,
.v43 .v43-competency-scale > header h2,
.v43 .v43-focus-week > header h2 {
  margin: 0;
  color: var(--v43-ink-strong);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.v43 .v43-center-section > header button,
.v43 .v43-academic-deadlines > header button,
.v43 .v43-admin-pending > header button,
.v43 .v43-growth-path > header button,
.v43 .v43-grade-chart > header button,
.v43 .v43-exam-countdown > header button,
.v43 .v43-competency-scale > header button,
.v43 .v43-plan-progress > button,
.v43 .v43-portfolio-filter > button {
  display: inline-flex;
  min-width: max-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--v43-line-strong);
  border-radius: 8px;
  background: var(--v43-surface);
  color: var(--v43-blue-strong);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.v43 .v43-center-section > header button svg,
.v43 .v43-academic-deadlines > header button svg,
.v43 .v43-admin-pending > header button svg,
.v43 .v43-growth-path > header button svg,
.v43 .v43-grade-chart > header button svg,
.v43 .v43-exam-countdown > header button svg,
.v43 .v43-competency-scale > header button svg,
.v43 .v43-plan-progress > button svg,
.v43 .v43-portfolio-filter > button svg {
  width: 16px;
  height: 16px;
}

.v43 .v43-center-rows {
  min-width: 0;
  border-top: 1px solid var(--v43-line);
}

.v43 .v43-center-rows > article {
  display: grid;
  min-width: 0;
  min-height: 68px;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-center-rows > article > span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--v43-surface-blue);
  color: var(--v43-blue);
}

.v43 .v43-center-rows > article > span:first-child svg {
  width: 16px;
  height: 16px;
}

.v43 .v43-center-rows > article > button {
  min-width: 0;
  min-height: 52px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--v43-ink);
  text-align: left;
}

.v43 .v43-center-rows strong,
.v43 .v43-center-rows small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-center-rows strong {
  color: var(--v43-ink-strong);
  font-size: 14px;
  font-weight: 650;
}

.v43 .v43-center-rows small {
  margin-top: 4px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-record-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.v43 .v43-center-rows .v43-record-actions > button,
.v43 .v43-course-ledger-unified .v43-record-actions > button,
.v43 .v43-assignment-timeline .v43-record-actions > button,
.v43 .v43-review-timeline .v43-record-actions > button,
.v43 .v43-milestone-route .v43-record-actions > button,
.v43 .v43-requirement-ledger .v43-record-actions > button,
.v43 .v43-admin-pending .v43-record-actions > button,
.v43 .v43-trash-ledger > article > button:last-child {
  display: grid;
  width: 36px;
  min-width: 36px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--v43-ink-faint);
}

.v43 .v43-center-rows .v43-record-actions > button:hover,
.v43 .v43-course-ledger-unified .v43-record-actions > button:hover,
.v43 .v43-assignment-timeline .v43-record-actions > button:hover,
.v43 .v43-review-timeline .v43-record-actions > button:hover,
.v43 .v43-milestone-route .v43-record-actions > button:hover,
.v43 .v43-requirement-ledger .v43-record-actions > button:hover,
.v43 .v43-admin-pending .v43-record-actions > button:hover {
  background: var(--v43-surface-soft);
  color: var(--v43-blue-strong);
}

/* Academic: deadline desk, course ledger, score chart and focus console. */
.v43 .v43-academic-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 28px 36px;
}

.v43 .v43-academic-overview-metrics,
.v43 .v43-assignment-summary,
.v43 .v43-grade-metrics,
.v43 .v43-review-summary,
.v43 .v43-admin-record-metrics,
.v43 .v43-admin-status-line {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--v43-line);
  border-radius: 10px;
  background: var(--v43-surface-soft);
}

.v43 .v43-admin-status-line {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v43 .v43-academic-overview-metrics > span,
.v43 .v43-assignment-summary > span,
.v43 .v43-grade-metrics > span,
.v43 .v43-review-summary > span,
.v43 .v43-admin-record-metrics > span,
.v43 .v43-admin-status-line > span {
  min-width: 0;
  padding: 18px 20px;
  border-inline-start: 1px solid var(--v43-line);
}

.v43 .v43-academic-overview-metrics > span:first-child,
.v43 .v43-assignment-summary > span:first-child,
.v43 .v43-grade-metrics > span:first-child,
.v43 .v43-review-summary > span:first-child,
.v43 .v43-admin-record-metrics > span:first-child,
.v43 .v43-admin-status-line > span:first-child {
  border-inline-start: 0;
}

.v43 .v43-academic-overview-metrics strong,
.v43 .v43-assignment-summary strong,
.v43 .v43-grade-metrics strong,
.v43 .v43-review-summary strong,
.v43 .v43-admin-record-metrics strong,
.v43 .v43-admin-status-line strong {
  display: block;
  color: var(--v43-ink-strong);
  font-size: 22px;
  font-weight: 720;
  line-height: 1.1;
}

.v43 .v43-academic-overview-metrics small,
.v43 .v43-assignment-summary small,
.v43 .v43-grade-metrics small,
.v43 .v43-review-summary small,
.v43 .v43-admin-record-metrics small,
.v43 .v43-admin-status-line small {
  display: block;
  margin-top: 6px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-academic-deadlines,
.v43 .v43-admin-pending {
  min-width: 0;
}

.v43 .v43-academic-deadlines > div,
.v43 .v43-admin-pending > div {
  border-top: 1px solid var(--v43-line);
}

.v43 .v43-academic-deadlines article {
  display: grid;
  min-width: 0;
  min-height: 68px;
  grid-template-columns: 54px 9px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-academic-deadlines article > time {
  color: var(--v43-ink-soft);
  font-size: 12px;
  text-align: right;
}

.v43 .v43-academic-deadlines article > i {
  width: 8px;
  height: 8px;
  border: 2px solid var(--v43-blue);
  border-radius: 50%;
  background: var(--v43-surface);
}

.v43 .v43-academic-deadlines article.urgent > i {
  border-color: var(--v43-orange);
  background: var(--v43-orange);
}

.v43 .v43-academic-deadlines article > button {
  min-width: 0;
  min-height: 52px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.v43 .v43-academic-deadlines article strong,
.v43 .v43-academic-deadlines article small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-academic-deadlines article strong {
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .v43-academic-deadlines article small {
  margin-top: 4px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-academic-next {
  align-self: start;
  min-width: 0;
  padding: 20px;
  border-radius: 10px;
  background: var(--v43-navy);
  color: #fff;
}

.v43 .v43-academic-next > header {
  margin-bottom: 8px;
}

.v43 .v43-academic-next > header small {
  color: rgb(255 255 255 / 56%);
  font-size: 12px;
}

.v43 .v43-academic-next > header h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 18px;
}

.v43 .v43-academic-next > button {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 68px;
  grid-template-columns: 48px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border: 0;
  border-top: 1px solid rgb(255 255 255 / 13%);
  background: transparent;
  color: #fff;
  text-align: left;
}

.v43 .v43-academic-next time {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.v43 .v43-academic-next strong,
.v43 .v43-academic-next small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-academic-next strong {
  font-size: 14px;
}

.v43 .v43-academic-next small {
  margin-top: 4px;
  color: rgb(255 255 255 / 58%);
  font-size: 12px;
}

.v43 .v43-academic-course-layout,
.v43 .v43-admin-record-columns,
.v43 .v43-competency-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 42px;
}

.v43 .v43-course-ledger-unified {
  border-top: 1px solid var(--v43-line);
}

.v43 .v43-course-ledger-unified > article {
  display: grid;
  min-width: 0;
  min-height: 86px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-course-index {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 9px;
  background: var(--v43-navy);
  color: #fff;
  font-size: 16px;
  font-weight: 720;
}

.v43 .v43-course-ledger-unified > article > button {
  display: grid;
  min-width: 0;
  min-height: 66px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 5px 14px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--v43-ink);
  text-align: left;
}

.v43 .v43-course-ledger-unified strong,
.v43 .v43-course-ledger-unified small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-course-ledger-unified strong {
  color: var(--v43-ink-strong);
  font-size: 15px;
}

.v43 .v43-course-ledger-unified small,
.v43 .v43-course-ledger-unified em {
  color: var(--v43-ink-faint);
  font-size: 12px;
  font-style: normal;
}

.v43 .v43-course-ledger-unified span {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--v43-surface-blue);
}

.v43 .v43-course-ledger-unified span i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--v43-blue);
}

.v43 .v43-assignment-workspace,
.v43 .v43-grade-workspace,
.v43 .v43-exam-workspace,
.v43 .v43-focus-workspace,
.v43 .v43-review-workspace,
.v43 .v43-admin-records,
.v43 .v43-vault-workspace {
  display: grid;
  min-width: 0;
  gap: 30px;
}

.v43 .v43-assignment-timeline,
.v43 .v43-review-timeline {
  position: relative;
  border-top: 1px solid var(--v43-line);
}

.v43 .v43-assignment-timeline > article,
.v43 .v43-review-timeline > article {
  display: grid;
  min-width: 0;
  min-height: 74px;
  grid-template-columns: 78px 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-assignment-timeline time,
.v43 .v43-review-timeline time {
  color: var(--v43-ink-soft);
  font-size: 12px;
  text-align: right;
}

.v43 .v43-assignment-timeline > article > i,
.v43 .v43-review-timeline > article > i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--v43-blue);
  border-radius: 50%;
  background: var(--v43-surface);
}

.v43 .v43-assignment-timeline > article.urgent > i {
  border-color: var(--v43-orange);
  background: var(--v43-orange);
}

.v43 .v43-assignment-timeline > article.done {
  opacity: 0.55;
}

.v43 .v43-assignment-timeline > article > button {
  min-width: 0;
  min-height: 58px;
  padding: 9px 0;
  border: 0;
  background: transparent;
  color: var(--v43-ink);
  text-align: left;
}

.v43 .v43-assignment-timeline button strong,
.v43 .v43-assignment-timeline button small,
.v43 .v43-assignment-timeline button span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-assignment-timeline button small,
.v43 .v43-assignment-timeline button span {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-assignment-timeline button strong {
  margin: 3px 0;
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .v43-grade-workspace {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.v43 .v43-grade-metrics,
.v43 .v43-grade-ledger {
  grid-column: 1 / -1;
}

.v43 .v43-grade-chart {
  grid-column: 1 / -1;
  min-width: 0;
}

.v43 .v43-grade-chart > div {
  display: flex;
  min-height: 230px;
  align-items: end;
  gap: clamp(10px, 2.2vw, 28px);
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--v43-line);
  background: linear-gradient(to bottom, transparent 24%, var(--v43-line) 25%, transparent 25.5%, transparent 49%, var(--v43-line) 50%, transparent 50.5%, transparent 74%, var(--v43-line) 75%, transparent 75.5%);
}

.v43 .v43-grade-chart article {
  display: grid;
  flex: 1 1 60px;
  min-width: 40px;
  max-width: 88px;
  grid-template-rows: 160px auto auto;
  justify-items: center;
  gap: 5px;
}

.v43 .v43-grade-chart article > span {
  display: flex;
  width: min(34px, 70%);
  height: 160px;
  align-items: end;
  overflow: hidden;
  border-radius: 5px 5px 2px 2px;
  background: var(--v43-surface-blue);
}

.v43 .v43-grade-chart article i {
  display: block;
  width: 100%;
  border-radius: inherit;
  background: var(--v43-blue);
}

.v43 .v43-grade-chart article strong {
  font-size: 13px;
}

.v43 .v43-grade-chart article small {
  width: 100%;
  overflow: hidden;
  color: var(--v43-ink-faint);
  font-size: 11px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-exam-countdown > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--v43-line);
}

.v43 .v43-exam-countdown > div > button {
  display: grid;
  min-width: 0;
  min-height: 150px;
  align-content: center;
  justify-items: start;
  gap: 6px;
  padding: 22px;
  border: 0;
  border-inline-end: 1px solid var(--v43-line);
  border-bottom: 1px solid var(--v43-line);
  background: transparent;
  color: var(--v43-ink);
  text-align: left;
}

.v43 .v43-exam-countdown > div > button:nth-child(3n) {
  border-inline-end: 0;
}

.v43 .v43-exam-countdown > div > button > span {
  color: var(--v43-blue);
}

.v43 .v43-exam-countdown > div > button.urgent > span,
.v43 .v43-exam-countdown > div > button.urgent > strong {
  color: var(--v43-orange);
}

.v43 .v43-exam-countdown > div > button strong {
  color: var(--v43-ink-strong);
  font-size: 24px;
}

.v43 .v43-exam-countdown > div > button small,
.v43 .v43-exam-countdown > div > button em {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-exam-countdown > div > button small {
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .v43-exam-countdown > div > button em {
  color: var(--v43-ink-faint);
  font-size: 12px;
  font-style: normal;
}

.v43 .v43-focus-workspace {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.v43 .v43-focus-history {
  grid-column: 1 / -1;
}

.v43 .v43-focus-console {
  display: grid;
  align-content: center;
  min-height: 300px;
  padding: 32px;
  border-radius: 12px;
  background: var(--v43-navy);
  color: #fff;
}

.v43 .v43-focus-console small,
.v43 .v43-focus-console strong,
.v43 .v43-focus-console span {
  display: block;
}

.v43 .v43-focus-console small,
.v43 .v43-focus-console span {
  color: rgb(255 255 255 / 58%);
  font-size: 12px;
}

.v43 .v43-focus-console strong {
  margin: 12px 0 6px;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.v43 .v43-focus-console > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.v43 .v43-focus-console button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
  color: #fff;
  white-space: nowrap;
}

.v43 .v43-focus-console button.is-primary {
  border-color: #fff;
  background: #fff;
  color: var(--v43-navy);
}

.v43 .v43-focus-week {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--v43-line);
  border-radius: 12px;
}

.v43 .v43-focus-week > header > span {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-focus-week > div {
  display: grid;
  min-height: 210px;
  grid-template-columns: repeat(7, minmax(24px, 1fr));
  align-items: end;
  gap: 10px;
}

.v43 .v43-focus-week article {
  display: grid;
  grid-template-rows: 150px auto auto;
  justify-items: center;
  gap: 5px;
}

.v43 .v43-focus-week article > span {
  display: flex;
  width: min(24px, 80%);
  height: 150px;
  align-items: end;
  overflow: hidden;
  border-radius: 5px;
  background: var(--v43-surface-blue);
}

.v43 .v43-focus-week article i {
  display: block;
  width: 100%;
  border-radius: inherit;
  background: var(--v43-blue);
}

.v43 .v43-focus-week article small,
.v43 .v43-focus-week article em {
  color: var(--v43-ink-faint);
  font-size: 11px;
  font-style: normal;
}

/* Growth: capability map, review line, route and portfolio shelf. */
.v43 .v43-growth-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 32px 42px;
}

.v43 .v43-growth-reviews {
  grid-column: 1 / -1;
}

.v43 .v43-growth-path > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  padding-top: 18px;
  border-top: 1px solid var(--v43-line);
}

.v43 .v43-growth-path article span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.v43 .v43-growth-path article strong {
  color: var(--v43-ink-strong);
  font-size: 13px;
}

.v43 .v43-growth-path article small {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-growth-path article > i {
  display: block;
  height: 6px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--v43-surface-blue);
}

.v43 .v43-growth-path article > i > b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--v43-blue);
}

.v43 .v43-growth-counts {
  display: grid;
  align-self: start;
  border-inline-start: 1px solid var(--v43-line);
}

.v43 .v43-growth-counts > span {
  min-height: 74px;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-growth-counts strong,
.v43 .v43-growth-counts small {
  display: block;
}

.v43 .v43-growth-counts strong {
  color: var(--v43-ink-strong);
  font-size: 24px;
}

.v43 .v43-growth-counts small {
  margin-top: 4px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-competency-scale > div {
  border-top: 1px solid var(--v43-line);
}

.v43 .v43-competency-scale label {
  display: grid;
  min-height: 76px;
  grid-template-columns: minmax(160px, 0.65fr) minmax(160px, 1fr) 40px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-competency-scale label strong,
.v43 .v43-competency-scale label small {
  display: block;
}

.v43 .v43-competency-scale label strong {
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .v43-competency-scale label small {
  margin-top: 4px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-competency-scale input {
  width: 100%;
  accent-color: var(--v43-blue);
}

.v43 .v43-competency-scale output {
  color: var(--v43-blue-strong);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.v43 .v43-review-timeline > article {
  grid-template-columns: 98px 12px minmax(0, 1fr) auto;
  align-items: start;
  padding: 16px 0;
}

.v43 .v43-review-timeline > article > i {
  margin-top: 6px;
}

.v43 .v43-review-timeline > article > div {
  min-width: 0;
}

.v43 .v43-review-timeline strong,
.v43 .v43-review-timeline p,
.v43 .v43-review-timeline small {
  display: block;
}

.v43 .v43-review-timeline strong {
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .v43-review-timeline p {
  margin: 6px 0 0;
  color: var(--v43-ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.v43 .v43-review-timeline small {
  margin-top: 5px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-planning-workspace {
  min-width: 0;
}

.v43 .v43-plan-progress {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(160px, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  padding: 20px 22px;
  border: 1px solid var(--v43-line);
  border-radius: 10px;
  background: var(--v43-surface-soft);
}

.v43 .v43-plan-progress small,
.v43 .v43-plan-progress h2 {
  display: block;
}

.v43 .v43-plan-progress small {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-plan-progress h2 {
  margin: 4px 0 0;
  color: var(--v43-ink-strong);
  font-size: 17px;
}

.v43 .v43-plan-progress > span {
  height: 7px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--v43-surface-blue);
}

.v43 .v43-plan-progress > span i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--v43-blue);
}

.v43 .v43-milestone-route {
  position: relative;
  padding-inline-start: 8px;
}

.v43 .v43-milestone-route > article {
  display: grid;
  min-width: 0;
  min-height: 88px;
  grid-template-columns: 44px 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-milestone-route > article > span {
  color: var(--v43-ink-faint);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.v43 .v43-milestone-route > article > i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--v43-line-strong);
  border-radius: 50%;
}

.v43 .v43-milestone-route > article.done > i {
  border-color: var(--v43-blue);
  background: var(--v43-blue);
}

.v43 .v43-milestone-route > article.active > i {
  border-color: var(--v43-orange);
  box-shadow: 0 0 0 5px var(--v43-orange-soft);
}

.v43 .v43-milestone-route > article > button {
  min-width: 0;
  min-height: 64px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--v43-ink);
  text-align: left;
}

.v43 .v43-milestone-route button small,
.v43 .v43-milestone-route button strong,
.v43 .v43-milestone-route button time {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-milestone-route button small,
.v43 .v43-milestone-route button time {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-milestone-route button strong {
  margin: 4px 0;
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .v43-portfolio-filter {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-portfolio-filter > span strong,
.v43 .v43-portfolio-filter > span small {
  display: block;
}

.v43 .v43-portfolio-filter > span strong {
  color: var(--v43-ink-strong);
  font-size: 21px;
}

.v43 .v43-portfolio-filter > span small {
  margin-top: 3px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-portfolio-filter > button {
  margin-inline-start: auto;
}

.v43 .v43-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.v43 .v43-portfolio-grid > article {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 210px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--v43-line);
  border-radius: 10px;
  background: var(--v43-surface);
}

.v43 .v43-portfolio-grid > article > span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 9px;
  background: var(--v43-surface-blue);
  color: var(--v43-blue);
}

.v43 .v43-portfolio-grid article small,
.v43 .v43-portfolio-grid article strong,
.v43 .v43-portfolio-grid article p,
.v43 .v43-portfolio-grid article em {
  display: block;
}

.v43 .v43-portfolio-grid article small,
.v43 .v43-portfolio-grid article em {
  color: var(--v43-ink-faint);
  font-size: 12px;
  font-style: normal;
}

.v43 .v43-portfolio-grid article strong {
  margin-top: 5px;
  color: var(--v43-ink-strong);
  font-size: 15px;
}

.v43 .v43-portfolio-grid article p {
  margin: 9px 0 14px;
  color: var(--v43-ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.v43 .v43-portfolio-grid article > a {
  position: absolute;
  inset-block-start: 18px;
  inset-inline-end: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 7px;
  color: var(--v43-blue);
}

.v43 .v43-portfolio-grid .v43-record-actions {
  position: absolute;
  inset-inline-end: 12px;
  inset-block-end: 10px;
}

/* Administration: status ledger, operational shortcuts and data vault. */
.v43 .v43-admin-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 30px 42px;
}

.v43 .v43-admin-pending > div > article {
  display: grid;
  min-width: 0;
  min-height: 70px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-admin-pending > div > article > button:first-child,
.v43 .v43-requirement-ledger > article > button:first-child {
  display: grid;
  min-width: 0;
  min-height: 58px;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--v43-ink);
  text-align: left;
}

.v43 .v43-admin-pending > div > article > button:first-child > i,
.v43 .v43-requirement-ledger > article > button:first-child > i {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid var(--v43-line-strong);
  border-radius: 50%;
}

.v43 .v43-admin-pending strong,
.v43 .v43-admin-pending small,
.v43 .v43-requirement-ledger strong,
.v43 .v43-requirement-ledger small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-admin-pending strong,
.v43 .v43-requirement-ledger strong {
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .v43-admin-pending small,
.v43 .v43-requirement-ledger small {
  margin-top: 4px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-admin-quick {
  align-self: start;
  min-width: 0;
  padding: 20px;
  border-radius: 10px;
  background: var(--v43-surface-soft);
}

.v43 .v43-admin-quick > header small {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-admin-quick > header h2 {
  margin: 4px 0 12px;
  color: var(--v43-ink-strong);
  font-size: 18px;
}

.v43 .v43-admin-quick > button {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 72px;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border: 0;
  border-top: 1px solid var(--v43-line);
  background: transparent;
  color: var(--v43-blue-strong);
  text-align: left;
}

.v43 .v43-admin-quick > button > span strong,
.v43 .v43-admin-quick > button > span small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-admin-quick > button > span strong {
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .v43-admin-quick > button > span small {
  margin-top: 4px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-requirements-progress,
.v43 .v43-vault-status {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(180px, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
  padding: 20px 22px;
  border: 1px solid var(--v43-line);
  border-radius: 10px;
  background: var(--v43-surface-soft);
}

.v43 .v43-requirements-progress small,
.v43 .v43-requirements-progress h2 {
  display: block;
}

.v43 .v43-requirements-progress small {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-requirements-progress h2 {
  margin: 4px 0 0;
  color: var(--v43-ink-strong);
  font-size: 17px;
}

.v43 .v43-requirements-progress > span {
  height: 7px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--v43-surface-blue);
}

.v43 .v43-requirements-progress > span i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--v43-blue);
}

.v43 .v43-requirements-progress > button {
  min-width: max-content;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--v43-line-strong);
  border-radius: 8px;
  background: var(--v43-surface);
  color: var(--v43-blue-strong);
  white-space: nowrap;
}

.v43 .v43-requirement-ledger {
  border-top: 1px solid var(--v43-line);
}

.v43 .v43-requirement-ledger > article {
  display: grid;
  min-width: 0;
  min-height: 70px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-requirement-ledger > article.done {
  opacity: 0.62;
}

.v43 .v43-requirement-ledger > article.done > button:first-child > i {
  border-color: var(--v43-blue);
  background: var(--v43-blue);
  color: #fff;
}

.v43 .v43-vault-status {
  grid-template-columns: 48px minmax(0, 1fr) auto;
  margin-bottom: 0;
}

.v43 .v43-vault-status > span:first-child {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 10px;
  background: var(--v43-surface-blue);
  color: var(--v43-blue);
}

.v43 .v43-vault-status small,
.v43 .v43-vault-status h2,
.v43 .v43-vault-status p {
  display: block;
}

.v43 .v43-vault-status small {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-vault-status h2 {
  margin: 3px 0 4px;
  color: var(--v43-ink-strong);
  font-size: 17px;
}

.v43 .v43-vault-status p {
  margin: 0;
  color: var(--v43-ink-soft);
  font-size: 13px;
}

.v43 .v43-vault-status > button {
  min-width: max-content;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--v43-line-strong);
  border-radius: 8px;
  background: var(--v43-surface);
  color: var(--v43-blue-strong);
  white-space: nowrap;
}

.v43 .v43-vault-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--v43-line);
}

.v43 .v43-vault-actions > button {
  display: grid;
  min-width: 0;
  min-height: 126px;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 0;
  border-inline-end: 1px solid var(--v43-line);
  background: transparent;
  color: var(--v43-blue);
  text-align: left;
}

.v43 .v43-vault-actions > button:last-child {
  border-inline-end: 0;
}

.v43 .v43-vault-actions strong,
.v43 .v43-vault-actions small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-vault-actions strong {
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .v43-vault-actions small {
  margin-top: 5px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-trash-ledger {
  border-top: 1px solid var(--v43-line);
}

.v43 .v43-trash-ledger > article {
  display: grid;
  min-width: 0;
  min-height: 66px;
  grid-template-columns: 34px minmax(0, 1fr) auto 36px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-trash-ledger > article > span:first-child {
  color: var(--v43-ink-faint);
}

.v43 .v43-trash-ledger strong,
.v43 .v43-trash-ledger small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-trash-ledger strong {
  color: var(--v43-ink-strong);
  font-size: 14px;
}

.v43 .v43-trash-ledger small {
  margin-top: 4px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-trash-ledger > article > button:nth-last-child(2) {
  min-width: max-content;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--v43-line-strong);
  border-radius: 7px;
  background: var(--v43-surface);
  color: var(--v43-blue-strong);
}

@media (min-width: 821px) {
  .v43 .v43d-page-head h1 {
    font-size: 25px;
  }

  .v43 .v43d-page-head p {
    max-width: 620px;
  }
}

@media (min-width: 821px) and (max-width: 1360px) {
  .v43 .v43-academic-course-layout,
  .v43 .v43-admin-record-columns,
  .v43 .v43-competency-workspace {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

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

@media (min-width: 821px) and (max-width: 1120px) {
  .v43 .v43-academic-overview,
  .v43 .v43-growth-overview,
  .v43 .v43-admin-overview,
  .v43 .v43-focus-workspace {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43 .v43-academic-next,
  .v43 .v43-growth-counts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v43 .v43-academic-next > header,
  .v43 .v43-growth-counts {
    grid-column: 1 / -1;
  }

  .v43 .v43-focus-history,
  .v43 .v43-growth-reviews {
    grid-column: auto;
  }

  .v43 .v43-exam-countdown > div,
  .v43 .v43-vault-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v43 .v43-exam-countdown > div > button:nth-child(3n) {
    border-inline-end: 1px solid var(--v43-line);
  }

  .v43 .v43-exam-countdown > div > button:nth-child(2n),
  .v43 .v43-vault-actions > button:nth-child(2n) {
    border-inline-end: 0;
  }

  .v43 .v43-vault-actions > button:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--v43-line);
  }
}

@media (max-width: 820px) {
  .v43 .v43m-center-head {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 2px 0 12px;
  }

  .v43 .v43m-center-head > div {
    min-width: 0;
  }

  .v43 .v43m-center-head small {
    display: block;
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43 .v43m-center-head h1 {
    margin: 3px 0 0;
    color: var(--v43-ink-strong);
    font-size: 20px;
    font-weight: 720;
  }

  .v43 .v43m-center-head > button {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--v43-navy);
    color: #fff;
  }

  .v43 .v43m-center-tabs {
    gap: 5px;
    margin: 0 -16px 20px;
    padding: 0 16px 5px;
  }

  .v43 .v43m-center-tabs button {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--v43-line);
    border-radius: 22px;
    background: var(--v43-surface);
    font-size: 13px;
  }

  .v43 .v43m-center-tabs button.active {
    border-color: var(--v43-blue);
    background: var(--v43-surface-blue);
  }

  .v43 .v43-center-section > header,
  .v43 .v43-academic-deadlines > header,
  .v43 .v43-admin-pending > header,
  .v43 .v43-growth-path > header,
  .v43 .v43-grade-chart > header,
  .v43 .v43-exam-countdown > header,
  .v43 .v43-competency-scale > header,
  .v43 .v43-focus-week > header {
    margin-bottom: 10px;
  }

  .v43 .v43-center-section > header h2,
  .v43 .v43-academic-deadlines > header h2,
  .v43 .v43-admin-pending > header h2,
  .v43 .v43-growth-path > header h2,
  .v43 .v43-grade-chart > header h2,
  .v43 .v43-exam-countdown > header h2,
  .v43 .v43-competency-scale > header h2,
  .v43 .v43-focus-week > header h2 {
    font-size: 16px;
  }

  .v43 .v43-center-section > header button,
  .v43 .v43-academic-deadlines > header button,
  .v43 .v43-admin-pending > header button,
  .v43 .v43-growth-path > header button,
  .v43 .v43-grade-chart > header button,
  .v43 .v43-exam-countdown > header button,
  .v43 .v43-competency-scale > header button,
  .v43 .v43-plan-progress > button,
  .v43 .v43-portfolio-filter > button {
    min-height: 44px;
  }

  .v43 .v43-academic-overview,
  .v43 .v43-academic-course-layout,
  .v43 .v43-grade-workspace,
  .v43 .v43-focus-workspace,
  .v43 .v43-growth-overview,
  .v43 .v43-competency-workspace,
  .v43 .v43-admin-overview,
  .v43 .v43-admin-record-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .v43 .v43-academic-overview-metrics,
  .v43 .v43-assignment-summary,
  .v43 .v43-grade-metrics,
  .v43 .v43-review-summary,
  .v43 .v43-admin-record-metrics,
  .v43 .v43-admin-status-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 9px;
  }

  .v43 .v43-admin-status-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v43 .v43-admin-status-line > span:nth-child(3) {
    border-inline-start: 0;
    border-top: 1px solid var(--v43-line);
  }

  .v43 .v43-admin-status-line > span:nth-child(4) {
    border-top: 1px solid var(--v43-line);
  }

  .v43 .v43-academic-overview-metrics > span,
  .v43 .v43-assignment-summary > span,
  .v43 .v43-grade-metrics > span,
  .v43 .v43-review-summary > span,
  .v43 .v43-admin-record-metrics > span,
  .v43 .v43-admin-status-line > span {
    padding: 14px 11px;
  }

  .v43 .v43-academic-overview-metrics strong,
  .v43 .v43-assignment-summary strong,
  .v43 .v43-grade-metrics strong,
  .v43 .v43-review-summary strong,
  .v43 .v43-admin-record-metrics strong,
  .v43 .v43-admin-status-line strong {
    font-size: 18px;
  }

  .v43 .v43-academic-overview-metrics small,
  .v43 .v43-assignment-summary small,
  .v43 .v43-grade-metrics small,
  .v43 .v43-review-summary small,
  .v43 .v43-admin-record-metrics small,
  .v43 .v43-admin-status-line small {
    font-size: 11px;
  }

  .v43 .v43-academic-deadlines article,
  .v43 .v43-assignment-timeline > article {
    grid-template-columns: 48px 8px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .v43 .v43-academic-next {
    padding: 17px;
  }

  .v43 .v43-course-ledger-unified > article {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .v43 .v43-course-index {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .v43 .v43-course-ledger-unified > article > button {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43 .v43-course-ledger-unified em {
    display: none;
  }

  .v43 .v43-exam-countdown > div,
  .v43 .v43-vault-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43 .v43-exam-countdown > div > button,
  .v43 .v43-vault-actions > button {
    min-height: 86px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43 .v43-exam-countdown > div > button {
    grid-template-columns: 32px 64px minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: 5px 10px;
    padding: 14px 8px;
  }

  .v43 .v43-exam-countdown > div > button > span {
    grid-row: 1 / 3;
  }

  .v43 .v43-exam-countdown > div > button strong {
    grid-row: 1 / 3;
    font-size: 19px;
  }

  .v43 .v43-exam-countdown > div > button small,
  .v43 .v43-exam-countdown > div > button em {
    grid-column: 3;
  }

  .v43 .v43-focus-console {
    min-height: 230px;
    padding: 24px;
  }

  .v43 .v43-focus-console strong {
    font-size: 44px;
  }

  .v43 .v43-focus-week {
    padding: 20px 14px;
  }

  .v43 .v43-focus-week > div {
    min-height: 170px;
    gap: 6px;
  }

  .v43 .v43-focus-week article {
    grid-template-rows: 120px auto auto;
  }

  .v43 .v43-focus-week article > span {
    height: 120px;
  }

  .v43 .v43-growth-path > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }

  .v43 .v43-growth-counts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-inline-start: 0;
    border-block: 1px solid var(--v43-line);
  }

  .v43 .v43-growth-counts > span {
    min-height: auto;
    padding: 14px 10px;
    border-inline-start: 1px solid var(--v43-line);
    border-bottom: 0;
    text-align: center;
  }

  .v43 .v43-growth-counts > span:first-child {
    border-inline-start: 0;
  }

  .v43 .v43-competency-scale label {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 9px 12px;
    padding: 12px 0;
  }

  .v43 .v43-competency-scale label > span {
    grid-column: 1 / -1;
  }

  .v43 .v43-review-timeline > article {
    grid-template-columns: 68px 9px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .v43 .v43-review-timeline p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .v43 .v43-plan-progress,
  .v43 .v43-requirements-progress,
  .v43 .v43-vault-status {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 13px;
    padding: 16px;
  }

  .v43 .v43-plan-progress > span,
  .v43 .v43-requirements-progress > span {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .v43 .v43-plan-progress > button,
  .v43 .v43-requirements-progress > button {
    grid-column: 2;
    grid-row: 1;
  }

  .v43 .v43-milestone-route > article {
    grid-template-columns: 32px 9px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .v43 .v43-portfolio-filter {
    gap: 16px;
  }

  .v43 .v43-portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .v43 .v43-portfolio-grid > article {
    min-height: 176px;
  }

  .v43 .v43-vault-status {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .v43 .v43-vault-status > button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
  }

  .v43 .v43-vault-actions > button {
    min-height: 84px;
    padding: 14px 4px;
  }

  .v43 .v43-trash-ledger > article {
    grid-template-columns: 28px minmax(0, 1fr) auto 36px;
    gap: 8px;
  }

  .v43 .v43-trash-ledger > article > button:nth-last-child(2) {
    min-height: 44px;
  }

  .v43 .v43-center-rows > article {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .v43 .v43-center-rows .v43-record-actions,
  .v43 .v43-course-ledger-unified .v43-record-actions,
  .v43 .v43-assignment-timeline .v43-record-actions,
  .v43 .v43-review-timeline .v43-record-actions,
  .v43 .v43-milestone-route .v43-record-actions,
  .v43 .v43-requirement-ledger .v43-record-actions,
  .v43 .v43-admin-pending .v43-record-actions {
    display: grid;
    grid-template-columns: 36px;
  }
}

@media (max-width: 390px) {
  .v43 .v43-academic-overview-metrics > span,
  .v43 .v43-assignment-summary > span,
  .v43 .v43-grade-metrics > span,
  .v43 .v43-review-summary > span,
  .v43 .v43-admin-record-metrics > span {
    padding-inline: 8px;
  }

  .v43 .v43-academic-deadlines article,
  .v43 .v43-assignment-timeline > article {
    grid-template-columns: 40px 7px minmax(0, 1fr) auto;
    gap: 7px;
  }

  .v43 .v43-review-timeline > article {
    grid-template-columns: 54px 7px minmax(0, 1fr) auto;
    gap: 7px;
  }

  .v43 .v43-portfolio-filter {
    flex-wrap: wrap;
  }

  .v43 .v43-portfolio-filter > button {
    width: 100%;
    margin-inline-start: 0;
  }
}

@media (min-width: 600px) and (max-width: 820px) {
  .v43m-content {
    width: min(100%, 700px);
    margin-inline: auto;
    padding-inline: 22px;
  }

  .v43m-tabbar {
    inset-inline: 50% auto;
    width: min(560px, calc(100vw - 24px));
    transform: translateX(-50%);
  }

  .v43m-fab {
    inset-inline: auto calc(50% - 280px + 14px);
  }
}

/* v43.2 final cascade: these rules intentionally follow every legacy layer. */
.v43-desktop-app small,
.v43-desktop-app em,
.v43-mobile-app small,
.v43-mobile-app em,
.v43m-sheet small,
.v43m-sheet em {
  font-size: 12px;
}

@media (min-width: 1361px) {
  .v43d-resource-results > div,
  .v43d-resource-recent > div {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1121px) and (max-width: 1360px) {
  .v43d-resource-results > div,
  .v43d-resource-recent > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .v43d-search-panel {
    inset-inline-start: 94px;
    width: calc(100vw - 118px);
  }

  .v43d-today-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "action" "deadline" "research" "journey";
  }

  .v43d-journey {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .v43d-today-agenda {
    display: block;
    padding: 14px 0 0;
    border-inline-start: 0;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-academic-layout,
  .v43d-research-layout,
  .v43d-sports-layout,
  .v43d-sport-detail-grid,
  .v43d-growth-layout,
  .v43d-admin-layout,
  .v43d-schedule-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43d-segmented {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .v43d-resource-results > div,
  .v43d-resource-recent > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .v43m-header {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    padding-inline: max(14px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  }

  .v43m-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .v43m-header-button,
  .v43m-add {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .v43m-add {
    border-radius: 50%;
    background: var(--v43-navy);
    color: #fff;
  }

  .v43m-content {
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
    padding: 12px 16px calc(92px + env(safe-area-inset-bottom));
    scroll-padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .v43m-tabbar {
    inset: auto 0 0;
    width: 100%;
    height: calc(64px + env(safe-area-inset-bottom));
    padding: 5px max(8px, env(safe-area-inset-right)) env(safe-area-inset-bottom) max(8px, env(safe-area-inset-left));
    border: 0;
    border-top: 1px solid var(--v43-line);
    border-radius: 0;
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 -8px 24px rgb(7 27 45 / 7%);
    transform: none;
    backdrop-filter: blur(20px) saturate(170%);
  }

  .v43m-tabbar button {
    min-width: 0;
    min-height: 54px;
    border-radius: 10px;
  }

  .v43m-tabbar button.active {
    background: var(--v43-surface-blue);
  }

  .v43m-sheet {
    inset: auto 0 0;
    width: 100%;
    max-height: min(88dvh, 760px);
    padding: 8px 18px calc(18px + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -20px 60px rgb(7 27 45 / 18%);
    animation-name: v43-sheet-in;
  }

  .v43m-sheet.is-closing {
    animation-name: v43-sheet-out;
  }

  .v43m-sheet-grabber {
    display: block;
  }

  .v43m-sheet > header {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .v43m-sheet > header button {
    width: 44px;
    height: 44px;
  }

  .v43m-sheet-body {
    max-height: calc(88dvh - 88px - env(safe-area-inset-bottom));
    padding-bottom: 16px;
    overscroll-behavior: contain;
  }

  .toast {
    right: 12px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    left: 12px;
    max-width: none;
    min-height: 44px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .v43m-content {
    padding-inline: 14px;
  }

  .v43m-form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* v43.2 acceptance layer: complete navigation, record controls and native mobile chrome. */
.v43-desktop-app small,
.v43-desktop-app em,
.v43-mobile-app small,
.v43-mobile-app em,
.v43m-sheet small,
.v43m-sheet em {
  font-size: 12px;
}

.v43-record-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
}

.v43-record-actions > button {
  display: grid;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--v43-ink-faint);
}

.v43-record-actions > button:hover,
.v43-record-actions > button:focus-visible {
  background: var(--v43-surface-blue);
  color: var(--v43-blue-strong);
}

.v43-record-actions > button[data-v43-delete]:hover,
.v43-record-actions > button[data-v43-delete]:focus-visible {
  background: #fff1ef;
  color: #b43c2f;
}

.v43-record-actions svg {
  width: 16px;
  height: 16px;
}

.v43-task-record {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
}

.v43-task-record > button:first-child {
  min-width: 0;
}

.v43-task-record.desktop .v43-record-actions > button {
  width: 36px;
  min-width: 36px;
  height: 40px;
}

.v43-task-record.desktop.primary {
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.v43-task-record.desktop.primary .v43d-primary-task {
  border-bottom: 0;
}

.v43-task-record.desktop .v43-record-actions > button {
  color: rgb(255 255 255 / 58%);
}

.v43-task-record.desktop .v43-record-actions > button:hover,
.v43-task-record.desktop .v43-record-actions > button:focus-visible {
  background: rgb(255 255 255 / 10%);
  color: #fff;
}

.v43-requirement-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid var(--v43-line);
}

.v43-requirement-row > button:first-child {
  border-bottom: 0 !important;
}

.edit-delete-button {
  margin-inline-end: auto;
}

.v43d-workspace-tabs,
.v43m-workspace-tabs {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.v43d-workspace-tabs::-webkit-scrollbar,
.v43m-workspace-tabs::-webkit-scrollbar {
  display: none;
}

.v43d-workspace-tabs {
  margin: -10px 0 28px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--v43-line);
}

.v43d-workspace-tabs button,
.v43m-workspace-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--v43-ink-soft);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.v43d-workspace-tabs button:hover,
.v43d-workspace-tabs button.active,
.v43m-workspace-tabs button.active {
  background: var(--v43-surface-blue);
  color: var(--v43-blue-strong);
}

.v43d-search-panel {
  position: fixed;
  z-index: 120;
  inset-block-start: 64px;
  inset-inline-start: max(294px, calc((100vw - min(620px, calc(100vw - 620px))) / 2));
  width: min(620px, calc(100vw - 420px));
  max-height: min(620px, calc(100dvh - 96px));
  overflow: auto;
  border: 1px solid var(--v43-line-strong);
  border-radius: 10px;
  background: var(--v43-surface);
  box-shadow: 0 22px 60px rgb(7 27 45 / 16%);
}

.v43d-search-panel[hidden] {
  display: none;
}

.v43d-search-panel > header {
  position: sticky;
  z-index: 2;
  inset-block-start: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--v43-line);
  background: rgb(255 255 255 / 96%);
}

.v43d-search-panel > header small,
.v43d-search-panel > header strong {
  display: block;
}

.v43d-search-panel > header small {
  color: var(--v43-blue);
}

.v43d-search-panel > header strong {
  margin-top: 2px;
  color: var(--v43-ink-strong);
  font-size: 16px;
}

.v43d-search-panel > header > span {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43d-search-panel > div > button,
.v43d-search-panel > div > a {
  display: grid;
  width: 100%;
  min-height: 76px;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 0;
  border-bottom: 1px solid var(--v43-line);
  background: transparent;
  color: var(--v43-ink);
  text-align: start;
  text-decoration: none;
}

.v43d-search-panel > div > button:hover,
.v43d-search-panel > div > a:hover,
.v43d-search-panel > div > button:focus-visible,
.v43d-search-panel > div > a:focus-visible {
  background: var(--v43-surface-soft);
}

.v43d-search-panel > div > button > span,
.v43d-search-panel > div > a > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: var(--v43-surface-blue);
  color: var(--v43-blue);
}

.v43d-search-panel strong,
.v43d-search-panel small,
.v43d-search-panel p {
  display: block;
  min-width: 0;
}

.v43d-search-panel p {
  margin: 3px 0 0;
  overflow: hidden;
  color: var(--v43-ink-faint);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43-search-empty {
  padding: 30px 20px !important;
  text-align: center;
  white-space: normal !important;
}

.v43-feature-directory {
  display: grid;
  gap: 22px;
}

.v43-feature-group > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--v43-ink-soft);
}

.v43-feature-group > header span {
  font-size: 13px;
  font-weight: 720;
}

.v43-feature-group > div {
  display: grid;
  border-top: 1px solid var(--v43-line);
}

.v43-feature-group > div > button,
.v43-category-directory > button {
  display: grid;
  width: 100%;
  min-height: 68px;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  padding: 7px 2px;
  border: 0;
  border-bottom: 1px solid var(--v43-line);
  background: transparent;
  color: var(--v43-ink);
  text-align: start;
}

.v43-feature-group > div > button > svg:first-child {
  color: var(--v43-blue);
}

.v43-feature-group strong,
.v43-feature-group small {
  display: block;
}

.v43-feature-group small {
  margin-top: 2px;
  color: var(--v43-ink-faint);
}

.v43-category-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.v43-category-directory > button {
  grid-template-columns: minmax(0, 1fr) auto 18px;
}

.v43-category-directory > button > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.v43-category-directory > button > span svg {
  flex: 0 0 20px;
  color: var(--v43-blue);
}

.v43-category-directory em {
  color: var(--v43-ink-faint);
  font-style: normal;
}

@media (min-width: 821px) {
  .v43-desktop-app button:not(.v43-record-actions > button) {
    min-height: 40px;
  }

  .v43d-resource-results > div,
  .v43d-resource-recent > div {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 821px) and (max-width: 1360px) {
  .v43d-search-panel {
    inset-inline-start: 120px;
    width: min(620px, calc(100vw - 220px));
  }

  .v43d-resource-results > div,
  .v43d-resource-recent > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .v43d-search-panel {
    inset-inline-start: 94px;
    width: calc(100vw - 118px);
  }

  .v43d-today-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "action" "deadline" "research" "journey";
  }

  .v43d-journey {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .v43d-today-agenda {
    display: block;
    padding: 14px 0 0;
    border-inline-start: 0;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-academic-layout,
  .v43d-research-layout,
  .v43d-sports-layout,
  .v43d-growth-layout,
  .v43d-admin-layout,
  .v43d-schedule-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43d-resource-results > div,
  .v43d-resource-recent > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .v43-mobile-app {
    font-size: 15px;
  }

  .v43m-header {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    padding-inline: max(14px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  }

  .v43m-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .v43m-header-button,
  .v43m-add {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .v43m-add {
    border-radius: 50%;
    background: var(--v43-navy);
    color: #fff;
  }

  .v43m-content {
    padding: 12px 16px calc(92px + env(safe-area-inset-bottom));
    scroll-padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .v43m-tabbar {
    inset: auto 0 0;
    width: 100%;
    height: calc(64px + env(safe-area-inset-bottom));
    padding: 5px max(8px, env(safe-area-inset-right)) env(safe-area-inset-bottom) max(8px, env(safe-area-inset-left));
    border: 0;
    border-top: 1px solid var(--v43-line);
    border-radius: 0;
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 -8px 24px rgb(7 27 45 / 7%);
    transform: none;
    backdrop-filter: blur(20px) saturate(170%);
  }

  .v43m-tabbar button {
    min-width: 0;
    min-height: 54px;
    border-radius: 10px;
  }

  .v43m-tabbar button.active {
    background: var(--v43-surface-blue);
  }

  .v43m-workspace-tabs {
    margin: 4px -16px 18px;
    padding: 0 16px 9px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43m-workspace-tabs button {
    min-height: 44px;
  }

  .v43-record-actions > button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .v43-task-record.mobile {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .v43-task-record.mobile .v43-record-actions {
    gap: 0;
  }

  .v43-task-record.mobile .v43-record-actions > button[data-v43-delete] {
    display: none;
  }

  .v43-requirement-row {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .v43-category-directory {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43-feature-group > div > button,
  .v43-category-directory > button {
    min-height: 72px;
  }

  .v43m-sheet {
    inset: auto 0 0;
    width: 100%;
    max-height: min(88dvh, 760px);
    padding: 8px 18px calc(18px + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -20px 60px rgb(7 27 45 / 18%);
    animation-name: v43-sheet-in;
  }

  .v43m-sheet.is-closing {
    animation-name: v43-sheet-out;
  }

  .v43m-sheet-grabber {
    display: block;
  }

  .v43m-sheet > header {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .v43m-sheet > header button {
    width: 44px;
    height: 44px;
  }

  .v43m-sheet-body {
    max-height: calc(88dvh - 88px - env(safe-area-inset-bottom));
    padding-bottom: 16px;
    overscroll-behavior: contain;
  }

  .v43m-sheet label > span,
  .v43m-sheet-actions strong,
  .v43m-sheet-actions small {
    font-size: 12px;
  }

  .toast {
    right: 12px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    left: 12px;
    max-width: none;
    min-height: 44px;
    text-align: center;
  }

  .modal-actions {
    flex-wrap: wrap;
  }

  .edit-delete-button {
    flex: 1 0 100%;
    order: 3;
    min-height: 44px;
    margin: 4px 0 0;
  }

  @keyframes v43-sheet-in {
    from { transform: translate3d(0, 100%, 0); }
    to { transform: translate3d(0, 0, 0); }
  }

  @keyframes v43-sheet-out {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, 100%, 0); }
  }
}

@media (max-width: 390px) {
  .v43m-content {
    padding-inline: 14px;
  }

  .v43m-workspace-tabs {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .v43m-form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 390px) {
  .v43m-content {
    padding-inline: 13px;
  }

  .v43m-category-rail {
    margin-inline: -13px;
    padding-inline: 13px;
  }

  .v43m-resource-results > div {
    gap: 7px;
  }

  .v43m-resource-tile {
    min-height: 134px;
  }

  .v43m-pipeline-map {
    padding-inline: 4px;
  }

  .v43m-pipeline-map strong {
    font-size: 10px;
  }

  .v43m-form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 821px) {
  .v43d-calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    margin: -8px 0 18px;
  }

  .v43d-calendar-toolbar > div {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .v43d-calendar-toolbar button {
    display: grid;
    min-width: 38px;
    height: 38px;
    place-items: center;
    padding: 0 12px;
    border: 1px solid var(--v43-line);
    border-radius: 8px;
    background: var(--v43-surface);
    color: var(--v43-ink-soft);
    font-size: 11px;
    white-space: nowrap;
  }

  .v43d-calendar-toolbar strong {
    min-width: 126px;
    color: var(--v43-ink-strong);
    font-size: 14px;
    text-align: center;
  }

  .v43d-schedule-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.62fr);
    align-items: start;
    gap: 30px;
  }

  .v43d-week-schedule {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    min-height: 410px;
    border-block: 1px solid var(--v43-line);
  }

  .v43d-week-schedule > article {
    min-width: 0;
    padding: 10px 8px;
    border-inline-end: 1px solid var(--v43-line);
  }

  .v43d-week-schedule > article:last-child {
    border-inline-end: 0;
  }

  .v43d-week-schedule > article.active {
    background: var(--v43-surface-soft);
  }

  .v43d-week-schedule > article > button {
    display: grid;
    width: 100%;
    min-height: 54px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--v43-ink);
  }

  .v43d-week-schedule > article > button small {
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-week-schedule > article > button strong {
    font-size: 16px;
  }

  .v43d-week-schedule > article > button i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
  }

  .v43d-week-schedule > article > button i.today {
    background: var(--v43-orange);
  }

  .v43d-week-schedule > article > div {
    display: grid;
    gap: 7px;
    margin-top: 10px;
  }

  .v43d-week-schedule > article > div > span {
    display: block;
    min-width: 0;
    min-height: 54px;
    padding: 7px;
    border-inline-start: 2px solid var(--v43-blue);
    background: var(--v43-surface-blue);
  }

  .v43d-week-schedule > article > div > span.is-block {
    border-inline-start-color: var(--v43-orange);
    background: var(--v43-orange-soft);
  }

  .v43d-week-schedule time,
  .v43d-week-schedule span strong {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-week-schedule time {
    color: var(--v43-ink-faint);
    font-size: 8px;
  }

  .v43d-week-schedule span strong {
    margin-top: 4px;
    color: var(--v43-ink);
    font-size: 9px;
  }

  .v43d-week-schedule p {
    margin: 10px 0;
    color: var(--v43-ink-faint);
    font-size: 9px;
    text-align: center;
  }

  .v43d-selected-day > header,
  .v43d-schedule-deadlines > header {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .v43d-selected-day header small,
  .v43d-schedule-deadlines header small {
    color: var(--v43-blue);
    font-size: 10px;
  }

  .v43d-selected-day header h2,
  .v43d-schedule-deadlines header h2 {
    margin: 3px 0 0;
    color: var(--v43-ink-strong);
    font-size: 18px;
  }

  .v43d-selected-day header > span,
  .v43d-schedule-deadlines header > span {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43d-selected-day > div {
    margin-top: 12px;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-selected-day article {
    display: grid;
    grid-template-columns: 76px 8px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    min-height: 68px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43d-selected-day article time {
    color: var(--v43-ink-soft);
    font-size: 9px;
  }

  .v43d-selected-day article > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--v43-blue);
  }

  .v43d-selected-day article > i.is-block {
    background: var(--v43-orange);
  }

  .v43d-selected-day article strong,
  .v43d-selected-day article small {
    display: block;
  }

  .v43d-selected-day article strong {
    font-size: 11px;
  }

  .v43d-selected-day article small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-schedule-deadlines {
    margin-top: 34px;
    padding-top: 6px;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-schedule-deadlines > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 22px;
    margin-top: 10px;
  }

  .v43d-schedule-deadlines > div > button {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto 16px;
    align-items: center;
    gap: 8px;
    min-width: 0;
    min-height: 62px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43d-schedule-deadlines button > span {
    color: var(--v43-orange);
    font-size: 9px;
    white-space: nowrap;
  }

  .v43d-schedule-deadlines button strong {
    min-width: 0;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-schedule-deadlines button time {
    color: var(--v43-ink-faint);
    font-size: 9px;
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .v43d-schedule-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 22px;
  }

  .v43d-week-schedule > article {
    padding-inline: 5px;
  }

  .v43d-schedule-deadlines > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .v43m-category-rail button,
  .v43m-segmented button,
  .v43m-agenda-block header button,
  .v43m-research-next header button,
  .v43m-library-list header button,
  .v43m-project-list header button,
  .v43m-evidence-flow header button,
  .v43m-course-list header button,
  .v43m-academic-timeline header button,
  .v43m-review-list header button {
    min-height: 44px;
  }

  .v43m-resource-search > button,
  .v43m-resource-tile > button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .v43m-resource-tile > button {
    inset: 4px 3px auto auto;
  }

  .v43m-calendar-head button,
  .v43m-more-profile > button {
    min-width: 44px;
    min-height: 44px;
    height: 44px;
  }
}

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

@media (prefers-reduced-transparency: reduce) {
  .v43 .topbar,
  .v43m-header,
  .v43m-tabbar {
    background: var(--v43-surface);
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  .v43 .panel,
  .v43m-resource-tile,
  .v43m-more-grid,
  .v43m-sheet input,
  .v43m-sheet textarea,
  .v43m-sheet select {
    border-color: var(--v43-ink-soft);
  }
}

/* v43.1: independent desktop workbench and final mobile polish. */
.v43-desktop-app {
  display: none;
}

@media (min-width: 821px) {
  body.v43 > .app-shell,
  body.v43 > .mobile-bottom-nav,
  body.v43 > .mobile-quick-add,
  body.v43 > .mobile-quick-actions,
  body.v43 > .mobile-quick-actions-backdrop,
  body.v43 > .more-sheet,
  body.v43 > .sheet-backdrop {
    display: none !important;
  }

  body.v43.v43-legacy-open > .app-shell {
    display: grid !important;
    padding-top: 58px;
  }

  body.v43.v43-legacy-open > #v43DesktopApp {
    display: none !important;
  }

  body.v43.v43-legacy-open > .v43-legacy-back {
    position: fixed;
    inset: 10px auto auto 50%;
    z-index: 240;
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border: 1px solid var(--v43-line);
    border-radius: 20px;
    background: var(--v43-surface);
    color: var(--v43-ink);
    box-shadow: var(--v43-shadow-md);
    transform: translateX(-50%);
  }

  .v43-desktop-app {
    display: grid;
    grid-template-columns: 232px minmax(0, 1fr);
    min-height: 100dvh;
    background: var(--v43-surface);
    color: var(--v43-ink);
  }

  .v43d-sidebar {
    position: sticky;
    inset-block-start: 0;
    z-index: 60;
    display: flex;
    height: 100dvh;
    min-width: 0;
    flex-direction: column;
    padding: 20px 14px 16px;
    border-inline-end: 1px solid var(--v43-line);
    background: var(--v43-surface);
  }

  .v43d-brand {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    width: 100%;
    min-height: 48px;
    margin-bottom: 26px;
    padding: 4px;
    border: 0;
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43d-brand > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 9px;
    background: var(--v43-navy);
    color: #fff;
    font-size: 20px;
    font-weight: 760;
  }

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

  .v43d-brand small {
    color: var(--v43-ink-faint);
    font-size: 11px;
  }

  .v43d-brand strong {
    margin-top: 2px;
    color: var(--v43-ink-strong);
    font-size: 16px;
  }

  .v43d-sidebar nav {
    display: grid;
    gap: 4px;
  }

  .v43d-sidebar nav button,
  .v43d-manage {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    gap: 11px;
    padding: 0 11px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--v43-ink-soft);
    font-size: 14px;
    font-weight: 620;
    text-align: start;
    white-space: nowrap;
  }

  .v43d-sidebar nav button svg,
  .v43d-manage svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    stroke-width: 1.75;
  }

  .v43d-sidebar nav button.active,
  .v43d-manage.active {
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
  }

  .v43d-sidebar nav button.active::before,
  .v43d-manage.active::before {
    position: absolute;
    inset: 8px auto 8px -14px;
    width: 3px;
    border-radius: 2px;
    background: var(--v43-blue);
    content: "";
  }

  .v43d-sidebar-spacer {
    flex: 1;
  }

  .v43d-manage {
    margin-bottom: 10px;
  }

  .v43d-cloud {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-height: 60px;
    padding: 9px 10px;
    border: 1px solid var(--v43-line);
    border-radius: 9px;
    background: var(--v43-surface-soft);
    color: var(--v43-ink-soft);
    text-align: start;
  }

  .v43d-cloud strong,
  .v43d-cloud small {
    display: block;
  }

  .v43d-cloud strong {
    color: var(--v43-ink);
    font-size: 12px;
  }

  .v43d-cloud small {
    margin-top: 2px;
    color: var(--v43-ink-faint);
    font-size: 10px;
    white-space: nowrap;
  }

  .v43d-cloud > svg:first-child {
    color: var(--v43-green);
  }

  .v43d-workspace {
    display: grid;
    min-width: 0;
    grid-template-rows: 72px minmax(0, 1fr);
  }

  .v43d-topbar {
    position: sticky;
    inset-block-start: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 220px minmax(280px, 620px) auto;
    align-items: center;
    gap: 24px;
    min-width: 0;
    padding: 0 30px;
    border-bottom: 1px solid var(--v43-line);
    background: rgb(255 255 255 / 94%);
    backdrop-filter: blur(18px) saturate(150%);
  }

  .v43d-title small,
  .v43d-title strong {
    display: block;
  }

  .v43d-title small {
    color: var(--v43-blue);
    font-size: 10px;
    font-weight: 680;
  }

  .v43d-title strong {
    margin-top: 2px;
    color: var(--v43-ink-strong);
    font-size: 16px;
  }

  .v43d-search {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
    min-height: 42px;
    padding: 0 10px 0 13px;
    border: 1px solid var(--v43-line-strong);
    border-radius: 9px;
    background: var(--v43-surface);
    color: var(--v43-ink-faint);
  }

  .v43d-search input {
    min-width: 0;
    height: 40px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--v43-ink);
    font-size: 13px;
  }

  .v43d-search kbd {
    padding: 3px 6px;
    border: 1px solid var(--v43-line);
    border-radius: 5px;
    background: var(--v43-surface-soft);
    color: var(--v43-ink-faint);
    font: 10px var(--v43-font-ui);
  }

  .v43d-actions,
  .v43d-page-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .v43d-actions button,
  .v43d-page-actions button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid var(--v43-line-strong);
    border-radius: 8px;
    background: var(--v43-surface);
    color: var(--v43-ink);
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
  }

  .v43d-actions button:last-child {
    width: 40px;
    padding: 0;
  }

  .v43d-actions button.is-primary,
  .v43d-page-actions button.is-primary {
    border-color: var(--v43-navy);
    background: var(--v43-navy);
    color: #fff;
  }

  .v43d-actions svg,
  .v43d-page-actions svg {
    width: 17px;
    height: 17px;
  }

  .v43d-content {
    width: 100%;
    min-width: 0;
    max-width: 1600px;
    margin-inline: auto;
    padding: 40px clamp(28px, 3.2vw, 56px) 64px;
    outline: 0;
  }

  .v43d-page-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 30px;
  }

  .v43d-page-head > div:first-child {
    min-width: 0;
  }

  .v43d-page-head small,
  .v43d-section-heading small,
  .v43d-timetable header small,
  .v43d-assignment-line header small,
  .v43d-course-ledger header small,
  .v43d-research-pipeline header small,
  .v43d-project-board header small,
  .v43d-literature-stream header small,
  .v43d-training-chart header small,
  .v43d-sport-log header small,
  .v43d-capability-map header small,
  .v43d-review-journal header small,
  .v43d-resource-results header small,
  .v43d-resource-recent header small,
  .v43d-requirements header small,
  .v43d-data-vault header small {
    color: var(--v43-blue);
    font-size: 10px;
    font-weight: 720;
  }

  .v43d-page-head h1 {
    margin: 5px 0 6px;
    color: var(--v43-ink-strong);
    font-size: clamp(26px, 2vw, 31px);
    font-weight: 740;
    line-height: 1.18;
    letter-spacing: 0;
  }

  .v43d-page-head p {
    max-width: 680px;
    margin: 0;
    color: var(--v43-ink-soft);
    font-size: 13px;
    line-height: 1.55;
  }

  .v43d-section-heading {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .v43d-section-heading h2,
  .v43d-timetable h2,
  .v43d-assignment-line h2,
  .v43d-course-ledger h2,
  .v43d-research-pipeline h2,
  .v43d-project-board h2,
  .v43d-literature-stream h2,
  .v43d-training-chart h2,
  .v43d-recovery h2,
  .v43d-sport-log h2,
  .v43d-capability-map h2,
  .v43d-growth-proof h2,
  .v43d-review-journal h2,
  .v43d-resource-results h2,
  .v43d-resource-recent h2,
  .v43d-requirements h2,
  .v43d-data-vault h2 {
    margin: 3px 0 0;
    color: var(--v43-ink-strong);
    font-size: 18px;
    font-weight: 720;
    line-height: 1.25;
  }

  .v43d-section-heading > span,
  .v43d-section-heading > button,
  .v43d-timetable header > div:last-child,
  .v43d-assignment-line header > span,
  .v43d-course-ledger header > button,
  .v43d-project-board header > button,
  .v43d-literature-stream header > button {
    color: var(--v43-ink-faint);
    font-size: 11px;
    white-space: nowrap;
  }

  .v43d-section-heading > button,
  .v43d-course-ledger header > button,
  .v43d-project-board header > button,
  .v43d-literature-stream header > button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--v43-blue-strong);
  }

  .v43d-empty {
    display: flex;
    min-height: 96px;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding: 18px 0;
    color: var(--v43-ink-faint);
  }

  .v43d-empty > span {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43d-empty strong,
  .v43d-empty small {
    display: block;
  }

  .v43d-empty strong {
    color: var(--v43-ink);
    font-size: 13px;
  }

  .v43d-empty small {
    margin-top: 3px;
    font-size: 11px;
  }

  .v43d-empty > button {
    min-height: 36px;
    margin-inline-start: auto;
    padding: 0 11px;
    border: 1px solid var(--v43-line-strong);
    border-radius: 7px;
    background: var(--v43-surface);
    color: var(--v43-blue-strong);
    font-size: 11px;
    white-space: nowrap;
  }

  /* Today */
  .v43d-today-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.84fr);
    grid-template-areas: "action deadline" "research deadline" "journey journey";
    gap: 26px 34px;
    min-width: 0;
  }

  .v43d-action-desk {
    grid-area: action;
    min-width: 0;
    padding: 26px 28px;
    border-radius: 12px;
    background: var(--v43-navy);
    color: #fff;
  }

  .v43d-action-desk .v43d-section-heading small,
  .v43d-action-desk .v43d-section-heading h2 {
    color: #fff;
  }

  .v43d-action-desk .v43d-section-heading small {
    opacity: 0.6;
  }

  .v43d-action-desk .v43d-section-heading > span {
    color: rgb(255 255 255 / 58%);
  }

  .v43d-focus-input {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 46px;
    margin: 20px 0 14px;
    padding: 0 12px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 8px;
    background: rgb(255 255 255 / 7%);
    color: rgb(255 255 255 / 60%);
  }

  .v43d-focus-input input {
    min-width: 0;
    height: 44px;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff;
    font-size: 13px;
  }

  .v43d-focus-input input::placeholder {
    color: rgb(255 255 255 / 40%);
  }

  .v43d-primary-task {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 13px;
    width: 100%;
    min-height: 80px;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
    background: transparent;
    color: #fff;
    text-align: start;
  }

  .v43d-check,
  .v43d-primary-task.is-empty > span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 2px solid rgb(255 255 255 / 58%);
    border-radius: 50%;
  }

  .v43d-primary-task.is-empty > span {
    border: 0;
    background: var(--v43-orange);
  }

  .v43d-primary-task small,
  .v43d-primary-task strong {
    display: block;
  }

  .v43d-primary-task small {
    color: var(--v43-orange);
    font-size: 10px;
  }

  .v43d-primary-task strong {
    margin-top: 4px;
    font-size: 18px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .v43d-task-list {
    padding-top: 10px;
  }

  .v43d-task-list button {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: start;
  }

  .v43d-task-list button i {
    width: 17px;
    height: 17px;
    border: 1px solid rgb(255 255 255 / 45%);
    border-radius: 50%;
  }

  .v43d-task-list button strong {
    min-width: 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 560;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-task-list button small {
    color: rgb(255 255 255 / 45%);
    font-size: 10px;
  }

  .v43d-task-list p {
    margin: 10px 0;
    color: rgb(255 255 255 / 48%);
    font-size: 12px;
  }

  .v43d-action-desk footer {
    display: flex;
    gap: 8px;
    margin-top: 14px;
  }

  .v43d-action-desk footer button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 7px;
    background: rgb(255 255 255 / 7%);
    color: #fff;
    font-size: 11px;
    white-space: nowrap;
  }

  .v43d-deadline-rail {
    grid-area: deadline;
    min-width: 0;
    padding: 2px 0 0 2px;
  }

  .v43d-deadline-list {
    margin-top: 16px;
    border-top: 2px solid var(--v43-orange);
  }

  .v43d-deadline-list > button {
    display: grid;
    grid-template-columns: 52px 12px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 66px;
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43d-deadline-list time {
    color: var(--v43-ink-soft);
    font-size: 11px;
    font-weight: 680;
  }

  .v43d-deadline-list > button > i {
    width: 8px;
    height: 8px;
    border: 2px solid var(--v43-blue);
    border-radius: 50%;
    background: var(--v43-surface);
  }

  .v43d-deadline-list > button.is-urgent > i,
  .v43d-deadline-list > button.is-overdue > i {
    border-color: var(--v43-orange);
    background: var(--v43-orange);
  }

  .v43d-deadline-list strong,
  .v43d-deadline-list small {
    display: block;
  }

  .v43d-deadline-list strong {
    font-size: 12px;
    line-height: 1.35;
  }

  .v43d-deadline-list small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43d-research-rail {
    grid-area: research;
    min-width: 0;
    padding-top: 4px;
  }

  .v43d-research-rail > div:last-child {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
    margin-top: 10px;
  }

  .v43d-research-rail > div:last-child > button {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 78px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43d-research-rail > div:last-child > button > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43d-research-rail button small,
  .v43d-research-rail button strong,
  .v43d-research-rail button p {
    display: block;
  }

  .v43d-research-rail button small {
    color: var(--v43-blue);
    font-size: 9px;
  }

  .v43d-research-rail button strong {
    margin-top: 2px;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-research-rail button p {
    margin: 3px 0 0;
    overflow: hidden;
    color: var(--v43-ink-faint);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-journey {
    grid-area: journey;
    display: grid;
    grid-template-columns: 220px minmax(220px, 1fr) minmax(280px, 0.9fr);
    align-items: center;
    gap: 24px;
    min-width: 0;
    padding: 18px 22px;
    border: 1px solid var(--v43-line);
    border-radius: 10px;
    background: var(--v43-surface-soft);
  }

  .v43d-journey-copy {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .v43d-journey-copy > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--v43-navy);
    color: #fff;
  }

  .v43d-journey-copy small,
  .v43d-journey-copy strong {
    display: block;
  }

  .v43d-journey-copy small {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43d-journey-copy strong {
    margin-top: 2px;
    color: var(--v43-ink);
    font-size: 12px;
  }

  .v43d-journey-track {
    position: relative;
    display: flex;
    height: 24px;
    align-items: center;
    justify-content: space-between;
  }

  .v43d-journey-track::before,
  .v43d-journey-track > i {
    position: absolute;
    inset: 11px 0 auto;
    height: 2px;
    border-radius: 1px;
    background: var(--v43-line-strong);
    content: "";
  }

  .v43d-journey-track > i {
    z-index: 1;
    inset-inline-end: auto;
    background: var(--v43-blue);
  }

  .v43d-journey-track span {
    position: relative;
    z-index: 2;
    width: 10px;
    height: 10px;
    border: 2px solid var(--v43-line-strong);
    border-radius: 50%;
    background: var(--v43-surface-soft);
  }

  .v43d-journey-track span.is-lit {
    border-color: var(--v43-blue);
    background: var(--v43-blue);
  }

  .v43d-today-agenda {
    min-width: 0;
    border-inline-start: 1px solid var(--v43-line);
    padding-inline-start: 18px;
  }

  .v43d-today-agenda > small,
  .v43d-today-agenda > span {
    display: block;
  }

  .v43d-today-agenda > small {
    margin-bottom: 4px;
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-today-agenda > span {
    overflow: hidden;
    color: var(--v43-ink);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-today-agenda time {
    display: inline-block;
    width: 74px;
    color: var(--v43-blue);
  }

  /* Learning */
  .v43d-academic-layout,
  .v43d-research-layout,
  .v43d-growth-layout,
  .v43d-admin-layout {
    display: grid;
    min-width: 0;
    gap: 32px;
  }

  .v43d-academic-layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(290px, 0.72fr);
    align-items: start;
  }

  .v43d-timetable,
  .v43d-assignment-line,
  .v43d-course-ledger,
  .v43d-research-pipeline,
  .v43d-project-board,
  .v43d-literature-stream,
  .v43d-training-chart,
  .v43d-recovery,
  .v43d-sport-log,
  .v43d-capability-map,
  .v43d-growth-proof,
  .v43d-review-journal,
  .v43d-resource-recent,
  .v43d-resource-results,
  .v43d-requirements,
  .v43d-data-vault {
    min-width: 0;
  }

  .v43d-timetable > header,
  .v43d-assignment-line > header,
  .v43d-course-ledger > header,
  .v43d-research-pipeline > header,
  .v43d-project-board > header,
  .v43d-literature-stream > header,
  .v43d-training-chart > header,
  .v43d-sport-log > header,
  .v43d-capability-map > header,
  .v43d-review-journal > header,
  .v43d-resource-recent > header,
  .v43d-resource-results > header,
  .v43d-requirements > header,
  .v43d-data-vault > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 48px;
  }

  .v43d-timetable header > div:last-child {
    display: flex;
    gap: 14px;
  }

  .v43d-timetable header > div:last-child strong {
    color: var(--v43-ink);
  }

  .v43d-week-board {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 360px;
    margin-top: 14px;
    border-block: 1px solid var(--v43-line);
  }

  .v43d-week-board > article {
    min-width: 0;
    padding: 15px 10px;
    border-inline-end: 1px solid var(--v43-line);
  }

  .v43d-week-board > article:last-child {
    border-inline-end: 0;
  }

  .v43d-week-board > article > strong,
  .v43d-week-board > article > small {
    display: block;
  }

  .v43d-week-board > article > strong {
    color: var(--v43-ink-strong);
    font-size: 12px;
  }

  .v43d-week-board > article > small {
    margin-top: 2px;
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-week-board > article > div {
    display: grid;
    gap: 8px;
    margin-top: 18px;
  }

  .v43d-week-board button {
    display: block;
    width: 100%;
    min-height: 74px;
    padding: 9px;
    border: 0;
    border-inline-start: 3px solid var(--v43-blue);
    border-radius: 0 7px 7px 0;
    background: var(--v43-surface-blue);
    color: var(--v43-ink);
    text-align: start;
  }

  .v43d-week-board button time,
  .v43d-week-board button strong,
  .v43d-week-board button span {
    display: block;
  }

  .v43d-week-board button time,
  .v43d-week-board button span {
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-week-board button strong {
    margin: 5px 0 3px;
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .v43d-week-board p {
    margin: 8px 0;
    color: var(--v43-ink-faint);
    font-size: 10px;
    line-height: 1.5;
  }

  .v43d-assignment-line > div {
    margin-top: 14px;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-assignment-line > div > button {
    display: grid;
    grid-template-columns: 48px 10px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 64px;
    padding: 7px 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43d-assignment-line time {
    color: var(--v43-ink-soft);
    font-size: 10px;
    font-weight: 700;
  }

  .v43d-assignment-line > div > button > i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--v43-blue-soft);
    box-shadow: 0 0 0 1px var(--v43-blue);
  }

  .v43d-assignment-line > div > button.is-urgent > i {
    background: var(--v43-orange);
    box-shadow: 0 0 0 1px var(--v43-orange);
  }

  .v43d-assignment-line small,
  .v43d-assignment-line strong {
    display: block;
  }

  .v43d-assignment-line small {
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-assignment-line strong {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.4;
  }

  .v43d-course-ledger {
    margin-top: 36px;
    padding-top: 4px;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-course-ledger > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 24px;
  }

  .v43d-course-ledger article {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-width: 0;
    min-height: 78px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43d-course-ledger article > span {
    color: var(--v43-blue);
    font-size: 10px;
  }

  .v43d-course-ledger article strong,
  .v43d-course-ledger article small {
    display: block;
  }

  .v43d-course-ledger article strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-course-ledger article small {
    margin-top: 3px;
    overflow: hidden;
    color: var(--v43-ink-faint);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-course-ledger article > i {
    grid-column: 1 / -1;
    width: var(--progress);
    height: 2px;
    margin-top: -10px;
    background: var(--v43-blue);
  }

  /* Research */
  .v43d-research-pipeline {
    padding: 24px 26px;
    border-radius: 11px;
    background: var(--v43-navy);
    color: #fff;
  }

  .v43d-research-pipeline header small,
  .v43d-research-pipeline header h2,
  .v43d-research-pipeline header > span {
    color: #fff;
  }

  .v43d-research-pipeline header small,
  .v43d-research-pipeline header > span {
    opacity: 0.55;
  }

  .v43d-research-pipeline > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
  }

  .v43d-research-pipeline article {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-width: 0;
  }

  .v43d-research-pipeline article > span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 24%);
    border-radius: 50%;
    background: var(--v43-navy);
    color: rgb(255 255 255 / 45%);
  }

  .v43d-research-pipeline article.is-lit > span {
    border-color: var(--v43-orange);
    background: var(--v43-orange);
    color: #fff;
  }

  .v43d-research-pipeline article > i {
    position: absolute;
    inset: 19px 0 auto 40px;
    height: 1px;
    background: rgb(255 255 255 / 18%);
  }

  .v43d-research-pipeline article:last-child > i {
    display: none;
  }

  .v43d-research-pipeline article small,
  .v43d-research-pipeline article strong,
  .v43d-research-pipeline article em {
    display: block;
  }

  .v43d-research-pipeline article small,
  .v43d-research-pipeline article em {
    color: rgb(255 255 255 / 48%);
    font-size: 9px;
    font-style: normal;
  }

  .v43d-research-pipeline article strong {
    margin: 2px 0;
    font-size: 12px;
  }

  .v43d-research-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.78fr);
    align-items: start;
    margin-top: 32px;
  }

  .v43d-project-board > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
    margin-top: 10px;
  }

  .v43d-project-board > div > button {
    display: block;
    min-width: 0;
    min-height: 146px;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43d-project-board > div > button > span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--v43-blue);
    font-size: 9px;
  }

  .v43d-project-board > div > button > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--v43-blue);
  }

  .v43d-project-board > div > button > strong {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
  }

  .v43d-project-board p {
    min-height: 32px;
    margin: 6px 0 12px;
    color: var(--v43-ink-soft);
    font-size: 11px;
    line-height: 1.45;
  }

  .v43d-project-board footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-literature-stream > div {
    margin-top: 10px;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-literature-stream article {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    align-items: start;
    gap: 9px;
    min-width: 0;
    padding: 15px 0;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43d-literature-stream article > span {
    color: var(--v43-blue);
  }

  .v43d-literature-stream article small,
  .v43d-literature-stream article strong,
  .v43d-literature-stream article p {
    display: block;
  }

  .v43d-literature-stream article small {
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-literature-stream article strong {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.4;
  }

  .v43d-literature-stream article p {
    margin: 4px 0 0;
    overflow: hidden;
    color: var(--v43-ink-soft);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-literature-stream article > button,
  .v43d-literature-stream article > a {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--v43-ink-faint);
  }

  /* Sports */
  .v43d-segmented {
    display: inline-grid;
    grid-template-columns: repeat(5, minmax(88px, 1fr));
    gap: 3px;
    margin: -8px 0 24px;
    padding: 3px;
    border-radius: 9px;
    background: var(--v43-surface-soft);
  }

  .v43d-segmented button {
    min-height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--v43-ink-soft);
    font-size: 11px;
    font-weight: 650;
    white-space: nowrap;
  }

  .v43d-segmented button.active {
    background: var(--v43-surface);
    color: var(--v43-blue-strong);
    box-shadow: var(--v43-shadow-sm);
  }

  .v43d-sports-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
    grid-template-areas: "chart recovery" "log actions";
    gap: 32px;
  }

  .v43d-training-chart {
    grid-area: chart;
    min-height: 360px;
    padding: 24px 26px 18px;
    border-radius: 11px;
    background: var(--v43-navy);
    color: #fff;
  }

  .v43d-training-chart header small,
  .v43d-training-chart header h2,
  .v43d-training-chart header > span {
    color: #fff;
  }

  .v43d-training-chart header small,
  .v43d-training-chart header > span {
    opacity: 0.58;
  }

  .v43d-bars {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    height: 220px;
    gap: 14px;
    margin: 26px 0 10px;
  }

  .v43d-bars article {
    display: grid;
    min-width: 0;
    grid-template-rows: minmax(0, 1fr) 22px;
    gap: 8px;
    text-align: center;
  }

  .v43d-bars article > div {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .v43d-bars i {
    width: min(34px, 62%);
    min-height: 5px;
    border-radius: 5px 5px 0 0;
    background: var(--v43-blue);
    transition: height 320ms var(--v43-ease-out);
  }

  .v43d-bars em {
    position: absolute;
    inset: auto 0 6px;
    color: rgb(255 255 255 / 70%);
    font-size: 9px;
    font-style: normal;
  }

  .v43d-bars small {
    color: rgb(255 255 255 / 50%);
    font-size: 9px;
  }

  .v43d-training-chart footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(255 255 255 / 56%);
    font-size: 9px;
  }

  .v43d-training-chart footer span {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .v43d-training-chart footer i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--v43-blue);
  }

  .v43d-recovery {
    grid-area: recovery;
    padding: 24px;
    border: 1px solid var(--v43-line);
    border-radius: 11px;
  }

  .v43d-recovery > small {
    color: var(--v43-blue);
    font-size: 10px;
  }

  .v43d-recovery > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 22px 0;
  }

  .v43d-recovery > div span {
    min-width: 0;
    border-inline-end: 1px solid var(--v43-line);
    text-align: center;
  }

  .v43d-recovery > div span:last-child {
    border-inline-end: 0;
  }

  .v43d-recovery strong,
  .v43d-recovery small {
    display: block;
  }

  .v43d-recovery strong {
    color: var(--v43-ink-strong);
    font-size: 22px;
  }

  .v43d-recovery > div small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-recovery label span,
  .v43d-recovery label i {
    display: block;
  }

  .v43d-recovery label span {
    color: var(--v43-ink-soft);
    font-size: 10px;
  }

  .v43d-recovery label i {
    height: 5px;
    margin-top: 7px;
    overflow: hidden;
    border-radius: 3px;
    background: var(--v43-surface-soft);
  }

  .v43d-recovery label b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--v43-blue);
  }

  .v43d-recovery p {
    margin: 18px 0 0;
    color: var(--v43-ink-soft);
    font-size: 11px;
    line-height: 1.55;
  }

  .v43d-recovery > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--v43-blue-strong);
    font-size: 12px;
  }

  .v43d-recovery > button svg {
    width: 16px;
  }

  .v43d-sport-log {
    grid-area: log;
  }

  .v43d-sport-log > div {
    margin-top: 10px;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-sport-log article {
    display: grid;
    grid-template-columns: 76px 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 66px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43d-sport-log time {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43d-sport-log article > span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43d-sport-log strong,
  .v43d-sport-log small {
    display: block;
  }

  .v43d-sport-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.55fr);
    gap: 32px;
    align-items: start;
  }

  .v43d-sport-focus {
    min-width: 0;
  }

  .v43d-sport-focus > header {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 56px;
  }

  .v43d-sport-focus > header > span,
  .v43d-sport-insight > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
  }

  .v43d-sport-focus h2,
  .v43d-sport-insight h3 {
    margin: 2px 0 0;
    color: var(--v43-ink-strong);
  }

  .v43d-sport-focus h2 {
    font-size: 18px;
  }

  .v43d-sport-focus > header small,
  .v43d-sport-insight > small {
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43d-sport-focus-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 20px 0 24px;
    overflow: hidden;
    border: 1px solid var(--v43-line);
    border-radius: 10px;
    background: var(--v43-line);
  }

  .v43d-sport-focus-metrics > span {
    min-width: 0;
    padding: 18px;
    background: var(--v43-surface);
  }

  .v43d-sport-focus-metrics strong,
  .v43d-sport-focus-metrics small {
    display: block;
  }

  .v43d-sport-focus-metrics strong {
    color: var(--v43-ink-strong);
    font-size: 24px;
    font-variant-numeric: tabular-nums;
  }

  .v43d-sport-focus-metrics small {
    margin-top: 4px;
    color: var(--v43-ink-faint);
  }

  .v43d-sport-detail-log {
    border-top: 1px solid var(--v43-line);
  }

  .v43d-sport-detail-log > article {
    display: grid;
    grid-template-columns: 76px 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 70px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43d-sport-detail-log time,
  .v43d-sport-detail-log small {
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43d-sport-detail-log > article > span:not(.v43-record-actions) {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43d-sport-detail-log strong,
  .v43d-sport-detail-log small {
    display: block;
  }

  .v43d-sport-detail-log strong {
    color: var(--v43-ink-strong);
    font-size: 13px;
  }

  .v43d-sport-insight {
    padding: 24px;
    border: 1px solid var(--v43-line);
    border-radius: 11px;
    background: var(--v43-surface-soft);
  }

  .v43d-sport-insight > small {
    display: block;
    margin-top: 20px;
  }

  .v43d-sport-insight h3 {
    font-size: 18px;
  }

  .v43d-sport-insight p {
    margin: 12px 0 20px;
    color: var(--v43-ink-soft);
    font-size: 13px;
    line-height: 1.65;
  }

  .v43d-sport-insight > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 12px;
    border: 1px solid var(--v43-line-strong);
    border-radius: 8px;
    background: var(--v43-surface);
    color: var(--v43-blue-strong);
  }

  .v43d-sport-log strong {
    font-size: 12px;
  }

  .v43d-sport-log small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-sport-actions {
    grid-area: actions;
    display: grid;
    gap: 0;
    align-self: start;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-sport-actions button {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    grid-template-areas: "icon title plus" "icon detail plus";
    align-items: center;
    gap: 2px 10px;
    min-height: 74px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43d-sport-actions button > span {
    grid-area: icon;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 9px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43d-sport-actions button > strong {
    grid-area: title;
    align-self: end;
    font-size: 12px;
  }

  .v43d-sport-actions button > small {
    grid-area: detail;
    align-self: start;
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-sport-actions button > svg {
    grid-area: plus;
    color: var(--v43-blue);
  }

  /* Growth */
  .v43d-growth-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.62fr);
    grid-template-areas: "map proof" "reviews reviews";
  }

  .v43d-capability-map {
    grid-area: map;
  }

  .v43d-capability-map > div {
    margin-top: 16px;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-capability-map article {
    display: grid;
    grid-template-columns: minmax(150px, 0.44fr) minmax(180px, 1fr) 34px;
    align-items: center;
    gap: 16px;
    min-height: 58px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43d-capability-map article > span {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 7px;
  }

  .v43d-capability-map em {
    color: var(--v43-blue);
    font-size: 9px;
    font-style: normal;
  }

  .v43d-capability-map strong {
    font-size: 11px;
  }

  .v43d-capability-map article > div {
    height: 6px;
    overflow: hidden;
    border-radius: 3px;
    background: var(--v43-surface-soft);
  }

  .v43d-capability-map article > div i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--v43-blue);
  }

  .v43d-capability-map article > b {
    color: var(--v43-ink-soft);
    font-size: 11px;
    text-align: end;
  }

  .v43d-growth-proof {
    grid-area: proof;
    padding: 24px;
    border-radius: 11px;
    background: var(--v43-navy);
    color: #fff;
  }

  .v43d-growth-proof > small,
  .v43d-growth-proof h2 {
    color: #fff;
  }

  .v43d-growth-proof > small {
    opacity: 0.55;
    font-size: 10px;
  }

  .v43d-growth-proof > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 24px 0;
  }

  .v43d-growth-proof > div span {
    border-inline-end: 1px solid rgb(255 255 255 / 16%);
    text-align: center;
  }

  .v43d-growth-proof > div span:last-child {
    border-inline-end: 0;
  }

  .v43d-growth-proof strong,
  .v43d-growth-proof small {
    display: block;
  }

  .v43d-growth-proof strong {
    font-size: 24px;
  }

  .v43d-growth-proof > div small {
    margin-top: 3px;
    color: rgb(255 255 255 / 52%);
    font-size: 9px;
  }

  .v43d-growth-proof button {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 7px;
    background: rgb(255 255 255 / 7%);
    color: #fff;
    font-size: 10px;
  }

  .v43d-review-journal {
    grid-area: reviews;
    padding-top: 6px;
  }

  .v43d-review-journal header button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--v43-blue);
    font-size: 11px;
  }

  .v43d-review-journal > div {
    margin-top: 10px;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-review-journal article {
    display: grid;
    grid-template-columns: 100px 10px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 72px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43d-review-journal time {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43d-review-journal article > i {
    width: 8px;
    height: 8px;
    border: 2px solid var(--v43-blue);
    border-radius: 50%;
  }

  .v43d-review-journal strong {
    font-size: 12px;
  }

  .v43d-review-journal p {
    margin: 3px 0 0;
    overflow: hidden;
    color: var(--v43-ink-faint);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Resources */
  .v43d-resource-search {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    margin-bottom: 28px;
    padding: 0 15px;
    border: 1px solid var(--v43-line-strong);
    border-radius: 9px;
    color: var(--v43-ink-faint);
  }

  .v43d-resource-search input {
    min-width: 0;
    height: 50px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--v43-ink);
    font-size: 13px;
  }

  .v43d-resource-search > span {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43d-resource-layout {
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    align-items: start;
    gap: 34px;
  }

  .v43d-resource-directory {
    position: sticky;
    inset-block-start: 96px;
    display: grid;
    gap: 2px;
  }

  .v43d-resource-directory > small {
    margin-bottom: 8px;
    padding: 0 9px;
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-resource-directory button {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 9px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--v43-ink-soft);
    font-size: 11px;
    text-align: start;
  }

  .v43d-resource-directory button span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-resource-directory button em {
    color: var(--v43-ink-faint);
    font-size: 9px;
    font-style: normal;
  }

  .v43d-resource-directory button.active {
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
    font-weight: 680;
  }

  .v43d-resource-main {
    min-width: 0;
  }

  .v43d-resource-recent {
    margin-bottom: 32px;
  }

  .v43d-resource-recent > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  .v43d-resource-recent a {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    min-width: 0;
    min-height: 58px;
    padding: 8px 10px;
    border: 1px solid var(--v43-line);
    border-radius: 8px;
    color: var(--v43-ink);
    text-decoration: none;
  }

  .v43d-resource-recent a > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43d-resource-recent a strong,
  .v43d-resource-recent a small {
    grid-column: 2;
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-resource-recent a strong {
    align-self: end;
    font-size: 11px;
  }

  .v43d-resource-recent a small {
    align-self: start;
    color: var(--v43-ink-faint);
    font-size: 8px;
  }

  .v43d-resource-results > header > span {
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43d-resource-results > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
  }

  .v43d-resource-tile {
    position: relative;
    min-width: 0;
    min-height: 138px;
    border: 1px solid var(--v43-line);
    border-radius: 8px;
    background: var(--v43-surface);
    transition: border-color 160ms ease, box-shadow 160ms ease;
  }

  .v43d-resource-tile:hover {
    border-color: var(--v43-blue-soft);
    box-shadow: var(--v43-shadow-sm);
  }

  .v43d-resource-tile > a {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 16px;
    align-items: start;
    gap: 10px;
    min-width: 0;
    min-height: 136px;
    padding: 18px 14px 14px;
    color: var(--v43-ink);
    text-decoration: none;
  }

  .v43d-resource-tile > a > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
  }

  .v43d-resource-tile > a > span svg {
    width: 21px;
    height: 21px;
  }

  .v43d-resource-tile strong,
  .v43d-resource-tile small,
  .v43d-resource-tile em {
    display: block;
    min-width: 0;
  }

  .v43d-resource-tile strong {
    padding-inline-end: 20px;
    color: var(--v43-ink-strong);
    font-size: 12px;
    line-height: 1.35;
  }

  .v43d-resource-tile small {
    margin-top: 7px;
    color: var(--v43-blue);
    font-size: 9px;
  }

  .v43d-resource-tile em {
    margin-top: 3px;
    overflow: hidden;
    color: var(--v43-ink-faint);
    font-size: 8px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43d-resource-tile > a > svg {
    color: var(--v43-line-strong);
  }

  .v43d-resource-tile > button {
    position: absolute;
    inset: 12px 10px auto auto;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--v43-line-strong);
  }

  .v43d-resource-tile > button.active {
    color: var(--v43-orange);
  }

  /* Administration */
  .v43d-admin-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
    grid-template-areas: "requirements stats" "vault vault";
  }

  .v43d-requirements {
    grid-area: requirements;
  }

  .v43d-requirements > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
    margin-top: 10px;
  }

  .v43d-requirements > div > button {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43d-requirements > div > button > i {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border: 1px solid var(--v43-line-strong);
    border-radius: 50%;
    color: #fff;
  }

  .v43d-requirements > div > button.done > i {
    border-color: var(--v43-green);
    background: var(--v43-green);
  }

  .v43d-requirements > div > button.done strong {
    color: var(--v43-ink-faint);
    text-decoration: line-through;
  }

  .v43d-requirements > div > button strong {
    font-size: 11px;
  }

  .v43d-requirements > div > button small {
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  .v43d-requirements > button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    border: 0;
    background: transparent;
    color: var(--v43-blue);
    font-size: 11px;
  }

  .v43d-admin-stats {
    grid-area: stats;
    display: grid;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-admin-stats article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "label value" "detail value";
    align-items: center;
    min-height: 86px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43d-admin-stats small {
    grid-area: label;
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  .v43d-admin-stats strong {
    grid-area: value;
    color: var(--v43-ink-strong);
    font-size: 26px;
  }

  .v43d-admin-stats span {
    grid-area: detail;
    color: var(--v43-blue);
    font-size: 9px;
  }

  .v43d-data-vault {
    grid-area: vault;
    padding-top: 8px;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-data-vault > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
  }

  .v43d-data-vault > div > button {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    min-height: 78px;
    padding: 10px 12px;
    border: 1px solid var(--v43-line);
    border-radius: 8px;
    background: var(--v43-surface);
    color: var(--v43-ink);
    text-align: start;
  }

  .v43d-data-vault > div > button > svg:first-child {
    color: var(--v43-blue);
  }

  .v43d-data-vault strong,
  .v43d-data-vault small {
    display: block;
  }

  .v43d-data-vault strong {
    font-size: 11px;
  }

  .v43d-data-vault small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 9px;
  }

  /* Desktop quick-create drawer. */
  .v43m-sheet-backdrop {
    position: fixed;
    z-index: 190;
    inset: 0;
    background: rgb(7 27 45 / 28%);
    animation: v43-fade-in var(--v43-duration-ui) var(--v43-ease-out) both;
  }

  .v43m-sheet {
    position: fixed;
    z-index: 200;
    inset: 0 0 0 auto;
    width: min(440px, 92vw);
    max-height: 100dvh;
    padding: 18px 22px 24px;
    overflow: hidden;
    background: var(--v43-surface);
    box-shadow: -22px 0 60px rgb(7 27 45 / 16%);
    animation: v43-drawer-in var(--v43-duration-sheet) var(--v43-ease-drawer) both;
  }

  .v43m-sheet.is-closing {
    animation: v43-drawer-out 220ms var(--v43-ease-drawer) both;
  }

  .v43m-sheet-backdrop.is-closing {
    animation: v43-fade-out 220ms var(--v43-ease-out) both;
  }

  .v43m-sheet-grabber {
    display: none;
  }

  .v43m-sheet > header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43m-sheet > header small {
    color: var(--v43-blue);
    font-size: 10px;
  }

  .v43m-sheet > header h2 {
    margin: 3px 0 0;
    color: var(--v43-ink-strong);
    font-size: 20px;
  }

  .v43m-sheet > header button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--v43-surface-soft);
    color: var(--v43-ink-soft);
  }

  .v43m-sheet-body {
    max-height: calc(100dvh - 100px);
    padding-top: 20px;
    overflow: auto;
  }

  .v43m-sheet form {
    display: grid;
    gap: 15px;
  }

  .v43m-sheet label {
    display: grid;
    gap: 6px;
    min-width: 0;
  }

  .v43m-sheet label > span {
    color: var(--v43-ink-soft);
    font-size: 11px;
    font-weight: 650;
  }

  .v43m-sheet input,
  .v43m-sheet textarea,
  .v43m-sheet select {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--v43-line-strong);
    border-radius: 8px;
    outline: 0;
    background: var(--v43-surface-soft);
    color: var(--v43-ink);
    font-size: 14px;
  }

  .v43m-sheet textarea {
    min-height: 90px;
    resize: vertical;
  }

  .v43m-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .v43m-sheet form > button[type="submit"] {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 8px;
    background: var(--v43-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 680;
  }

  .v43m-sheet-actions {
    display: grid;
    border-top: 1px solid var(--v43-line);
  }

  .v43m-sheet-actions > button {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    min-height: 70px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-sheet-actions strong,
  .v43m-sheet-actions small {
    display: block;
  }

  .v43m-sheet-actions strong {
    font-size: 12px;
  }

  .v43m-sheet-actions small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 10px;
  }

  @keyframes v43-drawer-in {
    from { transform: translate3d(100%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
  }

  @keyframes v43-drawer-out {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(100%, 0, 0); }
  }
}

@media (min-width: 821px) and (max-width: 1360px) {
  .v43-desktop-app {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .v43d-sidebar {
    align-items: center;
    padding-inline: 10px;
  }

  .v43d-brand {
    display: grid;
    width: 46px;
    grid-template-columns: 38px;
    justify-content: center;
  }

  .v43d-brand > div,
  .v43d-sidebar nav button span,
  .v43d-manage span,
  .v43d-cloud span,
  .v43d-cloud > svg:last-child {
    display: none;
  }

  .v43d-sidebar nav,
  .v43d-sidebar nav button,
  .v43d-manage,
  .v43d-cloud {
    width: 46px;
  }

  .v43d-sidebar nav button,
  .v43d-manage,
  .v43d-cloud {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 0;
  }

  .v43d-sidebar nav button.active::before,
  .v43d-manage.active::before {
    inset-inline-start: -10px;
  }

  .v43d-cloud {
    min-height: 46px;
  }

  .v43d-topbar {
    grid-template-columns: 174px minmax(220px, 1fr) auto;
    gap: 16px;
    padding-inline: 20px;
  }

  .v43d-content {
    padding-inline: 28px;
  }

  .v43d-course-ledger > div,
  .v43d-resource-results > div,
  .v43d-resource-recent > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .v43d-topbar {
    grid-template-columns: 146px minmax(180px, 1fr) auto;
  }

  .v43d-actions button span,
  .v43d-search kbd {
    display: none;
  }

  .v43d-actions button {
    width: 40px;
    padding: 0;
  }

  .v43d-content {
    padding: 30px 22px 52px;
  }

  .v43d-page-head {
    margin-bottom: 24px;
  }

  .v43d-today-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 22px;
  }

  .v43d-action-desk {
    padding: 22px;
  }

  .v43d-journey {
    grid-template-columns: 190px minmax(180px, 1fr);
  }

  .v43d-today-agenda {
    display: none;
  }

  .v43d-research-rail > div:last-child,
  .v43d-project-board > div,
  .v43d-requirements > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .v43d-course-ledger > div,
  .v43d-resource-results > div,
  .v43d-resource-recent > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v43d-academic-layout,
  .v43d-research-layout,
  .v43d-sports-layout,
  .v43d-growth-layout,
  .v43d-admin-layout {
    gap: 24px;
  }

  .v43d-academic-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .v43d-research-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .v43d-resource-layout {
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 24px;
  }

  .v43d-data-vault > div {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .v43m-header-button.is-placeholder {
    visibility: hidden;
    pointer-events: none;
  }

  .v43m-header::after {
    display: none;
  }

  .v43m-content {
    padding: 10px 16px calc(156px + env(safe-area-inset-bottom));
  }

  .v43m-tabbar {
    inset-inline: 8px;
    inset-block-end: max(7px, env(safe-area-inset-bottom));
    height: 64px;
    border-radius: 19px;
  }

  .v43m-fab {
    inset-inline-end: 18px;
    inset-block-end: calc(82px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }

  .v43m-today-intro,
  .v43m-research-header,
  .v43m-resource-head {
    padding-top: 4px;
    padding-bottom: 14px;
  }

  .v43m-today-intro p,
  .v43m-research-header h1,
  .v43m-resource-head h1 {
    font-size: 22px;
  }

  .v43m-mainline {
    padding: 18px;
    border-radius: 12px;
  }

  .v43m-agenda-block,
  .v43m-deadline-block,
  .v43m-research-next,
  .v43m-journey-strip {
    scroll-margin-bottom: 150px;
  }

  .v43m-empty {
    min-height: 112px;
    padding-block: 18px;
  }

  .v43m-agenda-list .v43m-empty,
  .v43m-deadline-track .v43m-track-empty {
    min-height: 88px;
  }

  .v43m-resource-results > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .v43m-resource-tile {
    min-height: 142px;
  }

  .v43m-resource-tile > a {
    min-height: 140px;
  }

  .v43m-sheet {
    padding-inline: 18px;
  }
}

@media (max-width: 390px) {
  .v43m-content {
    padding-inline: 14px;
  }

  .v43m-mainline {
    padding: 16px;
  }

  .v43m-resource-results > div {
    gap: 8px;
  }
}

/* Final mobile target sizing and tablet composition. */
@media (max-width: 820px) {
  .v43-mobile-app button {
    min-width: 44px;
    min-height: 44px;
  }

  .v43m-category-rail button,
  .v43m-segmented button,
  .v43m-agenda-block header button,
  .v43m-research-next header button,
  .v43m-library-list header button,
  .v43m-project-list header button,
  .v43m-evidence-flow header button,
  .v43m-course-list header button,
  .v43m-academic-timeline header button,
  .v43m-review-list header button,
  .v43m-calendar-head button,
  .v43m-more-profile > button {
    min-height: 44px;
    height: auto;
  }

  .v43m-resource-search > button,
  .v43m-resource-tile > button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .v43m-resource-tile > button {
    inset: 4px 3px auto auto;
  }
}

@media (min-width: 600px) and (max-width: 820px) {
  .v43m-content {
    width: min(100%, 700px);
    margin-inline: auto;
    padding-inline: 22px;
  }

  .v43m-tabbar {
    inset-inline: 50% auto;
    width: min(560px, calc(100vw - 24px));
    transform: translateX(-50%);
  }

  .v43m-fab {
    inset-inline: auto calc(50% - 280px + 14px);
  }
}

/* v43.2 FINAL - must remain the last cascade layer. */
.v43-desktop-app small,
.v43-desktop-app em,
.v43-mobile-app small,
.v43-mobile-app em,
.v43m-sheet small,
.v43m-sheet em {
  font-size: 12px;
}

@media (min-width: 1601px) {
  .v43d-resource-results > div,
  .v43d-resource-recent > div { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1121px) and (max-width: 1600px) {
  .v43d-resource-results > div,
  .v43d-resource-recent > div { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .v43d-today-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "action" "deadline" "research" "journey";
  }

  .v43d-journey { grid-template-columns: minmax(0, 1fr); gap: 16px; }

  .v43d-today-agenda {
    display: block;
    padding: 14px 0 0;
    border-inline-start: 0;
    border-top: 1px solid var(--v43-line);
  }

  .v43d-academic-layout,
  .v43d-research-layout,
  .v43d-sports-layout,
  .v43d-sport-detail-grid,
  .v43d-growth-layout,
  .v43d-admin-layout,
  .v43d-schedule-layout { grid-template-columns: minmax(0, 1fr); }

  .v43d-segmented {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .v43d-resource-results > div,
  .v43d-resource-recent > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .v43m-header {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    padding-inline: max(14px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  }

  .v43m-header-actions { display: flex; align-items: center; gap: 4px; }

  .v43m-header-button,
  .v43m-add { width: 44px; min-width: 44px; height: 44px; min-height: 44px; }

  .v43m-add { border-radius: 50%; background: var(--v43-navy); color: #fff; }

  .v43m-content {
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
    padding: 12px 16px calc(92px + env(safe-area-inset-bottom));
    scroll-padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .v43m-tabbar {
    inset: auto 0 0;
    width: 100%;
    height: calc(64px + env(safe-area-inset-bottom));
    padding: 5px max(8px, env(safe-area-inset-right)) env(safe-area-inset-bottom) max(8px, env(safe-area-inset-left));
    border: 0;
    border-top: 1px solid var(--v43-line);
    border-radius: 0;
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 -8px 24px rgb(7 27 45 / 7%);
    transform: none;
    backdrop-filter: blur(20px) saturate(170%);
  }

  .v43m-tabbar button { min-width: 0; min-height: 54px; border-radius: 10px; }
  .v43m-tabbar button.active { background: var(--v43-surface-blue); }

  .v43m-resource-head > button,
  .v43m-research-header > button {
    display: none;
  }

  .v43m-admin-status .v43-requirement-row {
    min-height: 56px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43m-admin-status .v43-requirement-row > button:first-child {
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: 55px;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--v43-ink);
    text-align: start;
  }

  .v43m-admin-status .v43-requirement-row > button:first-child > i {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1px solid var(--v43-line-strong);
    border-radius: 50%;
  }

  .v43m-admin-status .v43-requirement-row > button:first-child.done > i {
    border-color: var(--v43-blue);
    background: var(--v43-blue);
    color: #fff;
  }

  .v43m-admin-status .v43-requirement-row > button:first-child small {
    color: var(--v43-ink-faint);
    white-space: nowrap;
  }

  .v43m-sheet {
    inset: auto 0 0;
    width: 100%;
    max-height: min(88dvh, 760px);
    padding: 8px 18px calc(18px + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -20px 60px rgb(7 27 45 / 18%);
    animation-name: v43-sheet-in;
  }

  .v43m-sheet.is-closing { animation-name: v43-sheet-out; }
  .v43m-sheet-grabber { display: block; }
  .v43m-sheet > header { grid-template-columns: minmax(0, 1fr) 44px; }
  .v43m-sheet > header button { width: 44px; height: 44px; }

  .v43m-sheet-body {
    max-height: calc(88dvh - 88px - env(safe-area-inset-bottom));
    padding-bottom: 16px;
    overscroll-behavior: contain;
  }

  .toast {
    right: 12px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    left: 12px;
    max-width: none;
    min-height: 44px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .v43m-content { padding-inline: 14px; }
  .v43m-form-row { grid-template-columns: minmax(0, 1fr); }
}

/* v43.3: deep workspaces use the same quiet desktop language as the new shell. */
body.v43.v43-legacy-open .main {
  width: min(100%, 1560px);
  padding: 30px clamp(24px, 3vw, 46px) 56px;
}

.v43 .page-utility-bar {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 18px;
}

.v43 .page-utility-bar .page-actions,
.v43 .page-utility-bar .segmented {
  margin-inline-start: auto;
}

.v43 .page-utility-bar :is(.primary-button, .secondary-button) {
  min-height: 40px;
}

body.v43.v43-legacy-open :is(#literature, #research, #fieldwork, #thesis, #outputs, #academic, #life, #career, #admin) > .grid > .panel,
body.v43.v43-legacy-open :is(#research, #fieldwork, #projects, #outputs) > .panel {
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid var(--v43-line);
  border-radius: 0;
  background: transparent;
}

body.v43.v43-legacy-open :is(#literature, #research, #fieldwork, #thesis, #outputs, #academic, #life, #career, #admin) > .grid {
  gap: 34px;
}

body.v43.v43-legacy-open :is(#literature, #research, #fieldwork, #thesis, #outputs, #academic, #life, #career, #admin) .panel-heading {
  margin-bottom: 16px;
}

body.v43.v43-legacy-open :is(#literature, #research, #fieldwork, #thesis, #outputs, #academic, #life, #career, #admin) form.form-grid {
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: 8px;
  background: var(--v43-surface-soft);
}

.v43 .workspace-label {
  display: block;
  margin-bottom: 7px;
  color: var(--v43-ink-faint);
  font-size: 12px;
  font-weight: 650;
}

.v43 .thesis-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: 18px 32px;
  margin: 0 0 32px;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--v43-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.v43 .thesis-title-input {
  font-size: 18px;
  font-weight: 680;
  line-height: 1.4;
}

.v43 .thesis-section-input {
  margin-top: 4px;
  font-size: 13px;
}

.v43 .thesis-stats {
  align-self: end;
}

.v43 .thesis-stats label span,
.v43 .thesis-progress label {
  font-size: 12px;
}

.v43 .thesis-progress {
  gap: 8px 28px;
  padding-top: 18px;
  border-top: 1px solid var(--v43-line);
}

/* Resource library: one slim filter rail, compact controls, and eight useful entries. */
.v43 #resources .resource-utility-header {
  min-height: 0;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 18px;
  padding: 0 0 16px;
  border: 0 !important;
  border-bottom: 1px solid var(--v43-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.v43 #resources .resource-header-side {
  width: 100%;
  justify-content: space-between;
}

.v43 #resources .resource-header-metrics {
  gap: 0;
}

.v43 #resources .resource-header-metrics span {
  min-width: 104px;
  padding: 0 16px;
}

.v43 #resources .resource-header-metrics span:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}

.v43 .v38-resource-library {
  display: block;
  margin-top: 16px;
}

.v43 .v38-resource-directory {
  margin-bottom: 14px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .resource-group-filters {
  position: static;
  display: flex;
  max-width: 100%;
  flex-direction: row;
  gap: 4px;
  margin: 0;
  padding: 0 0 10px;
  overflow-x: auto;
  border: 0;
  border-radius: 0;
  scrollbar-width: none;
}

.v43 .resource-group-filters button {
  display: inline-flex;
  min-width: max-content;
  min-height: 40px;
  gap: 7px;
  padding: 0 12px;
}

.v43 .resource-group-filters button.active {
  background: var(--v43-surface-blue);
  color: var(--v43-blue-strong);
}

.v43 .resource-toolbar {
  grid-template-columns: minmax(260px, 1fr) 180px auto;
  margin-bottom: 20px;
}

.v43 .resource-search {
  width: 100%;
}

.v43 .resource-category-select {
  display: grid;
  grid-template-columns: 18px auto minmax(108px, 1fr);
  align-items: center;
  gap: 7px;
  width: 100%;
  padding-inline: 10px;
}

.v43 .resource-category-select > span {
  white-space: nowrap;
}

.v43 .resource-category-select > select {
  min-width: 0;
}

.v43 .resource-section-heading {
  min-height: 42px;
  padding-bottom: 10px;
}

.v43 .resource-section-heading > div {
  min-width: 0;
}

.v43 .resource-section-heading h3 {
  margin: 0;
  color: var(--v43-ink-strong);
  font-size: 15px;
  font-weight: 680;
}

.v43 .resource-section-heading em {
  margin-inline-start: auto;
  color: var(--v43-ink-faint);
  font-size: 12px;
  font-style: normal;
}

.v43 .resource-section-symbol {
  width: 32px;
  height: 32px;
}

.v43 .resource-tile {
  min-height: 92px;
}

.v43 .resource-tile > a {
  grid-template-columns: 38px minmax(0, 1fr) 14px;
  min-height: 90px;
  padding: 13px 34px 12px 13px;
}

.v43 .resource-link-copy strong {
  font-size: 13px;
}

.v43 #resources > .panel {
  margin-top: 28px;
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid var(--v43-line);
  border-radius: 0;
}

/* Sports: status rail instead of badge cards; charts stay useful at empty state. */
.v43 .sports-achievement-track {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 18px 0 24px;
  padding: 12px 0;
  border-top: 1px solid var(--v43-line);
  border-bottom: 1px solid var(--v43-line);
}

.v43 .sports-main-hero {
  min-height: 188px;
  padding: 26px 30px;
}

.v43 .sports-main-hero .sports-hero-copy h3 {
  margin: 5px 0 7px;
  font-size: 24px;
}

.v43 .sports-main-hero .sports-hero-copy > p:not(.section-label) {
  max-width: 620px;
  font-size: 13px;
}

.v43 .sports-achievement-heading {
  display: grid;
  gap: 3px;
}

.v43 .sports-achievement-heading strong {
  color: var(--v43-ink-strong);
  font-size: 13px;
}

.v43 .sports-achievement-heading small {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .sports-achievement-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-width: 0;
}

.v43 .sports-achievement {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 18px;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 0;
  border-inline-start: 1px solid var(--v43-line);
  border-radius: 0;
  background: transparent;
  color: var(--v43-ink-soft);
  text-align: start;
}

.v43 .sports-achievement > span:first-child {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--v43-surface-soft);
  color: var(--v43-ink-faint);
}

.v43 .sports-achievement.unlocked > span:first-child {
  background: var(--v43-surface-blue);
  color: var(--v43-blue);
}

.v43 .sports-achievement strong,
.v43 .sports-achievement small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .sports-achievement strong { font-size: 12px; }
.v43 .sports-achievement small { margin-top: 2px; color: var(--v43-ink-faint); font-size: 12px; }
.v43 .sports-achievement > svg { width: 15px; color: var(--v43-line-strong); }

.v43 .sports-dashboard-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 28px;
}

.v43 .sports-dashboard-grid > article {
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid var(--v43-line);
  border-radius: 0;
}

.v43 .sports-chart-panel {
  grid-row: auto !important;
  border-top: 1px solid var(--v43-line) !important;
}

.v43 .sports-recent-panel {
  grid-column: 1 / -1;
}

.v43 .sports-week-chart {
  height: 248px;
  min-height: 0;
  padding-top: 18px;
}

.v43 .sports-week-chart > div > span {
  height: 176px;
  border: 0;
  background: var(--v43-surface-soft);
}

.v43 .sports-goal-panel,
.v43 #sportsHub .sports-goal-panel {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 18px 0 0;
  border: 0 !important;
  border-top: 1px solid var(--v43-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.v43 .sports-goal-summary {
  min-width: 0;
}

.v43 .sports-goal-summary > strong {
  color: var(--v43-ink-strong);
  font-size: 13px;
}

.v43 .sports-goal-summary > p {
  margin: 4px 0 0;
  color: var(--v43-ink-faint) !important;
  font-size: 12px;
  line-height: 1.5;
}

.v43 .sports-goal-track {
  height: 6px;
  background: var(--v43-surface-blue);
}

.v43 .sports-mini-challenge {
  margin-top: 10px;
  padding: 8px 0 0;
  border: 0;
  border-top: 1px dashed var(--v43-line);
  border-radius: 0;
  background: transparent;
}

/* Conflict handling stays complete, but no longer takes over or clips the viewport. */
.v43 .data-decision-card {
  display: flex;
  width: min(760px, calc(100vw - 40px));
  max-width: 760px;
  max-height: min(720px, calc(100dvh - 48px));
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border-radius: 10px;
}

.v43 .data-decision-card .modal-heading {
  flex: 0 0 auto;
  margin-bottom: 10px;
}

.v43 .data-decision-card .modal-heading h3 {
  margin-top: 2px;
  font-size: 20px;
}

.v43 .data-decision-card .panel-kicker {
  font-size: 12px;
}

.v43 .decision-copy {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.55;
}

.v43 .conflict-metrics {
  flex: 0 0 auto;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.v43 .conflict-metrics > div {
  padding: 8px 10px;
}

.v43 .conflict-collection-list {
  min-height: 72px;
  max-height: 220px;
  flex: 1 1 auto;
  margin: 10px 0 14px;
  overscroll-behavior: contain;
}

.v43 .conflict-choice-grid {
  flex: 0 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.v43 .conflict-choice {
  grid-template-columns: 28px minmax(0, 1fr);
  min-height: 82px;
  align-items: start;
  padding: 11px;
}

.v43 .conflict-choice b {
  position: absolute;
  inset: 7px 7px auto auto;
}

.v43 .conflict-choice small {
  font-size: 12px;
  line-height: 1.4;
}

@media (min-width: 1601px) {
  .v43 .link-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1121px) and (max-width: 1600px) {
  .v43 .link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1200px) {
  .v43 .sports-achievement-track { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .v43 .sports-achievement-heading { grid-template-columns: auto 1fr; align-items: baseline; gap: 10px; }
  .v43 .sports-achievement-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v43 .sports-achievement:nth-child(3) { border-top: 1px solid var(--v43-line); }
  .v43 .sports-achievement:nth-child(4) { border-top: 1px solid var(--v43-line); }
  .v43 .sports-dashboard-grid { grid-template-columns: minmax(0, 1fr); }
  .v43 .sports-recent-panel { grid-column: auto; }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .v43 .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v43 .thesis-workspace { grid-template-columns: minmax(0, 1fr); }
  .v43 .sports-goal-panel,
  .v43 #sportsHub .sports-goal-panel { grid-template-columns: 130px minmax(0, 1fr); }
  .v43 .sports-goal-panel > .sports-record-trigger { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 820px) {
  .v43 .page-utility-bar { min-height: 44px; margin-bottom: 12px; overflow-x: auto; }
  .v43 .page-utility-bar :is(.primary-button, .secondary-button) { min-height: 44px; }
  .v43 .thesis-workspace { grid-template-columns: minmax(0, 1fr); gap: 14px; margin-bottom: 20px; }
  .v43 .thesis-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v43 .resource-toolbar { grid-template-columns: minmax(0, 1fr); }
  .v43 #resources .resource-header-side { align-items: flex-start; flex-direction: column; }
  .v43 #resources .resource-header-metrics { width: 100%; }
  .v43 #resources .resource-header-metrics span { min-width: 0; flex: 1; padding: 0 10px; }
  .v43 .sports-achievement-list { grid-template-columns: minmax(0, 1fr); }
  .v43 .sports-achievement { min-height: 48px; border-top: 1px solid var(--v43-line); }
  .v43 .sports-achievement:first-child { border-top: 0; }
  .v43 .sports-goal-panel,
  .v43 #sportsHub .sports-goal-panel { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .v43 .conflict-choice-grid { grid-template-columns: minmax(0, 1fr); }
  .v43 .data-decision-card { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); padding: 16px; overflow-y: auto; }
  .v43 .conflict-collection-list { flex: 0 0 auto; max-height: 180px; }
}

body.v43 .v43-desktop-app :is(small, em, time, p, span),
body.v43 .v43d-search-panel :is(small, em, time, p, span) {
  font-size: max(12px, 0.75rem);
}

@media (max-width: 820px) {
  body.v43 .v43-mobile-app :is(small, em, time, p, span),
  body.v43 .v43m-sheet :is(small, em, time, p, span) {
    font-size: max(12px, 0.75rem);
  }

  body.v43 .v43-mobile-app :is(input, select, textarea) {
    min-height: 44px;
  }
}

/* v43.5 unified research workspace. These views replace the legacy research pages. */
.v43 .v43d-research-tabs,
.v43 .v43m-research-tabs {
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.v43 .v43d-research-tabs::-webkit-scrollbar,
.v43 .v43m-research-tabs::-webkit-scrollbar {
  display: none;
}

.v43 .v43d-research-tabs {
  gap: 4px;
  margin: -8px 0 28px;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43d-research-tabs button {
  position: relative;
  min-width: max-content;
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  background: transparent;
  color: var(--v43-ink-soft);
  font: inherit;
  font-size: 13px;
}

.v43 .v43d-research-tabs button::after {
  position: absolute;
  inset: auto 14px -1px;
  height: 2px;
  border-radius: 2px;
  background: var(--v43-blue);
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.v43 .v43d-research-tabs button:hover,
.v43 .v43d-research-tabs button.active {
  color: var(--v43-blue-strong);
}

.v43 .v43d-research-tabs button.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.v43 .v43d-research-detail,
.v43 .v43d-research-columns,
.v43 .v43d-fieldwork-board,
.v43 .v43d-thesis-layout {
  min-width: 0;
}

.v43 .v43d-research-detail {
  display: grid;
  gap: 28px;
}

.v43 .v43d-research-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--v43-line);
}

.v43 .v43d-research-metrics > span {
  display: flex;
  min-width: 0;
  min-height: 74px;
  align-items: baseline;
  gap: 9px;
  padding: 18px 22px;
  border-left: 1px solid var(--v43-line);
}

.v43 .v43d-research-metrics > span:first-child {
  border-left: 0;
}

.v43 .v43d-research-metrics strong {
  color: var(--v43-ink-strong);
  font-size: 25px;
  font-weight: 650;
  line-height: 1;
}

.v43 .v43d-research-metrics small {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43d-research-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.v43 .v43d-fieldwork-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.v43 .v43d-fieldwork-board > :last-child {
  grid-column: 1 / -1;
}

.v43 .v43d-research-panel {
  min-width: 0;
  padding-top: 2px;
}

.v43 .v43d-research-panel > header,
.v43 .v43d-thesis-stages > header {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--v43-line-strong);
}

.v43 .v43d-research-panel > header small,
.v43 .v43d-thesis-stages > header small {
  display: block;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43d-research-panel > header h2,
.v43 .v43d-thesis-stages > header h2 {
  margin: 3px 0 0;
  color: var(--v43-ink-strong);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0;
}

.v43 .v43d-research-panel > header > button,
.v43 .v43d-thesis-progress header > button {
  display: inline-flex;
  min-width: max-content;
  min-height: 40px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border: 1px solid var(--v43-line-strong);
  border-radius: 7px;
  background: var(--v43-surface);
  color: var(--v43-blue-strong);
  font: inherit;
  font-size: 13px;
}

.v43 .v43d-research-records {
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43d-research-records > article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 74px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--v43-line);
}

.v43 .v43d-research-records > article:first-child {
  border-top: 0;
}

.v43 .v43d-research-records > article > span:first-child {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--v43-surface-blue);
  color: var(--v43-blue);
}

.v43 .v43d-research-records > article > span:first-child svg {
  width: 17px;
  height: 17px;
}

.v43 .v43d-research-records > article > button {
  min-width: 0;
  min-height: 52px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--v43-ink);
  text-align: left;
}

.v43 .v43d-research-records strong,
.v43 .v43d-research-records small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43d-research-records strong {
  color: var(--v43-ink-strong);
  font-size: 13px;
  font-weight: 600;
}

.v43 .v43d-research-records small {
  margin-top: 5px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43d-thesis-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 34px;
}

.v43 .v43d-thesis-layout > :last-child {
  grid-column: 1 / -1;
}

.v43 .v43d-thesis-progress {
  padding: 24px;
  border-radius: 9px;
  background: var(--v43-navy);
  color: #fff;
}

.v43 .v43d-thesis-progress > header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.v43 .v43d-thesis-progress header small {
  color: rgb(255 255 255 / 55%);
  font-size: 12px;
}

.v43 .v43d-thesis-progress h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 650;
}

.v43 .v43d-thesis-progress header > button {
  border-color: rgb(255 255 255 / 20%);
  background: rgb(255 255 255 / 8%);
  color: #fff;
}

.v43 .v43d-thesis-progress > div {
  display: grid;
  grid-template-columns: auto minmax(100px, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.v43 .v43d-thesis-progress > div > strong {
  font-size: 24px;
}

.v43 .v43d-thesis-progress > div > span {
  height: 6px;
  overflow: hidden;
  border-radius: 8px;
  background: rgb(255 255 255 / 14%);
}

.v43 .v43d-thesis-progress > div > span > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--v43-orange);
}

.v43 .v43d-thesis-progress > div > small,
.v43 .v43d-thesis-progress > p {
  color: rgb(255 255 255 / 62%);
  font-size: 12px;
}

.v43 .v43d-thesis-progress > p {
  margin: 18px 0 0;
  line-height: 1.6;
}

.v43 .v43d-thesis-stages > div {
  padding-top: 7px;
}

.v43 .v43d-thesis-stages button {
  display: grid;
  width: 100%;
  min-height: 52px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--v43-line);
  background: transparent;
  color: var(--v43-ink);
  text-align: left;
}

.v43 .v43d-thesis-stages button > i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--v43-line-strong);
  border-radius: 50%;
}

.v43 .v43d-thesis-stages button.done > i {
  border-color: var(--v43-blue);
  background: var(--v43-blue);
  color: #fff;
}

.v43 .v43d-thesis-stages strong,
.v43 .v43d-thesis-stages small {
  display: block;
}

.v43 .v43d-thesis-stages strong {
  font-size: 13px;
}

.v43 .v43d-thesis-stages small {
  margin-top: 2px;
  color: var(--v43-ink-faint);
  font-size: 12px;
}

@media (max-width: 1360px) and (min-width: 821px) {
  .v43 .v43d-research-columns,
  .v43 .v43d-fieldwork-board,
  .v43 .v43d-thesis-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .v43 .v43d-fieldwork-board > :last-child,
  .v43 .v43d-thesis-layout > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .v43 .v43m-research-header {
    margin-bottom: 12px;
  }

  .v43 .v43m-research-tabs {
    gap: 6px;
    margin: 0 -16px 18px;
    padding: 0 16px 4px;
  }

  .v43 .v43m-research-tabs button {
    min-width: max-content;
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid var(--v43-line);
    border-radius: 22px;
    background: var(--v43-surface);
    color: var(--v43-ink-soft);
    font: inherit;
    font-size: 13px;
  }

  .v43 .v43m-research-tabs button.active {
    border-color: var(--v43-blue);
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
  }

  .v43 .v43m-research-section,
  .v43 .v43m-thesis-status,
  .v43 .v43m-thesis-stages {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--v43-line);
  }

  .v43 .v43m-research-section > header,
  .v43 .v43m-thesis-status > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
  }

  .v43 .v43m-research-section > header small,
  .v43 .v43m-thesis-status > header small {
    display: block;
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43 .v43m-research-section h2,
  .v43 .v43m-thesis-status h2,
  .v43 .v43m-thesis-stages h2 {
    margin: 3px 0 0;
    color: var(--v43-ink-strong);
    font-size: 16px;
    font-weight: 650;
  }

  .v43 .v43m-research-section > header > button,
  .v43 .v43m-thesis-status > header > button {
    display: inline-flex;
    min-width: max-content;
    min-height: 44px;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    border: 1px solid var(--v43-line-strong);
    border-radius: 8px;
    background: var(--v43-surface);
    color: var(--v43-blue-strong);
    font: inherit;
    font-size: 13px;
  }

  .v43 .v43m-research-section > div > article {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    min-width: 0;
    min-height: 68px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43 .v43m-research-section > div > article > span:first-child {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43 .v43m-research-section > div > article > span:first-child svg {
    width: 16px;
    height: 16px;
  }

  .v43 .v43m-research-section > div > article > button {
    min-width: 0;
    min-height: 52px;
    padding: 7px 0;
    border: 0;
    background: transparent;
    color: var(--v43-ink);
    text-align: left;
  }

  .v43 .v43m-research-section article strong,
  .v43 .v43m-research-section article small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43 .v43m-research-section article strong {
    color: var(--v43-ink-strong);
    font-size: 14px;
  }

  .v43 .v43m-research-section article small {
    margin-top: 4px;
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43 .v43m-thesis-status > div {
    display: grid;
    grid-template-columns: auto minmax(80px, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
  }

  .v43 .v43m-thesis-status > div > strong {
    color: var(--v43-blue-strong);
    font-size: 20px;
  }

  .v43 .v43m-thesis-status > div > span {
    height: 6px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--v43-surface-blue);
  }

  .v43 .v43m-thesis-status > div > span > i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--v43-blue);
  }

  .v43 .v43m-thesis-status > p {
    margin: 12px 0 0;
    color: var(--v43-ink-soft);
    font-size: 13px;
    line-height: 1.6;
  }

  .v43 .v43m-thesis-stages > button {
    display: grid;
    width: 100%;
    min-height: 52px;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    background: transparent;
    color: var(--v43-ink);
    text-align: left;
  }

  .v43 .v43m-thesis-stages > button > i {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1px solid var(--v43-line-strong);
    border-radius: 50%;
  }

  .v43 .v43m-thesis-stages > button.done > i {
    border-color: var(--v43-blue);
    background: var(--v43-blue);
    color: #fff;
  }

  .v43 .v43m-thesis-stages strong,
  .v43 .v43m-thesis-stages small {
    display: block;
  }

  .v43 .v43m-thesis-stages strong {
    font-size: 13px;
  }

  .v43 .v43m-thesis-stages small {
    margin-top: 2px;
    color: var(--v43-ink-faint);
    font-size: 12px;
  }
}

/* v43.6 final mobile alignment overrides. */
@media (max-width: 820px) {
  .v43 .v43m-center-head {
    min-height: 24px;
    margin-bottom: 8px;
  }

  .v43 .v43m-center-head > small {
    overflow: hidden;
    color: var(--v43-ink-faint);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.v43 .v43-academic-next .v43d-empty {
  color: rgb(255 255 255 / 62%);
}

.v43 .v43-academic-next .v43d-empty > span {
  background: rgb(255 255 255 / 10%);
  color: #fff;
}

.v43 .v43-academic-next .v43d-empty strong {
  color: #fff;
}

.v43 .v43-academic-next .v43d-empty > button {
  border-color: rgb(255 255 255 / 22%);
  background: #fff;
  color: var(--v43-navy);
}

/* v43.9: the course profile and the recurring timetable are distinct, linked tools. */
.v43 .v43-schedule-mode-tabs {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 22px;
  margin: 0 0 30px;
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-schedule-mode-tabs button {
  position: relative;
  min-height: 44px;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: var(--v43-ink-faint);
  font: inherit;
  font-size: 14px;
  font-weight: 620;
  white-space: nowrap;
}

.v43 .v43-schedule-mode-tabs button.active {
  color: var(--v43-blue-strong);
}

.v43 .v43-schedule-mode-tabs button.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--v43-blue);
  content: "";
}

.v43 .v43-academic-courses-workspace {
  display: grid;
  min-width: 0;
  gap: 42px;
}

.v43 .v43-course-timetable-panel {
  min-width: 0;
  padding-top: 22px;
  border-top: 1px solid var(--v43-line);
}

.v43 .v43-course-timetable-panel > header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.v43 .v43-course-timetable-panel > header small,
.v43 .v43-course-timetable-panel > header h2 {
  display: block;
  margin: 0;
}

.v43 .v43-course-timetable-panel > header small {
  color: var(--v43-ink-faint);
  font-size: 12px;
}

.v43 .v43-course-timetable-panel > header h2 {
  margin-top: 3px;
  color: var(--v43-ink-strong);
  font-size: 18px;
  font-weight: 680;
}

.v43 .v43-course-timetable-panel > header > div:last-child {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.v43 .v43-course-timetable-panel > header button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--v43-line-strong);
  border-radius: 8px;
  background: var(--v43-surface);
  color: var(--v43-blue-strong);
  font: inherit;
  font-size: 13px;
  font-weight: 620;
  white-space: nowrap;
}

.v43 .v43-course-timetable-panel > header button.is-primary {
  border-color: var(--v43-blue);
  background: var(--v43-blue);
  color: #fff;
}

.v43 .v43-course-timetable-panel > header button svg {
  width: 16px;
  height: 16px;
}

.v43 .v43-course-timetable-desktop {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--v43-line);
  border-radius: 8px;
  background: var(--v43-surface);
  overscroll-behavior-inline: contain;
}

.v43 .v43-timetable-grid {
  display: grid;
  min-width: 760px;
  grid-template-columns: 44px repeat(7, minmax(90px, 1fr));
  grid-template-rows: 42px repeat(12, 44px);
  color: var(--v43-ink);
}

.v43 .v43-timetable-corner,
.v43 .v43-timetable-day,
.v43 .v43-timetable-period,
.v43 .v43-timetable-cell {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--v43-line);
  border-bottom: 1px solid var(--v43-line);
}

.v43 .v43-timetable-corner,
.v43 .v43-timetable-day {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #f7f9fc;
  color: var(--v43-ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.v43 .v43-timetable-day {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.v43 .v43-timetable-day small {
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: var(--v43-ink-faint);
  font-size: 10px;
}

.v43 .v43-timetable-day.is-today {
  color: var(--v43-blue-strong);
}

.v43 .v43-timetable-day.is-today small {
  background: var(--v43-surface-blue);
  color: var(--v43-blue-strong);
}

.v43 .v43-timetable-period {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fbfcfe;
  color: var(--v43-ink-faint);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.v43 .v43-timetable-cell {
  background: #fff;
}

.v43 .v43-timetable-course {
  z-index: 1;
  min-width: 0;
  min-height: 0;
  margin: 3px;
  overflow: hidden;
  padding: 7px 8px;
  border: 0;
  border-left: 3px solid var(--v43-blue);
  border-radius: 6px;
  background: #eaf2ff;
  color: #19375f;
  text-align: left;
}

.v43 .v43-timetable-course strong,
.v43 .v43-timetable-course small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v43 .v43-timetable-course strong {
  font-size: 12px;
  line-height: 1.25;
}

.v43 .v43-timetable-course small {
  margin-top: 4px;
  color: rgb(25 55 95 / 68%);
  font-size: 11px;
}

.v43 .v43-timetable-course.is-cyan { border-left-color: #308da1; background: #e9f5f7; color: #174c58; }
.v43 .v43-timetable-course.is-indigo { border-left-color: #6577b8; background: #eef0f9; color: #354273; }
.v43 .v43-timetable-course.is-orange { border-left-color: var(--v43-orange); background: #fff3e8; color: #74421b; }
.v43 .v43-timetable-course.is-green { border-left-color: #4b8b72; background: #edf6f1; color: #285846; }

.v43 .v43-course-timetable-mobile {
  display: none;
}

@media (max-width: 820px) {
  .v43 .v43-schedule-mode-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    margin: 0 0 18px;
    padding: 4px;
    border: 0;
    border-radius: 10px;
    background: #f3f6fa;
  }

  .v43 .v43-schedule-mode-tabs button {
    min-height: 44px;
    padding: 0 10px;
    border-radius: 7px;
    font-size: 13px;
  }

  .v43 .v43-schedule-mode-tabs button.active {
    background: #fff;
    box-shadow: 0 2px 10px rgb(32 72 122 / 9%);
  }

  .v43 .v43-schedule-mode-tabs button.active::after {
    display: none;
  }

  .v43 .v43-academic-courses-workspace {
    gap: 28px;
  }

  .v43 .v43-course-timetable-panel {
    padding-top: 16px;
  }

  .v43 .v43-course-timetable-panel > header {
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 14px;
  }

  .v43 .v43-course-timetable-panel > header h2 {
    font-size: 17px;
  }

  .v43 .v43-course-timetable-panel > header > div:last-child > button:first-child {
    display: none;
  }

  .v43 .v43-course-timetable-panel > header button {
    min-height: 44px;
    padding: 0 12px;
  }

  .v43 .v43-course-timetable-desktop {
    display: none;
  }

  .v43 .v43-course-timetable-mobile {
    display: block;
  }

  .v43 .v43-course-timetable-mobile > nav {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    border-radius: 10px;
    background: #f4f7fb;
  }

  .v43 .v43-course-timetable-mobile > nav button {
    display: grid;
    min-width: 0;
    min-height: 48px;
    place-items: center;
    gap: 1px;
    padding: 4px 0;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--v43-ink-faint);
    font: inherit;
  }

  .v43 .v43-course-timetable-mobile > nav button strong {
    font-size: 13px;
    font-weight: 650;
  }

  .v43 .v43-course-timetable-mobile > nav button small {
    font-size: 10px;
  }

  .v43 .v43-course-timetable-mobile > nav button.active {
    background: #fff;
    color: var(--v43-blue-strong);
    box-shadow: 0 2px 10px rgb(32 72 122 / 10%);
  }

  .v43 .v43-course-timetable-mobile > nav button.is-today:not(.active) {
    color: var(--v43-blue);
  }

  .v43 .v43-course-timetable-mobile > div {
    margin-top: 10px;
    border-top: 1px solid var(--v43-line);
  }

  .v43 .v43-course-timetable-mobile article {
    display: grid;
    min-width: 0;
    min-height: 72px;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43 .v43-course-timetable-mobile article > time {
    display: grid;
    min-height: 44px;
    place-content: center;
    border-radius: 8px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
    text-align: center;
  }

  .v43 .v43-course-timetable-mobile article > time strong,
  .v43 .v43-course-timetable-mobile article > time small {
    display: block;
  }

  .v43 .v43-course-timetable-mobile article > time strong {
    font-size: 13px;
    font-variant-numeric: tabular-nums;
  }

  .v43 .v43-course-timetable-mobile article > time small {
    margin-top: 1px;
    font-size: 10px;
  }

  .v43 .v43-course-timetable-mobile article > button {
    min-width: 0;
    min-height: 54px;
    padding: 7px 0;
    border: 0;
    background: transparent;
    color: var(--v43-ink);
    text-align: left;
  }

  .v43 .v43-course-timetable-mobile article > button strong,
  .v43 .v43-course-timetable-mobile article > button small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43 .v43-course-timetable-mobile article > button strong {
    color: var(--v43-ink-strong);
    font-size: 14px;
  }

  .v43 .v43-course-timetable-mobile article > button small {
    margin-top: 5px;
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43 .v43-academic-course-layout {
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .v43 .v43d-empty {
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: 86px;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    color: var(--v43-ink-faint);
  }

  .v43 .v43d-empty > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43 .v43d-empty > span svg {
    width: 17px;
    height: 17px;
  }

  .v43 .v43d-empty strong,
  .v43 .v43d-empty small {
    display: block;
  }

  .v43 .v43d-empty strong {
    color: var(--v43-ink-strong);
    font-size: 13px;
  }

  .v43 .v43d-empty small {
    margin-top: 4px;
    color: var(--v43-ink-faint);
    font-size: 12px;
    line-height: 1.45;
  }

  .v43 .v43d-empty > button {
    min-width: max-content;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--v43-line-strong);
    border-radius: 8px;
    background: var(--v43-surface);
    color: var(--v43-blue-strong);
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .v43 .v43m-center-tabs {
    margin-inline: -14px;
    padding-inline: 14px;
  }
}

/* v43.7: mobile information architecture and native inbox. */
body.v43 #scrollTopBtn {
  display: none !important;
}

@media (min-width: 821px) {
  .v43 .v43-inbox-sheet {
    display: grid;
    gap: 20px;
  }

  .v43 .v43-inbox-capture {
    display: grid;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--v43-line);
    border-radius: 10px;
    background: var(--v43-surface-soft);
  }

  .v43 .v43-inbox-capture > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: end;
    gap: 10px;
  }

  .v43 .v43-inbox-capture button[type="submit"] {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: var(--v43-navy);
    color: #fff;
    font-size: 13px;
  }

  .v43 .v43-inbox-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    border-radius: 9px;
    background: var(--v43-surface-soft);
  }

  .v43 .v43-inbox-filters button {
    min-height: 40px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--v43-ink-soft);
    font-size: 12px;
  }

  .v43 .v43-inbox-filters button.active {
    background: var(--v43-surface);
    box-shadow: 0 2px 8px rgb(15 49 78 / 8%);
    color: var(--v43-blue-strong);
    font-weight: 680;
  }

  .v43 .v43-inbox-ledger > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43 .v43-inbox-ledger > header strong {
    font-size: 15px;
  }

  .v43 .v43-inbox-ledger > header span {
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43 .v43-inbox-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0 11px;
    padding: 15px 0;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43 .v43-inbox-type {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 9px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43 .v43-inbox-type svg {
    width: 17px;
  }

  .v43 .v43-inbox-copy strong,
  .v43 .v43-inbox-copy small {
    display: block;
  }

  .v43 .v43-inbox-copy strong {
    overflow-wrap: anywhere;
    color: var(--v43-ink-strong);
    font-size: 14px;
    line-height: 1.45;
  }

  .v43 .v43-inbox-copy small {
    margin-top: 4px;
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43 .v43-inbox-row-actions {
    grid-column: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px 40px;
    gap: 6px;
    margin-top: 10px;
  }

  .v43 .v43-inbox-row-actions > button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
    border: 1px solid var(--v43-line);
    border-radius: 8px;
    background: var(--v43-surface);
    color: var(--v43-ink-soft);
    font-size: 12px;
  }

  .v43 .v43-inbox-row-actions > .v43-inbox-convert,
  .v43 .v43-inbox-row-actions > .v43-inbox-restore {
    justify-content: flex-start;
    border-color: transparent;
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
    font-weight: 650;
  }
}

@media (max-width: 820px) {
  .v43 .v43m-more-profile {
    grid-template-columns: 50px minmax(0, 1fr) 44px;
    gap: 12px;
    padding: 8px 0 22px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43 .v43m-more-profile > span {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 19px;
  }

  .v43 .v43m-more-profile h1 {
    margin: 0 0 3px;
    font-size: 17px;
    line-height: 1.25;
  }

  .v43 .v43m-more-profile small,
  .v43 .v43m-more-profile p {
    font-size: 12px;
    line-height: 1.35;
  }

  .v43 .v43m-more-profile > button {
    display: grid;
    width: 44px;
    height: 44px;
    min-width: 44px;
    place-items: center;
    border-radius: 10px;
  }

  .v43 .v43m-more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .v43 .v43m-more-grid > button {
    display: flex;
    min-width: 0;
    min-height: 136px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 15px 14px;
    border: 1px solid var(--v43-line);
    border-radius: 10px;
    background: var(--v43-surface);
    box-shadow: 0 7px 20px rgb(15 49 78 / 5%);
  }

  .v43 .v43m-more-grid > button > span {
    display: flex;
    width: auto;
    height: auto;
    min-width: 0;
    align-items: center;
    gap: 9px;
    border-radius: 0;
    background: transparent;
    color: var(--v43-blue);
  }

  .v43 .v43m-more-grid > button > span > svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }

  .v43 .v43m-more-grid strong {
    min-width: 0;
    color: var(--v43-ink-strong);
    font-size: 14px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .v43 .v43m-more-grid small {
    display: -webkit-box;
    min-height: 34px;
    margin: 0;
    overflow: hidden;
    color: var(--v43-ink-soft);
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .v43 .v43m-more-grid em {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    color: var(--v43-blue);
    font-size: 12px;
    font-style: normal;
    line-height: 1;
  }

  .v43 .v43m-more-grid em svg {
    width: 14px;
    height: 14px;
  }

  .v43 .v43m-more-tools {
    margin-top: 28px;
    padding-top: 20px;
  }

  .v43 .v43m-more-tools > h2 {
    margin-bottom: 7px;
    font-size: 16px;
  }

  .v43 .v43m-more-tools > div {
    display: block;
    border-top: 1px solid var(--v43-line);
  }

  .v43 .v43m-more-tools button {
    display: grid;
    width: 100%;
    min-height: 68px;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;
    padding: 9px 0;
    border: 0;
    border-bottom: 1px solid var(--v43-line);
    border-radius: 0;
    background: transparent;
    color: var(--v43-ink);
    text-align: left;
  }

  .v43 .v43m-more-tools button > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 9px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43 .v43m-more-tools button > span svg {
    width: 17px;
    height: 17px;
  }

  .v43 .v43m-more-tools button > div {
    min-width: 0;
  }

  .v43 .v43m-more-tools button strong,
  .v43 .v43m-more-tools button small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v43 .v43m-more-tools button strong {
    color: var(--v43-ink-strong);
    font-size: 14px;
  }

  .v43 .v43m-more-tools button small {
    margin-top: 4px;
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43 .v43m-more-tools button > svg:last-child {
    width: 17px;
    color: var(--v43-ink-faint);
  }

  .v43 .v43m-empty {
    display: grid;
    min-height: 94px;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    place-items: initial;
    align-content: center;
    align-items: center;
    gap: 3px 12px;
    padding: 16px 2px;
    text-align: left;
  }

  .v43 .v43m-empty > span {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--v43-surface-blue);
  }

  .v43 .v43m-empty strong {
    grid-column: 2;
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
  }

  .v43 .v43m-empty p {
    grid-column: 2;
    max-width: none;
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .v43 .v43m-track-empty,
  .v43 .v43m-upcoming-empty {
    display: grid;
    min-height: 82px;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 12px 2px;
    color: var(--v43-ink-faint);
    text-align: left;
  }

  .v43 .v43m-track-empty > span,
  .v43 .v43m-upcoming-empty > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 10px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43 .v43m-track-empty strong,
  .v43 .v43m-track-empty small,
  .v43 .v43m-upcoming-empty strong,
  .v43 .v43m-upcoming-empty small {
    display: block;
  }

  .v43 .v43m-track-empty strong,
  .v43 .v43m-upcoming-empty strong {
    color: var(--v43-ink-strong);
    font-size: 14px;
  }

  .v43 .v43m-track-empty small,
  .v43 .v43m-upcoming-empty small {
    margin-top: 3px;
    color: var(--v43-ink-faint);
    font-size: 12px;
    line-height: 1.4;
  }

  .v43 .v43m-upcoming-strip > div {
    gap: 0;
    overflow: visible;
    border: 0;
    border-top: 1px solid var(--v43-line);
    border-radius: 0;
    background: transparent;
  }

  .v43 .v43m-upcoming-strip button {
    border-bottom: 1px solid var(--v43-line);
  }

  .v43 .v43-vault-workspace {
    gap: 22px;
  }

  .v43 .v43-vault-status {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin: 0;
    padding: 16px;
    border: 0;
    border-radius: 10px;
    background: var(--v43-surface-blue);
  }

  .v43 .v43-vault-status > span:first-child {
    width: 42px;
    height: 42px;
    background: var(--v43-surface);
  }

  .v43 .v43-vault-status h2 {
    font-size: 15px;
    line-height: 1.4;
  }

  .v43 .v43-vault-status p,
  .v43 .v43-vault-status small {
    font-size: 12px;
    line-height: 1.45;
  }

  .v43 .v43-vault-status > button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
    border: 0;
    background: var(--v43-surface);
  }

  .v43 .v43-vault-actions {
    display: block;
    border-block: 1px solid var(--v43-line);
  }

  .v43 .v43-vault-actions > button {
    width: 100%;
    min-height: 72px;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    gap: 11px;
    padding: 10px 0;
    border-inline-end: 0;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43 .v43-vault-actions > button:last-child {
    border-bottom: 0;
  }

  .v43 .v43-vault-actions > button > svg:first-child {
    width: 20px;
    justify-self: center;
  }

  .v43 .v43-vault-actions strong {
    font-size: 14px;
  }

  .v43 .v43-vault-actions small {
    font-size: 12px;
  }

  .v43 .v43m-sheet[data-v43-sheet="inbox"] {
    max-height: min(94dvh, 900px);
  }

  .v43 .v43m-sheet[data-v43-sheet="inbox"] .v43m-sheet-body {
    max-height: calc(94dvh - 90px - env(safe-area-inset-bottom));
    padding-top: 14px;
  }

  .v43 .v43-inbox-sheet {
    display: grid;
    min-width: 0;
    gap: 18px;
  }

  .v43 .v43-inbox-capture {
    display: grid;
    gap: 11px;
    padding: 14px;
    border: 1px solid var(--v43-line);
    border-radius: 10px;
    background: var(--v43-surface-soft);
  }

  .v43 .v43-inbox-capture > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: end;
    gap: 10px;
  }

  .v43 .v43-inbox-capture button[type="submit"] {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: var(--v43-navy);
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
  }

  .v43 .v43-inbox-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    border-radius: 9px;
    background: var(--v43-surface-soft);
  }

  .v43 .v43-inbox-filters button {
    min-width: 0;
    min-height: 40px;
    padding: 0 5px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--v43-ink-soft);
    font-size: 12px;
    white-space: nowrap;
  }

  .v43 .v43-inbox-filters button.active {
    background: var(--v43-surface);
    box-shadow: 0 2px 8px rgb(15 49 78 / 8%);
    color: var(--v43-blue-strong);
    font-weight: 680;
  }

  .v43 .v43-inbox-ledger > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43 .v43-inbox-ledger > header strong {
    color: var(--v43-ink-strong);
    font-size: 15px;
  }

  .v43 .v43-inbox-ledger > header span {
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43 .v43-inbox-row {
    display: grid;
    min-width: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0 11px;
    padding: 15px 0;
    border-bottom: 1px solid var(--v43-line);
  }

  .v43 .v43-inbox-row.is-archived {
    opacity: 0.7;
  }

  .v43 .v43-inbox-type {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 10px;
    background: var(--v43-surface-blue);
    color: var(--v43-blue);
  }

  .v43 .v43-inbox-type svg {
    width: 18px;
    height: 18px;
  }

  .v43 .v43-inbox-copy {
    min-width: 0;
    align-self: center;
  }

  .v43 .v43-inbox-copy strong,
  .v43 .v43-inbox-copy small {
    display: block;
  }

  .v43 .v43-inbox-copy strong {
    overflow-wrap: anywhere;
    color: var(--v43-ink-strong);
    font-size: 14px;
    line-height: 1.5;
  }

  .v43 .v43-inbox-copy small {
    margin-top: 4px;
    color: var(--v43-ink-faint);
    font-size: 12px;
  }

  .v43 .v43-inbox-row-actions {
    grid-column: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    gap: 6px;
    margin-top: 11px;
  }

  .v43 .v43-inbox-row-actions > button {
    display: inline-flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
    border: 1px solid var(--v43-line);
    border-radius: 8px;
    background: var(--v43-surface);
    color: var(--v43-ink-soft);
    font-size: 12px;
    white-space: nowrap;
  }

  .v43 .v43-inbox-row-actions > .v43-inbox-convert,
  .v43 .v43-inbox-row-actions > .v43-inbox-restore {
    justify-content: flex-start;
    border-color: transparent;
    background: var(--v43-surface-blue);
    color: var(--v43-blue-strong);
    font-weight: 650;
  }
}

@media (max-width: 390px) {
  .v43 .v43m-more-grid {
    gap: 8px;
  }

  .v43 .v43m-more-grid > button {
    min-height: 132px;
    padding-inline: 12px;
  }

  .v43 .v43-inbox-capture {
    padding: 12px;
  }

  .v43 .v43-inbox-capture > div {
    grid-template-columns: minmax(0, 1fr) 104px;
  }

  .v43 .v43-inbox-row-actions {
    grid-column: 1 / -1;
  }
}

/* Keep the Krispace mark consistent across legacy, auth, and v43 shells. */
.v43 .brand-mark,
.v43 .v43d-brand > span {
  overflow: hidden;
  border: 1px solid #dfe7f1;
  background: #fff;
  box-shadow: 0 3px 12px rgb(22 53 91 / 8%);
}

.v43 .brand-mark img,
.v43 .v43d-brand > span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v43 .brand-mark img {
  border-radius: inherit;
}
