*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-950: #021a10;
  --green-900: #052e1c;
  --green-800: #0f5132;
  --green-700: #146c43;
  --green-100: #e8f3ed;
  --gold: #c9a227;
  --gold-bright: #e8c547;
  --gold-deep: #9a7b1a;
  --copper: #b87333;
  --bg: #eef1ef;
  --surface: #ffffff;
  --text: #0f1a14;
  --text-secondary: #3d4a42;
  --text-muted: #5c6b62;
  --border: #cdd8d1;
  --header-h: 76px;
  --footer-h: 46px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slide: cubic-bezier(0.25, 0.8, 0.25, 1);
  --slide-transition: 950ms;
  --kiosk-body: 1.0625rem;
  --kiosk-small: 0.9375rem;
  --kiosk-caption: 0.875rem;
  --lc-navy: #1a2b48;
  --lc-blue: #1565a8;
  --lc-sky: #2080c8;
  --lc-teal: #00a9ce;
  --lc-deep: #1a4a72;
  --lc-pale: #e8f2fa;
  --lc-mist: #f4f8fc;
  --lc-line: #b8d4ec;
  --lc-ink: #1a3a5c;
  --lc-muted: #4a6278;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 118.75%;
  -webkit-font-smoothing: antialiased;
}

/* ── Chrome ── */
.chrome-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: linear-gradient(90deg, var(--green-950) 0%, var(--green-900) 60%, var(--green-800) 100%);
  border-bottom: 4px solid var(--gold-bright);
  z-index: 200;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.chrome-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.chrome-header__identity {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

.chrome-header__logo {
  display: block;
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.chrome-header__state {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  line-height: 1.2;
}

.chrome-header__ministry {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
}

.chrome-header__event {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
  max-width: 300px;
  line-height: 1.45;
}

.chrome-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-h);
  background: var(--green-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 200;
}

.chrome-footer__web {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.chrome-footer__counter {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.qr-float {
  position: fixed;
  right: 1.5rem;
  bottom: calc(var(--footer-h) + 16px);
  z-index: 250;
  width: 11rem;
  padding: 0.625rem;
  background: #fff;
  border-radius: 12px;
  border: 3px solid var(--gold-bright);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.qr-float__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

body.is-paused .progress-track__fill {
  animation-play-state: paused;
}

.progress-track {
  position: fixed;
  bottom: var(--footer-h);
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 200;
}

.progress-track__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
  transition: width var(--slide-transition) var(--ease-slide);
  box-shadow: 0 0 12px rgba(232, 197, 71, 0.5);
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ── Slides ── */
.app {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  bottom: calc(var(--footer-h) + 4px);
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(32px);
  filter: blur(4px);
  transition:
    opacity var(--slide-transition) var(--ease-slide),
    transform var(--slide-transition) var(--ease-slide),
    filter calc(var(--slide-transition) * 0.9) var(--ease-slide),
    visibility var(--slide-transition);
  background: var(--bg);
  overflow: hidden;
  z-index: 1;
  will-change: opacity, transform, filter;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
  z-index: 3;
}

.slide.is-exiting {
  opacity: 0;
  visibility: visible;
  transform: translateY(-24px) scale(0.992);
  filter: blur(5px);
  z-index: 2;
  pointer-events: none;
}

.slide.is-entering {
  z-index: 3;
}

.slide__bg-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 40%, rgba(201, 162, 39, 0.04) 40%, rgba(201, 162, 39, 0.04) 41%, transparent 41%),
    linear-gradient(225deg, transparent 55%, rgba(15, 81, 50, 0.06) 55%);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active .slide__bg-accent {
  opacity: 1;
}

.slide--impact {
  background: linear-gradient(145deg, var(--green-950) 0%, var(--green-900) 45%, #0a3d28 100%);
  color: #ffffff;
}

.slide--impact .slide__bg-accent {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(232, 197, 71, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 5% 90%, rgba(20, 108, 67, 0.3) 0%, transparent 50%);
  opacity: 1;
}

.slide__header {
  position: relative;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--border);
}

.slide__header--center {
  text-align: center;
}

.slide__header--center .slide__intro,
.slide__header--center .slide__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.slide__header--impact {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.slide__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: var(--green-100);
}

.slide__header--impact .slide__label {
  color: var(--gold-bright);
  background: rgba(232, 197, 71, 0.12);
}

.slide__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--green-900);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.slide__header--impact .slide__headline {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide__intro,
.slide__subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 48rem;
  line-height: 1.65;
}

.slide__header--impact .slide__intro,
.slide__header--impact .slide__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.slide__theme-banner {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-800);
  margin: -0.5rem auto 1.25rem;
  max-width: 52rem;
  line-height: 1.3;
}

.slide__established {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
}

.slide.is-playing .reveal {
  animation: revealUp 0.9s var(--ease-out) forwards;
}

.stagger .reveal:nth-child(1) { animation-delay: 0.08s; }
.stagger .reveal:nth-child(2) { animation-delay: 0.16s; }
.stagger .reveal:nth-child(3) { animation-delay: 0.24s; }
.stagger .reveal:nth-child(4) { animation-delay: 0.32s; }
.stagger .reveal:nth-child(5) { animation-delay: 0.4s; }
.stagger .reveal:nth-child(6) { animation-delay: 0.48s; }

.slide.is-playing .slide__header .reveal:nth-child(1) { animation-delay: 0.05s; }
.slide.is-playing .slide__header .reveal:nth-child(2) { animation-delay: 0.12s; }
.slide.is-playing .slide__header .reveal:nth-child(3) { animation-delay: 0.19s; }

.slide--welcome.is-playing .welcome .reveal:nth-child(1) { animation-delay: 0.1s; }
.slide--welcome.is-playing .welcome .reveal:nth-child(2) { animation-delay: 0.2s; }
.slide--welcome.is-playing .welcome .reveal:nth-child(3) { animation-delay: 0.32s; }
.slide--welcome.is-playing .welcome .reveal:nth-child(4) { animation-delay: 0.42s; }
.slide--welcome.is-playing .welcome .reveal:nth-child(5) { animation-delay: 0.52s; }
.slide--welcome.is-playing .welcome .reveal:nth-child(6) { animation-delay: 0.62s; }

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Welcome ── */
.slide--welcome {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.welcome {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  padding: 0 2rem;
}

.welcome__logo {
  display: block;
  height: clamp(110px, 16vw, 160px);
  width: auto;
  margin: 0 auto 1.5rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.welcome__state {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.welcome__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.welcome__rule {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  margin: 0 auto 1.25rem;
  animation: pulseRule 2s ease-in-out infinite;
}

@keyframes pulseRule {
  0%, 100% { opacity: 1; transform: scaleX(1); }
  50% { opacity: 0.7; transform: scaleX(1.15); }
}

.welcome__tagline {
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.welcome__theme {
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 197, 71, 0.9);
  line-height: 1.5;
  max-width: 40rem;
  margin: 0 auto;
}

/* ── Thank you (closing) ── */
.slide--thanks {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  padding: 0 2rem;
}

.thanks__logo {
  display: block;
  height: clamp(90px, 14vw, 130px);
  width: auto;
  margin: 0 auto 1.25rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.thanks__label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.875rem;
}

.thanks__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.thanks__rule {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  margin: 0 auto 1.25rem;
}

.thanks__message {
  font-size: clamp(1rem, 1.75vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.thanks__signoff {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 197, 71, 0.85);
  line-height: 1.5;
}

.slide--thanks.is-playing .thanks .reveal:nth-child(1) { animation-delay: 0.08s; }
.slide--thanks.is-playing .thanks .reveal:nth-child(2) { animation-delay: 0.16s; }
.slide--thanks.is-playing .thanks .reveal:nth-child(3) { animation-delay: 0.24s; }
.slide--thanks.is-playing .thanks .reveal:nth-child(4) { animation-delay: 0.32s; }
.slide--thanks.is-playing .thanks .reveal:nth-child(5) { animation-delay: 0.4s; }
.slide--thanks.is-playing .thanks .reveal:nth-child(6) { animation-delay: 0.48s; }

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  flex: 1;
  align-content: center;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 5px solid var(--green-700);
  padding: 1.375rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(15, 81, 50, 0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.info-card__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1;
  min-width: 2rem;
}

.info-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--green-900);
  margin-bottom: 0.375rem;
  line-height: 1.2;
}

.info-card__text {
  font-size: var(--kiosk-body);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Presidential pillars ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  flex: 1;
  align-content: center;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--gold-bright);
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pillar-card__index {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(232, 197, 71, 0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar-card__lead {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.625rem;
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.pillar-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  flex: 1;
  align-content: center;
}

.stat-cell {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease-out) 0.3s;
}

.slide.is-playing .stat-cell::before {
  transform: scaleX(1);
}

.stat-cell__value {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px rgba(232, 197, 71, 0.3);
  transition: transform 0.3s var(--ease-out);
}

.stat-cell__value.is-counted {
  animation: statPop 0.5s var(--ease-out);
}

@keyframes statPop {
  0% { transform: scale(0.85); }
  60% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.stat-cell__label {
  font-size: var(--kiosk-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  max-width: 14rem;
  margin: 0 auto;
}

/* ── Lists & blocks ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-700);
  padding: 0.875rem 1.125rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.check-list__mark {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  margin-top: 0.45em;
  transform: rotate(45deg);
}

.service-grid,
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  flex: 1;
  align-content: center;
}

.service-block,
.innovation-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-700);
  padding: 1.375rem 1.5rem;
  box-shadow: 0 4px 16px rgba(15, 81, 50, 0.05);
}

.service-block__title,
.innovation-block__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-900);
  padding-bottom: 0.625rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.service-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.service-block__list li {
  font-size: var(--kiosk-small);
  color: var(--text-secondary);
  padding-left: 0.875rem;
  position: relative;
  line-height: 1.55;
}

.service-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--gold-deep);
}

.innovation-block__text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  flex: 1;
  align-content: center;
}

.role-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem 1.125rem;
}

.role-item__bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--green-700);
  margin-top: 0.45em;
}

/* ── Departments ── */
.slide--department {
  position: relative;
}

.dept-watermark {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 800;
  color: rgba(15, 81, 50, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.dept-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.5rem;
  flex: 1;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.dept-info {
  background: var(--green-900);
  color: #ffffff;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.dept-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
}

.dept-info__acronym {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}

.dept-info__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.dept-info__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.dept-services {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(15, 81, 50, 0.08);
}

.dept-services__title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-bright);
}

.dept-services__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.dept-services__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.dept-services__bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--green-700);
  margin-top: 0.5em;
  transform: rotate(45deg);
}

/* ── Technical departments intro ── */
.major-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  flex: 1;
  align-content: center;
}

.major-intro-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 4px solid var(--gold-bright);
  padding: 2rem 1.5rem;
  text-align: center;
}

.major-intro-card__index {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(232, 197, 71, 0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.major-intro-card__acronym {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.major-intro-card__name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

/* ── Department hero ── */
.dept-hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.dept-watermark--hero {
  font-size: clamp(10rem, 22vw, 18rem);
  opacity: 0.06;
  right: 50%;
  transform: translate(50%, -50%);
  top: 50%;
}

.dept-hero__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}

.dept-hero__acronym {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 0 60px rgba(232, 197, 71, 0.3);
  margin-bottom: 0.5rem;
}

.dept-hero__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.dept-hero__established {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.dept-hero__rule {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  margin-bottom: 1.25rem;
}

.dept-hero__mandate {
  font-size: clamp(1.0625rem, 1.75vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 40rem;
}

.dept-split {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}

.dept-hero--split {
  flex: none;
  align-items: flex-start;
  text-align: left;
  margin: 0;
  padding: 0;
  max-width: none;
}

.dept-image,
.slide-photo {
  width: 100%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.dept-image {
  max-height: min(52vh, 420px);
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

.slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.slide-photo--tall {
  max-height: min(calc(100vh - var(--header-h) - var(--footer-h) - 8rem), 460px);
  aspect-ratio: 3 / 4;
  border-radius: 6px;
}

.slide-photo--panel {
  max-height: min(48vh, 400px);
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

.slide-photo--banner {
  max-height: 11rem;
  width: 100%;
  aspect-ratio: 21 / 7;
  border-radius: 6px;
}

.content-split {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.25rem;
  align-items: stretch;
}

.content-split--reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.content-split--reverse .slide-visual {
  order: 2;
}

.content-split--reverse .content-split__body,
.content-split--reverse .mat-contact-layout--compact {
  order: 1;
}

.content-split--wide {
  grid-template-columns: 1.35fr 0.65fr;
}

.content-split--support {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.content-split__body {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.content-split__body .slide__intro {
  text-align: left;
  margin: 0 0 1rem;
  max-width: none;
}

.card-grid--compact {
  grid-template-columns: 1fr;
  gap: 0.625rem;
}

.mat-contact-layout--compact {
  grid-template-columns: 1fr;
  min-height: 0;
}

.thanks--photo {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(5, 46, 28, 0.88), rgba(15, 26, 20, 0.82)),
    var(--thanks-photo, none) center / cover no-repeat;
}

.thanks__overlay {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  padding: 2rem;
  text-align: center;
}

/* ── Programme list (under dept stats) ── */
.programme-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.programme-list__item {
  font-size: var(--kiosk-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--gold-bright);
  line-height: 1.45;
}

.slide--dept-stats .stats-grid {
  flex: 0;
}

/* ── GSD Digital Store video ── */
.slide__bg-accent--gsd {
  background:
    radial-gradient(ellipse 75% 55% at 15% 0%, rgba(201, 162, 39, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(20, 108, 67, 0.18), transparent 55%);
}

.slide--dept-map {
  padding: 0.35rem 0.875rem 0.5rem;
}

.slide--dept-map .slide__header {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.slide--dept-map .slide__headline {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  margin-bottom: 0.25rem;
}

.slide--dept-map .slide__subtitle {
  font-size: var(--kiosk-small);
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.gsd-map-layout {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(13.5rem, 20rem) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  background: rgba(8, 21, 37, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.gsd-map-narration {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.875rem 0.9375rem 0.875rem 1rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  overflow-y: auto;
}

.gsd-map-narration::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
}

.gsd-map-narration__subtitle {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--gold-bright);
}

.gsd-map-narration__intro {
  font-size: var(--kiosk-caption);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.gsd-map-narration__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gsd-map-narration__list li {
  font-size: var(--kiosk-caption);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
  padding-left: 0.75rem;
  position: relative;
}

.gsd-map-narration__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.gsd-map-narration .gsd-map-caption {
  margin-top: auto;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  font-size: 0.75rem;
}

.gsd-map-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  min-height: 0;
  min-width: 0;
  padding: 0.25rem;
  background: #fff;
}

.gsd-map-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(calc(100vh - var(--header-h) - var(--footer-h) - 4.75rem), 860px);
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.gsd-map-caption {
  flex-shrink: 0;
  font-size: var(--kiosk-caption);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.slide--dept-video {
  padding: 0.75rem 1rem 0.5rem;
}

.slide--dept-video .slide__header {
  margin-bottom: 0.375rem;
  padding-bottom: 0.5rem;
}

.slide--dept-video .slide__headline {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin-bottom: 0.25rem;
}

.slide--dept-video .slide__subtitle {
  font-size: 0.8125rem;
  line-height: 1.4;
}

.video-shell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  width: 100%;
}

.slide-video {
  width: min(98vw, 1520px);
  height: min(calc(100vh - var(--header-h) - var(--footer-h) - 8rem), 860px);
  max-width: none;
  border: 3px solid rgba(232, 197, 71, 0.4);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  background: #000;
  object-fit: contain;
}

.video-note {
  text-align: center;
  font-size: var(--kiosk-caption);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.375rem;
  flex-shrink: 0;
}

.slide--dept-video .slide__header {
  flex-shrink: 0;
}

/* ── LSMMIP Microsoft 365 dashboard ── */
.slide--dept-dashboard {
  padding: 0.5rem 0.75rem;
  background: linear-gradient(160deg, var(--green-950) 0%, var(--green-900) 100%);
  color: #fff;
  align-items: center;
  justify-content: center;
}

.slide--dept-dashboard .slide__headline {
  color: #fff;
}

.slide--dept-dashboard .slide__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.slide--dept-dashboard .slide__label {
  color: var(--gold-bright);
  background: rgba(232, 197, 71, 0.12);
}

.slide--dept-dashboard .slide__header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.dashboard-live {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  max-width: 36rem;
}

.dashboard-live__pulse {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--gold-bright);
  margin-bottom: 1.5rem;
  animation: dashboardPulse 1.5s ease-in-out infinite;
}

@keyframes dashboardPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(232, 197, 71, 0.4); }
  50% { transform: scale(1.06); opacity: 0.85; box-shadow: 0 0 0 16px rgba(232, 197, 71, 0); }
}

.dashboard-live__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}

.dashboard-live__status {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.dashboard-live__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.slide__header--compact {
  margin-bottom: 0.25rem;
  padding-bottom: 0.375rem;
  flex-shrink: 0;
}

.slide__header--compact .slide__headline {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

/* ── Local Content (LSMMIP) ── */
.slide__bg-accent--lc {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(32, 128, 200, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(0, 169, 206, 0.06), transparent 60%);
}

.slide--local-content-board {
  background: linear-gradient(160deg, #0f2940 0%, #1a4a72 55%, #0f2940 100%);
  padding: 0.5rem 1.25rem 0.75rem;
}

.slide--local-content-board .slide__headline {
  color: #fff;
  font-size: clamp(1.05rem, 1.85vw, 1.4rem);
}

.slide--local-content-board .slide__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
}

.slide--local-content-board .slide__label {
  color: #7ec8ff;
  background: rgba(126, 200, 255, 0.12);
}

.slide--local-content-board .slide__header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  margin-bottom: 0.5rem;
}

.local-content-credit {
  flex-shrink: 0;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.375rem;
}

.lc-board {
  flex: 1;
  min-height: 0;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.lc-board--split {
  display: grid;
  grid-template-columns: minmax(15rem, 0.3fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.lc-spotlight {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.125rem 1rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(126, 200, 255, 0.22);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.lc-spotlight__brand {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.lc-spotlight__si {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--lc-navy);
  padding: 0.3rem 0.625rem;
  border-radius: 4px;
}

.lc-spotlight__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #7ec8ff;
}

.lc-spotlight__tagline {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.lc-spotlight__fullname {
  font-family: var(--font-display);
  font-size: clamp(0.6875rem, 0.95vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  color: #7ec8ff;
}

.lc-spotlight__regs {
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lc-spotlight__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.lc-spotlight__meta-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ec8ff;
}

.lc-spotlight__meta-value {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.lc-spotlight__logo {
  display: block;
  width: 100%;
  max-width: 11rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.625rem;
  background: #fff;
  border-radius: 6px;
  object-fit: contain;
}

.lc-flow {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.lc-steps-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-content: stretch;
}

.lc-step-card {
  --lc-accent: var(--lc-blue);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0.75rem 0.875rem 0.875rem 1rem;
  background: rgba(8, 21, 37, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: inset 4px 0 0 var(--lc-accent);
  overflow: hidden;
}

.lc-step-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lc-step-card__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 800;
  line-height: 1;
  color: var(--lc-accent);
}

.lc-step-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #fff;
}

.lc-step-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-height: 0;
}

.lc-step-card__list li {
  font-size: clamp(0.6875rem, 0.95vw, 0.8125rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 0.75rem;
  position: relative;
}

.lc-step-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lc-accent);
}

/* ── ASM Training Impact ── */
.slide__bg-accent--asm {
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(201, 162, 39, 0.08), transparent 65%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(15, 81, 50, 0.1), transparent 60%);
}

.slide--asm-data-image {
  background: linear-gradient(180deg, var(--green-100) 0%, #f6faf7 100%);
  padding: 0.35rem 1.25rem 0.5rem;
  align-items: center;
}

.asm-data-badge {
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(5, 46, 28, 0.18);
  padding: 0.35rem 0.875rem;
  margin-bottom: 0.25rem;
}

.asm-data-visual {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asm-data-image {
  max-width: min(100%, 920px);
  max-height: min(calc(100vh - var(--header-h) - var(--footer-h) - 5rem), 680px);
  width: auto;
  height: auto;
  object-fit: contain;
  border: 3px solid #fff;
  border-radius: 6px;
  box-shadow:
    0 0 0 1px var(--border),
    0 16px 44px rgba(15, 81, 50, 0.12);
}

.asm-data-caption {
  flex-shrink: 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.slide--asm-data-chart {
  padding: 0.5rem 1.25rem 0.75rem;
}

.slide--asm-data-chart .slide__headline {
  font-size: clamp(1.05rem, 1.85vw, 1.4rem);
}

.slide--asm-data-chart .slide__subtitle {
  font-size: 0.8125rem;
}

.asm-impact {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 1rem;
  align-items: stretch;
}

.asm-impact__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--gold-bright);
}

.asm-impact__hero-stat {
  text-align: center;
}

.asm-impact__total {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  text-shadow: 0 0 40px rgba(232, 197, 71, 0.35);
}

.asm-impact__unit {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.asm-impact__intro {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.asm-impact__cohorts-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.asm-impact__cohort-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.asm-impact__cohort-pill {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green-700);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.625rem;
  border-radius: 999px;
}

.asm-impact__chart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.asm-impact__chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.asm-impact__chart-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.asm-impact__chart-note {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
}

.asm-stack {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.asm-stack__bar {
  display: flex;
  width: 100%;
  height: 2.75rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.15);
}

.asm-stack__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.25rem;
  background: linear-gradient(180deg, var(--green-700), var(--green-800));
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.asm-stack__seg:last-child {
  border-right: none;
}

.asm-stack__seg--cohort {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
}

.asm-stack__seg-value {
  font-family: var(--font-display);
  font-size: clamp(0.625rem, 1.2vw, 0.875rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.asm-stack__seg--cohort .asm-stack__seg-value {
  color: var(--green-950);
}

.asm-stack__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.asm-stack__total-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.asm-stack__total-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}

.asm-district {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.asm-district__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.asm-district__labels {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-width: 0;
}

.asm-district__name {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.asm-district__badge {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-950);
  background: var(--gold-bright);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.asm-district__figures {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-shrink: 0;
}

.asm-district__value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.asm-district__share {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
}

.asm-district__meter {
  width: 100%;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.asm-district__meter-fill {
  height: 100%;
  width: var(--meter-pct);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-800), var(--green-700));
}

.asm-district--cohort .asm-district__meter-fill {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}

.programme-list--compact {
  flex: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem;
  margin-top: 0.625rem;
}

.programme-list--compact .programme-list__item {
  font-size: 0.6875rem;
  padding: 0.45rem 0.625rem;
}

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

/* ── Support departments ── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  flex: 1;
  align-content: center;
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--green-700);
  padding: 1.375rem 1.5rem;
  box-shadow: 0 4px 16px rgba(15, 81, 50, 0.06);
}

.support-card__acronym {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-800);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.support-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--green-900);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.support-card__role {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.support-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.support-card__list li {
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding-left: 0.75rem;
  position: relative;
  line-height: 1.45;
}

.support-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--gold-deep);
}

/* ── Statutory bodies ── */
.bodies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  flex: 1;
  align-content: center;
}

.body-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 5px solid var(--gold-bright);
  padding: 2rem 1.75rem;
}

.body-card__acronym {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  margin-bottom: 0.375rem;
}

.body-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.body-card__role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.body-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.body-card__list li {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 0.875rem;
  position: relative;
  line-height: 1.5;
}

.body-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--gold-bright);
  transform: rotate(45deg);
}

.bodies-grid--single {
  grid-template-columns: 1fr;
  max-width: 36rem;
  margin: 0 auto;
  width: 100%;
}

/* ── Mining Appeals Tribunal ── */
.slide--mat {
  --mat-red: #8f1d2c;
  --mat-red-deep: #6b1220;
}

.slide--mat.slide--impact {
  background: linear-gradient(145deg, #1a0508 0%, var(--mat-red-deep) 40%, var(--green-900) 100%);
}

.slide--mat .slide__header--impact {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.slide--mat .slide__label {
  color: #f5c6cb;
  background: rgba(143, 29, 44, 0.35);
}

.mat-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  flex: 1;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mat-split--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.mat-copy__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5c6cb;
  margin-bottom: 0.5rem;
}

.mat-copy__acronym {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.mat-copy__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.mat-copy__tagline {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.mat-copy__legal {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.mat-copy__mandate {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 3px solid var(--gold-bright);
}

.mat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mat-image {
  width: 100%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.mat-image--hero {
  max-height: min(52vh, 420px);
  aspect-ratio: 1 / 1;
}

.mat-image--panel {
  max-height: min(48vh, 400px);
  aspect-ratio: 4 / 3;
}

.mat-detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mat-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--gold-bright);
  padding: 1rem 1.125rem;
}

.mat-block__title {
  font-family: var(--font-display);
  font-size: var(--kiosk-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.mat-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.mat-block__list li {
  font-size: var(--kiosk-small);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  padding-left: 0.875rem;
  position: relative;
}

.mat-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--gold-bright);
}

.mat-block__list--no li::before {
  background: #f5c6cb;
}

.mat-process-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.mat-eligibility {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.mat-eligibility__item {
  font-size: var(--kiosk-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--gold-bright);
  line-height: 1.45;
}

.mat-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.mat-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mat-steps__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
}

.mat-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}

.mat-fact {
  text-align: center;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border-top: 3px solid var(--gold-bright);
}

.mat-fact__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.mat-fact__label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.35;
}

.mat-contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.25rem;
  flex: 1;
  align-content: center;
}

.mat-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.mat-highlight {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.125rem 1.25rem;
}

.mat-highlight__title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.mat-highlight__text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.mat-contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--gold-bright);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mat-contact-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.mat-contact-card__line {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 0.625rem;
}

.mat-contact-card__phone {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

/* ── Zambia EITI (ZEITI) ── */
.slide--zeitI {
  --zeitI-blue: #1565a8;
  --zeitI-navy: #0f2940;
  --zeitI-sky: #7ec8ff;
}

.slide--zeitI.slide--impact {
  background: linear-gradient(145deg, #081525 0%, var(--zeitI-navy) 42%, var(--green-900) 100%);
}

.slide--zeitI .slide__header--impact {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.slide--zeitI .slide__label {
  color: var(--zeitI-sky);
  background: rgba(126, 200, 255, 0.12);
}

.slide--zeitI .mat-copy__label {
  color: var(--zeitI-sky);
}

.slide--zeitI .mat-copy__acronym {
  color: var(--zeitI-sky);
  text-shadow: 0 0 40px rgba(126, 200, 255, 0.25);
}

.slide--zeitI .mat-copy__mandate {
  border-left-color: var(--zeitI-sky);
}

.slide--zeitI .mat-block {
  border-left-color: var(--zeitI-sky);
}

.slide--zeitI .mat-block__title {
  color: var(--zeitI-sky);
}

.zeitI-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.35);
}

.zeitI-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.zeitI-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(126, 200, 255, 0.15), transparent 55%),
    rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(126, 200, 255, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(21, 101, 168, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.3);
}

.zeitI-emblem__global {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
}

.zeitI-emblem__divider {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--zeitI-sky), transparent);
}

.zeitI-emblem__local {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--zeitI-sky);
  line-height: 1;
}

.zeitI-emblem__tagline {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  max-width: 12rem;
  line-height: 1.4;
}

.zeitI-emblem__since {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 0.25rem;
}

.zeitI-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(126, 200, 255, 0.2);
  border-radius: 8px;
  min-height: 16rem;
}

.zeitI-panel__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zeitI-sky);
  margin-bottom: 0.5rem;
}

.zeitI-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.zeitI-panel__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 16rem;
}

.zeitI-block-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.zeitI-background-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
  align-content: start;
}

.zeitI-background-layout > .mat-block:first-child {
  grid-column: 1 / -1;
}

.zeitI-disclosure-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zeitI-disclosure-list li {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  padding-left: 0.875rem;
  position: relative;
}

.zeitI-disclosure-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--zeitI-sky);
}

/* ── Minerals Regulation Commission (MRC) ── */
.slide--mrc {
  --mrc-copper: #b87333;
  --mrc-copper-bright: #d4954a;
  --mrc-deep: #3d2410;
}

.slide--mrc.slide--impact {
  background: linear-gradient(145deg, #120a04 0%, var(--mrc-deep) 38%, var(--green-900) 100%);
}

.slide--mrc .slide__header--impact {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.slide--mrc .slide__label {
  color: var(--mrc-copper-bright);
  background: rgba(184, 115, 51, 0.18);
}

.slide--mrc .mat-copy__label {
  color: var(--mrc-copper-bright);
}

.slide--mrc .mat-copy__acronym {
  color: var(--gold-bright);
  text-shadow: 0 0 40px rgba(212, 149, 74, 0.3);
}

.slide--mrc .mat-copy__mandate {
  border-left-color: var(--mrc-copper-bright);
}

.slide--mrc .mat-block {
  border-left-color: var(--mrc-copper-bright);
}

.slide--mrc .mat-block__title {
  color: var(--mrc-copper-bright);
}

.mrc-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 149, 74, 0.15), transparent 55%),
    rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(184, 115, 51, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(184, 115, 51, 0.1),
    0 20px 50px rgba(0, 0, 0, 0.3);
}

.mrc-emblem__acronym {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  line-height: 1;
}

.mrc-emblem__divider {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mrc-copper-bright), transparent);
}

