/* ─────────────────────────────────────────────────────────────
   Product mockups — faithful to each product's real design system.
   .mk-*  Pluvoir Dashboard (public snapshot board)
   .mka-* Assessment Platform (voice check-in)
   .mkf-* School Finder (map explorer)
   ───────────────────────────────────────────────────────────── */

/* ── shared window chrome ─────────────────────────── */

.board-window,
.shot-window {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(25, 22, 54, 0.06);
}
.board-chrome,
.shot-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--paper-dim);
  border-bottom: 1px solid var(--line);
}
.shot-bar { padding: 8px 12px; }
.chrome-dots { display: flex; gap: 5px; }
.chrome-dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
}
.chrome-url {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chrome-live { flex: none; }
.shot-bar .chrome-url { font-size: 11px; }
.chrome-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--cyan-ink);
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

/* ── Dashboard: public snapshot board ─────────────── */

.mk-board {
  background: #f7f8fa;
  color: #1c1e24;
  font-size: 13px;
  line-height: 1.35;
}

.mk-pubhead {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-bottom: 1px solid #e6e8ec;
  padding: 10px 18px;
  box-shadow: 0 1px 3px rgba(20, 25, 40, 0.05);
  position: relative;
  z-index: 2;
}
.mk-publogo {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 5px;
  background: #2f64d6;
  position: relative;
}
.mk-publogo::after {
  content: '';
  position: absolute;
  top: 5px; left: 6.5px;
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
}
.mk-pubword { font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.mk-pubnav {
  display: flex;
  gap: 16px;
  margin-left: 14px;
}
.mk-pubnav span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #3a3f4a;
  padding: 4px 0 5px;
  white-space: nowrap;
}
.mk-pubnav .on {
  color: #2f64d6;
  box-shadow: inset 0 -2px 0 #2f64d6;
}
.mk-pubsite { margin-left: auto; font-size: 11px; color: #697086; }
.mk-avatar {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #2f64d6;
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mk-canvas { padding: 14px 18px 14px; }
.mk-mast h3 {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: #1c1e24;
}
.mk-mast p { font-size: 11px; color: #697086; margin-top: 2px; }

.mk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.mk-tile {
  background: #fff;
  border: 1px solid #e6e8ec;
  border-top: 3px solid #2f64d6;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(20, 25, 40, 0.04);
  overflow: hidden;
  min-width: 0;
}
.mk-kt-tile, .mk-chart-tile { grid-column: 1 / -1; }

.mk-tile-head {
  display: flex;
  flex-direction: column;
  padding: 9px 13px 8px;
  border-bottom: 1px solid #eef0f3;
}
.mk-tile-title { font-size: 12px; font-weight: 600; }
.mk-tile-sub { font-size: 10px; color: #697086; margin-top: 1px; }
.mk-tile-head.mk-hdr-gradient {
  background: linear-gradient(118deg, #1d3d77, #3c66ae);
  border-bottom: none;
}
.mk-hdr-gradient .mk-tile-title { color: #fff; }
.mk-hdr-gradient .mk-tile-sub { color: rgba(255, 255, 255, 0.75); }

/* KPI + Trend card */
.mk-kt {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) minmax(0, 1.4fr);
}
.mk-kt-spine {
  display: flex;
  flex-direction: column;
  padding: 11px 14px 12px;
  background: #f5f8fd;
  border-right: 1px solid #eef0f3;
}
.mk-kt-colh {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a6fb5;
}
.mk-kt-num {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #1c1e24;
  font-variant-numeric: tabular-nums;
  margin: 3px 0 8px;
}
.mk-kt-rule {
  width: 36px;
  border-top: 2px solid rgba(47, 100, 214, 0.55);
  margin-bottom: 7px;
}
.mk-kt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 3.5px 0;
  border-top: 1px solid #eef0f3;
  font-size: 9.5px;
}
.mk-kt-row:first-of-type { border-top: none; }
.mk-kt-row i {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9aa1ad;
  font-size: 8.5px;
}
.mk-kt-row b { font-weight: 600; font-variant-numeric: tabular-nums; color: #2b2f38; }
.mk-kt-row b.up { color: #2d7d46; }
.mk-dot-n {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid #c9a35c;
  margin-left: 5px;
  vertical-align: 1px;
}
.mk-kt-col { padding: 11px 14px; border-right: 1px solid #eef0f3; min-width: 0; }
.mk-kt-trend { padding: 11px 14px; min-width: 0; }
.mk-kt-tl {
  display: block;
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aeb4be;
  font-weight: 700;
  margin-bottom: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mk-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 78px;
}
.mk-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  height: 100%;
  min-width: 0;
}
.mk-bar i {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  color: #2b2f38;
  font-variant-numeric: tabular-nums;
}
.mk-bar b {
  width: 100%;
  height: calc(var(--h) - 26%);
  background: #2f64d6;
  opacity: 0.85;
  border-radius: 2px 2px 0 0;
}
.mk-bar u { text-decoration: none; font-size: 8px; color: #9aa1ad; }
.mk-kt-trend svg { width: 100%; height: 72px; display: block; }
.mk-trend-x {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
}
.mk-trend-x u { text-decoration: none; font-size: 8px; color: #9aa1ad; }

/* small KPI tiles */
.mk-kpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 11px 13px 13px;
}
.mk-kpi-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a92a0;
}
.mk-kpi-num {
  font-size: 23px;
  font-weight: 600;
  color: #0f1115;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.mk-kpi-delta {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
}
.mk-kpi-delta.up {
  color: #2d7d46;
  background: rgba(45, 125, 70, 0.09);
  border-left: 2px solid #2d7d46;
}
.mk-kpi-delta i { font-style: italic; font-weight: 400; color: #9aa1ad; }

/* horizontal bar chart tile (in-depth mockup) */
.mk-hbars {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 13px 14px 22px;
}
.mk-hbar {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  font-size: 9.5px;
}
.mk-hbar u {
  text-decoration: none;
  color: #46525e;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mk-hbar span {
  display: block;
  position: relative;
  height: 11px;
  background: #eef0f3;
  border-radius: 2px;
}
.mk-hbar span::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: #2f64d6;
  opacity: 0.82;
  border-radius: 2px;
}
.mk-hbar b { font-weight: 600; font-variant-numeric: tabular-nums; color: #2b2f38; }
.mk-goal-line {
  position: absolute;
  top: 8px;
  bottom: 20px;
  left: calc(92px + 10px + (100% - 92px - 42px - 48px) * 0.9);
  border-left: 1.5px dashed #b07d1c;
}
.mk-goal-line em {
  position: absolute;
  bottom: -14px;
  left: -28px;
  font-style: normal;
  font-size: 7.5px;
  font-weight: 600;
  color: #b07d1c;
  white-space: nowrap;
}

/* freshness bar */
.mk-fresh {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  background: #fff;
  border-top: 1px solid #e6e8ec;
  padding: 8px 18px;
  font-size: 9.5px;
  color: #697086;
}
.mk-fresh b { color: #1c1e24; font-weight: 600; font-variant-numeric: tabular-nums; }
.mk-fresh span { display: inline-flex; align-items: center; gap: 4px; }
.mk-fresh i {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #c4cad4;
}
.mk-fresh .live-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 0 2.5px rgba(34, 211, 238, 0.2);
  margin-right: 3px;
}

/* mini variant (product section) */
.mk-mini { font-size: 12px; }
.mk-mini .mk-pubhead { padding: 8px 14px; }
.mk-mini .mk-pubword { font-size: 11.5px; }
.mk-mini .mk-canvas { padding: 12px 14px; }
.mk-mini .mk-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ── Assessment: voice check-in ───────────────────── */

.mka {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  background: #fcf9f8;
  color: #1c1b1b;
  min-height: 316px;
}
.mka-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 24px 20px;
}
.mka-eyebrow {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #767683;
}
.mka-main h3 {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.32;
  color: #04006b;
  max-width: 300px;
  margin: 7px 0 16px;
}
.mka-coach {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mka-avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1e1f83, #04006b 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(4, 0, 107, 0.25);
}
.mka-avatar svg { filter: brightness(0) invert(1); opacity: 0.92; }
.mka-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 26px;
}
.mka-wave i {
  width: 3px;
  border-radius: 2px;
  background: #04006b;
  height: var(--amp, 60%);
  animation: mka-wave 1.15s ease-in-out infinite;
  animation-delay: var(--wd, 0ms);
}
.mka-wave i:nth-child(even) { background: #00677f; }
.mka-wave i:nth-child(1)  { --amp: 30%; --wd: 0ms; }
.mka-wave i:nth-child(2)  { --amp: 55%; --wd: 90ms; }
.mka-wave i:nth-child(3)  { --amp: 78%; --wd: 180ms; }
.mka-wave i:nth-child(4)  { --amp: 48%; --wd: 270ms; }
.mka-wave i:nth-child(5)  { --amp: 88%; --wd: 360ms; }
.mka-wave i:nth-child(6)  { --amp: 62%; --wd: 450ms; }
.mka-wave i:nth-child(7)  { --amp: 95%; --wd: 540ms; }
.mka-wave i:nth-child(8)  { --amp: 70%; --wd: 630ms; }
.mka-wave i:nth-child(9)  { --amp: 90%; --wd: 720ms; }
.mka-wave i:nth-child(10) { --amp: 52%; --wd: 810ms; }
.mka-wave i:nth-child(11) { --amp: 80%; --wd: 900ms; }
.mka-wave i:nth-child(12) { --amp: 44%; --wd: 990ms; }
.mka-wave i:nth-child(13) { --amp: 66%; --wd: 1080ms; }
.mka-wave i:nth-child(14) { --amp: 34%; --wd: 1170ms; }
@keyframes mka-wave {
  0%, 100% { height: 22%; }
  50% { height: var(--amp, 80%); }
}
@media (prefers-reduced-motion: reduce) {
  .mka-wave i { animation: none; }
}
.mka-status {
  font-size: 10.5px;
  font-style: italic;
  color: #767683;
  margin: 12px 0 16px;
}
.mka-input {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  max-width: 300px;
  background: #fff;
  border: 1px solid #e5e2e1;
  border-radius: 999px;
  padding: 6px 7px;
  box-shadow: 0 1px 4px rgba(28, 27, 27, 0.06);
  margin-top: auto;
}
.mka-mic, .mka-send {
  flex: none;
  width: 25px; height: 25px;
  border-radius: 50%;
  background: #04006b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.mka-field {
  flex: 1;
  text-align: left;
  font-size: 10.5px;
  color: #9a97a5;
}
.mka-rail {
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: #f6f3f2;
  border-left: 1px solid #e5e2e1;
  padding: 16px 15px 13px;
}
.mka-rail-h {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #04006b;
}
.mka-rail-sub { font-size: 9px; color: #767683; margin-top: -8px; }
.mka-topic {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.mka-topic-dot {
  flex: none;
  width: 21px; height: 21px;
  border-radius: 50%;
  border: 1.5px solid #c6c5d4;
  color: #767683;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mka-topic b { display: block; font-size: 10.5px; font-weight: 600; color: #04006b; }
.mka-topic u { text-decoration: none; font-size: 8.5px; color: #767683; }
.mka-topic.done .mka-topic-dot {
  background: #00d2ff;
  border-color: #00d2ff;
  color: #00566a;
}
.mka-topic.now .mka-topic-dot { border-color: #1e1f83; color: #1e1f83; }
.mka-topic.now u { color: #00677f; font-weight: 600; }
.mka-topic:not(.done):not(.now) { opacity: 0.45; }
.mka-rail-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #767683;
  font-variant-numeric: tabular-nums;
}
.mka-live { color: #00677f; font-weight: 700; }

/* ── School Finder: map explorer ──────────────────── */

.mkf {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  background: #f3f6f7;
  color: #16272e;
  min-height: 330px;
}
.mkf-panel {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #dae3e6;
  min-width: 0;
}
.mkf-panel-top {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #fff;
  border-bottom: 1px solid #dae3e6;
  padding: 11px 10px 10px;
}
.mkf-count { font-size: 11.5px; font-weight: 700; }
.mkf-search {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #dae3e6;
  border-radius: 9px;
  padding: 4px 4px 4px 9px;
}
.mkf-home { color: #db7833; font-size: 11px; }
.mkf-addr { flex: 1; font-size: 9.5px; color: #46606b; }
.mkf-find {
  background: #bc5411;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 7px;
}
.mkf-chips { display: flex; flex-wrap: wrap; gap: 4px; }
.mkf-chips span {
  font-size: 8.5px;
  font-weight: 600;
  color: #46606b;
  background: #fff;
  border: 1px solid #dae3e6;
  border-radius: 999px;
  padding: 3px 9px;
}
.mkf-chips .active {
  background: #f8e3d2;
  border-color: #f8e3d2;
  color: #9a4a12;
}
.mkf-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 9px;
  overflow: hidden;
}
.mkf-cartouche {
  position: relative;
  background: #fff;
  border: 2px solid #336172;
  border-radius: 10px;
  padding: 9px 11px 12px;
}
.mkf-cartouche::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid #8fb2be;
  border-radius: 6px;
  pointer-events: none;
}
.mkf-cart-h {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #24454f;
  margin-bottom: 4px;
}
.mkf-zoned {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4.5px 0;
  border-top: 1px solid #e9eff1;
}
.mkf-zoned:first-of-type { border-top: none; }
.mkf-zoned b { font-size: 10px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mkf-stop {
  flex: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #db7833;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mkf-badge {
  margin-left: auto;
  flex: none;
  font-size: 7.5px;
  font-weight: 700;
  color: #2e7d4f;
  background: rgba(46, 125, 79, 0.1);
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
}
.mkf-badge.alt { color: #9a4a12; background: #f8e3d2; }
.mkf-src {
  display: inline;
  margin-top: 7px;
  font-size: 7.5px;
  line-height: 1.7;
  color: #587280;
  background: linear-gradient(transparent 55%, rgba(255, 198, 90, 0.4) 55%);
}
.mkf-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(27, 51, 60, 0.1);
  padding: 8px;
}
.mkf-thumb {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 7px;
  background: linear-gradient(150deg, #dce8ec, #c3d6dd);
  color: #336172;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mkf-card-body { min-width: 0; }
.mkf-card-body b { display: block; font-size: 10.5px; font-weight: 600; }
.mkf-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8.5px;
  color: #46606b;
  margin-top: 1px;
}
.mkf-rating i.good,
.mkf-rating i.mid {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2e7d4f;
}
.mkf-rating i.mid { background: #8a6110; }
.mkf-meta { display: block; font-size: 8px; color: #587280; margin-top: 1px; }
.mkf-compare {
  margin-left: auto;
  align-self: flex-end;
  flex: none;
  font-size: 8.5px;
  font-weight: 700;
  color: #336172;
  white-space: nowrap;
}
.mkf-map { position: relative; min-height: 100%; }
.mkf-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mkf-key {
  position: absolute;
  right: 9px;
  bottom: 9px;
  background: #fff;
  font-size: 8px;
  font-weight: 600;
  color: #46606b;
  padding: 3px 9px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(27, 51, 60, 0.18);
}

/* ── mockup responsiveness ────────────────────────── */

@media (max-width: 720px) {
  .mk-pubnav { display: none; }
  .mk-kt { grid-template-columns: 150px minmax(0, 1fr); }
  .mk-kt-col { display: none; }
  .mk-grid, .mk-mini .mk-grid { grid-template-columns: 1fr 1fr; }
  .mk-kt-tile, .mk-chart-tile { grid-column: 1 / -1; }
  .mk-pubsite { display: none; }
  .mkf { grid-template-columns: minmax(0, 1fr); }
  .mkf-map { min-height: 150px; }
  .mkf-panel { border-right: none; border-bottom: 1px solid #dae3e6; }
  .mka { grid-template-columns: minmax(0, 1fr); }
  .mka-rail { border-left: none; border-top: 1px solid #e5e2e1; }
}
@media (max-width: 460px) {
  .mk-grid, .mk-mini .mk-grid { grid-template-columns: 1fr; }
  .mk-hbar { grid-template-columns: 76px minmax(0, 1fr) 40px; }
  .mk-goal-line { left: calc(76px + 10px + (100% - 76px - 40px - 48px) * 0.93); }
  .mk-fresh { gap: 7px; font-size: 9px; }
}

/* ─────────────────────────────────────────────────────────────
   Launch product proof
   These skins follow the three shipping local applications:
   Gateway boards, Assessment voice sessions, and School Finder.
   ───────────────────────────────────────────────────────────── */

/* Gateway board — customer-branded public analytics UI */
.mk-board {
  background: #f5f7fa;
  color: #172033;
  font-family: Arial, Helvetica, sans-serif;
}
.mk-pubhead {
  min-height: 48px;
  gap: 18px;
  padding: 8px 18px;
  background: #fff;
  border-bottom: 1px solid #e0e5ec;
  box-shadow: 0 1px 3px rgba(12, 28, 52, 0.07);
}
.mk-publogo {
  width: 21px;
  height: 21px;
  border-radius: 2px;
  background: linear-gradient(135deg, #125a8b 0 54%, #1e75bb 54%);
}
.mk-pubword { color: #132033; font-size: 12px; font-weight: 700; }
.mk-pubnav { gap: 22px; margin-left: 6px; }
.mk-pubnav span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 2px 0 0;
  color: #24324b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.055em;
}
.mk-pubnav .on {
  color: #126eb8;
  box-shadow: inset 0 -2px #1477c9;
}
.mk-pubsite { color: #092f54; font-weight: 700; }
.mk-avatar { background: #0e5f99; }
.mk-canvas { padding: 16px 18px 18px; }
.mk-mast h3 { color: #151c28; font-size: 16px; font-weight: 700; }
.mk-mast p { color: #596983; font-size: 10.5px; }
.mk-grid { gap: 11px; margin-top: 14px; }
.mk-tile {
  border: 1px solid #dfe5ec;
  border-top: 3px solid #1477c9;
  border-radius: 7px;
  box-shadow: 0 1px 2px rgba(13, 31, 55, 0.04);
}
.mk-kt-tile { border-top-width: 0; }
.mk-tile-head {
  padding: 9px 13px 8px;
  color: #fff;
  background: #1b4d73;
  border-bottom: 0;
}
.mk-tile-title { font-size: 11.5px; font-weight: 700; }
.mk-tile-sub { color: #d8e8f4; font-size: 8.5px; }
.mk-kt-spine {
  padding: 12px 14px;
  background: #eef3f7;
  border-color: #dce4eb;
}
.mk-kt-col,
.mk-kt-trend { padding: 12px 14px; }
.mk-kt-colh { color: #66758c; }
.mk-kt-num { color: #101927; font-size: 29px; font-weight: 700; }
.mk-kt-rule { border-color: #1477c9; }
.mk-kt-row { border-color: #d3dde7; }
.mk-bars { gap: 10px; }
.mk-bar b {
  background: linear-gradient(180deg, #1e78bd, #1263a4);
  opacity: 1;
  border-radius: 1px 1px 0 0;
}
.mk-kpi {
  min-height: 104px;
  padding: 12px 14px 14px;
  border-top-color: #1477c9;
}
.mk-kpi-label { color: #5b6a82; }
.mk-kpi-num { color: #121b29; font-size: 25px; font-weight: 700; }
.mk-kpi-delta.up {
  color: #1b7b4b;
  background: #e9f3ed;
  border-left-color: #24965d;
}
.mk-fresh {
  padding: 8px 18px;
  color: #64738b;
  background: #fff;
  border-color: #dde4ec;
}
.mk-fresh .live-dot { background: #1a9b62; box-shadow: 0 0 0 2.5px rgba(26,155,98,0.15); }

/* Assessment — the real cream / indigo / teal voice-session shell */
.mka {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 178px;
  min-height: 340px;
  padding-left: 38px;
  overflow: hidden;
  background: #fcf9f8;
  font-family: Inter, Arial, sans-serif;
}
.mka::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 38px;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 76px, #04006b 0 4px, transparent 4.5px),
    radial-gradient(circle at 50% 114px, #98a0ae 0 3px, transparent 3.5px),
    radial-gradient(circle at 50% 152px, #98a0ae 0 3px, transparent 3.5px),
    linear-gradient(#f0edec, #f6f3f2);
  border-right: 1px solid #e5e2e1;
}
.mka::after {
  content: '';
  position: absolute;
  z-index: 3;
  top: 62px;
  left: 4px;
  width: 30px;
  height: 28px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 7px rgba(4,0,107,0.09);
}
.mka-main {
  position: relative;
  padding: 24px 24px 20px;
  background:
    radial-gradient(circle at 52% 48%, rgba(0,210,255,0.055), transparent 26%),
    #fcf9f8;
}
.mka-eyebrow {
  color: #00677f;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.mka-main h3 {
  max-width: 330px;
  margin: 8px 0 15px;
  color: #04006b;
  font-family: Manrope, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.mka-avatar {
  width: 68px;
  height: 68px;
  background:
    radial-gradient(circle at 36% 28%, #3e3f9f, #04006b 68%);
  border: 6px solid rgba(255,255,255,0.86);
  box-shadow: 0 0 0 1px #e5e2e1, 0 10px 24px rgba(4,0,107,0.18);
}
.mka-wave i { width: 3px; background: #04006b; }
.mka-wave i:nth-child(even) { background: #00677f; }
.mka-status { margin: 8px 0 14px; color: #767683; }
.mka-input {
  max-width: 340px;
  padding: 7px;
  border-color: rgba(198,197,212,0.42);
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(28,27,27,0.07);
}
.mka-mic,
.mka-send { background: #04006b; border-radius: 8px; }
.mka-rail {
  gap: 12px;
  padding: 19px 16px 14px;
  background: #f6f3f2;
  border-left: 1px solid #e5e2e1;
}
.mka-rail-h { color: #767683; font-size: 8.5px; }
.mka-rail-sub { color: #999; }
.mka-topic {
  gap: 9px;
  padding: 7px 6px;
  border-radius: 9px;
}
.mka-topic.now { background: #fff; box-shadow: 0 3px 12px rgba(4,0,107,0.07); }
.mka-topic b { color: #04006b; }
.mka-topic.done .mka-topic-dot { background: #00d2ff; border-color: #00d2ff; }
.mka-topic.now .mka-topic-dot { border-color: #1e1f83; color: #1e1f83; }
.mka-live { color: #00677f; }

/* School Finder — map-first page with its real floating results panel */
.mkf {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  background: #eef2f3;
  font-family: 'Hanken Grotesk', Arial, sans-serif;
}
.mkf::before {
  content: '';
  position: absolute;
  z-index: 4;
  inset: 0 0 auto;
  height: 36px;
  background:
    radial-gradient(circle at calc(100% - 86px) 50%, transparent 0 5px, #d9e5e8 5.5px 6.5px, transparent 7px),
    linear-gradient(90deg, #2c5b6a, #2a5867);
  border-bottom: 2px solid #d87436;
}
.mkf-map {
  position: absolute;
  inset: 36px 0 0;
  min-height: 0;
  background: #edf1f2;
}
.mkf-map svg { filter: saturate(0.78) contrast(0.98); }
.mkf-panel {
  position: absolute;
  z-index: 3;
  top: 48px;
  bottom: 12px;
  left: 12px;
  width: min(47%, 260px);
  overflow: hidden;
  background: #f2f6f7;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(24,48,58,0.19);
}
.mkf-panel-top {
  gap: 8px;
  padding: 13px 11px 11px;
  background: #fff;
  border-color: #d9e2e5;
}
.mkf-count { color: #172a33; font-size: 11.5px; font-weight: 700; }
.mkf-search {
  min-height: 35px;
  padding: 4px 4px 4px 9px;
  background: #fff;
  border-color: #d3dee2;
  border-radius: 8px;
}
.mkf-home { color: #df7433; }
.mkf-find {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  background: #c95711;
  border-radius: 7px;
}
.mkf-chips { flex-wrap: nowrap; overflow: hidden; }
.mkf-chips span {
  color: #294652;
  border-color: #d3dee2;
  background: #fff;
  white-space: nowrap;
}
.mkf-chips .active {
  color: #245363;
  background: #eaf3f5;
  border-color: #c9dce1;
}
.mkf-list { gap: 9px; padding: 10px; background: #f2f6f7; }
.mkf-cartouche {
  padding: 10px 10px 12px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(28,52,61,0.09);
}
.mkf-cartouche::before { display: none; }
.mkf-cart-h { color: #284e5d; }
.mkf-zoned { gap: 5px; border-color: #e3eaec; }
.mkf-stop { background: #db7833; }
.mkf-badge { padding: 2px 4px; font-size: 6.8px; }
.mkf-card {
  padding: 8px;
  border: 1px solid #e2e8ea;
  box-shadow: 0 2px 8px rgba(27,51,60,0.08);
}
.mkf-thumb { background: linear-gradient(145deg, #dbe8eb, #bed4db); }
.mkf-compare {
  padding: 3px 6px;
  color: #2b5564;
  background: #e7eff2;
  border-radius: 999px;
}
.mkf-key {
  right: 10px;
  bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(27,51,60,0.16);
}

@media (max-width: 720px) {
  .mka { padding-left: 30px; }
  .mka::before { width: 30px; }
  .mka::after { left: 3px; width: 24px; }
  .mka-rail { border-top-color: #e5e2e1; }
  .mkf { min-height: 420px; }
  .mkf-panel {
    top: 47px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-width: 340px;
    border-bottom: 0;
  }
  .mkf-map { min-height: 0; }
}

@media (max-width: 460px) {
  .mk-pubhead { gap: 10px; padding-inline: 12px; }
  .mk-canvas { padding-inline: 12px; }
  .mka-main { padding-inline: 16px; }
  .mka { padding-left: 24px; }
  .mka::before { width: 24px; }
  .mka::after { left: 2px; width: 20px; }
  .mkf { min-height: 395px; }
}
