/* 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 .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 h1 {
    margin: 2px 0;
    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: 10px;
    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-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; }
  }
}

@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);
  }
}

@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(4, minmax(92px, 1fr));
    gap: 3px;
    margin: -8px 0 24px;
    padding: 3px;
    border-radius: 9px;
    background: var(--v43-surface-soft);
  }

  .v43d-segmented button {
    min-height: 36px;
    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-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);
    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-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);
  }
}
