:root {
  --mpusd-navy: #173f5f;
  --mpusd-blue: #2e77a3;
  --mpusd-teal: #278a8f;
  --mpusd-green: #638d44;
  --mpusd-gold: #d8a43a;
  --ufg-forest: #243a2b;
  --ufg-leaf: #667f5b;
  --paper: #fbf7ed;
  --paper-warm: #f0e6d6;
  --white: #ffffff;
  --ink: #16212b;
  --ink-soft: #51606b;
  --ink-muted: #7b8790;
  --rule: rgba(22, 33, 43, 0.14);
  --shadow: 0 28px 70px -42px rgba(18, 31, 44, 0.46);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --nav-h: 46px;
  --container: 1220px;
  --gutter: 56px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(39, 138, 143, 0.12), transparent 44%),
    linear-gradient(24deg, rgba(216, 164, 58, 0.18), transparent 54%),
    var(--paper);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 12px 16px;
  color: var(--white);
  background: var(--mpusd-navy);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.deck-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: var(--nav-h);
  padding: 7px 18px 8px;
  color: var(--ink);
  background: rgba(251, 247, 237, 0.93);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(18px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--mpusd-navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-brand strong {
  min-width: 0;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--mpusd-teal), var(--mpusd-gold));
}

.nav-separator {
  width: 1px;
  height: 18px;
  background: var(--rule);
  flex: 0 0 auto;
}

.nav-actions {
  display: flex;
  gap: 8px;
}

.nav-actions button {
  border: 1px solid rgba(23, 63, 95, 0.22);
  border-radius: 8px;
  padding: 7px 12px;
  color: var(--mpusd-navy);
  background: rgba(255, 255, 255, 0.72);
  font: 900 10.5px/1 var(--font-body);
  text-transform: uppercase;
  cursor: pointer;
}

.nav-actions button:hover {
  color: var(--white);
  background: var(--mpusd-navy);
}

.progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--mpusd-teal), var(--mpusd-gold), var(--ufg-leaf));
  transition: width 220ms ease;
}

.deck {
  width: 100%;
}

.slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 30px) var(--gutter) 40px;
  overflow: hidden;
  isolation: isolate;
}

.slide-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.paper {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(240, 230, 214, 0.72)),
    var(--paper);
}

.blue {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 63, 95, 0.98), rgba(24, 92, 112, 0.94) 56%, rgba(35, 58, 43, 0.96)),
    var(--mpusd-navy);
}

.green {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(35, 58, 43, 0.97), rgba(61, 112, 90, 0.95) 54%, rgba(22, 69, 89, 0.96)),
    var(--ufg-forest);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 520;
  line-height: 1.04;
  overflow-wrap: break-word;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 64px;
}

h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 46px;
}

.blue h2,
.green h2,
.cover h1,
.close h2 {
  color: var(--white);
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.18;
}

p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.58;
}

.blue p,
.green p,
.cover p,
.close p {
  color: rgba(255, 255, 255, 0.82);
}

.lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.52;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mpusd-teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.gold,
.blue .eyebrow,
.green .eyebrow,
.close .eyebrow {
  color: #f2c96a;
}

.folio {
  position: absolute;
  right: 28px;
  bottom: 18px;
  z-index: 2;
  color: rgba(22, 33, 43, 0.52);
  font: 800 10px/1 var(--font-mono);
  text-transform: uppercase;
}

.folio.light {
  color: rgba(255, 255, 255, 0.72);
}

.cover-image,
.close-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/mpusd-hero-students.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.close-image {
  background-image: url("assets/mpusd-graduation.jpg");
}

.cover-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 35, 55, 0.94) 0%, rgba(17, 57, 83, 0.82) 50%, rgba(17, 48, 58, 0.42) 100%),
    linear-gradient(0deg, rgba(6, 22, 33, 0.54), transparent 44%);
}

.close-scrim {
  background:
    linear-gradient(90deg, rgba(9, 31, 48, 0.94) 0%, rgba(13, 56, 67, 0.72) 52%, rgba(10, 20, 24, 0.45) 100%),
    linear-gradient(0deg, rgba(5, 17, 24, 0.62), transparent 48%);
}

.cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  grid-template-rows: auto minmax(340px, auto);
  gap: 36px 42px;
  align-items: end;
}

.cover-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.prospect-mark {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 22px 34px 22px 28px;
  background:
    radial-gradient(circle at 19% 50%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62) 34%, rgba(255, 255, 255, 0.18) 72%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, rgba(248, 252, 251, 0.62), rgba(243, 248, 244, 0.28) 52%, rgba(243, 248, 244, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  box-shadow:
    0 34px 80px -48px rgba(4, 18, 28, 0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-mask-image: radial-gradient(ellipse 106% 92% at 34% 50%, #000 58%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse 106% 92% at 34% 50%, #000 58%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
}

.prospect-mark::before,
.prospect-mark::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.prospect-mark::before {
  inset: -28px -42px;
  z-index: -2;
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12) 36%, rgba(255, 255, 255, 0) 68%),
    radial-gradient(circle at 54% 46%, rgba(39, 138, 143, 0.18), rgba(39, 138, 143, 0) 60%);
  filter: blur(18px);
}

.prospect-mark::after {
  inset: 4px;
  z-index: -1;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.prospect-mark > img {
  width: 184px;
  height: auto;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 14px 26px rgba(7, 25, 38, 0.18))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.34));
  opacity: 0.96;
}

.prospect-meta {
  position: relative;
  padding-left: 24px;
  color: var(--mpusd-navy);
  text-transform: none;
}

.prospect-meta::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: rgba(23, 63, 95, 0.18);
}

.prospect-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--mpusd-teal);
  font: 900 10.5px/1.2 var(--font-mono);
  text-transform: uppercase;
}

.prospect-meta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mpusd-navy);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.02;
}

.prospect-meta p {
  margin: 0;
  color: var(--mpusd-navy);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.cover-stamp {
  align-self: flex-start;
  margin-top: 14px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 26, 40, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  text-transform: none;
}

.cover-stamp span {
  display: block;
  color: #f2c96a;
  font: 900 10px/1.2 var(--font-mono);
  text-transform: uppercase;
}

.cover-stamp p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.cover-copy {
  align-self: center;
}

.cover-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cover-pills li {
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.cover-contact,
.final-card {
  align-self: end;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 18px;
  color: var(--white);
  background: rgba(10, 38, 55, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cover-contact img,
.final-card img {
  width: 96px;
  height: 118px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
}

.brand-contact img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.cover-contact.amy-contact {
  grid-template-columns: 152px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.cover-contact.amy-contact img {
  width: 152px;
  height: 192px;
  object-fit: cover;
  object-position: center 15%;
}

.cover-contact.amy-contact strong {
  font-size: 27px;
}

.cover-contact.amy-contact p {
  max-width: 210px;
}

.cover-contact span,
.final-card span {
  display: block;
  margin-bottom: 5px;
  color: #f2c96a;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cover-contact strong,
.final-card strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.06;
}

.cover-contact p,
.final-card p {
  margin: 5px 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.cover-contact a,
.final-card a {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.split-grid,
.image-copy-grid,
.identity-grid,
.feature-grid,
.close-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: center;
}

.image-copy-grid {
  grid-template-columns: 470px minmax(0, 1fr);
}

.image-copy-grid.reverse {
  grid-template-columns: minmax(0, 1fr) 470px;
}

.feature-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.copy-panel {
  max-width: 760px;
}

.copy-panel p:last-child {
  margin-bottom: 0;
}

.signal-stack {
  display: grid;
  gap: 14px;
}

.signal-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signal-card.deep {
  color: var(--white);
  background: linear-gradient(135deg, var(--mpusd-navy), var(--mpusd-teal));
}

.signal-card.accent {
  border-color: rgba(216, 164, 58, 0.42);
  background: #fff8e7;
}

.signal-card span,
.territory-card span,
.model-grid span,
.service-grid article span,
.pilot-grid article span,
.workstream-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--mpusd-teal);
  font: 900 11px/1.2 var(--font-mono);
  text-transform: uppercase;
}

.signal-card.deep span {
  color: #f2c96a;
}

.signal-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mpusd-navy);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 650;
  line-height: 1;
}

.signal-card.deep strong {
  color: var(--white);
}

.signal-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.45;
}

.signal-card.deep p {
  color: rgba(255, 255, 255, 0.78);
}

.photo-frame,
.wide-photo,
.heritage-card,
.panorama {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-frame {
  min-height: 560px;
  background: var(--mpusd-navy);
}

.photo-frame.tall {
  min-height: 620px;
}

.photo-frame img,
.wide-photo img,
.heritage-card img,
.panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame img {
  position: absolute;
  inset: 0;
}

.photo-frame figcaption,
.heritage-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px;
  color: var(--white);
  background: rgba(12, 36, 52, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.fact-strip div,
.mini-grid div,
.compliance-grid div,
.territory-card,
.model-grid article,
.service-grid article,
.pilot-grid article {
  border-radius: 8px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.72);
}

.fact-strip div {
  padding: 16px;
}

.fact-strip strong,
.mini-grid strong,
.compliance-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mpusd-navy);
  font-size: 15px;
}