.mrc-emblem__tagline {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.mrc-emblem__pillars {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.mrc-emblem__act {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mrc-copper-bright);
  margin-top: 0.25rem;
}

.mrc-mandates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
  align-content: center;
}

.mrc-mandate-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(212, 149, 74, 0.45);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.mrc-consolidated-intro {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.mrc-consolidated-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mrc-consolidated-list li {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  padding-left: 0.875rem;
  position: relative;
}

.mrc-consolidated-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mrc-copper-bright);
}

.mrc-outcomes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
  min-height: 0;
  align-items: center;
}

.mrc-outcomes-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 115, 51, 0.25);
  border-radius: 8px;
  min-height: 14rem;
}

.mrc-outcomes-panel__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mrc-copper-bright);
  margin-bottom: 0.5rem;
}

.mrc-outcomes-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.mrc-outcomes-panel__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 18rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  flex: 1;
  align-content: center;
}

.slide--partnerships .partner-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-700);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 16px rgba(15, 81, 50, 0.06);
}

.slide--partnerships .partner-block__acronym {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 0.25rem;
}

.slide--partnerships .partner-block__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.5rem;
}

.slide--partnerships .partner-block__role {
  font-size: 0.875rem;
  color: var(--text-secondary);
}


/* ── Contact ── */
.slide--contact {
  align-items: center;
  justify-content: center;
}

