@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400..700;1,6..72,400..700&family=Nunito+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --sb-orange: #ff6b30;
  --sb-orange-soft: #ffe2d4;
  --sb-slate: #324158;
  --sb-slate-deep: #232e40;
  --sb-aqua: #00abc4;
  --sb-aqua-soft: #e0f4f7;
  --sb-lavender: #eae6f2;
  --sb-cream: #fff8f1;
  --sb-white: #ffffff;
  --sb-ink: #14202f;
  --sb-muted: rgba(50, 65, 88, 0.68);
  --sb-line: rgba(50, 65, 88, 0.12);
  --shadow: 0 28px 80px rgba(35, 46, 64, 0.16);
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Nunito Sans", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 171, 196, 0.18), transparent 26rem),
    radial-gradient(circle at 92% 12%, rgba(255, 107, 48, 0.16), transparent 24rem),
    linear-gradient(135deg, #f7fbfc 0%, #fff8f1 50%, #f0edf7 100%);
  color: var(--sb-ink);
  font-family: var(--sans);
}

a {
  color: inherit;
}

.deck-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(50, 65, 88, 0.12);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.topbar strong,
.nav-count,
.nav-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar strong {
  color: var(--sb-slate);
}

.topbar strong::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  background: var(--sb-orange);
  clip-path: polygon(50% 0, 62% 33%, 98% 35%, 69% 56%, 79% 92%, 50% 72%, 21% 92%, 31% 56%, 2% 35%, 38% 33%);
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--sb-muted);
}

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

.nav-actions button,
.print-link {
  border: 1px solid var(--sb-line);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--sb-white);
  color: var(--sb-slate);
  font: 800 10px/1 var(--sans);
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-actions button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.slide {
  position: relative;
  isolation: isolate;
  width: min(1260px, calc(100vw - 48px));
  min-height: min(760px, calc(100vh - 44px));
  margin: 28px auto;
  scroll-margin-top: 78px;
  overflow: hidden;
  border: 1px solid rgba(50, 65, 88, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(42px, 5.2vw, 76px);
}

.slide > *:not(.ghost) {
  position: relative;
  z-index: 2;
}

.slide--cream {
  background: linear-gradient(135deg, var(--sb-cream), #ffffff 74%);
}

.slide--white {
  background: linear-gradient(135deg, #ffffff, #f8fdff);
}

.slide--lavender {
  background: linear-gradient(135deg, var(--sb-lavender), #ffffff 72%);
}

.slide--dark {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 107, 48, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--sb-slate-deep), #172133);
  color: var(--sb-cream);
}

.slide--dark .lede,
.slide--dark p,
.slide--dark .micro,
.slide--dark .prepared-meta {
  color: rgba(255, 248, 241, 0.76);
}

.cover {
  min-height: calc(100vh - 68px);
  background:
    linear-gradient(90deg, rgba(20, 32, 47, 0.94) 0%, rgba(35, 46, 64, 0.78) 42%, rgba(35, 46, 64, 0.16) 100%),
    radial-gradient(circle at 26% 74%, rgba(255, 107, 48, 0.24), transparent 28rem),
    url("assets/starbright-campus.png") right center / contain no-repeat,
    linear-gradient(135deg, var(--sb-slate-deep), #41516a);
  color: var(--sb-cream);
}

.cover .logo-row {
  margin-bottom: clamp(48px, 7vw, 92px);
}

.cover h1 {
  max-width: 14ch;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  font-weight: 480;
}

.cover .kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 248, 241, 0.78);
  margin-bottom: 22px;
}

.cover .kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--sb-orange);
}

.cover .lede {
  color: rgba(255, 248, 241, 0.92);
  margin-top: 22px;
}

.cover .prepared-label,
.cover .prepared-meta {
  color: rgba(255, 248, 241, 0.76);
}

.cover .logo-row .brand-lockup.right {
  position: relative;
  min-width: clamp(270px, 27vw, 360px);
  padding: 18px 20px 16px 30px;
}

.cover .logo-row .brand-lockup.right::before {
  content: "";
  position: absolute;
  inset: -14px -18px -14px -44px;
  z-index: -1;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(20, 32, 47, 0.12), rgba(20, 32, 47, 0.78) 34%, rgba(20, 32, 47, 0.92) 100%),
    radial-gradient(circle at 78% 44%, rgba(0, 171, 196, 0.22), transparent 68%);
  box-shadow: 0 18px 56px rgba(20, 32, 47, 0.18);
  backdrop-filter: blur(8px);
}