.fact-strip span,
.mini-grid span,
.compliance-grid span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.42;
}

.mpusd-watermark {
  position: absolute;
  right: -4vw;
  bottom: 5vh;
  z-index: 0;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--font-display);
  font-size: 230px;
  font-weight: 650;
  line-height: 1;
  pointer-events: none;
}

.section-heading {
  max-width: 930px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading h2 {
  max-width: 870px;
}

.blue .section-heading p,
.green .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.territory-grid,
.service-grid,
.model-grid,
.compliance-grid,
.pilot-grid {
  display: grid;
  gap: 16px;
}

.territory-grid {
  grid-template-columns: repeat(4, 1fr);
}

.territory-card {
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.territory-card span {
  color: #f2c96a;
}

.territory-card strong {
  display: block;
  min-height: 64px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.territory-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.48;
}

.identity-grid {
  grid-template-columns: 430px minmax(0, 1fr);
}

.identity-art {
  display: grid;
  gap: 16px;
}

.heritage-card {
  min-height: 430px;
}

.heritage-card img {
  position: absolute;
  inset: 0;
}

.heritage-card figcaption span {
  display: block;
  margin-bottom: 5px;
  color: #f2c96a;
  font: 900 10px/1 var(--font-mono);
  text-transform: uppercase;
}

.heritage-card figcaption strong {
  display: block;
  font-size: 15px;
}

.mbe-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mbe-card img {
  width: 74px;
}

.mbe-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--mpusd-teal);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.mbe-card strong {
  color: var(--mpusd-navy);
  font-size: 18px;
}

.identity-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 28px 0 0;
}

.identity-ledger div {
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--rule);
  border-radius: 8px;
}

.identity-ledger dt {
  margin-bottom: 5px;
  color: var(--mpusd-navy);
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 650;
  line-height: 1;
}

.identity-ledger dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.28;
}

.service-menu {
  background:
    linear-gradient(120deg, rgba(216, 164, 58, 0.2), transparent 38%),
    linear-gradient(310deg, rgba(39, 138, 143, 0.18), transparent 44%),
    var(--paper);
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid article,
.model-grid article,
.pilot-grid article {
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-grid article span,
.pilot-grid article span {
  color: var(--mpusd-gold);
}

.service-grid h3,
.model-grid h3,
.pilot-grid h3 {
  color: var(--mpusd-navy);
}

.service-grid p,
.model-grid p,
.pilot-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.52;
}

.custodial {
  background:
    linear-gradient(145deg, rgba(99, 141, 68, 0.16), transparent 44%),
    var(--paper);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.48;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid var(--mpusd-teal);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.wide-photo {
  min-height: 500px;
}

.wide-photo::after,
.panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 28, 38, 0.38), transparent 54%);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.mini-grid div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.mini-grid strong {
  color: var(--white);
}

.mini-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.maintenance {
  background:
    linear-gradient(130deg, rgba(46, 119, 163, 0.16), transparent 42%),
    var(--paper);
}

.workstream-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.workstream-list div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--rule);
  border-radius: 8px;
}

.workstream-list strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.42;
}

