:root {
  --deck-scale: 1;
  --chrome-height: 56px;
  --line: color-mix(in srgb, var(--green) 22%, transparent);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--green-deep); color: var(--ink); }
button, a { font: inherit; }
button:focus-visible, a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.presentation-chrome {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--chrome-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  background: var(--green-deep);
  color: var(--paper);
  font-size: 14px;
}

.presentation-status { display: flex; align-items: center; gap: 8px; min-width: 0; }
.status-title { margin-left: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; opacity: .78; }
.presentation-actions { display: flex; height: 100%; }
.presentation-actions button {
  min-width: 56px;
  min-height: 44px;
  border: 0;
  border-left: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}
.presentation-actions button:hover { background: var(--green); }
.progress-track { position: absolute; left: 0; right: 0; top: 0; height: 3px; background: color-mix(in srgb, var(--paper) 15%, transparent); }
.progress-track span { display: block; width: 0; height: 100%; background: var(--gold); transition: width 180ms ease-out; }
.slide-rail { display: none; }

#deck { width: 100%; }
.slide-frame {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 420px;
  padding-bottom: var(--chrome-height);
  overflow: hidden;
  scroll-snap-align: start;
}
.slide {
  position: absolute;
  left: 50%;
  top: calc((100% - var(--chrome-height)) / 2);
  width: 1280px;
  height: 720px;
  padding: 0 64px 48px;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(var(--deck-scale));
  transform-origin: center center;
  color: var(--ink);
  background: var(--paper);
}
.cream-slide { background: var(--paper); }
.bleed-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.deck-head {
  position: relative;
  z-index: 4;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.deck-head img { width: 138px; height: auto; aspect-ratio: 760 / 85; object-fit: contain; justify-self: start; }
.deck-head span:nth-child(2) { justify-self: center; }
.deck-head span:last-child { justify-self: end; font-weight: 400; letter-spacing: .04em; }
.deck-head.light { color: color-mix(in srgb, var(--paper) 75%, transparent); }

.page-title {
  position: relative;
  z-index: 3;
  margin: 18px 0 12px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.light-title { color: var(--paper); }
.page-deck {
  position: relative;
  z-index: 3;
  max-width: 52ch;
  margin: 0;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.35;
}
.page-deck.wide { max-width: 94ch; }
.source-line, .light-source {
  position: absolute;
  z-index: 4;
  left: 64px;
  right: 64px;
  bottom: 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}
.source-line { color: var(--green-dark); }
.light-source { color: color-mix(in srgb, var(--paper) 76%, transparent); }
.emotive { font-family: var(--serif); font-style: italic; color: var(--maroon); }

/* Cover */
.cover-slide { padding: 0; color: var(--paper); background: var(--green-deep); }
.cover-wash { position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--green-deep) 96%, transparent) 0 45%, color-mix(in srgb, var(--green-deep) 58%, transparent) 75%, color-mix(in srgb, var(--green-deep) 30%, transparent)); }
.cover-logo { position: absolute; z-index: 3; top: 64px; left: 64px; width: 220px; height: auto; aspect-ratio: 760 / 85; }
.cover-copy { position: absolute; z-index: 3; left: 64px; top: 160px; width: 560px; }
.cover-copy h1 { margin: 0; color: var(--paper); font-family: var(--serif); font-size: 92px; font-weight: 400; line-height: .96; letter-spacing: -.045em; }
.cover-copy p { width: 450px; margin: 30px 0 0; font-size: 28px; line-height: 1.25; }
.cover-proof { position: absolute; z-index: 3; right: 64px; bottom: 70px; display: flex; flex-direction: column; gap: 8px; text-align: right; font-size: 18px; }
.cover-date { position: absolute; z-index: 3; left: 64px; bottom: 32px; margin: 0; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }

/* Opportunity */
.opportunity-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; margin-top: 46px; }
.lead-copy { margin: 0; max-width: 30ch; color: var(--green-dark); font-size: 32px; line-height: 1.28; }
.proof-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }
.proof-list p { margin: 0; padding-top: 12px; border-top: 2px solid var(--green); }
.proof-list strong { display: block; color: var(--maroon); font-size: 32px; line-height: 1; }
.proof-list span { display: block; margin-top: 10px; color: var(--green-dark); font-size: 21px; line-height: 1.25; }
.proof-list p:last-child { grid-column: span 2; }