.logo-row,
.slide-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.slide-head {
  padding-bottom: 22px;
  margin-bottom: clamp(38px, 5vw, 72px);
  border-bottom: 1px solid var(--sb-line);
}

.slide--dark .slide-head {
  border-bottom-color: rgba(255, 248, 241, 0.16);
}

.brand-lockup {
  display: grid;
  gap: 9px;
}

.brand-lockup.right {
  justify-items: end;
  text-align: right;
}

.micro,
.kicker,
.prepared-label,
.prepared-meta,
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.micro,
.prepared-label,
.prepared-meta {
  color: var(--sb-muted);
}

.slide--dark .micro,
.slide--dark .prepared-label,
.slide--dark .prepared-meta {
  color: rgba(255, 248, 241, 0.58);
}

.starbright-logo {
  display: block;
  width: auto;
  height: clamp(34px, 3.4vw, 44px);
  object-fit: contain;
}

.ufg-logo {
  display: block;
  width: auto;
  height: clamp(24px, 2.25vw, 30px);
  object-fit: contain;
}

.cover .ufg-logo,
.slide--dark .ufg-logo {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.022em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(48px, 5.6vw, 72px);
  line-height: 1.0;
}

h2 {
  max-width: 14ch;
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.014em;
}

.lede {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--sb-muted);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 700;
  line-height: 1.42;
}

.narrow {
  max-width: 620px;
}

.cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

.meta-strip,
.metric-row,
.card-grid,
.two-col,
.team-grid,
.cta-grid,
.stats-row,
.schedule-table,
.internal-grid {
  display: grid;
  gap: 18px;
}

.meta-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid rgba(255, 248, 241, 0.18);
  padding-top: 22px;
}

.meta-strip strong,
.meta-strip span {
  display: block;
}

.meta-strip strong {
  color: var(--sb-cream);
  font-family: var(--serif);
  font-size: 21px;
}

.meta-strip span {
  margin-top: 5px;
  color: rgba(255, 248, 241, 0.7);
  font-weight: 700;
}

.program-card {
  align-self: stretch;
  padding: 28px;
  border: 1px solid rgba(255, 248, 241, 0.2);
  border-radius: 24px;
  background: rgba(20, 32, 47, 0.46);
  box-shadow: 0 18px 42px rgba(20, 32, 47, 0.28);
  backdrop-filter: blur(14px);
}

.program-card h3 {
  color: var(--sb-cream);
}

.program-card .lede {
  color: rgba(255, 248, 241, 0.88);
}

.program-card .starbright-logo {
  height: 58px;
  margin-bottom: 32px;
}

.chip-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.chip {
  border: 1px solid rgba(255, 248, 241, 0.2);
  border-radius: 14px;
  padding: 13px 14px;
  font-weight: 900;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.metric-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

#the-moment .slide-head {
  margin-bottom: clamp(24px, 3vw, 42px);
}

#the-moment h2 {
  max-width: 18ch;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.02;
}

#the-moment .lede {
  max-width: 820px;
}

#the-moment .metric-row {
  margin-top: 32px;
}

.metric-card,
.card,
.team-card,
.cta-card,
.internal-card {
  border: 1px solid var(--sb-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.metric-card {
  min-height: 132px;
  padding: 20px 22px;
  border-top: 5px solid var(--sb-orange);
}

.metric-card:nth-child(even) {
  border-top-color: var(--sb-aqua);
}

.metric-card strong,
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 48px);
  font-style: italic;
  font-weight: 620;
  line-height: 0.94;
}

.metric-card strong {
  overflow: hidden;
  font-size: clamp(26px, 2.25vw, 34px);
  font-style: normal;
  font-weight: 540;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card span {
  display: block;
  margin-top: 16px;
  color: var(--sb-muted);
  font-weight: 800;
  line-height: 1.35;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.card {
  padding: clamp(22px, 2.3vw, 32px);
  box-shadow: 0 12px 36px rgba(50, 65, 88, 0.08);
}

.card.accent-orange {
  border-left: 5px solid var(--sb-orange);
}

.card.accent-aqua {
  border-left: 5px solid var(--sb-aqua);
}

.card p,
.internal-card p,
.team-card p {
  margin: 14px 0 0;
  color: var(--sb-muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.48;
}

.two-col {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  margin-top: 42px;
}

.stats-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 50px;
}

.stat {
  border-top: 1px solid rgba(255, 248, 241, 0.18);
  padding-top: 24px;
}

.stat strong {
  color: var(--sb-cream);
  font-size: clamp(46px, 5vw, 82px);
}

.stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 248, 241, 0.7);
  font-weight: 800;
  line-height: 1.35;
}