.dashboard-card {
  padding: 26px;
  background:
    linear-gradient(140deg, rgba(23, 63, 95, 0.98), rgba(39, 138, 143, 0.92)),
    var(--mpusd-navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dashboard-top span {
  color: #f2c96a;
  font: 900 11px/1.2 var(--font-mono);
  text-transform: uppercase;
}

.dashboard-top strong {
  max-width: 170px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  text-align: right;
}

.dashboard-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 22px;
}

.dashboard-card dl div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.dashboard-card dt {
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 650;
  line-height: 1;
}

.dashboard-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.dashboard-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.operations {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(240, 230, 214, 0.94)),
    var(--paper);
}

.model-grid {
  grid-template-columns: repeat(4, 1fr);
}

.model-grid article span {
  color: var(--mpusd-teal);
}

.panorama {
  height: 190px;
  margin-top: 22px;
}

.panorama img {
  object-position: center 54%;
}

.org-card {
  display: grid;
  gap: 14px;
  color: var(--white);
}

.org-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.org-node {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.org-node.district {
  background: rgba(255, 255, 255, 0.16);
}

.org-node span {
  display: block;
  margin-bottom: 8px;
  color: #f2c96a;
  font: 900 11px/1.2 var(--font-mono);
  text-transform: uppercase;
}

.org-node strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.org-path {
  width: 2px;
  height: 26px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.34);
}

.compliance {
  background:
    linear-gradient(135deg, rgba(23, 63, 95, 0.1), transparent 42%),
    linear-gradient(315deg, rgba(216, 164, 58, 0.18), transparent 50%),
    var(--paper);
}

.compliance-grid {
  grid-template-columns: repeat(3, 1fr);
}

.compliance-grid div {
  padding: 22px;
  box-shadow: var(--shadow);
}

.pilot {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 44, 68, 0.96), rgba(33, 96, 100, 0.94)),
    url("assets/site-audit.jpg") center / cover;
}

.pilot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(8, 28, 38, 0.72);
}

.pilot h2,
.pilot h3 {
  color: var(--white);
}

.pilot .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.pilot-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pilot-grid article {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.pilot-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.ask-band {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 22px;
  color: var(--white);
  background: rgba(216, 164, 58, 0.18);
  border: 1px solid rgba(242, 201, 106, 0.34);
  border-radius: 8px;
}

.ask-band strong {
  color: #f2c96a;
  font: 900 12px/1 var(--font-mono);
  text-transform: uppercase;
}

.ask-band span {
  font-size: 17px;
  font-weight: 800;
}

.team {
  background:
    linear-gradient(130deg, rgba(39, 138, 143, 0.13), transparent 42%),
    var(--paper);
}

.team .section-heading {
  margin-bottom: 24px;
}

.people-grid {
  display: grid;
  grid-template-columns: 0.96fr 1fr 1fr;
  gap: 20px;
}

.person-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.person-card img {
  width: 100%;
  height: 318px;
  object-fit: cover;
  object-position: center 22%;
  background: rgba(23, 63, 95, 0.08);
}

.person-card.amy img {
  height: 318px;
  object-position: center 12%;
}

.person-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.person-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--mpusd-teal);
  font: 900 11px/1.2 var(--font-mono);
  text-transform: uppercase;
}

.person-card.amy span {
  color: var(--mpusd-gold);
}

.person-card h3 {
  margin-bottom: 4px;
  color: var(--mpusd-navy);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 650;
  line-height: 1.05;
}

.person-card p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.42;
}

.person-card p.role {
  margin-bottom: 12px;
  color: var(--mpusd-navy);
  font-size: 14px;
  font-weight: 800;
}

.person-card p:last-child {
  margin-bottom: 0;
}

.team-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 14px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--rule);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.team-note img {
  width: 150px;
}

.team-note p {
  margin: 0;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.42;
}

.team-note p strong {
  color: var(--mpusd-navy);
  font-weight: 900;
}

.close-grid {
  grid-template-columns: minmax(0, 1fr) 430px;
}

.close h2 {
  max-width: 820px;
  font-size: 56px;
}

.close article p {
  max-width: 700px;
  font-size: 18px;
}

.close-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.close-logos img {
  max-width: 140px;
  max-height: 74px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
}