/* Metrics and columns */
.metric-row { display: grid; gap: 32px; margin-top: 38px; }
.metric-row.three { grid-template-columns: repeat(3, 1fr); }
.metric-row.four { grid-template-columns: repeat(4, 1fr); }
.metric-row > div { padding-top: 14px; border-top: 2px solid var(--green); }
.metric-row strong { display: block; color: var(--maroon); font-size: 54px; line-height: 1; }
.metric-row span { display: block; margin-top: 10px; max-width: 20ch; color: var(--green-dark); font-size: 20px; line-height: 1.25; }
.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.deal-columns { margin-top: 42px; }
.deal-columns h2 { margin: 0 0 12px; color: var(--green); font-size: 22px; text-transform: uppercase; letter-spacing: .06em; }
.deal-columns p { margin: 0 0 10px; color: var(--green-dark); font-size: 21px; line-height: 1.3; }

/* Location */
.location-layout { display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; margin-top: 30px; }
.location-copy > p { margin: 0 0 18px; color: var(--green-dark); font-size: 22px; line-height: 1.32; }
.mini-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.mini-metrics p { margin: 0; }
.mini-metrics strong { display: block; color: var(--maroon); font-size: 34px; }
.mini-metrics span { display: block; font-size: 17px; line-height: 1.2; }
.map-stack { position: relative; height: 500px; }
.map-stack img { position: absolute; width: 82%; height: 260px; object-fit: cover; border: 8px solid var(--paper); box-shadow: 0 12px 28px color-mix(in srgb, var(--green-deep) 18%, transparent); }
.map-stack img:first-child { top: 0; right: 0; transform: rotate(1.2deg); }
.map-stack img:last-child { left: 0; bottom: 0; transform: rotate(-1.3deg); }

/* Housing gap */
.split-image-slide { padding-right: 0; }
.split-image-slide .deck-head { width: calc(100% - 64px); }
.split-copy { position: relative; z-index: 2; width: 58%; padding-top: 8px; padding-right: 54px; }
.split-copy .page-title { font-size: 50px; }
.split-copy > p { margin: 0 0 18px; color: var(--green-dark); font-size: 23px; line-height: 1.32; }
.split-copy > .emotive { color: var(--maroon); font-size: 27px; }
.split-image { position: absolute; top: 0; right: 0; width: 42%; height: 100%; object-fit: cover; }

/* Evidence */
.evidence-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 42px; padding: 28px 32px; background: var(--green-dark); color: var(--paper); }
.evidence-band p { margin: 0; }
.evidence-band strong { display: block; color: var(--paper); font-size: 27px; }
.evidence-band span { display: block; margin-top: 8px; font-size: 18px; line-height: 1.28; }

/* Founder */
.founder-slide { padding: 0 64px 48px; color: var(--paper); background: var(--green-deep); }
.founder-wash { position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--green-deep) 92%, transparent) 0 56%, color-mix(in srgb, var(--green-deep) 48%, transparent) 78%, color-mix(in srgb, var(--green-deep) 18%, transparent)); }
.founder-copy { position: relative; z-index: 3; width: 57%; }
.founder-copy p { margin: 0 0 20px; font-size: 24px; line-height: 1.35; }
.founder-quote-v2 { position: absolute; z-index: 3; right: 64px; bottom: 58px; width: 405px; min-height: 360px; margin: 0; padding: 82px 32px 28px; background: var(--paper); color: var(--green-dark); }
.slide .founder-quote-v2 img { position: absolute; top: -56px; right: 28px; width: 118px; height: 118px; border: 7px solid var(--paper); border-radius: 50%; object-fit: cover; }
.founder-quote-v2 blockquote { margin: 0; font-family: var(--serif); font-size: 26px; font-style: italic; line-height: 1.32; }
.founder-quote-v2 figcaption { margin-top: 20px; color: var(--maroon); font-size: 16px; font-weight: 700; }

/* Programme */
.programme-overview { display: grid; grid-template-columns: 1.2fr .85fr 1.2fr .85fr; grid-template-rows: 1fr 1fr; gap: 18px 28px; margin-top: 22px; }
.programme-overview article { min-height: 198px; }
.programme-overview article:nth-of-type(3) { grid-column: 1; grid-row: 2; }
.programme-overview article:nth-of-type(4) { grid-column: 3; grid-row: 2; }
.programme-overview img:nth-of-type(1) { grid-column: 2; grid-row: 1 / span 2; }
.programme-overview img:nth-of-type(2) { grid-column: 4; grid-row: 1 / span 2; }
.programme-overview img { width: 100%; height: 392px; object-fit: cover; }
.programme-overview h2 { margin: 0; color: var(--green); font-size: 21px; line-height: 1.15; text-transform: uppercase; letter-spacing: .02em; }
.programme-overview em { display: block; margin-top: 4px; color: var(--green); font-family: var(--serif); font-size: 18px; }
.programme-overview p { margin: 12px 0 0; color: var(--green-dark); font-size: 18px; line-height: 1.22; }
.programme-overview article > strong { display: block; margin-top: 9px; color: var(--ink); font-family: var(--serif); font-size: 17px; line-height: 1.18; }