.schedule-table {
  margin-top: 42px;
  border: 1px solid var(--sb-line);
  border-radius: 20px;
  overflow: hidden;
}

.schedule-row {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 0.95fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.62);
}

.schedule-row:nth-child(2) {
  background: var(--sb-cream);
}

.schedule-row > * {
  padding: 18px 20px;
  border-bottom: 1px solid var(--sb-line);
  color: var(--sb-muted);
  font-weight: 750;
  line-height: 1.4;
}

.schedule-row:last-child > * {
  border-bottom: 0;
}

.schedule-row.header > * {
  background: var(--sb-slate);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.schedule-row strong {
  color: var(--sb-slate);
}

.list-block {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.list-block li,
.star-list li {
  margin: 0;
  padding-left: 8px;
  color: var(--sb-muted);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.42;
}

.star-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 15px;
}

.star-list li {
  position: relative;
  padding-left: 34px;
  color: inherit;
}

.star-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 17px;
  height: 17px;
  background: var(--sb-orange);
  clip-path: polygon(50% 0, 62% 33%, 98% 35%, 69% 56%, 79% 92%, 50% 72%, 21% 92%, 31% 56%, 2% 35%, 38% 33%);
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 48px;
  width: 2px;
  height: calc(100% + 18px);
  background: var(--sb-orange-soft);
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sb-orange);
  color: #fff;
  font: 800 18px/1 var(--serif);
}

.timeline-copy {
  padding: 14px 0 0;
  color: var(--sb-muted);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.42;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.team-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.team-card img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  border: 5px solid var(--sb-white);
  box-shadow: 0 16px 40px rgba(50, 65, 88, 0.18);
}

.team-card img[alt="Letty Miranda"] {
  object-position: center center;
}

.team-card h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 11px;
  border-radius: 999px;
  background: var(--sb-orange);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 15px;
}

.contact-links a {
  color: var(--sb-slate);
  font-weight: 900;
}

.cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.cta-card {
  display: block;
  min-height: 190px;
  padding: 30px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 40%),
    var(--sb-orange);
  box-shadow: 0 22px 56px rgba(255, 107, 48, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 40%),
    var(--sb-aqua);
  box-shadow: 0 22px 56px rgba(0, 171, 196, 0.22);
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(255, 107, 48, 0.28);
}

.cta-card span {
  display: block;
}

.cta-card .time {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.cta-card .note {
  margin-top: 16px;
  font-weight: 800;
  opacity: 0.82;
}

.reply-line {
  margin: 26px 0 0;
  color: var(--sb-muted);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.reply-line a {
  color: var(--sb-slate);
  text-decoration-color: var(--sb-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.ghost {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.ghost-star {
  width: clamp(360px, 52vw, 760px);
  opacity: 0.08;
}

.ghost-ufg {
  width: clamp(420px, 54vw, 760px);
  opacity: 0.06;
  filter: brightness(0) invert(1);
}

.cover .ghost-star {
  right: -13%;
  bottom: -20%;
  opacity: 0.12;
}

#why-now .ghost-star,
#next-step .ghost-star {
  right: -12%;
  bottom: -18%;
  opacity: 0.075;
}

#walk .ghost-star {
  right: -10%;
  top: -22%;
  opacity: 0.06;
}

#track-record .ghost-ufg {
  left: -10%;
  bottom: -20%;
}

#why-ufg .ghost-ufg,
#internal-risks .ghost-ufg {
  right: -12%;
  top: -20%;
}

.dot-field::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image: radial-gradient(circle, rgba(0, 171, 196, 0.22) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(115deg, transparent 0 32%, #000 48%, transparent 78%);
}

.internal-banner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  padding: 9px 22px 9px 48px;
  background: var(--sb-slate-deep);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.internal-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 100%;
  background: var(--sb-orange);
}

.is-internal .slide {
  padding-top: clamp(62px, 6.6vw, 94px);
}

#internal-cover h1 {
  max-width: 18ch;
  font-size: clamp(44px, 5.4vw, 70px);
  line-height: 0.98;
}