.close-logos img:last-child {
  max-width: 180px;
  max-height: 62px;
}

.close-logos span {
  color: rgba(255, 255, 255, 0.72);
  font: 900 18px/1 var(--font-mono);
}

.final-card {
  grid-template-columns: 112px 1fr;
  align-self: center;
  padding: 20px;
}

.final-card img {
  width: 112px;
  height: 138px;
}

.final-card.brand-contact img {
  padding: 24px;
}

.final-card.amy-contact {
  grid-template-columns: 136px 1fr;
  align-items: center;
}

.final-card.amy-contact img {
  width: 136px;
  height: 172px;
  object-fit: cover;
  object-position: center 15%;
}

.final-card p {
  margin-top: 10px;
  margin-bottom: 0;
}

@media screen and (max-width: 1160px) {
  :root {
    --gutter: 34px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 39px;
  }

  .cover-grid,
  .split-grid,
  .image-copy-grid,
  .image-copy-grid.reverse,
  .identity-grid,
  .feature-grid,
  .close-grid {
    grid-template-columns: 1fr;
  }

  .cover-contact,
  .final-card {
    width: min(100%, 430px);
    align-self: start;
  }

  .photo-frame,
  .photo-frame.tall,
  .wide-photo {
    min-height: 390px;
  }

  .territory-grid,
  .service-grid,
  .model-grid,
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .people-grid,
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .person-card,
  .person-card.amy {
    display: grid;
    grid-template-columns: 240px 1fr;
  }

  .person-card img,
  .person-card.amy img {
    height: 100%;
    min-height: 260px;
  }

  .prospect-mark > img {
    width: 142px;
  }

  .prospect-meta strong {
    font-size: 24px;
  }
}

@media screen and (max-width: 760px) {
  :root {
    --gutter: 18px;
  }

  .deck-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-actions {
    overflow-x: auto;
  }

  .slide {
    padding-top: calc(var(--nav-h) + 78px);
  }

  h1 {
    font-size: 39px;
  }

  h2,
  .close h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 17px;
  }

  p {
    font-size: 15px;
  }

  .cover-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .prospect-mark {
    width: 100%;
    gap: 18px;
    padding: 16px 18px;
  }

  .prospect-mark > img {
    width: 118px;
  }

  .prospect-meta {
    padding-left: 18px;
  }

  .prospect-meta strong {
    font-size: 22px;
  }

  .cover-stamp {
    margin-top: 4px;
  }

  .cover-contact,
  .final-card,
  .mbe-card,
  .team-note,
  .person-card,
  .person-card.amy {
    grid-template-columns: 1fr;
  }

  .cover-contact img,
  .final-card img {
    width: 120px;
    height: 140px;
  }

  .cover-contact.amy-contact img,
  .final-card.amy-contact img {
    width: 148px;
    height: 184px;
  }

  .fact-strip,
  .territory-grid,
  .service-grid,
  .mini-grid,
  .model-grid,
  .dashboard-card dl,
  .compliance-grid,
  .pilot-grid,
  .org-row,
  .identity-ledger {
    grid-template-columns: 1fr;
  }

  .photo-frame,
  .photo-frame.tall,
  .wide-photo,
  .heritage-card {
    min-height: 320px;
  }

  .mpusd-watermark {
    display: none;
  }

  .ask-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .person-card img,
  .person-card.amy img {
    height: 280px;
  }

  .folio {
    right: 18px;
    bottom: 14px;
  }
}

@media print {
  @page {
    size: 16in 9in;
    margin: 0;
  }

  html,
  body {
    width: 16in;
    background: var(--paper);
  }

  .deck-nav,
  .skip-link {
    display: none !important;
  }

  .slide {
    width: 16in;
    min-height: 9in;
    padding: 0.55in 0.68in 0.42in;
    page-break-after: always;
    break-after: page;
    overflow: hidden;
  }

  .slide-inner {
    max-width: 14.6in;
  }

  h1 {
    font-size: 56pt;
  }

  h2,
  .close h2 {
    font-size: 39pt;
  }

  p,
  .check-list li {
    font-size: 12pt;
  }

  .folio {
    bottom: 0.18in;
    right: 0.32in;
  }
}