/* Schedule */
.accommodation-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; margin-top: 36px; }
.accommodation-layout > img { width: 100%; height: 300px; object-fit: cover; }
.schedule { border-top: 2px solid var(--green); }
.schedule > div { display: grid; grid-template-columns: 1fr 110px 120px; gap: 16px; align-items: center; min-height: 50px; padding: 0 14px; border-bottom: 1px solid var(--taupe-light); font-size: 21px; }
.schedule > div span { text-align: right; font-variant-numeric: tabular-nums; }
.schedule .schedule-head { color: var(--green-dark); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.schedule .schedule-total { color: var(--paper); background: var(--green); }

/* Design principles */
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.principles-grid figure { position: relative; height: 420px; margin: 0; }
.principles-grid h2 { margin: 0 0 12px; color: var(--green); font-family: var(--serif); font-size: 28px; font-weight: 400; text-align: center; }
.slide .principles-grid img { width: 100%; height: 370px; object-fit: cover; }
.principles-grid figcaption { position: absolute; left: 26px; right: 26px; bottom: 16px; padding: 22px; background: color-mix(in srgb, var(--paper) 90%, transparent); color: var(--ink); }
.principles-grid figcaption strong { display: block; font-family: var(--serif); font-size: 21px; }
.principles-grid figcaption span { display: block; margin-top: 8px; font-size: 17px; line-height: 1.25; }

/* Resilience */
.resilience-slide { color: var(--paper); background: var(--green-deep); }
.resilience-copy { width: 54%; }
.resilience-copy p { margin: 16px 0 0; font-size: 25px; line-height: 1.35; }
.resilience-metrics { position: absolute; top: 140px; right: 64px; width: 480px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid color-mix(in srgb, var(--paper) 28%, transparent); }
.resilience-metrics div { min-height: 210px; padding: 30px 18px; border-right: 1px solid color-mix(in srgb, var(--paper) 28%, transparent); }
.resilience-metrics div:last-child { border-right: 0; }
.resilience-metrics strong { display: block; color: var(--paper); font-size: 48px; }
.resilience-metrics span { display: block; margin-top: 16px; font-size: 17px; line-height: 1.25; }
.resilience-strip { position: absolute; left: 64px; right: 64px; bottom: 70px; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--gold); color: var(--green-dark); }
.resilience-strip span { padding: 18px; border-right: 1px solid color-mix(in srgb, var(--green-dark) 22%, transparent); font-size: 16px; font-weight: 700; text-align: center; }

/* Finance */
.finance-layout { display: grid; grid-template-columns: 1.3fr .85fr .7fr; gap: 38px; margin-top: 30px; }
.cashflow-bars { height: 350px; display: flex; align-items: center; gap: 10px; padding: 26px 12px 34px; border-bottom: 2px solid var(--green); }
.bar { position: relative; flex: 1; min-width: 24px; }
.bar.neg { align-self: center; background: var(--taupe); transform-origin: top; }
.bar.pos { align-self: center; background: var(--green); transform-origin: bottom; }
.bar span { position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%); font-size: 12px; }
.b1 { height: 40px; }.b2 { height: 80px; }.b3 { height: 240px; }.b4 { height: 260px; }.b5 { height: 120px; }
.b6 { height: 56px; }.b7 { height: 76px; }.b8 { height: 86px; }.b9 { height: 94px; }.b10 { height: 104px; }
.finance-copy p { margin: 0 0 22px; color: var(--green-dark); font-size: 20px; line-height: 1.35; }
.finance-metrics p { margin: 0; padding: 12px 0; border-bottom: 1px solid var(--taupe-light); }
.finance-metrics strong { display: block; color: var(--maroon); font-size: 30px; }
.finance-metrics span { display: block; font-size: 16px; }