#internal-cover .slide-head {
  margin-bottom: clamp(20px, 3vw, 36px);
}

#internal-cover .slide-head .brand-lockup:first-child .prepared-label {
  display: none;
}

#internal-cover .lede {
  margin-top: 14px;
}

#internal-cover .stats-row {
  gap: clamp(20px, 2.6vw, 34px);
  margin-top: clamp(24px, 3vw, 36px);
}

#internal-cover .stat strong {
  font-size: clamp(34px, 4.1vw, 56px);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

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

.internal-card {
  padding: 24px;
}

.internal-card .tag {
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--sb-orange-soft);
  color: var(--sb-slate);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.table {
  margin-top: 38px;
  border: 1px solid var(--sb-line);
  border-radius: 18px;
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.table-row > * {
  padding: 18px 20px;
  border-bottom: 1px solid var(--sb-line);
  color: var(--sb-muted);
  font-weight: 760;
  line-height: 1.42;
}

.table-row:last-child > * {
  border-bottom: 0;
}

.table-row > :first-child {
  color: var(--sb-slate);
  font-weight: 900;
}

@media (max-width: 900px) {
  .slide {
    width: min(100vw - 24px, 820px);
    padding: 40px 32px;
  }

  .cover-grid,
  .two-col,
  .team-grid,
  .cta-grid,
  .internal-grid {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .stats-row,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-card {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-meta {
    width: 100%;
    justify-content: space-between;
  }

  .slide {
    width: calc(100vw - 18px);
    min-height: auto;
    margin: 14px auto;
    scroll-margin-top: 96px;
    border-radius: 18px;
    padding: 30px 22px 38px;
  }

  .is-internal .slide {
    padding-top: 58px;
  }

  .cover {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(20, 32, 47, 0.95), rgba(35, 46, 64, 0.82)),
      url("assets/starbright-campus.png") center bottom / 140% auto no-repeat,
      var(--sb-slate-deep);
  }

  .cover .logo-row {
    margin-bottom: 24px;
    gap: 14px;
  }

  .cover .logo-row .brand-lockup.right {
    min-width: 0;
    padding: 16px 18px;
  }

  .cover .logo-row .brand-lockup.right::before {
    inset: -10px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(20, 32, 47, 0.82), rgba(20, 32, 47, 0.5));
  }

  .logo-row,
  .slide-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .brand-lockup.right {
    justify-items: start;
    text-align: left;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.02;
  }

  .cover h1 {
    max-width: 14ch;
    font-size: clamp(32px, 8.4vw, 42px);
    line-height: 1.06;
  }

  h2 {
    max-width: 13ch;
    font-size: clamp(30px, 8.5vw, 40px);
    line-height: 1.04;
  }

  .lede {
    font-size: 17px;
  }

  .cover .lede {
    margin-top: 14px;
    font-size: 16px;
  }

  .metric-card strong {
    white-space: normal;
  }

  .internal-banner {
    padding: 8px 12px 8px 28px;
    overflow: hidden;
    font-size: 8px;
    letter-spacing: 0.13em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .internal-banner::before {
    width: 8px;
  }

  .program-card {
    padding: 22px;
  }

  .program-card .starbright-logo {
    height: 44px;
    margin-bottom: 18px;
  }

  #internal-cover .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .meta-strip,
  .metric-row,
  .stats-row,
  .card-grid,
  .chip-row {
    grid-template-columns: 1fr;
  }

  .schedule-row {
    grid-template-columns: 1fr;
  }

  .schedule-row > * {
    border-bottom: 1px solid var(--sb-line);
  }

  .team-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .team-card img {
    width: 96px;
    height: 96px;
  }

  .ghost-star,
  .ghost-ufg {
    width: 320px;
    opacity: 0.045;
  }

  .cover .ghost-star,
  #why-now .ghost-star,
  #next-step .ghost-star {
    right: -34%;
    bottom: -12%;
  }
}

@media print {
  body {
    background: #fff;
  }

  .topbar {
    display: none;
  }

  .deck-shell {
    padding-bottom: 0;
  }

  .slide {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    page-break-after: always;
    print-color-adjust: exact;
  }
}
