:root {
  --paper: #f4f5f1;
  --surface: #fffdfa;
  --ink: #181a20;
  --muted: #747b86;
  --line: #e2ded6;
  --purple: #4f46a5;
  --purple-soft: #ecebff;
  --blue: #2056c7;
  --blue-soft: #eaf1ff;
  --orange: #ea580c;
  --orange-soft: #fff1e8;
  --gray-soft: #f3f4f6;
  --amber: #c2710c;
  --amber-soft: #fdf3e0;
  --green: #0f8a6a;
  --green-soft: #e8f7f1;
  --red-soft: #f4d8d1;
  --award-newcomer: #e65f13;
  --award-newcomer-soft: #fff3e8;
  --award-newcomer-line: #f3c69f;
  --award-quarter: #13855e;
  --award-quarter-soft: #e8f7ef;
  --award-quarter-line: #acd9c3;
  --award-elite: #1d63c8;
  --award-elite-soft: #eaf2ff;
  --award-elite-line: #bcd2f5;
  --award-pension: #7952c7;
  --award-pension-soft: #f1ecff;
  --award-pension-line: #d4c6f5;
  --award-era: #b45309;
  --award-era-soft: #fff7df;
  --award-era-line: #efd08b;
  --award-training: #c026d3;
  --award-training-soft: #fae8ff;
  --award-training-line: #e6b3ef;
  --award-done: #116149;
  --award-done-soft: #e8f6ee;
  --award-done-line: #a8d7ba;
  --radius: 8px;
  font-family: "MiSans", "HarmonyOS Sans SC", "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.person,
.person *,
.panel,
.panel *,
.adminPanel,
.adminPanel *,
.notice,
.notice *,
.kpi,
.battleItem {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

button, input { font: inherit; }
button { border: 0; cursor: pointer; }

.shell {
  width: min(100%, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(320px, 1fr);
  gap: 36px;
  padding: 34px;
  align-items: center;
}

.phone {
  width: min(100%, 430px);
  height: min(900px, calc(100vh - 68px));
  min-height: 720px;
  background: var(--surface);
  border: 1px solid rgba(32, 35, 31, .12);
  border-radius: 32px;
  box-shadow: 0 22px 55px rgba(64, 35, 86, .18);
  overflow: hidden;
  position: relative;
}

.phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 112px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #1d1d1b;
  z-index: 2;
}

.login, .app {
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  padding: 58px 18px 28px;
}

.hidden { display: none !important; }
.eyebrow { display: block; color: var(--muted); font-size: 12px; line-height: 1.4; font-weight: 600; }
h1, h2, p { margin: 0; }
h1 { margin-top: 5px; font-size: 25px; line-height: 1.22; font-weight: 800; letter-spacing: 0; }
h2 { font-size: 18px; line-height: 1.25; font-weight: 800; letter-spacing: 0; }
p { color: var(--muted); line-height: 1.7; font-weight: 400; }

.demoNotice {
  position: sticky;
  top: 0;
  z-index: 40;
  margin: -8px 0 12px;
  border: 1px solid #f2c56f;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7dc, #e9f8ef);
  color: #3d3218;
  padding: 9px 11px;
  box-shadow: 0 8px 18px rgba(47, 39, 22, .08);
}

.demoNotice b,
.demoNotice span {
  display: block;
}

.demoNotice b {
  color: #17563f;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
}

.demoNotice span {
  margin-top: 2px;
  color: #66583a;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}

label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: white;
  color: var(--ink);
}

.primary, .secondary {
  border-radius: var(--radius);
  min-height: 44px;
  padding: 11px 14px;
  font-weight: 700;
}

.primary {
  width: 100%;
  margin-top: 16px;
  color: white;
  background: var(--purple);
}

.portalLinks {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.portalLinks a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(79, 70, 165, .26);
  border-radius: var(--radius);
  background: #fff;
  color: var(--purple);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.portalLinks span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.secondary {
  color: var(--ink);
  background: #efe9f3;
  border: 1px solid var(--line);
}

.hint { margin-top: 14px; font-size: 12px; }

.topbar, .sectionHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.account {
  min-width: 86px;
  border-radius: var(--radius);
  background: #eee6f2;
  padding: 8px 10px;
  color: var(--ink);
  text-align: right;
}
.account b { display: block; }
.account span { display: block; color: var(--muted); font-size: 12px; }

.notice {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  margin: 18px 0 14px;
  border: 1px solid #d5c8ad;
  border-radius: var(--radius);
  background: #fbf0d8;
  padding: 12px;
}
.notice b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: white;
}
.notice span { line-height: 1.55; }

.overviewHero {
  margin: 16px 0 10px;
  border-radius: 18px;
  padding: 18px;
  color: white;
  background: linear-gradient(135deg, #181a20 0%, #2a3040 100%);
  box-shadow: 0 16px 36px rgba(24, 26, 32, .22);
  overflow: hidden;
  position: relative;
}

.overviewHero::after {
  content: none;
}

.heroTop,
.heroMain {
  position: relative;
  z-index: 1;
}

.heroTop {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.heroScope {
  display: block;
  color: #ffbf92;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.overviewHero h2 {
  margin-top: 4px;
  color: white;
  font-size: 22px;
  line-height: 1.18;
}

.overviewHero p {
  margin-top: 7px;
  color: #b7bfcc;
  font-size: 12px;
  line-height: 1.5;
}

.heroStamp {
  flex: 0 0 auto;
  max-width: 104px;
  border: 1px solid rgba(255, 143, 82, .48);
  border-radius: var(--radius);
  background: rgba(234, 88, 12, .15);
  color: #ffc6a4;
  padding: 6px 8px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

.heroMain {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
  align-items: end;
  margin-top: 18px;
}

.heroV span,
.heroReward span {
  display: block;
  color: #9da6b8;
  font-size: 11px;
  font-weight: 800;
}

.heroV strong {
  display: block;
  margin-top: 4px;
  font-size: 38px;
  line-height: .95;
  font-weight: 950;
  letter-spacing: 0;
}

.heroV em,
.heroReward em {
  display: block;
  margin-top: 7px;
  color: #9ea6b6;
  font-style: normal;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 650;
}

.heroReward {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.075);
  padding: 10px;
}

.heroReward strong {
  display: block;
  margin-top: 5px;
  color: #cdbbff;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.kpis, .battle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.pageNav {
  position: static;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 18px;
  padding: 8px;
  border: 1px solid rgba(107, 63, 160, .18);
  border-radius: 18px;
  background: rgba(255, 250, 254, .94);
  box-shadow: 0 8px 20px rgba(64, 35, 86, .10);
}

.pageNav:has(#adminNavButton:not(.hidden)) {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pageNav button {
  min-height: 52px;
  border-radius: 14px;
  background: #f2e9f8;
  color: var(--purple);
  display: grid;
  place-items: center;
  gap: 3px;
}

.pageNav button b {
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}

.pageNav button span {
  font-size: 11px;
  line-height: 1;
  color: #7c6791;
  font-weight: 600;
}

.pageNav button.active {
  color: white;
  background: var(--purple);
}

.pageNav button.active span {
  color: rgba(255, 255, 255, .82);
}

.officeSwitcher {
  margin: -6px 0 14px;
  border: 1px solid rgba(107, 63, 160, .16);
  border-radius: var(--radius);
  background: #fffafd;
  padding: 10px 12px;
  box-shadow: 0 8px 18px rgba(64, 35, 86, .06);
}

.officeSwitcher label {
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.officeSwitcher span {
  color: #6e5c7c;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.officeSwitcher select {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border-color: #d9c8e5;
  background: white;
  font-size: 14px;
  font-weight: 800;
}

.kpi, .battleItem {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 10px;
}
.kpi span, .battleItem span { display: block; color: var(--muted); font-size: 11px; }
.kpi b, .battleItem b { display: block; margin-top: 8px; font-size: 21px; line-height: 1.05; }
.kpi em, .battleItem em { display: block; margin-top: 5px; color: var(--purple); font-style: normal; font-size: 11px; }
.statCard {
  min-height: 92px;
  box-shadow: 0 8px 20px rgba(24,26,32,.04);
}
.statCard.acc1 b { color: var(--orange); }
.statCard.acc2 b { color: var(--purple); }
.statCard.acc3 b { color: var(--blue); }
.statCard.acc4 b { color: var(--ink); }

.trendCard b {
  font-size: 17px;
}

.kpiTinyTrend {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 4px;
  min-height: 46px;
  margin-top: 6px;
}

.kpiTinyTrend i {
  min-width: 0;
  height: 46px;
  display: grid;
  grid-template-rows: minmax(10px, 1fr) auto auto;
  align-items: end;
  gap: 2px;
  font-style: normal;
  text-align: center;
}

.kpiTinyTrend i::before {
  content: "";
  display: block;
  width: 100%;
  height: var(--h);
  min-height: 5px;
  border-radius: 99px 99px 2px 2px;
  background: currentColor;
  opacity: .82;
}

.kpiTinyTrend span,
.kpiTinyTrend b {
  overflow: hidden;
  white-space: nowrap;
  color: #746a7a;
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
}

.kpiTinyTrend b {
  margin: 0;
  color: var(--ink);
  font-size: 8.5px;
}

.equityMini {
  grid-column: 1 / -1;
}

.equityMini summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

.equityMini summary::-webkit-details-marker {
  display: none;
}

.equityMini summary > div {
  min-width: 0;
  border: 1px solid #d8e0eb;
  border-radius: var(--radius);
  background: #f8fbff;
  padding: 10px;
}

.equityMini span,
.equityMini em,
.equityMini p {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.equityMini b {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.equityMini em {
  margin-top: 5px;
  color: #4c6684;
  font-style: normal;
  font-weight: 750;
}

.equityFlowDetails {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.equityFlowGroup {
  border: 1px solid #d8e0eb;
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}

.equityFlowGroup h3 {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.2;
}

.equityFlowItem {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 8px;
  padding: 7px 0;
  border-top: 1px solid #edf1f6;
}

.equityFlowItem:first-of-type {
  border-top: 0;
}

.equityFlowItem span {
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.equityFlowItem b {
  margin: 0;
  font-size: 13px;
  text-align: right;
}

.equityFlowItem em {
  grid-column: 1 / -1;
  margin-top: 0;
  color: var(--muted);
  font-weight: 650;
}

.equityMiniNote {
  margin: 8px 0 0;
  padding: 8px 9px;
  border: 1px dashed #cfdcea;
  border-radius: var(--radius);
  background: #f8fbff;
  color: #3f5874;
  font-weight: 750;
}

.people { display: grid; gap: 10px; margin: 10px 0 18px; }
.pagePanel { margin-top: 0; }

.overviewHead,
.actionHead {
  margin-top: 20px;
  margin-bottom: 10px;
  align-items: flex-end;
}

.overviewHead::before,
.actionHead::before {
  content: "";
  flex: 0 0 4px;
  width: 4px;
  height: 20px;
  border-radius: 99px;
  align-self: center;
  background: var(--green);
}

.actionHead::before {
  background: var(--orange);
}

.overviewHead > div,
.actionHead > div {
  min-width: 0;
  flex: 1;
}

.overviewHead span,
.actionHead span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

#scopeLabel {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eef1f5;
  color: #596171;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
}

.opportunityBoard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 20px;
}

.oppCard {
  border: 1px solid #d9eadf;
  border-radius: var(--radius);
  background: white;
  padding: 13px 14px;
  display: grid;
  gap: 5px;
  box-shadow: inset 4px 0 0 var(--green), 0 8px 20px rgba(24,26,32,.04);
}

.oppCard.reach { box-shadow: inset 4px 0 0 var(--orange), 0 8px 20px rgba(24,26,32,.04); }
.oppCard.stretch { box-shadow: inset 4px 0 0 var(--blue), 0 8px 20px rgba(24,26,32,.04); }

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

.splitOpp > div {
  min-width: 0;
  padding-right: 10px;
  border-right: 1px solid #f0e3d2;
}

.splitOpp > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.oppCard span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.oppCard b {
  display: block;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 950;
  color: var(--ink);
}

.oppCard em {
  display: block;
  color: #5e6671;
  font-style: normal;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
}

.newcomerOpp {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

.newcomerOpp summary {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  cursor: pointer;
  list-style: none;
}

.newcomerOpp summary::-webkit-details-marker {
  display: none;
}

.newcomerSummaryBody {
  min-width: 0;
}

.newcomerHeader {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.newcomerHeader strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
  white-space: nowrap;
}

.newcomerMetricLabel {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.newcomerMetricValue {
  margin-top: 7px;
}

.newcomerBreakLine {
  margin-top: 5px;
}

.newcomerExpandCue,
.sRewardRule {
  display: block;
  color: #667085;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 750;
}

.newcomerExpandCue {
  color: var(--green);
}

.newcomerExpandCue .whenOpen {
  display: none;
}

.newcomerOpp[open] .newcomerExpandCue .whenClosed {
  display: none;
}

.newcomerOpp[open] .newcomerExpandCue .whenOpen {
  display: inline;
}

.newcomerOpp[open] .newcomerExpandCue {
  color: #3f5874;
}

.newcomerOppDetails {
  display: grid;
  gap: 9px;
  padding: 10px 14px 13px;
  border-top: 1px solid #e4efe8;
  background: #fbfefc;
}

.newcomerGroup {
  min-width: 0;
}

.newcomerGroup h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
}

.newcomerGroup p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.newcomerList {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.newcomerPerson {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-width: 0;
  border: 1px solid #dbe8df;
  border-radius: 8px;
  background: white;
  padding: 8px 9px;
  cursor: pointer;
}

.newcomerPerson:hover,
.newcomerPerson:focus-visible {
  border-color: #9dc7aa;
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 138, 106, .12);
}

.newcomerPerson span,
.newcomerPerson em {
  min-width: 0;
}

.newcomerPerson b,
.newcomerPerson em {
  display: block;
  overflow-wrap: anywhere;
}

.newcomerPerson b {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.newcomerPerson em {
  margin-top: 2px;
  color: #667085;
  font-size: 11px;
}

.newcomerPerson strong {
  color: var(--green);
  font-size: 13px;
  white-space: nowrap;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 8px;
  margin-top: 12px;
}

.compactToolbar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 10px;
}

select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 10px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.rosterList,
.awardList {
  display: grid;
  gap: 10px;
  margin: 10px 0 18px;
}

.person {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 15px;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(64, 35, 86, .08);
}

.actionPerson,
.rosterPerson,
.awardPerson {
  cursor: pointer;
}

.rosterPerson {
  padding: 8px 10px;
}

.rosterPerson .avatar {
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.rosterPerson .personName h2 {
  font-size: 17px;
  line-height: 1.1;
}

.rosterPerson .personMeta {
  margin-top: 6px;
  gap: 4px;
}

.rosterPerson .personMeta span,
.rosterPerson .ownerBadge {
  padding: 4px 6px;
  font-size: 10px;
}

.priorityCard {
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 68%);
  padding: 14px;
  min-width: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(180, 83, 9, .09);
}

.priorityCard.done {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 68%);
}

.priorityTop {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.priorityTop > div {
  min-width: 0;
}

.priorityName {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 950;
}

.priorityTop em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.priorityTop > b {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 950;
}

.priorityGap {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--orange);
}

.priorityGap span,
.priorityGap em {
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.priorityGap strong {
  font-size: 34px;
  line-height: .95;
  font-weight: 950;
  letter-spacing: 0;
}

.priorityCard.done .priorityGap {
  color: var(--blue);
}

.priorityDesc {
  margin-top: 10px;
  border-radius: var(--radius);
  background: #fff1e8;
  border: 1px solid #ffd2b3;
  padding: 9px 10px;
  display: grid;
  gap: 4px;
}

.priorityCard.done .priorityDesc {
  background: var(--blue-soft);
  border-color: #bfdbfe;
}

.priorityDesc b {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 950;
}

.priorityDesc span {
  color: #6f3d19;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.priorityCard.done .priorityDesc span {
  color: #244c8f;
}

.priorityBar {
  height: 8px;
  margin-top: 11px;
  border-radius: 999px;
  overflow: hidden;
  background: #f2e4d8;
}

.priorityBar i {
  display: block;
  height: 100%;
  width: var(--w);
  background: var(--orange);
}

.priorityCard.done .priorityBar {
  background: #dbeafe;
}

.priorityCard.done .priorityBar i {
  background: var(--blue);
}

.priorityMeta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
  color: #6a6470;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 750;
}

.priorityMeta b {
  color: var(--ink);
}

.referenceOrder {
  margin-top: 10px;
  border-radius: var(--radius);
  background: #f8f4ec;
  border: 1px dashed #dcc8a5;
  color: #725226;
  padding: 8px 9px;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 750;
}

.priorityCard p {
  margin-top: 10px;
  color: #4b4650;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.person + .person {
  margin-top: 12px;
}
.personTop { display: flex; justify-content: space-between; gap: 10px; min-width: 0; }
.personName { display: flex; gap: 9px; align-items: center; min-width: 0; }
.personName > div:last-child { min-width: 0; }
.personTopStats {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  gap: 6px;
}
.detailMonthV {
  border-radius: 999px;
  background: #fff5ea;
  color: #9a4b12;
  border: 1px solid #fed7aa;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}
.avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.avatar span {
  position: relative;
  z-index: 1;
}
.avatar img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tag, .pill {
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 11px;
}
.tag.hot { color: #8a2d20; background: var(--red-soft); }
.tag.reward { color: #855012; background: var(--amber-soft); }

.personMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.personMeta span {
  border-radius: 999px;
  background: #f0edf2;
  color: #615468;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 750;
}

.ownerBadge {
  border-radius: 999px;
  background: var(--blue-soft) !important;
  color: var(--blue) !important;
  border: 1px solid #c8d6ec;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 850;
}

.rosterCompactTop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  min-width: 0;
}

.rosterPrimary {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.rosterTopRight {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  gap: 4px;
  max-width: 104px;
}

.rosterMonthV {
  min-width: 82px;
  border-radius: var(--radius);
  border: 1px solid #fed7aa;
  background: #fff7ed;
  padding: 5px 7px;
  text-align: right;
}

.rosterMonthV b,
.rosterMonthV em {
  display: block;
  font-style: normal;
  line-height: 1.05;
  white-space: nowrap;
}

.rosterMonthV b {
  color: #9a4b12;
  font-size: 13px;
  font-weight: 950;
}

.rosterMonthV em {
  margin-top: 3px;
  color: #8a6a4b;
  font-size: 9px;
  font-weight: 850;
}

.detailHint {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f4f0f7;
  color: #65536d;
  padding: 6px 9px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.rosterIdentityGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
  min-width: 0;
}

.rosterIdentityGrid span {
  min-width: 0;
  min-height: 22px;
  border-radius: var(--radius);
  background: #f6f3f8;
  border: 1px solid #e4ddea;
  padding: 3px 5px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.rosterIdentityGrid em,
.rosterIdentityGrid b {
  min-width: 0;
  font-style: normal;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.rosterIdentityGrid em {
  flex: 0 0 auto;
  color: #85758d;
  font-size: 9px;
  font-weight: 850;
}

.rosterIdentityGrid b {
  color: #514659;
  font-size: 9.5px;
  font-weight: 900;
}

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

.rosterCompactMetrics div {
  min-width: 0;
  border-radius: var(--radius);
  background: #fbfafc;
  border: 1px solid var(--line);
  padding: 8px;
}

.rosterCompactMetrics span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 750;
}

.rosterCompactMetrics b {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

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

.rosterFocusAwards span {
  min-width: 0;
  min-height: 42px;
  border: 1px solid #e3dce7;
  border-radius: var(--radius);
  background: #fbfaff;
  padding: 6px;
  display: grid;
  align-content: center;
  gap: 3px;
}

.rosterFocusAwards span.hot {
  background: #fff5ea;
  border-color: #ecc08b;
}

.rosterFocusAwards span.warm {
  background: var(--amber-soft);
  border-color: #e8c89b;
}

.rosterFocusAwards span.done {
  background: var(--blue-soft);
  border-color: #c8d6ec;
}

.rosterFocusAwards b,
.rosterFocusAwards em {
  min-width: 0;
  overflow-wrap: anywhere;
  font-style: normal;
  line-height: 1.15;
}

.rosterFocusAwards b {
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 950;
}

.rosterFocusAwards em {
  color: #675f70;
  font-size: 10px;
  font-weight: 850;
}

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

.opportunityChip {
  min-width: 0;
  min-height: 58px;
  border-radius: var(--radius);
  border: 1px solid #e3dce7;
  background: #fbfaff;
  padding: 7px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 3px 6px;
  align-items: center;
}

.opportunityChip b {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #7b7284;
  color: white;
  font-size: 11px;
  line-height: 1;
  grid-row: span 2;
}

.opportunityChip em,
.opportunityChip strong {
  min-width: 0;
  line-height: 1.2;
  font-style: normal;
  overflow-wrap: anywhere;
}

.opportunityChip em {
  color: #625a68;
  font-size: 10px;
  font-weight: 850;
}

.opportunityChip strong {
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 950;
}

.opportunityChip.hot {
  background: #fff5ea;
  border-color: #ecc08b;
}

.opportunityChip.hot b {
  background: var(--orange);
}

.opportunityChip.warm {
  background: var(--amber-soft);
  border-color: #e8c89b;
}

.opportunityChip.warm b {
  background: var(--amber);
}

.opportunityChip.done {
  background: var(--blue-soft);
  border-color: #c8d6ec;
}

.opportunityChip.done b {
  background: var(--blue);
}

.rosterOpportunityEmpty,
.rosterNextAction {
  margin-top: 7px;
  border-radius: var(--radius);
  background: #f7f4f8;
  border: 1px solid #e2dce6;
  color: #5d5364;
  padding: 6px 8px;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 750;
}

.rosterNextAction {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
}

.rosterNextAction b {
  color: var(--purple);
  font-weight: 950;
}

.priorityOwner {
  margin-top: 8px;
  display: flex;
}

.newcomerTrueup {
  margin-top: 10px;
  border-radius: var(--radius);
  background: #eef7fb;
  border: 1px solid #c8d6ec;
  color: #244c8f;
  padding: 8px 9px;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 800;
}

.priorityToggle {
  width: 100%;
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid #d9c8e5;
  background: #fbf7ff;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(64, 35, 86, .06);
}

.priorityToggle.close {
  background: white;
  color: #6b5b72;
}

.exportBar,
.detailExportBar {
  border: 1px solid #d9c8e5;
  border-radius: var(--radius);
  background: #fbf7ff;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 132px) minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  box-shadow: 0 8px 18px rgba(64, 35, 86, .06);
}

.detailExportBar {
  margin: -2px 0 12px;
  background: #fffaf4;
  border-color: #fed7aa;
}

.exportButton {
  min-height: 40px;
  border-radius: var(--radius);
  background: var(--purple);
  color: white;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 950;
}

.detailExportBar .exportButton {
  background: var(--orange);
}

.exportBar span,
.detailExportBar span {
  min-width: 0;
  color: #62576a;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 750;
}

.rosterExportBar {
  margin-top: 2px;
}

.reminderPanel {
  margin-top: 12px;
  border-radius: var(--radius);
  background: #fbfaf7;
  border: 1px solid #e5ded2;
  padding: 10px;
  box-shadow: inset 4px 0 0 rgba(188, 119, 36, .42);
}

.reminderTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.reminderTitle b {
  font-size: 15px;
  font-weight: 900;
}

.reminderTitle span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.reminderGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.reminder {
  min-width: 0;
  border-radius: var(--radius);
  background: white;
  border: 1px solid #e2ddd5;
  padding: 8px;
  display: grid;
  grid-template-columns: 30px 78px 1fr;
  gap: 8px;
  align-items: center;
}

.reminder span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: #6f7782;
  font-size: 13px;
  font-weight: 900;
}

.reminder b {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.reminder em {
  color: #4c4055;
  font-style: normal;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.reminder.warm {
  border-color: #e8c89b;
  background: #fff6ea;
}

.reminder.warm span {
  background: var(--amber);
}

.reminder.blue {
  border-color: #b8d8ec;
  background: var(--blue-soft);
}

.reminder.blue span {
  background: var(--blue);
}

.reminder.purple {
  border-color: #b8d8ec;
  background: var(--blue-soft);
}

.reminder.purple span {
  background: var(--blue);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics > div { min-width: 0; }
.metrics span { display: block; color: var(--muted); font-size: 11px; font-weight: 600; }
.metrics b { font-size: 13px; font-weight: 800; }
.reason {
  color: #42413d;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 450;
  white-space: normal;
}
.product {
  margin-top: 10px;
  border-radius: var(--radius);
  background: #f5effa;
  padding: 9px 10px;
  color: #4d3b5b;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
  white-space: normal;
}

.rosterMiddle {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 12px 0 0;
}

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

.rosterBusiness div,
.rankGrid div {
  min-width: 0;
  border-radius: var(--radius);
  background: #fbfafc;
  border: 1px solid var(--line);
  padding: 8px;
}

.rosterBusiness span,
.rankGrid span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 750;
}

.rosterBusiness b,
.rankGrid b {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.miniTrend {
  min-height: 42px;
  border-radius: var(--radius);
  background: #f5f1f7;
  border: 1px solid #e4dbe9;
  padding: 8px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4px;
  margin-top: 10px;
}

.trendNode {
  min-width: 0;
  flex: 1 1 0;
  display: grid;
  grid-template-rows: 44px auto auto;
  gap: 3px;
  align-items: end;
  text-align: center;
}

.miniTrend i {
  width: 100%;
  min-width: 6px;
  height: var(--h);
  border-radius: 99px 99px 3px 3px;
  background: var(--purple);
  opacity: .78;
}

.trendNode em,
.trendNode b {
  min-width: 0;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  font-style: normal;
  font-size: 9px;
  line-height: 1.05;
}

.trendNode em {
  color: var(--muted);
  font-weight: 750;
}

.trendNode b {
  color: #4b4052;
  font-weight: 850;
}

.miniTrend.empty {
  color: var(--muted);
  font-size: 12px;
  align-items: center;
  justify-content: center;
}

.mdrtProgress {
  margin-top: 8px;
  border: 1px solid #e4d8c7;
  border-radius: var(--radius);
  background: #fffaf3;
  padding: 9px 10px;
}

.mdrtProgress.reached {
  border-color: #cbdced;
  background: #f6fbff;
}

.mdrtTop,
.mdrtMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mdrtTop span {
  color: #8a5a23;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 950;
}

.mdrtProgress.reached .mdrtTop span {
  color: var(--blue);
}

.mdrtTop b {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
  color: #2f2a33;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
  text-align: right;
}

.mdrtBasis {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.mdrtBar {
  height: 9px;
  margin-top: 7px;
  border-radius: 999px;
  background: #efe6dc;
  overflow: hidden;
}

.mdrtProgress.reached .mdrtBar {
  background: #e0edf9;
}

.mdrtBar i {
  display: block;
  width: var(--w);
  max-width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d66a22, #f0a329);
}

.mdrtProgress.reached .mdrtBar i {
  background: linear-gradient(90deg, #256fb4, #2aa6a1);
}

.mdrtMeta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.35;
  font-weight: 800;
}

.mdrtMeta span,
.mdrtMeta em {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mdrtMeta em {
  color: #8a5a23;
  font-style: normal;
  text-align: right;
}

.mdrtProgress.reached .mdrtMeta em {
  color: var(--blue);
}

.rankLine {
  color: #4d4653;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

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

.profileLine {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
}

.profileFacts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.profileFacts span {
  max-width: 100%;
  border-radius: 999px;
  background: #f0edf2;
  color: #615468;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.profileFacts b {
  margin-right: 4px;
  color: #887893;
  font-weight: 850;
}

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

.awardProgressGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 11px;
}

.awardProgressGrid > span {
  min-width: 0;
  border: 1px solid #e3dce7;
  border-radius: var(--radius);
  background: #fbfaff;
  padding: 8px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 4px 6px;
  align-items: center;
}

.awardProgressGrid > span.tieredAward {
  grid-column: 1 / -1;
}

.awardProgressGrid > span.done {
  background: var(--blue-soft);
  border-color: #c8d6ec;
}

.awardProgressGrid > span > b {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #7b7284;
  color: white;
  font-size: 11px;
  grid-row: span 2;
}

.awardProgressGrid > span.done > b {
  background: var(--blue);
}

.awardProgressGrid > span > em,
.awardProgressGrid > span > strong,
.awardProgressGrid > span > u {
  min-width: 0;
  font-style: normal;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.awardProgressGrid > span > em {
  color: #5b5263;
  font-size: 11px;
  font-weight: 850;
}

.awardProgressGrid > span > strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.awardProgressGrid > span > u {
  grid-column: 1 / -1;
  color: #6b6270;
  text-decoration: none;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 750;
}

.awardTrack {
  grid-column: 1 / -1;
  position: relative;
  --track-y: 7px;
  height: 15px;
  margin-top: 2px;
}

.awardTrack.tiered {
  --track-y: 13px;
  height: 48px;
  margin-top: 6px;
}

.awardTrack.tiered.splitLanes {
  --track-y: 42px;
  height: 78px;
  margin-top: 10px;
}

.awardTrack::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--track-y);
  height: 5px;
  border-radius: 999px;
  background: #ece5ee;
}

.awardTrack > small {
  position: absolute;
  left: 0;
  top: var(--track-y);
  display: block;
  width: var(--w);
  max-width: 100%;
  height: 5px;
  border-radius: 999px;
  background: var(--purple);
  z-index: 1;
}

.awardTrack mark {
  position: absolute;
  left: var(--x);
  top: calc(var(--track-y) - 4px);
  z-index: 2;
  padding: 0;
  background: transparent;
  color: #7c7283;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}

.awardTrack mark:first-of-type {
  transform: translateX(-18%);
}

.awardTrack mark:last-of-type {
  transform: translateX(-82%);
}

.awardTrack mark i {
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto;
  border: 2px solid #fbfaff;
  border-radius: 50%;
  background: #b9b0bf;
  box-shadow: 0 0 0 1px #d9d1de;
}

.awardTrack mark.done i {
  background: var(--purple);
  box-shadow: 0 0 0 1px rgba(79, 70, 165, .25);
}

.awardTrack mark.next i {
  background: var(--amber);
  box-shadow: 0 0 0 2px rgba(194, 113, 12, .14);
}

.awardTrack mark abbr {
  display: block;
  min-width: 42px;
  margin-top: 5px;
  color: #6d6274;
  text-decoration: none;
  font-size: 8px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.awardTrack mark abbr > span,
.awardTrackReward {
  display: block;
}

.awardTrackReward {
  margin-top: 2px;
  color: #7d4b0f;
  font-size: 8.5px;
  line-height: 1.05;
  font-style: normal;
  font-weight: 950;
}

.awardTrack.splitLanes mark.lane-above abbr {
  transform: translateY(-52px);
}

.awardTrack.splitLanes mark.lane-below abbr {
  margin-top: 8px;
}

.awardTrack mark.done abbr {
  color: var(--award-main);
}

.awardTrack mark.next abbr {
  color: var(--award-main);
}

.awardTrack mark.done .awardTrackReward,
.awardTrack mark.next .awardTrackReward {
  color: inherit;
}

.tierMarkers {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tierMarkers mark {
  border-radius: 999px;
  background: #f3edf7;
  color: #6a5078;
  padding: 3px 6px;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 850;
}

.rosterMore {
  width: 100%;
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid #d9c8e5;
  background: #fbf7ff;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(64, 35, 86, .06);
}

.rosterMore.close {
  background: white;
  color: #6b5b72;
}

.vBoard {
  display: grid;
  gap: 12px;
  margin: 12px 0 18px;
}

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

.vBoardTabs button {
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid #d9c8e5;
  background: #fbf7ff;
  color: var(--purple);
  font-size: 13px;
  font-weight: 950;
}

.vBoardTabs button.active {
  color: white;
  background: var(--purple);
  border-color: var(--purple);
}

.vBoardSummary {
  display: grid;
  gap: 8px;
}

.vBoardSummary div,
.vBoardSection {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(64, 35, 86, .08);
}

.vBoardSummary span,
.vBoardSummary em,
.vBoardSectionHead span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  font-style: normal;
  font-weight: 750;
}

.vBoardSummary b {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
}

.vBoardSummary em {
  margin-top: 4px;
  color: #5b5263;
}

.vBoardSection {
  display: grid;
  gap: 10px;
}

.vBoardSectionHead {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.vBoardSectionHead h3 {
  margin: 0;
  color: #2f235f;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.vBoardSectionHead > b {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  padding: 5px 8px;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

.vRankList {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vRankRow {
  min-width: 0;
  border: 1px solid #e4dce9;
  border-radius: var(--radius);
  background: #fbfafc;
  padding: 9px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) max-content;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}

.vRankRow.localSplitRow {
  border-color: #f2b68d;
  background: #fff8f1;
  box-shadow: inset 4px 0 0 var(--orange);
}

.vRankRow.aOfficeRankRow {
  cursor: default;
}

.vRankNo {
  border-radius: 999px;
  background: #efe9f3;
  color: var(--purple);
  padding: 5px 0;
  text-align: center;
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
}

.vRankRow:nth-child(1) .vRankNo,
.vRankRow:nth-child(2) .vRankNo,
.vRankRow:nth-child(3) .vRankNo {
  background: #fff4e6;
  color: var(--orange);
}

.vRankRow div {
  min-width: 0;
}

.vRankRow b,
.vRankRow em,
.vRankRow strong {
  min-width: 0;
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.vRankRow b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.vRankRow em {
  margin-top: 3px;
  color: var(--muted);
  font-style: normal;
  font-size: 10px;
  font-weight: 750;
}

.localSplitBadge {
  display: inline-block;
  width: fit-content;
  margin-top: 5px;
  border-radius: 999px;
  background: #fff1e8;
  color: #a2440c;
  border: 1px solid #f2b68d;
  padding: 4px 7px;
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
}

.vRankRow strong {
  color: var(--blue);
  text-align: right;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.vRankMore {
  display: grid;
  gap: 7px;
}

.vRankMore summary {
  width: 100%;
  border: 1px solid #d9c8e5;
  border-radius: var(--radius);
  background: #fbf7ff;
  color: var(--purple);
  padding: 9px 10px;
  cursor: pointer;
  list-style: none;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.vRankMore summary::-webkit-details-marker,
.vMonthRank summary::-webkit-details-marker {
  display: none;
}

.vRankMore[open] summary {
  margin-bottom: 7px;
}

.vRankMore .whenOpen {
  display: none;
}

.vRankMore[open] .whenClosed {
  display: none;
}

.vRankMore[open] .whenOpen {
  display: inline;
}

.vMonthRanks {
  display: grid;
  gap: 8px;
}

.vMonthRank {
  border: 1px solid #e2dce6;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.vMonthRank summary {
  min-height: 44px;
  padding: 10px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  background: #fbfafc;
}

.vMonthRank summary span {
  color: #2f235f;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.vMonthRank summary b {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--blue);
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}

.vMonthRank[open] summary {
  border-bottom: 1px solid #e2dce6;
}

.vMonthRank > .vRankList,
.vMonthRank > .emptyState,
.vMonthRank > .vRankMore {
  margin: 9px;
}

.awardChip,
.doneChips span {
  min-height: 42px;
  border: 1px solid #e3dce7;
  border-radius: var(--radius);
  background: #fbfaff;
  padding: 7px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 5px;
  align-items: center;
  color: #5b5263;
}

.awardChip b {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #7b7284;
  color: white;
  font-size: 11px;
}

.awardChip em {
  font-style: normal;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 750;
}

.awardChip.done {
  background: var(--blue-soft);
  border-color: #c8d6ec;
}

.awardChip.done b {
  background: var(--blue);
}
.bar { height: 8px; margin-top: 10px; overflow: hidden; border-radius: 999px; background: #ece5ee; }
.bar i { display: block; height: 100%; width: var(--w); background: var(--purple); }

.awardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 12px 0 0;
  border-top: 6px solid #efe7da;
}

.awardHeader b {
  font-size: 15px;
  font-weight: 800;
}

.awardToggle {
  border: 1px solid #d4c4aa;
  border-radius: 999px;
  background: #fbf2df;
  color: #7a5522;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

.awardToggle.open {
  background: #7a5522;
  color: white;
  border-color: #7a5522;
}

.awardGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
  overflow: visible;
  padding-bottom: 0;
  width: 100%;
  min-width: 0;
}

.awardGrid[hidden] {
  display: none;
}

.award {
  min-height: auto;
  min-width: 178px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--gray-soft);
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(86px, .9fr) minmax(0, 1.1fr);
  gap: 8px 10px;
  align-items: start;
}

.awardTop {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.awardTop b {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.awardTop span {
  flex: 0 0 auto;
  color: #5f6874;
  background: #e6e8eb;
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 700;
}

.award strong {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.award em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.award.purple {
  border-color: #b8d8ec;
  background: var(--blue-soft);
}

.award.purple .awardTop span {
  color: var(--blue);
  background: #d8edf9;
}

.award.warm {
  border-color: #e8c89b;
  background: #fff4e6;
}

.award.warm .awardTop span {
  color: #855012;
  background: var(--amber-soft);
}

.award.blue {
  border-color: #c8d6ec;
  background: var(--blue-soft);
}

.award.blue .awardTop span {
  color: var(--blue);
  background: #d8edf9;
}

.awardTabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 8px 0 9px;
}

.awardTabs button {
  min-height: 56px;
  border-radius: var(--radius);
  border: 1px solid #ddd2e6;
  background: white;
  color: #5b4b68;
  padding: 6px 5px;
  display: grid;
  gap: 3px;
  place-items: center;
}

.awardTabs button b {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--purple);
  font-size: 12px;
}

.awardTabs button span {
  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
}

.awardTabs button small {
  color: inherit;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 850;
  opacity: .82;
}

.awardTabs button.active {
  color: white;
  background: var(--purple);
  border-color: var(--purple);
}

.awardTabs button.active b {
  background: white;
  color: var(--purple);
}

.awardTabs button.active small {
  opacity: .95;
}

.awardPerson {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 13px;
  box-shadow: 0 10px 24px rgba(64, 35, 86, .08);
}

.awardList {
  gap: 8px;
  margin-top: 8px;
}

.awardPersonTop {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.awardPersonTop h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.awardPersonTop span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.awardPersonTop > b {
  flex: 0 0 auto;
  color: #855012;
  background: var(--amber-soft);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 12px;
}

.awardPersonTop > b.doneText {
  color: var(--blue);
  background: var(--blue-soft);
}

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

.awardPersonGrid div,
.detailGrid div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfafc;
  padding: 9px;
}

.awardPersonGrid span,
.detailGrid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.awardPersonGrid b,
.detailGrid b {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.25;
}

.awardPerson p {
  margin-top: 10px;
  color: #4b4450;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.awardDetailCard {
  display: grid;
  gap: 10px;
}

.awardPerson.awardDetailCard {
  padding: 9px 10px;
  gap: 7px;
}

.awardDetailCard .awardPersonTop {
  gap: 7px;
  align-items: center;
}

.awardDetailCard .awardPersonTop h3 {
  font-size: 15px;
  line-height: 1.15;
}

.awardDetailCard .awardPersonTop span {
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.25;
}

.awardDetailCard .awardPersonTop > b {
  padding: 4px 6px;
  font-size: 10px;
  line-height: 1;
}

.awardBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.awardBadges span {
  border-radius: 999px;
  background: #f3edf7;
  color: #5b4b68;
  padding: 3px 6px;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 800;
}

.awardDetailCard .awardBadges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.awardDetailCard .awardBadges span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}

.awardDetailRows {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.awardDetailCard .awardPersonGrid {
  gap: 5px;
}

.awardDetailCard .awardPersonGrid div {
  padding: 6px 7px;
}

.awardDetailCard .awardPersonGrid span {
  font-size: 10.5px;
  line-height: 1.2;
}

.awardDetailRows b {
  overflow-wrap: anywhere;
}

.awardDetailCard .awardPersonGrid b {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.2;
}

.awardRule,
.awardSuggestion {
  border-radius: var(--radius);
  padding: 9px 10px;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.awardDetailCard .awardRule,
.awardDetailCard .awardSuggestion {
  padding: 7px 8px;
  font-size: 12px;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.awardRule {
  background: #fbfaf7;
  border: 1px solid #e5ded2;
  color: #5f5145;
}

.awardSuggestion {
  background: #fff6ea;
  border: 1px dashed #e7c18b;
  color: #725226;
}

.doneChips span {
  display: block;
  grid-template-columns: 1fr;
  min-height: 32px;
  text-align: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-color: #c8d6ec;
  font-size: 11px;
  font-weight: 800;
}

.detailView {
  padding-bottom: 20px;
}

.backButton {
  min-height: 40px;
  border-radius: var(--radius);
  background: #eee6f2;
  color: var(--purple);
  padding: 8px 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.detailHero,
.detailSection {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 10px 24px rgba(64, 35, 86, .08);
}

.detailSection h2 {
  margin-bottom: 10px;
}

.yoySection {
  display: grid;
  gap: 8px;
}

.yoyHeadline {
  border: 1px solid #dbe9df;
  border-radius: var(--radius);
  background: #f2fbf5;
  padding: 9px 10px;
}

.yoyHeadline.loss {
  border-color: #efd7c8;
  background: #fff7ef;
}

.yoyHeadline.tie,
.yoyHeadline.missing {
  border-color: #e4dce9;
  background: #fbfafc;
}

.yoyHeadline span,
.yoyMetrics span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.yoyHeadline b {
  display: block;
  margin-top: 3px;
  color: #1f7a55;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 950;
}

.yoyHeadline.loss b {
  color: #b85828;
}

.yoyHeadline.tie b,
.yoyHeadline.missing b {
  color: var(--purple);
}

.yoyHeadline em,
.yoyNote {
  display: block;
  margin-top: 5px;
  color: #4f5d55;
  font-size: 11px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 750;
}

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

.yoyMetrics div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfafc;
  padding: 7px 8px;
}

.yoyMetrics b {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

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

.yoyMonthGrid span {
  min-width: 0;
  border: 1px solid #d7e8dd;
  border-radius: var(--radius);
  background: #f6fcf8;
  padding: 5px;
}

.yoyMonthGrid span.loss {
  border-color: #eed8c9;
  background: #fff8f2;
}

.yoyMonthGrid span.tie,
.yoyMonthGrid span.missing {
  border-color: var(--line);
  background: #fbfafc;
}

.yoyMonthGrid span.pending {
  border-color: #d9dde3;
  background: #f5f6f7;
  filter: grayscale(1);
}

.yoyMonthGrid b,
.yoyMonthGrid small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.yoyMonthGrid b {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 3px;
  color: #25322b;
  font-size: 11px;
  line-height: 1.15;
}

.yoyMonthGrid em {
  flex: 0 0 auto;
  color: #1f7a55;
  font-size: 10px;
  line-height: 1.15;
  font-style: normal;
  font-weight: 950;
}

.yoyMonthGrid .loss em {
  color: #b85828;
}

.yoyMonthGrid .tie em,
.yoyMonthGrid .missing em {
  color: var(--purple);
}

.yoyMonthGrid .pending em {
  color: #4a4f55;
}

.yoyMonthGrid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8.5px;
  line-height: 1.18;
  font-weight: 750;
}

.yoyNote {
  margin: 0;
  color: var(--muted);
}

.qualificationSection {
  padding: 0;
}

.qualificationSection summary {
  min-height: 48px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: minmax(0, 96px) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.qualificationSection summary::-webkit-details-marker {
  display: none;
}

.qualificationSection summary span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 850;
}

.qualificationSection summary b {
  min-width: 0;
  color: var(--purple);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 950;
  overflow-wrap: anywhere;
  text-align: right;
}

.qualificationSection[open] summary {
  border-bottom: 1px solid var(--line);
}

.qualificationGrid {
  margin: 12px 14px 0;
}

.qualificationNote {
  margin: 10px 14px 14px;
  border-radius: var(--radius);
  background: #fbfaf7;
  border: 1px dashed #e5ded2;
  color: #6a5d51;
  padding: 8px 9px;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
}

.equitySection summary b {
  color: var(--blue);
}

.equitySection .qualificationNote {
  background: #f8fbff;
  border-color: #cfdcea;
  color: #3f5874;
}

.actionBox {
  border-radius: var(--radius);
  background: #fff4e6;
  border: 1px solid #e8c89b;
  padding: 12px;
}

.actionBox b,
.actionBox span {
  display: block;
}

.actionBox span {
  margin-top: 5px;
  color: #855012;
  font-size: 13px;
  font-weight: 800;
}

.actionBox p {
  margin-top: 8px;
  color: #4f4335;
  font-size: 13px;
}

.detailAwards {
  display: grid;
  gap: 9px;
}

.emptyState {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fbfafc;
  padding: 16px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.panel, .adminPanel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 14px;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(64, 35, 86, .08);
}

.adminPanel { margin-top: 14px; }
.uploadBox { display: grid; gap: 8px; margin-top: 12px; }
.adminActions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }

.assessmentPanel {
  margin-top: 14px;
}

.assessmentSummary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.assessmentCard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 11px;
}

.assessmentCard span,
.assessmentPerson span,
.assessmentListBlock header span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.assessmentCard b {
  display: block;
  margin-top: 3px;
  font-size: 22px;
  line-height: 1.1;
}

.assessmentLists {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.assessmentListBlock {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
}

.assessmentListBlock header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.assessmentListBlock h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.assessmentListBlock a {
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--purple-soft);
  color: var(--purple);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.assessmentPerson {
  display: grid;
  gap: 6px;
  border-top: 1px solid #eee9df;
  padding: 10px 0;
}

.assessmentPerson:first-of-type {
  border-top: 0;
}

.assessmentPerson > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.assessmentPerson b,
.assessmentPerson strong {
  font-size: 14px;
  line-height: 1.35;
}

.assessmentPerson p,
.emptyState span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.emptyState {
  border: 1px dashed #d5ccbd;
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
}

.emptyState b,
.emptyState span {
  display: block;
}
.checks { display: grid; gap: 8px; margin-top: 12px; }
.check { display: flex; justify-content: space-between; border: 1px solid var(--line); border-radius: var(--radius); padding: 9px 10px; }
.check b { color: var(--purple); }
.risk { margin-top: 10px; font-size: 13px; }

.side h2 { font-size: 38px; line-height: 1.12; margin: 12px 0 18px; }
.side p { max-width: 560px; }
.sidePortalLinks {
  max-width: 320px;
  margin: 22px 0;
}
.sidePortalLinks a {
  justify-items: start;
  padding: 0 15px;
  background: #fffafd;
}
.sidePortalLinks span {
  text-align: left;
}
.side ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.side li { border-left: 4px solid var(--purple); background: rgba(255, 250, 254, .72); padding: 12px 14px; border-radius: 0 var(--radius) var(--radius) 0; }

.awardKind-newcomer {
  --award-main: var(--award-newcomer);
  --award-soft: var(--award-newcomer-soft);
  --award-line: var(--award-newcomer-line);
}

.awardKind-quarter {
  --award-main: var(--award-quarter);
  --award-soft: var(--award-quarter-soft);
  --award-line: var(--award-quarter-line);
}

.awardKind-elite {
  --award-main: var(--award-elite);
  --award-soft: var(--award-elite-soft);
  --award-line: var(--award-elite-line);
}

.awardKind-pension {
  --award-main: var(--award-pension);
  --award-soft: var(--award-pension-soft);
  --award-line: var(--award-pension-line);
}

.awardKind-era {
  --award-main: var(--award-era);
  --award-soft: var(--award-era-soft);
  --award-line: var(--award-era-line);
}

.awardKind-training {
  --award-main: var(--award-training);
  --award-soft: var(--award-training-soft);
  --award-line: var(--award-training-line);
}

.awardDone,
.awardKind-newcomer.done,
.awardKind-quarter.done,
.awardKind-elite.done,
.awardKind-pension.done,
.awardKind-era.done,
.awardKind-training.done {
  --award-main: var(--award-done);
  --award-soft: var(--award-done-soft);
  --award-line: var(--award-done-line);
}

.rosterFocusAwards span[class*="awardKind-"],
.awardProgressGrid > span[class*="awardKind-"],
.awardChip[class*="awardKind-"],
.award[class*="awardKind-"] {
  border-color: var(--award-line);
  background: var(--award-soft);
}

.rosterFocusAwards span.done,
.awardProgressGrid > span.done,
.awardChip.done {
  border-color: var(--award-done-line);
  background: var(--award-done-soft);
}

.rosterFocusAwards span[class*="awardKind-"] em,
.awardProgressGrid > span[class*="awardKind-"] em,
.awardProgressGrid > span[class*="awardKind-"] strong,
.awardChip[class*="awardKind-"] em,
.award[class*="awardKind-"] .awardTop span {
  color: var(--award-main);
}

.awardProgressGrid > span[class*="awardKind-"] > b,
.awardChip[class*="awardKind-"] b {
  background: var(--award-main);
}

.awardProgressGrid > span.done > b,
.awardChip.done b {
  background: var(--award-done);
}

.award[class*="awardKind-"] .awardTop span {
  background: rgba(255, 255, 255, .7);
}

.awardKind-newcomer .awardTrack > small,
.awardKind-quarter .awardTrack > small,
.awardKind-elite .awardTrack > small,
.awardKind-pension .awardTrack > small,
.awardKind-era .awardTrack > small,
.awardKind-training .awardTrack > small,
.awardKind-newcomer .awardTrack mark.done i,
.awardKind-quarter .awardTrack mark.done i,
.awardKind-elite .awardTrack mark.done i,
.awardKind-pension .awardTrack mark.done i,
.awardKind-era .awardTrack mark.done i,
.awardKind-training .awardTrack mark.done i {
  background: var(--award-main);
}

.awardTabs button[class*="awardKind-"] {
  border-color: var(--award-line);
  background: var(--award-soft);
  color: #3e3448;
}

.awardTabs button[class*="awardKind-"] b {
  background: var(--award-main);
}

.awardTabs button[class*="awardKind-"].active {
  border-color: var(--award-main);
  background: var(--award-main);
  color: white;
}

.awardTabs button[class*="awardKind-"].active b {
  background: white;
  color: var(--award-main);
}

.awardPerson.awardDetailCard[class*="awardKind-"] {
  border-color: var(--award-line);
  box-shadow: inset 4px 0 0 var(--award-main), 0 10px 24px rgba(64, 35, 86, .08);
}

.awardPerson.awardDetailCard.awardDone {
  border-color: var(--award-done-line);
  box-shadow: inset 4px 0 0 var(--award-done), 0 10px 24px rgba(17, 97, 73, .08);
}

.awardPersonTop h3 {
  color: #2f235f;
  font-weight: 950;
}

.awardPersonTop > b.doneText {
  color: var(--award-done);
  background: var(--award-done-soft);
}

.doneChips span {
  color: var(--award-done);
  background: var(--award-done-soft);
  border-color: var(--award-done-line);
}

.personSharePanel {
  margin: -2px 0 12px;
}

.sharePanelHead {
  border: 1px solid #d9c8e5;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #fbf7ff;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.sharePanelHead span,
.sharePanelHead em {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 750;
}

.sharePanelHead b {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.sharePreviewCard {
  border: 1px solid #d9c8e5;
  border-top: 0;
  background: #fffdfa;
  padding: 13px;
  display: grid;
  gap: 10px;
}

.sharePreviewCard header {
  border-radius: var(--radius);
  background: #231b2f;
  color: white;
  padding: 13px;
}

.sharePreviewCard header span {
  color: #d8c9e8;
  font-size: 11px;
  font-weight: 850;
}

.sharePreviewCard h3,
.sharePreviewCard h4,
.sharePreviewCard p {
  margin: 0;
}

.sharePreviewCard h3 {
  margin-top: 5px;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 950;
}

.sharePreviewCard header p {
  margin-top: 5px;
  color: #eadff4;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
}

.sharePreviewCard h4 {
  color: #302837;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.sharePreviewMetrics,
.sharePreviewRanks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

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

.sharePreviewMetrics div,
.sharePreviewRanks div,
.sharePreviewNext,
.sharePreviewAwards > div,
.sharePreviewFacts span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfafc;
  padding: 8px;
}

.sharePreviewMetrics span,
.sharePreviewRanks span,
.sharePreviewAwards span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
}

.sharePreviewMetrics b,
.sharePreviewRanks b,
.sharePreviewAwards b {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 950;
}

.sharePreviewNext {
  background: #fff4e6;
  border-color: #e8c89b;
}

.sharePreviewNext b {
  color: #5c3516;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 950;
}

.sharePreviewNext p {
  margin-top: 4px;
  color: #604c35;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.sharePreviewAwards {
  display: grid;
  gap: 7px;
}

.sharePreviewAwards > div[class*="awardKind-"] {
  border-color: var(--award-line);
  background: var(--award-soft);
}

.sharePreviewAwards > div[class*="awardKind-"] b,
.sharePreviewAwards > div[class*="awardKind-"] span {
  color: var(--award-main);
}

.shareMdrtProgress {
  border: 1px solid #e4d8c7;
  border-radius: var(--radius);
  background: #fffaf3;
  padding: 8px;
}

.shareMdrtProgress.reached {
  border-color: #cbdced;
  background: #f6fbff;
}

.shareMdrtProgress div,
.shareMdrtProgress p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
}

.shareMdrtProgress span {
  color: #8a5a23;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 950;
}

.shareMdrtProgress.reached span {
  color: var(--blue);
}

.shareMdrtProgress b {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 950;
  text-align: right;
}

.shareMdrtProgress > i {
  display: block;
  height: 8px;
  margin: 6px 0 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d66a22 var(--w), #efe6dc var(--w));
}

.shareMdrtProgress.reached > i {
  background: linear-gradient(90deg, #256fb4 var(--w), #e0edf9 var(--w));
}

.shareMdrtProgress p span,
.shareMdrtProgress p em {
  min-width: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
  font-style: normal;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.shareMdrtProgress p em {
  color: #8a5a23;
  text-align: right;
}

.shareMdrtProgress.reached p em {
  color: var(--blue);
}

.shareOpportunityProgress {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.sharePreviewAwards .awardTrack {
  margin-top: 4px;
}

.sharePreviewAwards .awardTrack.tiered {
  margin-top: 8px;
}

.shareTrack {
  position: relative;
  --share-track-y: 4px;
  height: 16px;
  margin: 6px 2px 3px;
  border-radius: 999px;
  background: transparent;
  overflow: visible;
}

.shareTrack.tiered {
  --share-track-y: 17px;
  height: 29px;
  margin-top: 8px;
  margin-bottom: 2px;
}

.shareTrack::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--share-track-y);
  height: 8px;
  border-radius: 999px;
  background: #eee8f3;
}

.shareTrack small {
  position: absolute;
  left: 0;
  top: var(--share-track-y);
  z-index: 1;
  display: block;
  width: var(--w);
  max-width: 100%;
  height: 8px;
  border-radius: inherit;
  background: var(--award-main, var(--purple));
}

.shareTrack mark {
  position: absolute;
  left: var(--x);
  top: calc(var(--share-track-y) - 3px);
  z-index: 2;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 2px;
  background: transparent;
  color: #746a7b;
  font-size: 9px;
  line-height: 1.05;
  font-weight: 900;
}

.shareTrack.tiered mark {
  top: 1px;
}

.shareTrack mark i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  border: 2px solid #b8a9c7;
  box-shadow: 0 1px 3px rgba(33, 25, 42, .18);
}

.shareTrack mark.done i {
  border-color: var(--award-main, var(--purple));
  background: white;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .78), 0 1px 3px rgba(33, 25, 42, .18);
}

.shareTrack mark.next i {
  border-color: white;
  background: var(--orange);
  box-shadow: 0 0 0 2px rgba(234, 88, 12, .22), 0 1px 3px rgba(33, 25, 42, .18);
}

.shareTrack mark abbr {
  text-decoration: none;
  white-space: nowrap;
}

.shareTrack.tiered mark abbr {
  margin-top: 5px;
}

.shareTrack.splitLanes mark.lane-above abbr {
  transform: translateY(-31px);
}

.shareTrack.splitLanes mark.lane-below abbr {
  margin-top: 5px;
}

.shareGeneratedImage:empty {
  display: none;
}

.shareImageResult {
  border: 1px solid #d9c8e5;
  border-top: 0;
  background: #fffdfa;
  padding: 10px;
}

.shareImageResult b,
.shareImageResult p {
  display: block;
  margin: 0;
}

.shareImageResult b {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.shareImageResult p {
  margin-top: 4px;
  color: #62576a;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.shareImageResult img {
  display: block;
  width: 100%;
  margin-top: 9px;
  border: 1px solid #e2d8e8;
  border-radius: var(--radius);
  background: white;
}

.shareEraMonths {
  display: grid;
  gap: 5px;
  border: 1px solid var(--award-line, #e4dce9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .65);
  padding: 7px;
}

.shareEraMonths > span {
  color: #665b6d;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 850;
}

.shareEraMonths i {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 54px;
  gap: 6px;
  align-items: center;
  font-style: normal;
}

.shareEraMonths b,
.shareEraMonths strong {
  color: #4f4358;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 900;
}

.shareEraMonths strong {
  text-align: right;
}

.shareEraMonths small {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #ece6f1;
  overflow: hidden;
}

.shareEraMonths small em {
  display: block;
  width: var(--w);
  height: 100%;
  margin: 0;
  border-radius: inherit;
  background: var(--award-main, var(--purple));
}

.shareOpportunityProgress > em {
  display: block;
  margin-top: 4px;
  color: #5c5262;
  font-style: normal;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 750;
}

.sharePreviewFacts {
  display: grid;
  gap: 6px;
}

.sharePreviewFacts span {
  color: var(--award-done);
  background: var(--award-done-soft);
  border-color: var(--award-done-line);
  font-size: 11px;
  font-weight: 850;
}

.sharePreviewTrend {
  min-height: 96px;
  border: 1px solid #e4dbe9;
  border-radius: var(--radius);
  background: #f7f3fa;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
  align-items: end;
}

.sharePreviewTrend i {
  min-width: 0;
  display: grid;
  grid-template-rows: 54px auto auto;
  gap: 3px;
  text-align: center;
  font-style: normal;
  align-items: end;
}

.sharePreviewTrend small {
  display: block;
  width: 100%;
  height: var(--h);
  border-radius: 999px 999px 3px 3px;
  background: var(--purple);
}

.sharePreviewTrend span,
.sharePreviewTrend b {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #665c70;
  font-size: 8.5px;
  line-height: 1;
  font-weight: 850;
}

.shareInlineActions {
  border: 1px solid #d9c8e5;
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: #fbf7ff;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.shareInlineActions button {
  min-height: 40px;
  border-radius: var(--radius);
  background: var(--purple);
  color: white;
  font-size: 12px;
  font-weight: 950;
}

.shareInlineActions button:last-child {
  background: #efe9f3;
  color: var(--purple);
  border: 1px solid #d9c8e5;
}

.shareInlineTip {
  margin: 7px 2px 0;
  color: #62576a;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

/* Kong overview pilot */
.kongDesignPilot {
  --pilot-ink: #111c19;
  --pilot-muted: #64716d;
  --pilot-line: #d8e2dc;
  --pilot-surface: #fffdf8;
  --pilot-command: #0d3b30;
  --pilot-command-2: #145f48;
  --pilot-green: #116149;
  --pilot-green-soft: #e8f6ee;
  --pilot-blue: #2156b5;
  --pilot-blue-soft: #edf4ff;
  --pilot-amber: #bd5d08;
  --pilot-amber-soft: #fff4e5;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(247, 249, 243, .98)),
    repeating-linear-gradient(90deg, rgba(17, 97, 73, .05) 0 1px, transparent 1px 28px);
  color: var(--pilot-ink);
  scroll-padding-top: 14px;
  overscroll-behavior: contain;
}

.kongDesignPilot .topbar {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e1e7df;
}

.kongDesignPilot .pageNav {
  gap: 6px;
  margin: 0 0 12px;
  padding: 6px;
  border-color: #dfe7de;
  border-radius: 12px;
  background: rgba(255, 254, 250, .96);
  box-shadow: 0 6px 18px rgba(21, 33, 29, .07);
}

.kongDesignPilot .pageNav button {
  min-height: 46px;
  border-radius: 10px;
  background: transparent;
  color: #424d49;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  touch-action: manipulation;
}

.kongDesignPilot .pageNav button b {
  font-size: 14px;
}

.kongDesignPilot .pageNav button span {
  color: #697570;
}

.kongDesignPilot .pageNav button.active {
  color: white;
  background: var(--pilot-green);
  box-shadow: 0 6px 12px rgba(17, 97, 73, .18);
}

.kongDesignPilot .pageNav button.active span {
  color: rgba(255, 255, 255, .86);
}

.kongDesignPilot .officeSwitcher {
  margin: -2px 0 10px;
  border-color: #dfe7de;
  background: #fffefb;
  box-shadow: none;
}

.kongDesignPilot .overviewHero {
  margin: 10px 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--pilot-ink);
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.kongDesignPilot .commandDeck {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(201, 245, 224, .22);
  border-radius: 22px;
  min-height: 224px;
  padding: 14px;
  color: white;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 212, 132, .28) 0 18%, transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(94, 234, 212, .18) 0 18%, transparent 36%),
    linear-gradient(145deg, #082c25 0%, #0d3b30 42%, #176a50 100%);
  box-shadow: 0 22px 42px rgba(9, 56, 43, .28);
}

.kongDesignPilot .commandDeck::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.95), rgba(0,0,0,.36));
}

.kongDesignPilot .commandDeck::after {
  content: "";
  position: absolute;
  right: -64px;
  top: 48px;
  z-index: -1;
  width: 214px;
  aspect-ratio: 1;
  border: 1px solid rgba(207, 245, 224, .3);
  border-radius: 50%;
  box-shadow:
    0 0 0 20px rgba(207, 245, 224, .045),
    0 0 0 46px rgba(207, 245, 224, .035),
    inset 0 0 44px rgba(207, 245, 224, .08);
}

.kongDesignPilot .commandTexture {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.kongDesignPilot .commandTexture i {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.kongDesignPilot .commandTexture i:nth-child(1) {
  left: 17px;
  top: 146px;
  width: 86px;
  height: 2px;
}

.kongDesignPilot .commandTexture i:nth-child(2) {
  left: 17px;
  top: 154px;
  width: 54px;
  height: 2px;
  opacity: .45;
}

.kongDesignPilot .commandTexture i:nth-child(3) {
  right: 24px;
  bottom: 28px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
}

.kongDesignPilot .heroTop {
  gap: 10px;
}

.kongDesignPilot .commandTop,
.kongDesignPilot .commandDial,
.kongDesignPilot .missionStrip {
  position: relative;
  z-index: 1;
}

.kongDesignPilot .commandIdentity {
  min-width: 0;
}

.kongDesignPilot .heroScope {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(207, 245, 224, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #c9f5df;
  padding: 4px 7px;
  font-size: 11px;
}

.kongDesignPilot .overviewHero h2 {
  color: white;
  font-size: 22px;
  line-height: 1.18;
  margin-top: 6px;
}

.kongDesignPilot .overviewHero p {
  color: #d8eee5;
  font-size: 11.5px;
  line-height: 1.55;
}

.kongDesignPilot .heroStamp {
  max-width: 118px;
  min-height: 66px;
  display: grid;
  gap: 4px;
  align-content: center;
  border-color: rgba(207, 245, 224, .35);
  background: rgba(255, 255, 255, .14);
  color: #effff7;
  border-radius: 14px;
  padding: 8px;
  backdrop-filter: blur(12px);
}

.kongDesignPilot .commandBeacon i {
  width: 9px;
  height: 9px;
  margin: 0 auto 2px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 5px rgba(110, 231, 183, .16), 0 0 18px rgba(110, 231, 183, .85);
}

.kongDesignPilot .commandBeacon span {
  color: rgba(255,255,255,.82);
  font-size: 10px;
  line-height: 1.15;
  font-weight: 800;
}

.kongDesignPilot .commandBeacon b {
  color: white;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 950;
}

.kongDesignPilot .commandDial {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(112px, .75fr);
  gap: 10px;
  align-items: stretch;
  margin-top: 10px;
  min-height: 92px;
}

.kongDesignPilot .dialFrame {
  position: absolute;
  left: -26px;
  top: -26px;
  width: 174px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(207, 245, 224, .18);
  pointer-events: none;
}

.kongDesignPilot .dialFrame i {
  position: absolute;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(207, 245, 224, .18);
}

.kongDesignPilot .dialFrame i:nth-child(1) { inset: 18px; }
.kongDesignPilot .dialFrame i:nth-child(2) { inset: 42px; border-style: dashed; }
.kongDesignPilot .dialFrame i:nth-child(3) {
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 0;
  background: #fbbf24;
  box-shadow: 0 0 18px rgba(251,191,36,.8);
}

.kongDesignPilot .heroV,
.kongDesignPilot .heroReward {
  min-width: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 253, 248, .96);
  padding: 12px;
  box-shadow: 0 12px 24px rgba(6, 43, 32, .16);
}

.kongDesignPilot .heroV span,
.kongDesignPilot .heroReward span {
  color: #5d6864;
}

.kongDesignPilot .heroV strong {
  color: #0f3f33;
  font-size: 38px;
  line-height: .94;
}

.kongDesignPilot .heroV em,
.kongDesignPilot .heroReward em {
  color: #68736e;
}

.kongDesignPilot .heroReward strong {
  color: var(--pilot-blue);
  font-size: 23px;
}

.kongDesignPilot .missionStrip {
  margin-top: 8px;
  border: 1px solid rgba(207, 245, 224, .22);
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  padding: 6px 9px;
  color: #d8eee5;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.kongDesignPilot .kpis {
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 7px;
  margin-bottom: 12px;
}

.kongDesignPilot .kpi {
  min-height: 96px;
  border-color: #e1e5de;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,253,248,.96));
  padding: 9px;
  box-shadow: 0 7px 18px rgba(21, 33, 29, .055);
}

.kongDesignPilot .statCard {
  position: relative;
  overflow: hidden;
}

.kongDesignPilot .statCard::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .14;
}

.kongDesignPilot .statCard.acc1 {
  background: linear-gradient(180deg, #fff7e8 0%, #fffdf8 100%);
  border-color: #efd0ad;
}

.kongDesignPilot .statCard.acc1 b {
  color: var(--pilot-amber);
}

.kongDesignPilot .statCard.acc2 b,
.kongDesignPilot .statCard.acc4 b {
  color: var(--pilot-green);
}

.kongDesignPilot .statCard.acc3 b {
  color: var(--pilot-blue);
}

.kongDesignPilot .kpi span,
.kongDesignPilot .battleItem span {
  color: #64706b;
  font-weight: 750;
}

.kongDesignPilot .kpi b {
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}

.kongDesignPilot .kpi em {
  color: #4f5b56;
}

.kongDesignPilot .kpiTinyTrend {
  min-height: 33px;
  gap: 3px;
}

.kongDesignPilot .kpiTinyTrend i {
  height: 33px;
}

.kongDesignPilot .kpiTinyTrend i::before {
  border-radius: 6px 6px 2px 2px;
  opacity: .9;
}

.kongDesignPilot .kpiTinyTrend span {
  color: #68736e;
  font-size: 7.5px;
}

.kongDesignPilot .kpiTinyTrend b {
  color: #27302d;
  font-size: 8px;
}

.kongDesignPilot .equityMini summary > div {
  border-color: #dce8dd;
  background: #f8fcf9;
  padding: 8px;
}

.kongDesignPilot .equityMini b {
  color: var(--pilot-green);
  font-size: 15px;
  margin-top: 4px;
}

.kongDesignPilot .equityMini span,
.kongDesignPilot .equityMini em {
  font-size: 10px;
  line-height: 1.25;
}

.kongDesignPilot .overviewHead,
.kongDesignPilot .actionHead {
  margin-top: 10px;
  margin-bottom: 8px;
  border: 0;
  border-radius: 16px;
  background: #102f29;
  padding: 9px 11px;
  box-shadow: 0 10px 22px rgba(16, 47, 41, .1);
}

.kongDesignPilot .overviewHead h2,
.kongDesignPilot .actionHead h2 {
  color: white;
  font-size: 18px;
}

.kongDesignPilot .overviewHead span,
.kongDesignPilot .actionHead span {
  color: rgba(255, 255, 255, .72);
}

.kongDesignPilot .overviewHead::before {
  background: var(--pilot-green);
}

.kongDesignPilot .actionHead {
  align-items: center;
  background: #7a3908;
}

.kongDesignPilot .actionHead::before {
  height: 24px;
  background: var(--pilot-amber);
}

.kongDesignPilot #scopeLabel {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  color: white;
}

.kongDesignPilot .opportunityBoard {
  gap: 8px;
  margin-bottom: 16px;
}

.kongDesignPilot .oppCard {
  position: relative;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid #d4e3d9;
  border-radius: 15px;
  background:
    linear-gradient(90deg, rgba(17, 97, 73, .08), transparent 48%),
    #fffefb;
  padding: 12px;
  box-shadow: 0 10px 22px rgba(21, 33, 29, .07);
}

.kongDesignPilot .oppCard.reach {
  grid-template-columns: 36px minmax(0, 1fr) minmax(0, 1fr);
  border-color: #efcfaa;
  background:
    linear-gradient(90deg, rgba(189, 93, 8, .09), transparent 50%),
    #fffefb;
}

.kongDesignPilot .oppCard.stretch {
  border-color: #cddcf4;
  background:
    linear-gradient(90deg, rgba(33, 86, 181, .09), transparent 50%),
    #fffefb;
}

.kongDesignPilot .missionLane > i {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 100%;
  min-height: 58px;
  border-radius: 12px;
  background: #123c32;
  color: white;
  font-size: 12px;
  line-height: 1;
  font-style: normal;
  font-weight: 950;
}

.kongDesignPilot .missionLane.reach > i {
  background: var(--pilot-amber);
}

.kongDesignPilot .missionLane.stretch > i {
  background: var(--pilot-blue);
}

.kongDesignPilot .oppCard span {
  color: #5f6a66;
  font-weight: 800;
}

.kongDesignPilot .oppCard b {
  color: var(--pilot-ink);
  font-size: 23px;
  font-variant-numeric: tabular-nums;
}

.kongDesignPilot .oppCard em {
  color: #4f5b56;
}

.kongDesignPilot .splitOpp {
  gap: 8px;
}

.kongDesignPilot .splitOpp > div {
  padding-right: 0;
  border-right: 0;
}

.kongDesignPilot #priorityList {
  gap: 9px;
}

.kongDesignPilot .priorityCard {
  position: relative;
  border-color: #e7bf91;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(189, 93, 8, .12), transparent 35%),
    linear-gradient(180deg, #fffaf4 0%, #fffefb 100%);
  padding: 13px;
  box-shadow: 0 12px 24px rgba(127, 77, 25, .11);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  touch-action: manipulation;
}

.kongDesignPilot .priorityCard::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 14px;
  bottom: 14px;
  width: 5px;
  border-radius: 0 99px 99px 0;
  background: var(--pilot-amber);
}

.kongDesignPilot .priorityCard.done {
  border-color: #b7d5c4;
  background:
    linear-gradient(90deg, rgba(17, 97, 73, .12), transparent 35%),
    linear-gradient(180deg, #f5fbf7 0%, #fffefb 100%);
}

.kongDesignPilot .priorityCard.done::before {
  background: var(--pilot-green);
}

.kongDesignPilot .priorityName {
  color: #78350f;
  font-size: 20px;
}

.kongDesignPilot .priorityCard.done .priorityName {
  color: var(--pilot-green);
}

.kongDesignPilot .priorityTop > b {
  background: var(--pilot-amber);
}

.kongDesignPilot .priorityCard.done .priorityTop > b {
  background: var(--pilot-green);
}

.kongDesignPilot .priorityGap {
  color: var(--pilot-amber);
}

.kongDesignPilot .priorityGap strong {
  font-size: 31px;
}

.kongDesignPilot .priorityCard.done .priorityGap {
  color: var(--pilot-green);
}

.kongDesignPilot .priorityDesc {
  background: #fff6ea;
  border-color: #efd0ad;
}

.kongDesignPilot .priorityCard.done .priorityDesc {
  background: var(--pilot-green-soft);
  border-color: #b7d5c4;
}

.kongDesignPilot .priorityBar {
  background: #f2e1cd;
}

.kongDesignPilot .priorityBar i {
  background: var(--pilot-amber);
}

.kongDesignPilot .priorityCard.done .priorityBar {
  background: #dcefe5;
}

.kongDesignPilot .priorityCard.done .priorityBar i {
  background: var(--pilot-green);
}

.kongDesignPilot .exportBar,
.kongDesignPilot .detailExportBar {
  border-color: #dce8dd;
  border-radius: 12px;
  background: #f8fcf9;
  box-shadow: none;
}

.kongDesignPilot .exportButton {
  min-height: 44px;
  border-radius: 10px;
  background: var(--pilot-green);
  box-shadow: 0 8px 16px rgba(17, 97, 73, .18);
  transition: background .18s ease, transform .18s ease;
  touch-action: manipulation;
}

.kongDesignPilot .priorityToggle {
  min-height: 44px;
  border-color: #cfded4;
  border-radius: 12px;
  background: #f8fcf9;
  color: var(--pilot-green);
  box-shadow: none;
  transition: background .18s ease, transform .18s ease;
  touch-action: manipulation;
}

.kongDesignPilot .priorityToggle.close {
  color: #4f5b56;
  background: #fffefb;
}

.kongDesignPilot button:focus-visible,
.kongDesignPilot select:focus-visible,
.kongDesignPilot input:focus-visible,
.kongDesignPilot .priorityCard:focus-visible,
.kongDesignPilot .equityMini summary:focus-visible {
  outline: 3px solid rgba(17, 97, 73, .34);
  outline-offset: 2px;
}

@media (hover: hover) {
  .kongDesignPilot .pageNav button:hover,
  .kongDesignPilot .exportButton:hover,
  .kongDesignPilot .priorityToggle:hover {
    transform: translateY(-1px);
  }

  .kongDesignPilot .priorityCard:hover {
    border-color: #d59652;
    box-shadow: 0 12px 22px rgba(127, 77, 25, .12);
    transform: translateY(-1px);
  }

  .kongDesignPilot .priorityCard.done:hover {
    border-color: #8ac09f;
    box-shadow: 0 12px 22px rgba(17, 97, 73, .1);
  }
}

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

/* Kong overview radical cockpit */
.kongDesignPilot {
  --pilot-ink: #111915;
  --pilot-muted: #62706a;
  --pilot-line: rgba(26, 43, 35, .14);
  --pilot-surface: #fff8ec;
  --pilot-paper: #fbf3e3;
  --pilot-deep: #07110e;
  --pilot-deep-2: #10241d;
  --pilot-green: #0d6a4b;
  --pilot-green-soft: #dff5e9;
  --pilot-blue: #215fcb;
  --pilot-blue-soft: #e9f2ff;
  --pilot-amber: #e1872f;
  --pilot-amber-soft: #fff1d2;
  --pilot-coral: #c65334;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(7, 17, 14, .98) 0 38%, rgba(239, 231, 215, .98) 38% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 26px);
  color: var(--pilot-ink);
}

.kongDesignPilot::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 390px;
  z-index: -1;
  background:
    linear-gradient(122deg, rgba(225, 135, 47, .22) 0 1px, transparent 1px 42%),
    repeating-linear-gradient(135deg, rgba(225, 135, 47, .13) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(33, 95, 203, .18), transparent 44%);
  opacity: .78;
  pointer-events: none;
}

.kongDesignPilot .topbar,
.kongDesignPilot .pageNav,
.kongDesignPilot .officeSwitcher,
.kongDesignPilot .overviewHero,
.kongDesignPilot .kpis,
.kongDesignPilot .sectionHead,
.kongDesignPilot .opportunityBoard,
.kongDesignPilot #priorityList {
  position: relative;
  z-index: 1;
}

.kongDesignPilot .topbar {
  margin: 0 -2px 10px;
  padding: 12px;
  border: 1px solid rgba(255, 245, 221, .13);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, .12), rgba(255, 248, 236, .04)),
    #0a1814;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .2);
}

.kongDesignPilot .topbar .eyebrow,
.kongDesignPilot .account span {
  color: rgba(255, 241, 210, .7);
}

.kongDesignPilot .topbar h1,
.kongDesignPilot .account b {
  color: #fff8ec;
}

.kongDesignPilot .account {
  min-height: 44px;
  border: 1px solid rgba(255, 241, 210, .22);
  border-radius: 16px;
  background: rgba(255, 248, 236, .1);
  color: #fff8ec;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.kongDesignPilot .pageNav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin: 0 0 10px;
  padding: 5px;
  border: 1px solid rgba(255, 241, 210, .16);
  border-radius: 18px;
  background: rgba(5, 13, 11, .72);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

.kongDesignPilot .pageNav button {
  min-width: 0;
  min-height: 48px;
  border-radius: 14px;
  color: rgba(255, 248, 236, .74);
  background: transparent;
}

.kongDesignPilot .pageNav button b {
  font-size: 14px;
}

.kongDesignPilot .pageNav button span {
  color: rgba(255, 248, 236, .48);
  font-size: 10.5px;
}

.kongDesignPilot .pageNav button.active {
  color: #111915;
  background:
    linear-gradient(180deg, #ffe5a3 0%, #e1872f 100%);
  box-shadow: 0 10px 22px rgba(225, 135, 47, .28);
}

.kongDesignPilot .pageNav button.active span {
  color: rgba(17, 25, 21, .72);
}

.kongDesignPilot .officeSwitcher {
  margin: 0 0 10px;
  border: 1px solid rgba(255, 241, 210, .26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, .96), rgba(231, 244, 235, .94));
  box-shadow: 0 16px 30px rgba(0, 0, 0, .14);
}

.kongDesignPilot .officeSwitcher span {
  color: #5b6a63;
}

.kongDesignPilot .officeSwitcher select {
  min-height: 44px;
  border-radius: 13px;
  border-color: rgba(13, 106, 75, .24);
  color: #12231b;
  background-color: rgba(255, 255, 255, .68);
}

.kongDesignPilot .overviewHero {
  margin: 12px 0 10px;
  overflow: visible;
}

.kongDesignPilot #overviewPage {
  display: flex;
  flex-direction: column;
}

.kongDesignPilot #overviewHero { order: 1; }
.kongDesignPilot .overviewHead { order: 2; }
.kongDesignPilot #opportunityBoard { order: 3; }
.kongDesignPilot #kpis { order: 4; }
.kongDesignPilot .actionHead { order: 5; }
.kongDesignPilot #priorityList { order: 6; }

.kongDesignPilot .commandDeck {
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(255, 241, 210, .18);
  border-radius: 30px;
  color: #fff8ec;
  background:
    linear-gradient(160deg, rgba(255, 248, 236, .13) 0%, transparent 32%),
    linear-gradient(135deg, #07110e 0%, #132a22 46%, #183a2d 66%, #341c16 100%);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.kongDesignPilot .warRoomHero {
  transform: translateZ(0);
}

.kongDesignPilot .commandDeck::before {
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 236, .07) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(255, 248, 236, .05) 0 1px, transparent 1px 22px);
  background-size: auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .25));
}

.kongDesignPilot .commandDeck::after {
  right: -76px;
  top: -46px;
  z-index: -1;
  width: 238px;
  border: 0;
  background:
    conic-gradient(from 214deg, transparent 0 22deg, rgba(225, 135, 47, .95) 22deg 58deg, transparent 58deg 122deg, rgba(47, 124, 255, .7) 122deg 164deg, transparent 164deg 360deg);
  opacity: .7;
  box-shadow: none;
  mask-image: radial-gradient(circle, transparent 0 49%, #000 50% 54%, transparent 55% 100%);
}

.kongDesignPilot .warRoomTexture i {
  border-radius: 0;
  background: rgba(255, 248, 236, .28);
}

.kongDesignPilot .warRoomTexture i:nth-child(1) {
  left: 15px;
  top: 226px;
  width: 110px;
  height: 3px;
  background: #e1872f;
}

.kongDesignPilot .warRoomTexture i:nth-child(2) {
  left: 15px;
  top: 236px;
  width: 76px;
  height: 3px;
  background: rgba(255, 248, 236, .42);
}

.kongDesignPilot .warRoomTexture i:nth-child(3) {
  right: 20px;
  bottom: 20px;
  width: 82px;
  height: 54px;
  border: 1px solid rgba(255, 248, 236, .22);
  border-radius: 16px;
  background:
    linear-gradient(90deg, transparent 50%, rgba(255, 248, 236, .12) 50%),
    linear-gradient(0deg, transparent 50%, rgba(255, 248, 236, .12) 50%);
  background-size: 18px 18px;
}

.kongDesignPilot .warRoomTexture i:nth-child(4) {
  left: 12px;
  right: 12px;
  top: 54px;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 236, .38), transparent);
}

.kongDesignPilot .warRoomTop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, 122px);
  gap: 12px;
  align-items: start;
}

.kongDesignPilot .heroScope {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border: 0;
  border-radius: 999px;
  background: #f4d26d;
  color: #101813;
  padding: 5px 9px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 950;
}

.kongDesignPilot .overviewHero h2 {
  color: #fff8ec;
  font-size: 26px;
  line-height: 1.1;
  margin-top: 8px;
  text-shadow: 0 8px 18px rgba(0, 0, 0, .24);
}

.kongDesignPilot .overviewHero p {
  color: rgba(255, 248, 236, .78);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 6px;
}

.kongDesignPilot .heroStamp {
  min-height: 78px;
  max-width: none;
  border: 1px solid rgba(255, 241, 210, .22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, .96), rgba(255, 229, 184, .9));
  color: #111915;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .24);
}

.kongDesignPilot .commandBeacon i {
  background: #0d6a4b;
  box-shadow: 0 0 0 5px rgba(13, 106, 75, .18), 0 0 18px rgba(13, 106, 75, .72);
}

.kongDesignPilot .commandBeacon span {
  color: #815016;
}

.kongDesignPilot .commandBeacon b {
  color: #111915;
  font-size: 13px;
}

.kongDesignPilot .warRoomBody {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.kongDesignPilot .commandDial {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(112px, .72fr);
  gap: 10px;
  align-items: stretch;
  margin-top: 0;
  min-height: 112px;
}

.kongDesignPilot .dialFrame {
  left: auto;
  right: -18px;
  top: -18px;
  width: 128px;
  border: 0;
  background:
    conic-gradient(from 270deg, #e1872f 0 96deg, rgba(255, 248, 236, .2) 96deg 220deg, #215fcb 220deg 278deg, rgba(255, 248, 236, .2) 278deg 360deg);
  opacity: .58;
  mask-image: radial-gradient(circle, transparent 0 48%, #000 49% 53%, transparent 54% 100%);
}

.kongDesignPilot .dialFrame i {
  display: none;
}

.kongDesignPilot .heroV,
.kongDesignPilot .heroReward {
  border-radius: 22px;
  border: 1px solid rgba(17, 25, 21, .1);
  padding: 13px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, .18);
}

.kongDesignPilot .heroV {
  border-left: 7px solid var(--pilot-coral);
  background:
    linear-gradient(135deg, #fff8ec 0%, #f6dec0 100%);
}

.kongDesignPilot .heroReward {
  border-top: 5px solid var(--pilot-blue);
  background:
    linear-gradient(160deg, #f3f8ff 0%, #dceaff 100%);
}

.kongDesignPilot .heroV span,
.kongDesignPilot .heroReward span {
  color: #5c675f;
  font-size: 12px;
  font-weight: 950;
}

.kongDesignPilot .heroV strong {
  color: #111915;
  font-size: clamp(34px, 9.2vw, 45px);
  line-height: .95;
}

.kongDesignPilot .heroReward strong {
  color: #153f8d;
  font-size: 25px;
  line-height: 1;
}

.kongDesignPilot .heroV em,
.kongDesignPilot .heroReward em {
  color: #435049;
  line-height: 1.35;
}

.kongDesignPilot .missionStrip {
  margin-top: 0;
  border: 1px solid rgba(255, 241, 210, .18);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(13, 106, 75, .45), rgba(33, 95, 203, .28));
  color: rgba(255, 248, 236, .9);
  padding: 9px 11px;
  font-size: 11.5px;
}

.kongDesignPilot .kpis {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 9px;
  margin: 2px 0 13px;
}

.kongDesignPilot .kpi {
  min-height: 98px;
  border: 1px solid rgba(26, 43, 35, .12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 248, 236, .98));
  padding: 8px;
  box-shadow: 0 14px 24px rgba(37, 31, 22, .09);
}

.kongDesignPilot .statCard.acc1 {
  grid-column: 1 / -1;
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background:
    linear-gradient(110deg, #19150f 0%, #2d2418 42%, #fff1d2 42% 100%);
}

.kongDesignPilot .statCard.acc1 span,
.kongDesignPilot .statCard.acc1 em {
  color: rgba(255, 248, 236, .78);
}

.kongDesignPilot .statCard.acc1 b {
  color: #ffca64;
  font-size: 30px;
  text-align: right;
}

.kongDesignPilot .statCard.acc1::after {
  border-radius: 5px;
  right: 50%;
  top: 12px;
  width: 34px;
  height: 4px;
  background: #e1872f;
  border: 0;
  opacity: 1;
}

.kongDesignPilot .statCard.acc2 {
  border-color: rgba(13, 106, 75, .18);
}

.kongDesignPilot .statCard.acc3 {
  border-color: rgba(33, 95, 203, .18);
}

.kongDesignPilot .statCard.acc2 b {
  color: var(--pilot-green);
}

.kongDesignPilot .statCard.acc3 b {
  color: var(--pilot-blue);
}

.kongDesignPilot .kpiTinyTrend {
  min-height: 36px;
}

.kongDesignPilot .kpiTinyTrend i {
  height: 36px;
}

.kongDesignPilot .kpiTinyTrend i::before {
  border-radius: 8px 8px 2px 2px;
}

.kongDesignPilot .kpiTinyTrend span {
  font-size: 8px;
  color: #6d766f;
}

.kongDesignPilot .kpiTinyTrend b {
  font-size: 8.5px;
  color: #202923;
}

.kongDesignPilot .kpi span,
.kongDesignPilot .battleItem span {
  font-size: 10.5px;
  line-height: 1.22;
}

.kongDesignPilot .kpi b {
  font-size: 18px;
  line-height: 1.05;
}

.kongDesignPilot .kpi em {
  font-size: 10px;
  line-height: 1.25;
}

.kongDesignPilot .equityMini {
  grid-column: 1 / -1;
}

.kongDesignPilot .equityMini summary {
  grid-template-columns: 1.05fr .95fr;
  gap: 6px;
}

.kongDesignPilot .equityMini summary > div {
  border-color: rgba(13, 106, 75, .18);
  border-radius: 14px;
  background: rgba(255, 248, 236, .78);
  padding: 7px;
}

.kongDesignPilot .equityMini b {
  font-size: 13px;
  line-height: 1.1;
  margin-top: 3px;
}

.kongDesignPilot .equityMini span,
.kongDesignPilot .equityMini em {
  font-size: 9.5px;
  line-height: 1.2;
}

.kongDesignPilot .equityMini em {
  margin-top: 3px;
}

.kongDesignPilot .overviewHead,
.kongDesignPilot .actionHead {
  margin: 10px 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 2px;
}

.kongDesignPilot .overviewHead h2,
.kongDesignPilot .actionHead h2 {
  color: #111915;
  font-size: 20px;
}

.kongDesignPilot .overviewHead span,
.kongDesignPilot .actionHead span {
  color: #66716b;
}

.kongDesignPilot .overviewHead::before,
.kongDesignPilot .actionHead::before {
  display: none;
}

.kongDesignPilot #scopeLabel {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(13, 106, 75, .18);
  border-radius: 999px;
  background: #e5f4eb;
  color: #0d6a4b;
}

.kongDesignPilot .opportunityBoard {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding-left: 2px;
}

.kongDesignPilot .opportunityBoard::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background:
    repeating-linear-gradient(180deg, rgba(17, 25, 21, .42) 0 6px, transparent 6px 12px);
}

.kongDesignPilot .oppCard {
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(26, 43, 35, .12);
  border-radius: 22px;
  padding: 11px;
  background: #fff8ec;
  box-shadow: 0 15px 26px rgba(37, 31, 22, .09);
}

.kongDesignPilot .routeCard {
  isolation: isolate;
}

.kongDesignPilot .oppCard.reach {
  grid-template-columns: 44px minmax(0, 1fr) minmax(0, 1fr);
  border-color: rgba(225, 135, 47, .24);
  background:
    linear-gradient(105deg, #fff7e5 0%, #fff8ec 58%, #e9f2ff 100%);
}

.kongDesignPilot .oppCard.stretch {
  border-color: rgba(33, 95, 203, .22);
  background:
    linear-gradient(105deg, #f1f7ff 0%, #fff8ec 100%);
}

.kongDesignPilot .missionLane > i {
  position: relative;
  z-index: 1;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  border-radius: 14px;
  background: #111915;
  color: #fff8ec;
  box-shadow: 0 8px 16px rgba(17, 25, 21, .2);
}

.kongDesignPilot .missionLane.reach > i {
  background: var(--pilot-amber);
  color: #111915;
}

.kongDesignPilot .missionLane.stretch > i {
  background: var(--pilot-blue);
}

.kongDesignPilot .routeBody {
  min-width: 0;
}

.kongDesignPilot .oppCard span {
  color: #5b675f;
  font-size: 12px;
  font-weight: 950;
}

.kongDesignPilot .oppCard b {
  color: #111915;
  font-size: 24px;
  line-height: 1.08;
}

.kongDesignPilot .oppCard em {
  color: #48534d;
  line-height: 1.35;
}

.kongDesignPilot #priorityList {
  gap: 10px;
}

.kongDesignPilot .exportBar,
.kongDesignPilot .detailExportBar {
  border: 1px solid rgba(13, 106, 75, .18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, #e4f6ed 0%, #fff8ec 100%);
  box-shadow: 0 12px 24px rgba(37, 31, 22, .08);
}

.kongDesignPilot .exportButton {
  min-height: 46px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #0d6a4b, #0b4e3a);
  box-shadow: 0 10px 18px rgba(13, 106, 75, .2);
}

.kongDesignPilot .priorityCard {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 9px 12px;
  border: 1px solid rgba(198, 83, 52, .22);
  border-radius: 24px;
  background:
    linear-gradient(100deg, #2b1711 0 58px, #fff8ec 58px 100%);
  padding: 12px;
  box-shadow: 0 16px 28px rgba(111, 73, 35, .13);
}

.kongDesignPilot .dispatchOrder {
  isolation: isolate;
}

.kongDesignPilot .priorityCard::before {
  display: none;
}

.kongDesignPilot .priorityCard.done {
  border-color: rgba(13, 106, 75, .24);
  background:
    linear-gradient(100deg, #0d3f2f 0 58px, #f2fbf5 58px 100%);
}

.kongDesignPilot .dispatchRibbon {
  grid-row: 1 / 5;
  align-self: stretch;
  display: grid;
  place-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-radius: 18px;
  color: #fff8ec;
  font-size: 13px;
  font-weight: 950;
}

.kongDesignPilot .priorityCard.done .dispatchRibbon {
  color: #dff5e9;
}

.kongDesignPilot .dispatchTop,
.kongDesignPilot .priorityOwner,
.kongDesignPilot .dispatchMain,
.kongDesignPilot .priorityBar,
.kongDesignPilot .priorityMeta,
.kongDesignPilot .newcomerTrueup,
.kongDesignPilot .referenceOrder,
.kongDesignPilot .priorityCard p {
  grid-column: 2;
}

.kongDesignPilot .dispatchTop {
  align-items: flex-start;
}

.kongDesignPilot .dispatchTop > b {
  display: none;
}

.kongDesignPilot .priorityName {
  color: #a53d24;
  font-size: 21px;
  line-height: 1.15;
}

.kongDesignPilot .priorityCard.done .priorityName {
  color: #0d6a4b;
}

.kongDesignPilot .dispatchTop em,
.kongDesignPilot .priorityMeta span,
.kongDesignPilot .priorityCard p {
  color: #5d675f;
}

.kongDesignPilot .priorityOwner {
  margin-top: -3px;
}

.kongDesignPilot .dispatchMain {
  display: grid;
  grid-template-columns: minmax(86px, .72fr) minmax(0, 1.28fr);
  gap: 8px;
  align-items: stretch;
}

.kongDesignPilot .priorityGap {
  display: grid;
  align-content: center;
  border: 1px solid rgba(198, 83, 52, .18);
  border-radius: 18px;
  background: #fff0dd;
  color: #b24728;
  padding: 8px;
}

.kongDesignPilot .priorityGap strong {
  font-size: 29px;
  line-height: .95;
}

.kongDesignPilot .priorityCard.done .priorityGap {
  border-color: rgba(13, 106, 75, .2);
  background: #dff5e9;
  color: #0d6a4b;
}

.kongDesignPilot .priorityDesc {
  border: 1px solid rgba(26, 43, 35, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .62);
  padding: 9px;
}

.kongDesignPilot .priorityDesc b {
  color: #111915;
}

.kongDesignPilot .priorityDesc span {
  color: #525e57;
}

.kongDesignPilot .priorityBar {
  height: 10px;
  border-radius: 999px;
  background: #ead8c3;
}

.kongDesignPilot .priorityBar i {
  border-radius: inherit;
  background:
    linear-gradient(90deg, #c65334, #e1872f);
}

.kongDesignPilot .priorityCard.done .priorityBar {
  background: #cfead9;
}

.kongDesignPilot .priorityCard.done .priorityBar i {
  background:
    linear-gradient(90deg, #0d6a4b, #4fba83);
}

.kongDesignPilot .priorityToggle {
  min-height: 46px;
  border: 1px solid rgba(26, 43, 35, .12);
  border-radius: 18px;
  background: #111915;
  color: #fff8ec;
  box-shadow: 0 14px 24px rgba(17, 25, 21, .14);
}

.kongDesignPilot .priorityToggle.close {
  color: #111915;
  background: #fff8ec;
}

.kongDesignPilot button:focus-visible,
.kongDesignPilot select:focus-visible,
.kongDesignPilot input:focus-visible,
.kongDesignPilot .priorityCard:focus-visible,
.kongDesignPilot .equityMini summary:focus-visible {
  outline: 3px solid rgba(225, 135, 47, .46);
  outline-offset: 3px;
}

@media (hover: hover) {
  .kongDesignPilot .pageNav button:hover,
  .kongDesignPilot .exportButton:hover,
  .kongDesignPilot .priorityToggle:hover,
  .kongDesignPilot .priorityCard:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 360px) {
  .kongDesignPilot .commandDial,
  .kongDesignPilot .oppCard.reach,
  .kongDesignPilot .dispatchMain {
    grid-template-columns: 1fr;
  }

  .kongDesignPilot .warRoomTop {
    grid-template-columns: 1fr;
  }

  .kongDesignPilot .heroStamp {
    min-height: 58px;
  }
}

@media (max-width: 860px) {
  body { background: var(--surface); }
  .shell { display: block; padding: 0; }
  .phone { width: 100%; height: 100vh; min-height: 100vh; border: 0; border-radius: 0; box-shadow: none; }
  .phone::before, .side { display: none; }
  .login, .app { padding: 24px 18px 30px; }
}

@media (max-width: 430px) {
  .yoyMonthGrid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 360px) {
  .kpis, .battle, .metrics, .detailGrid { grid-template-columns: 1fr; }
  .yoyMonthGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awardDetailRows { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .equityMini summary, .equityFlowDetails { grid-template-columns: 1fr; }
  .reminderGrid { grid-template-columns: 1fr; }
  .pageNav { gap: 5px; padding: 6px; }
  .pageNav button { min-height: 48px; }
  .pageNav button b { font-size: 13px; }
  .pageNav button span { font-size: 10px; }
  .awardChips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .awardTabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rosterMiddle { grid-template-columns: 1fr; }
}