/* Funding */
.funding-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 34px; }
.stack { display: flex; flex-direction: column; gap: 10px; }
.stack > div { min-height: 88px; padding: 18px 22px; color: var(--paper); background: var(--green-dark); }
.stack > .blend { background: var(--maroon); }
.stack strong { display: block; font-size: 22px; }
.stack span { display: block; margin-top: 8px; font-size: 16px; line-height: 1.25; }
.ask-copy h2 { margin: 0 0 14px; color: var(--green); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.ask-copy p { margin: 0 0 18px; color: var(--green-dark); font-size: 22px; line-height: 1.33; }
.raise-funds { position: absolute; left: 64px; right: 64px; bottom: 62px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--gold); color: var(--green-dark); }
.raise-funds span { padding: 18px; font-size: 17px; font-weight: 700; text-align: center; }

/* DBSA */
.dbsa-slide-v2 { color: var(--paper); background: var(--green); }
.dbsa-logo { position: absolute; top: 128px; right: 64px; width: 275px; height: auto; aspect-ratio: 341 / 148; object-fit: contain; }
.dbsa-copy-v2 { width: 690px; }
.dbsa-copy-v2 p { max-width: 44ch; margin: 24px 0 0; font-size: 25px; line-height: 1.35; }
.dbsa-amount { position: absolute; right: 80px; top: 325px; width: 250px; }
.dbsa-amount strong { display: block; color: var(--paper); font-size: 70px; line-height: 1; }
.dbsa-amount span { display: block; margin-top: 10px; font-size: 20px; }
.dbsa-history { position: absolute; left: 64px; right: 64px; bottom: 72px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid color-mix(in srgb, var(--paper) 40%, transparent); }
.dbsa-history span { padding: 20px 16px; border-right: 1px solid color-mix(in srgb, var(--paper) 24%, transparent); font-size: 17px; text-align: center; }

/* Impact */
.impact-grid-v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.impact-grid-v2 > div { height: 230px; padding: 26px 22px; border: 1px solid var(--taupe-light); display: flex; flex-direction: column; justify-content: space-between; }
.impact-grid-v2 > div:first-child { color: var(--paper); background: var(--maroon); border-color: var(--maroon); }
.impact-grid-v2 strong { color: var(--maroon); font-size: 42px; line-height: 1; }
.impact-grid-v2 > div:first-child strong { color: var(--paper); }
.impact-grid-v2 span { font-size: 19px; line-height: 1.25; }
.policy-line { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 40px; background: var(--green-dark); color: var(--paper); }
.policy-line span { padding: 16px 10px; font-size: 14px; text-align: center; }

/* Systems */
.systems-slide { padding: 0 64px 48px; color: var(--paper); background: var(--green-deep); }
.systems-wash { position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--maroon) 88%, transparent), color-mix(in srgb, var(--green-deep) 88%, transparent) 48%, color-mix(in srgb, var(--green-deep) 62%, transparent)); }
.systems-copy { position: relative; z-index: 3; width: 620px; }
.systems-copy p { margin: 0 0 18px; font-size: 24px; line-height: 1.35; }
.systems-path { position: absolute; z-index: 3; left: 64px; bottom: 80px; display: flex; gap: 48px; }
.systems-path span { position: relative; font-size: 16px; font-weight: 700; }
.systems-path span:not(:last-child)::after { content: "→"; position: absolute; right: -32px; color: var(--gold); }
.systems-slide blockquote { position: absolute; z-index: 3; right: 64px; bottom: 72px; width: 400px; margin: 0; font-family: var(--serif); font-size: 25px; font-style: italic; line-height: 1.35; text-align: right; }