.contact-table {
  width: 100%;
  max-width: 42rem;
  border: 2px solid var(--green-800);
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(15, 81, 50, 0.12);
}

.contact-row {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row__label {
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: var(--kiosk-caption);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-800);
  background: var(--green-100);
  border-right: 1px solid var(--border);
}

.contact-row__value {
  padding: 1rem 1.25rem;
  font-size: var(--kiosk-body);
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}

/* ── Kiosk readability (dense slides) ── */
.slide--local-content-board .slide__headline,
.slide--asm-data-chart .slide__headline {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.slide--local-content-board .slide__subtitle,
.slide--asm-data-chart .slide__subtitle {
  font-size: var(--kiosk-small);
}

.lc-step-card__title {
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
}

.lc-step-card__list li {
  font-size: clamp(0.8125rem, 1.05vw, 0.9375rem);
}

.lc-spotlight__regs,
.lc-spotlight__meta-value,
.local-content-credit,
.gsd-map-caption {
  font-size: var(--kiosk-caption);
}

.asm-impact__intro,
.asm-impact__unit,
.asm-district__name,
.asm-impact__chart-note {
  font-size: var(--kiosk-small);
}

.asm-impact__chart-title,
.asm-impact__cohorts-label {
  font-size: var(--kiosk-body);
}

.service-block__title {
  font-size: var(--kiosk-body);
}

.check-list__item {
  font-size: var(--kiosk-body);
}

.support-card__role,
.support-card__list li,
.partner-block__text {
  font-size: var(--kiosk-small);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .chrome-header__inner,
  .chrome-footer {
    padding: 0 1.5rem;
  }

  .slide {
    padding: 1.5rem 1.25rem 2rem;
  }

  .card-grid,
  .service-grid,
  .innovation-grid,
  .partner-grid,
  .role-grid,
  .support-grid,
  .bodies-grid,
  .major-intro-grid,
  .programme-list,
  .mat-split,
  .mat-split--reverse,
  .mat-eligibility,
  .mat-steps,
  .mat-facts,
  .mat-highlights,
  .mat-contact-layout,
  .zeitI-background-layout {
    grid-template-columns: 1fr;
  }

  .zeitI-background-layout > .mat-block:first-child {
    grid-column: auto;
  }

  .mrc-mandates-grid,
  .mrc-outcomes-layout {
    grid-template-columns: 1fr;
  }

  .dept-split,
  .content-split,
  .content-split--reverse,
  .content-split--wide {
    grid-template-columns: 1fr;
  }

  .content-split--reverse .slide-visual,
  .content-split--reverse .content-split__body,
  .content-split--reverse .mat-contact-layout--compact {
    order: unset;
  }

  .dept-hero--split {
    align-items: center;
    text-align: center;
  }

  .mat-split,
  .mat-split--reverse {
    display: flex;
    flex-direction: column;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

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

  .dept-layout {
    grid-template-columns: 1fr;
  }

  .dept-watermark {
    display: none;
  }

  .asm-impact {
    grid-template-columns: 1fr;
  }

  .programme-list--compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .lc-board--split {
    grid-template-columns: 1fr;
  }

  .gsd-map-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .gsd-map-narration {
    max-height: 10rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .gsd-map-visual {
    min-height: 52vh;
  }

  .lc-spotlight {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .lc-spotlight__brand {
    flex: 1 1 auto;
  }

  .lc-spotlight__meta {
    flex: 1 1 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
  }

  .lc-spotlight__logo {
    max-width: 9rem;
    margin-top: 0;
  }

  .lc-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    overflow-y: auto;
  }
}

@media (max-width: 640px) {
  .chrome-header__event {
    display: none;
  }

  .qr-float {
    width: 8.5rem;
    right: 0.875rem;
    bottom: calc(var(--footer-h) + 12px);
    padding: 0.5rem;
  }

  .stats-grid,
  .lc-steps-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-row__label {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide,
  .reveal,
  .progress-track__fill,
  .welcome__rule,
  .stat-cell__value.is-counted {
    animation: none !important;
    transition: none !important;
  }

  .slide.is-exiting {
    visibility: hidden;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