/* Status */
.status-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.status-columns > div { padding: 24px 28px; border: 1px solid var(--green); }
.status-columns > div:first-child { color: var(--paper); background: var(--green-deep); }
.status-columns h2 { margin: 0 0 16px; color: inherit; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.status-columns p { margin: 0; padding: 8px 0 8px 24px; font-size: 18px; line-height: 1.22; border-bottom: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.status-columns p::before { content: "✓"; position: absolute; margin-left: -23px; color: var(--gold); font-weight: 700; }
.status-columns > div:last-child p::before { content: "→"; color: var(--maroon); }

/* Roadmap */
.roadmap { position: relative; margin-top: 54px; }
.years { display: grid; grid-template-columns: repeat(3, 1fr); margin-left: 250px; border-bottom: 2px solid var(--green); }
.years span { padding: 0 0 10px; color: var(--green); font-size: 18px; font-weight: 700; }
.road-row { display: grid; grid-template-columns: 230px 1fr; align-items: center; gap: 20px; min-height: 72px; border-bottom: 1px solid var(--taupe-light); }
.road-row > strong { font-size: 19px; }
.road-bar { display: block; padding: 14px 20px; color: var(--paper); background: var(--green); font-size: 18px; }
.road-bar.planning { width: 62%; }
.road-bar.design { width: 86%; background: var(--green); }
.road-bar.construction { width: 54%; margin-left: 33%; background: var(--maroon); }
.road-bar.leasing { width: 44%; margin-left: 50%; background: var(--green-dark); }
.roadmap-note { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin: 34px 0 0 250px; }
.roadmap-note p { margin: 0; color: var(--green-dark); font-size: 21px; line-height: 1.3; }

/* Team */
.team-layout-v2 { display: grid; grid-template-columns: 1.35fr .65fr; gap: 48px; margin-top: 26px; }
.team-intro > p { margin: 0 0 26px; color: var(--green-dark); font-size: 21px; line-height: 1.32; }
.founders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.founders figure { margin: 0; }
.slide .founders img { width: 100%; height: 220px; object-fit: cover; filter: saturate(.72) sepia(.08); }
.founders figcaption { margin-top: 10px; }
.founders figcaption { color: var(--green-dark); }
.founders strong, .founders span { display: block; }
.founders strong { color: var(--green); font-size: 17px; }
.founders span { margin-top: 4px; font-size: 14px; }
.professional-list { color: var(--paper); background: var(--green-deep); padding: 24px; }
.professional-list h2 { margin: 0 0 16px; color: var(--paper); font-family: var(--serif); font-size: 28px; font-weight: 400; }
.professional-list p { display: grid; grid-template-columns: 1fr 105px; gap: 12px; margin: 0; padding: 10px 0; border-bottom: 1px solid color-mix(in srgb, var(--paper) 18%, transparent); font-size: 15px; line-height: 1.2; }
.professional-list span { opacity: .8; }

/* Validation */
.validation-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; margin-top: 42px; }
.validation-list p { display: grid; grid-template-columns: 230px 1fr; gap: 24px; margin: 0; padding: 20px 0; border-top: 1px solid var(--taupe-light); }
.validation-list strong { color: var(--maroon); font-size: 22px; }
.validation-list span { color: var(--green-dark); font-size: 20px; line-height: 1.3; }
.validation-close { width: 72%; margin: 38px 0 0; color: var(--green); font-family: var(--serif); font-size: 28px; line-height: 1.3; }

/* Close */
.close-slide-v2 { padding: 0 64px 48px; color: var(--paper); background: var(--green-deep); }
.close-left { width: 48%; }
.close-left h1 { margin: 42px 0 24px; color: var(--paper); font-family: var(--serif); font-size: 78px; font-weight: 400; line-height: .98; }
.close-left p { max-width: 30ch; margin: 0 0 28px; font-size: 25px; line-height: 1.3; }
.close-left a { display: inline-flex; min-height: 48px; align-items: center; padding: 0 20px; border: 0; color: var(--green-deep); background: var(--gold); font-weight: 700; }
.close-left > span { display: block; margin-top: 22px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.close-reasons { position: absolute; top: 126px; right: 64px; width: 510px; border-top: 1px solid color-mix(in srgb, var(--paper) 28%, transparent); }
.close-reasons p { display: grid; grid-template-columns: 210px 1fr; gap: 20px; margin: 0; padding: 20px 0; border-bottom: 1px solid color-mix(in srgb, var(--paper) 24%, transparent); }
.close-reasons strong { color: var(--paper); font-size: 18px; }
.close-reasons span { font-size: 16px; line-height: 1.25; opacity: .82; }
.contact-line { position: absolute; left: 64px; right: 64px; bottom: 20px; font-size: 13px; opacity: .75; }

@media (max-width: 760px) {
  :root { --chrome-height: 64px; }
  .presentation-chrome { padding: 0 10px; gap: 8px; }
  .presentation-status { font-size: 13px; }
  .status-title { display: none; }
  .presentation-actions button { min-width: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .progress-track span { transition: none; }
}

@media print {
  @page { size: 1280px 720px; margin: 0; }
  html, body { width: 1280px; margin: 0; background: #fff; }
  .presentation-chrome, .slide-rail { display: none !important; }
  #deck { width: 1280px; }
  .slide-frame { width: 1280px; height: 720px; min-height: 0; padding: 0; display: block; break-after: page; page-break-after: always; }
  .slide-frame:last-child { break-after: auto; page-break-after: auto; }
  .slide { position: relative; left: auto; top: auto; transform: none !important; margin: 0; break-after: page; page-break-after: always; }
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
