:root {
  --canvas-width: 1600;
  --canvas-height: 900;
  --scale: 1;
  --ink: #f4f8ff;
  --ink-soft: #d8e3f2;
  --muted: #95a8c2;
  --muted-deep: #667b99;
  --background: #07111f;
  --background-deep: #030914;
  --panel: rgba(15, 29, 48, 0.94);
  --panel-strong: #10213a;
  --line: rgba(158, 185, 217, 0.2);
  --line-bright: rgba(158, 185, 217, 0.38);
  --energyplus: #f5b942;
  --energyplus-soft: rgba(245, 185, 66, 0.14);
  --openstudio: #57b8ff;
  --openstudio-soft: rgba(87, 184, 255, 0.14);
  --node: #65dfc4;
  --node-soft: rgba(101, 223, 196, 0.13);
  --danger: #ff8298;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--background-deep);
}

body {
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button {
  color: inherit;
  font: inherit;
}

.projection {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 110%, rgba(54, 118, 181, 0.18), transparent 48%),
    #020711;
}

.deck {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1600px;
  height: 900px;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(var(--scale));
  transform-origin: center;
  background: var(--background);
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  width: 1600px;
  height: 900px;
  padding: 58px 78px 35px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateX(42px) scale(0.992);
  transition: none;
  background:
    radial-gradient(circle at 88% 8%, rgba(58, 134, 198, 0.16), transparent 30%),
    linear-gradient(135deg, #081523 0%, #07111f 56%, #081728 100%);
}

.deck.is-ready .slide {
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 360ms;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, var(--openstudio), #3b75d5 58%, var(--node));
}

.slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0s;
}

.slide.was-active {
  visibility: visible;
  opacity: 0;
  transform: translateX(-42px) scale(0.992);
}

.slide-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(118, 156, 195, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 156, 195, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.slide-header,
.comparison,
.structure-comparison,
.takeaway,
.collapse-band,
.human-takeaway {
  position: relative;
  z-index: 1;
}

.slide-header {
  max-width: 1390px;
}

.slide-header .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--openstudio);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-grid;
  width: 34px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(87, 184, 255, 0.45);
  border-radius: 999px;
  background: rgba(87, 184, 255, 0.1);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.eyebrow > b {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.slide-header h1 {
  max-width: 1390px;
  margin: 0;
  font-size: 52px;
  font-weight: 720;
  letter-spacing: -0.038em;
  line-height: 1.02;
}

.slide-header p {
  max-width: 1250px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.42;
}

.compact-header h1 {
  font-size: 46px;
}

.compact-header p {
  margin-top: 9px;
  font-size: 19px;
}

.comparison-code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px minmax(0, 1fr);
  align-items: stretch;
  min-height: 0;
}

.comparison-code > .openstudio-card {
  order: 1;
}

.comparison-code > .parallel-marker {
  order: 2;
}

.comparison-code > .energyplus-card {
  order: 3;
}

.code-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(20, 38, 63, 0.96), rgba(10, 23, 40, 0.97));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.code-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  opacity: 0.88;
}

.energyplus-card::after {
  background: linear-gradient(90deg, var(--energyplus), transparent 78%);
}

.openstudio-card::after {
  background: linear-gradient(90deg, var(--openstudio), transparent 78%);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 17px 22px 14px;
  border-bottom: 1px solid var(--line);
}

.product-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.04);
}

.energyplus-card .product-dot {
  background: var(--energyplus);
}

.openstudio-card .product-dot {
  background: var(--openstudio);
}

.card-kicker {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-heading h2,
.structure-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  font-weight: 720;
  line-height: 1.1;
}

.alignment-tag {
  margin-left: auto;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

pre {
  margin: 0;
}

.code-card pre {
  padding: 26px 25px;
  overflow: hidden;
  color: #dce8f6;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 18px;
  font-variant-ligatures: none;
  line-height: 1.58;
  tab-size: 2;
  white-space: pre;
}

.code-line {
  display: block;
  min-height: 1.58em;
  margin: 0 -10px;
  padding: 0 10px;
  border-radius: 5px;
}

.token-type {
  color: #79ccff;
  font-weight: 700;
}

.energyplus-card .token-type {
  color: #ffd476;
}

.token-variable {
  color: #8ad6ff;
}

.token-number {
  color: #b8e986;
}

.token-value,
.token-string {
  color: #f2c77c;
}

.token-comment {
  color: #8095b0;
}

.parallel-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--muted);
}

.parallel-marker span {
  width: 1px;
  height: 28%;
  background: linear-gradient(transparent, var(--line-bright), transparent);
}

.parallel-marker strong {
  padding: 8px 10px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: rgba(8, 20, 35, 0.92);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.takeaway {
  display: flex;
  align-items: center;
  gap: 19px;
  min-height: 63px;
  padding: 12px 19px;
  border: 1px solid rgba(87, 184, 255, 0.27);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(87, 184, 255, 0.12), rgba(87, 184, 255, 0.035));
}

.takeaway-label {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--openstudio);
  color: #04111d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.takeaway p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 560;
  line-height: 1.35;
}

/* Intro: the original two-schema setup */

.slide-setup {
  gap: 16px;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
}

.slide-setup .slide-header h1 {
  font-size: 48px;
}

.setup-worlds {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  min-height: 0;
}

.schema-world {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 19px 21px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(20, 38, 63, 0.96), rgba(10, 23, 40, 0.97));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.energyplus-world {
  order: 3;
  border-top: 3px solid var(--energyplus);
}

.openstudio-world {
  order: 1;
  border-top: 3px solid var(--openstudio);
}

.world-heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.world-heading h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
}

.world-mode {
  margin-left: auto;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.world-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 54px minmax(0, 1.08fr);
  flex: 1;
  align-items: stretch;
  margin-top: 17px;
}

.schema-tile,
.interface-tile {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(5, 14, 26, 0.62);
}

.energyplus-world .schema-tile,
.energyplus-world .interface-tile {
  border-color: rgba(245, 185, 66, 0.22);
}

.openstudio-world .schema-tile,
.openstudio-world .interface-tile {
  border-color: rgba(87, 184, 255, 0.24);
}

.tile-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-deep);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schema-name {
  display: block;
  color: var(--ink-soft);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 16px;
  white-space: nowrap;
}

.energyplus-world .schema-name {
  color: #ffd477;
}

.openstudio-world .schema-name {
  color: #86d1ff;
}

.type-count {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin: 15px 0 12px;
}

.type-count b {
  color: var(--ink);
  font-size: 49px;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.energyplus-world .type-count b {
  color: var(--energyplus);
}

.openstudio-world .type-count b {
  color: var(--openstudio);
}

.type-count span {
  max-width: 64px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.05;
  text-transform: uppercase;
}

.schema-tile p,
.interface-tile > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.36;
}

.defines-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.defines-arrow span {
  color: var(--muted-deep);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.defines-arrow i {
  position: relative;
  width: 35px;
  height: 1px;
  background: var(--line-bright);
}

.defines-arrow i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--muted);
  border-right: 1px solid var(--muted);
  transform: rotate(45deg);
}

.interface-title {
  margin-bottom: 13px;
  color: var(--ink-soft);
  font-size: 21px;
  font-weight: 580;
}

.interface-title b {
  font-weight: 800;
}

.idf-interface .interface-title b {
  color: var(--energyplus);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

.model-interface .interface-title b {
  color: var(--openstudio);
}

.interface-tile pre {
  margin: 0 0 13px;
  padding: 11px 12px;
  overflow: hidden;
  border: 1px solid rgba(152, 181, 215, 0.14);
  border-radius: 8px;
  background: rgba(2, 9, 18, 0.66);
  color: var(--ink-soft);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10.5px;
  line-height: 1.48;
  white-space: pre;
}

.idf-interface pre span {
  color: #ffd477;
  font-weight: 750;
}

.idf-interface pre i {
  color: var(--muted-deep);
  font-style: normal;
}

.model-interface pre span {
  color: #86d1ff;
}

.persistence-pill {
  margin-top: 11px;
  padding: 7px 9px;
  border: 1px solid rgba(87, 184, 255, 0.22);
  border-radius: 7px;
  background: var(--openstudio-soft);
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  text-align: center;
}

.persistence-pill b {
  color: var(--openstudio);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

.world-versus {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--muted-deep);
}

.world-versus b {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: #081522;
  color: var(--ink-soft);
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.world-versus span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.original-workflow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 275px minmax(240px, 1fr) 275px 75px 215px;
  min-height: 66px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(7, 18, 32, 0.76);
}

.workflow-object {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 17px;
}

.workflow-object span {
  margin-bottom: 4px;
  color: var(--muted-deep);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.workflow-object strong {
  color: var(--ink-soft);
  font-size: 15px;
}

.os-workflow-object {
  border-right: 1px solid rgba(87, 184, 255, 0.16);
  background: linear-gradient(90deg, var(--openstudio-soft), transparent);
}

.os-workflow-object strong {
  color: #9bdcff;
}

.idf-workflow-object {
  border-right: 1px solid rgba(245, 185, 66, 0.16);
  border-left: 1px solid rgba(245, 185, 66, 0.16);
  background: linear-gradient(90deg, rgba(245, 185, 66, 0.05), rgba(245, 185, 66, 0.1));
}

.idf-workflow-object strong {
  color: #ffd477;
}

.engine-workflow-object {
  background: rgba(245, 185, 66, 0.05);
}

.workflow-arrow,
.short-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.workflow-arrow span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-arrow i,
.short-arrow i {
  position: relative;
  width: calc(100% - 42px);
  height: 1px;
  background: linear-gradient(90deg, var(--openstudio), var(--energyplus));
}

.short-arrow i {
  width: 40px;
  background: var(--energyplus);
}

.workflow-arrow i::after,
.short-arrow i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--energyplus);
  border-right: 1px solid var(--energyplus);
  transform: rotate(45deg);
}

.setup-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 3px;
}

.setup-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.setup-note strong {
  font-weight: 680;
}

.setup-note > span {
  color: var(--muted-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Project goal */

.slide-goal {
  gap: 20px;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.slide-goal .slide-header h1 {
  font-size: 48px;
}

.goal-architecture {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.16fr) minmax(0, 0.92fr);
  align-items: stretch;
  min-height: 0;
}

.goal-endpoint {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 21px 22px 19px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(20, 38, 63, 0.97), rgba(10, 23, 40, 0.98));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.goal-openstudio {
  border-top: 3px solid var(--openstudio);
}

.goal-energyplus {
  border-top: 3px solid var(--energyplus);
}

.goal-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.goal-openstudio .goal-label {
  border-color: rgba(87, 184, 255, 0.3);
  color: var(--openstudio);
}

.goal-energyplus .goal-label {
  border-color: rgba(245, 185, 66, 0.3);
  color: var(--energyplus);
}

.goal-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-right: 76px;
}

.goal-energyplus .goal-heading {
  padding-right: 118px;
}

.goal-heading h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.08;
}

.goal-core-description {
  margin: 24px 0 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.goal-large-points {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.goal-large-points span {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.os-goal-points span {
  border: 1px solid rgba(87, 184, 255, 0.24);
  background: var(--openstudio-soft);
  color: #9edcff;
}

.eplus-goal-points span {
  border: 1px solid rgba(245, 185, 66, 0.24);
  background: var(--energyplus-soft);
  color: #f2d898;
}

.eplus-goal-points b {
  margin-right: 4px;
  color: #ffd477;
}

.goal-description {
  min-height: 43px;
  margin: 15px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.api-examples {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(87, 184, 255, 0.18);
  border-radius: 10px;
  background: rgba(2, 9, 18, 0.65);
}

.api-examples code {
  color: var(--ink-soft);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10.5px;
  white-space: nowrap;
}

.api-examples code span {
  color: #86d1ff;
}

.api-examples code b {
  color: #b8e986;
  font-weight: 500;
}

.goal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 13px;
}

.goal-tags span {
  padding: 6px 8px;
  border: 1px solid rgba(87, 184, 255, 0.2);
  border-radius: 7px;
  background: var(--openstudio-soft);
  color: #8dd4ff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reconciliation-bridge {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 0 30px;
}

.bridge-arrow {
  position: absolute;
  top: 50%;
  right: 4px;
  left: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--openstudio), var(--node) 48%, var(--energyplus));
}

.bridge-arrow::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--energyplus);
  border-right: 2px solid var(--energyplus);
  transform: rotate(45deg);
}

.reconciliation-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 26px 24px;
  border: 1px solid rgba(101, 223, 196, 0.48);
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(13, 48, 52, 0.98), rgba(8, 29, 38, 0.99));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.36), 0 0 35px rgba(101, 223, 196, 0.07);
  text-align: center;
}

.epmodel-badge {
  display: inline-block;
  margin-bottom: 13px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--node);
  color: #06241f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reconciliation-card h2 {
  margin: 0;
  color: #cafff2;
  font-size: 28px;
}

.reconciliation-card > p {
  margin: 10px 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
}

.reconciliation-items {
  display: grid;
  gap: 10px;
}

.reconciliation-items span {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(101, 223, 196, 0.24);
  border-radius: 9px;
  background: rgba(2, 14, 19, 0.44);
  color: #bdeade;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.goal-direct-message {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 26px;
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  background: rgba(7, 18, 32, 0.82);
  color: var(--ink-soft);
  font-size: 21px;
}

.goal-direct-message strong {
  color: var(--openstudio);
}

.goal-direct-message i {
  color: var(--node);
  font-size: 28px;
  font-style: normal;
}

.goal-direct-message span {
  color: var(--energyplus);
}

.energyplus-backing {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: stretch;
}

.energyplus-backing > div {
  padding: 12px 10px;
  border: 1px solid rgba(245, 185, 66, 0.2);
  border-radius: 10px;
  background: rgba(2, 9, 18, 0.62);
}

.energyplus-backing span,
.energyplus-backing strong,
.energyplus-backing small {
  display: block;
}

.energyplus-backing span {
  margin-bottom: 5px;
  color: var(--muted-deep);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.energyplus-backing strong {
  color: #ffd477;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}

.energyplus-backing small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
}

.energyplus-backing > i {
  position: relative;
  align-self: center;
  height: 1px;
  background: rgba(245, 185, 66, 0.55);
}

.energyplus-backing > i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--energyplus);
  border-right: 1px solid var(--energyplus);
  transform: rotate(45deg);
}

.source-of-truth {
  margin-top: auto;
  padding: 10px;
  border: 1px solid rgba(245, 185, 66, 0.22);
  border-radius: 9px;
  background: var(--energyplus-soft);
  color: #e5c780;
  font-size: 9px;
  font-weight: 750;
  text-align: center;
}

.route-comparison {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(7, 18, 32, 0.76);
}

.route-row {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
}

.route-row + .route-row {
  border-top: 1px solid var(--line);
}

.goal-route {
  background: linear-gradient(90deg, rgba(101, 223, 196, 0.08), transparent 75%);
}

.route-label {
  width: 43px;
  flex: 0 0 auto;
  color: var(--muted-deep);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.goal-route .route-label {
  color: var(--node);
}

.route-chip {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.os-route-chip {
  border-color: rgba(87, 184, 255, 0.22);
  background: var(--openstudio-soft);
  color: #87d2ff;
}

.eplus-route-chip {
  border-color: rgba(245, 185, 66, 0.22);
  background: var(--energyplus-soft);
  color: #ffd477;
}

.translator-route-chip {
  color: var(--muted);
}

.route-row > i {
  position: relative;
  width: 34px;
  height: 1px;
  flex: 0 1 34px;
  background: var(--line-bright);
}

.route-row > i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--muted);
  border-right: 1px solid var(--muted);
  transform: rotate(45deg);
}

.goal-takeaway {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 15px;
}

.goal-takeaway strong {
  color: var(--openstudio);
}

.goal-takeaway span {
  color: var(--energyplus);
}

/* Scalar naming differences */

.gas-comparison {
  min-height: 0;
}

.card-heading mark {
  padding: 1px 5px 2px;
  border-radius: 5px;
  background: var(--energyplus-soft);
  color: var(--energyplus);
}

.openstudio-card .card-heading mark {
  background: var(--openstudio-soft);
  color: var(--openstudio);
}

.dense-code pre {
  padding: 18px 20px;
  font-size: 14.7px;
  line-height: 1.48;
}

.dense-code code {
  display: flex;
  flex-direction: column;
}

.dense-code .code-line {
  min-height: 1.48em;
}

.dense-code .long-field {
  font-size: 13px;
}

.name-drift {
  background: linear-gradient(90deg, rgba(245, 185, 66, 0.09), transparent 90%);
}

.name-drift strong {
  color: #ffd471;
  font-weight: 720;
}

.openstudio-card .name-drift strong {
  color: #86d0ff;
}

.node-arrives {
  position: relative;
  background: linear-gradient(90deg, rgba(101, 223, 196, 0.16), rgba(101, 223, 196, 0.04));
  box-shadow: inset 3px 0 var(--node);
}

.node-arrives .token-value,
.node-arrives .token-comment {
  color: #8be6d1;
}

.ruby-coil-card {
  display: flex;
  flex-direction: column;
}

.ruby-coil-card pre {
  padding-top: 25px;
  font-size: 15px;
  line-height: 1.62;
}

.missing-setters {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: auto 20px 21px;
  padding: 15px 17px;
  border: 1px solid rgba(101, 223, 196, 0.3);
  border-radius: 12px;
  background: var(--node-soft);
}

.question-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--node);
  color: #06241f;
  font-size: 22px;
  font-weight: 850;
}

.missing-setters div > strong,
.missing-setters div > span {
  display: block;
}

.missing-setters strong {
  color: #c6fff1;
  font-size: 18px;
}

.missing-setters div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.takeaway-two {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 10px 16px;
}

.mapping-pills {
  display: flex;
  gap: 8px;
}

.mapping-pills span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 17, 30, 0.58);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.mapping-pills b:first-child {
  color: var(--openstudio);
}

.mapping-pills b:last-child {
  color: var(--energyplus);
}

.takeaway-two p {
  padding-left: 22px;
  border-left: 1px solid var(--line-bright);
}

/* Slide 3 */

.slide-three {
  gap: 17px;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.structure-comparison {
  display: grid;
  grid-template-columns: 1.28fr 54px 0.92fr;
  align-items: stretch;
  min-height: 0;
}

.structure-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(20, 38, 63, 0.96), rgba(10, 23, 40, 0.97));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.eplus-structure {
  order: 3;
  border-top: 3px solid var(--energyplus);
}

.os-structure {
  order: 1;
  border-top: 3px solid var(--openstudio);
}

.structure-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.system-badge {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: #06101c;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.eplus-badge {
  background: var(--energyplus);
}

.os-badge {
  background: var(--openstudio);
}

.idf-objects {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 13px 6px 9px;
}

.idf-object {
  overflow: hidden;
  border: 1px solid rgba(245, 185, 66, 0.22);
  border-radius: 11px;
  background: rgba(5, 14, 26, 0.62);
}

.idf-object > strong {
  display: block;
  padding: 9px 13px;
  border-bottom: 1px solid var(--line);
  color: #ffd375;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 17px;
}

.field-pair {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 11px 13px;
  color: var(--muted);
  font-size: 16px;
}

.field-pair b {
  padding: 5px 11px;
  border: 1px solid rgba(101, 223, 196, 0.34);
  border-radius: 7px;
  background: var(--node-soft);
  color: #a4f2df;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 19px;
}

.same-name {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 35px;
}

.same-name i {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 223, 196, 0.65));
}

.same-name i:last-child {
  transform: scaleX(-1);
}

.same-name span {
  color: var(--node);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.structure-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.caption-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(245, 185, 66, 0.38);
  border-radius: 9px;
  color: var(--energyplus);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.structure-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.structure-caption strong {
  color: var(--ink-soft);
}

.versus {
  order: 2;
  display: grid;
  place-items: center;
}

.versus span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: #081522;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.object-graph {
  display: grid;
  grid-template-columns: 128px 1fr 184px 1fr 128px;
  align-items: center;
  min-height: 210px;
  margin: 30px 0 20px;
}

.graph-object {
  position: relative;
  display: flex;
  min-height: 96px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  background: rgba(5, 14, 26, 0.72);
  text-align: center;
}

.graph-object .object-kind {
  margin-bottom: 6px;
  color: var(--muted-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.graph-object strong {
  font-size: 19px;
}

.equipment-object {
  border-color: rgba(87, 184, 255, 0.32);
  box-shadow: inset 0 0 28px rgba(87, 184, 255, 0.04);
}

.node-object {
  min-height: 126px;
  border-color: rgba(101, 223, 196, 0.66);
  background: linear-gradient(155deg, rgba(22, 67, 67, 0.55), rgba(7, 31, 37, 0.82));
  box-shadow: 0 0 32px rgba(101, 223, 196, 0.08);
}

.node-object strong {
  color: #c7fff1;
}

.node-object > b {
  margin-top: 4px;
  color: var(--node);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 18px;
}

.ports {
  position: absolute;
  right: -11px;
  bottom: -13px;
  left: -11px;
  display: flex;
  justify-content: space-between;
}

.ports span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--node);
  border-radius: 50%;
  background: #0b2430;
  color: var(--node);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.graph-edge {
  position: relative;
  align-self: center;
}

.edge-label {
  display: block;
  margin-bottom: 8px;
  color: #85cfff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.arrow-line {
  position: relative;
  height: 2px;
  margin-right: 4px;
  background: linear-gradient(90deg, rgba(87, 184, 255, 0.35), var(--openstudio));
}

.arrow-line i {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--openstudio);
  border-right: 2px solid var(--openstudio);
  transform: translateY(-50%) rotate(45deg);
}

.graph-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.graph-facts > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(5, 14, 26, 0.5);
}

.fact-number {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--openstudio-soft);
  color: var(--openstudio);
  font-size: 13px;
  font-weight: 850;
}

.graph-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.graph-facts strong {
  color: var(--ink-soft);
  font-size: 12px;
}

.collapse-band {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  align-items: center;
  min-height: 66px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(7, 18, 32, 0.72);
}

.collapse-band > div:not(.translator-arrow) {
  padding: 11px 18px;
}

.collapse-band > div:last-child {
  text-align: right;
}

.mini-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collapse-band strong {
  color: var(--ink-soft);
  font-size: 14px;
}

.translator-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.translator-arrow i {
  position: relative;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, var(--openstudio), var(--energyplus));
}

.translator-arrow i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--energyplus);
  border-right: 1px solid var(--energyplus);
  transform: rotate(45deg);
}

.human-takeaway {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 15px 22px;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  background: rgba(7, 18, 32, 0.76);
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.35;
}

.human-takeaway strong {
  color: var(--openstudio);
}

.human-takeaway span {
  color: var(--energyplus);
}

/* Defaults and inheritance */

.slide-defaults {
  gap: 17px;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.defaults-comparison {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
  min-height: 0;
}

.defaults-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(20, 38, 63, 0.96), rgba(10, 23, 40, 0.98));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.os-defaults-panel {
  border-top: 3px solid var(--openstudio);
}

.eplus-defaults-panel {
  border-top: 3px solid var(--energyplus);
}

.defaults-versus {
  display: grid;
  place-items: center;
}

.defaults-versus span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  background: #081522;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.defaults-os-graph {
  display: grid;
  grid-template-columns: 154px minmax(90px, 1fr) 280px;
  align-items: center;
  flex: 1;
  gap: 12px;
  padding: 18px 4px 12px;
}

.default-owner,
.default-set-object {
  border: 1px solid rgba(87, 184, 255, 0.34);
  border-radius: 13px;
  background: rgba(4, 14, 27, 0.72);
}

.default-owner {
  display: grid;
  min-height: 108px;
  place-content: center;
  padding: 16px;
  text-align: center;
}

.default-owner span,
.default-set-object > span {
  color: var(--openstudio);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.default-owner strong {
  margin-top: 8px;
  font-size: 21px;
}

.default-link {
  position: relative;
  text-align: center;
}

.default-link span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.default-link i {
  position: relative;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(87, 184, 255, 0.28), var(--openstudio));
}

.default-link i::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--openstudio);
  border-right: 2px solid var(--openstudio);
  transform: rotate(45deg);
}

.default-set-object {
  padding: 16px;
}

.default-set-object > strong {
  display: block;
  margin: 5px 0 13px;
  font-size: 20px;
}

.default-set-object > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  padding: 7px 9px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.default-set-object b {
  color: var(--ink-soft);
}

.default-set-object em {
  color: #9edcff;
  font-style: normal;
}

.defaults-api {
  padding: 13px 15px;
  border: 1px solid rgba(87, 184, 255, 0.2);
  border-radius: 10px;
  background: rgba(2, 9, 18, 0.64);
  color: #9edcff;
  font-size: 14px;
}

.resolved-loads {
  display: grid;
  align-content: center;
  flex: 1;
  gap: 12px;
  padding: 18px 4px 12px;
}

.resolved-loads > div {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.95fr;
  align-items: center;
  min-height: 62px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 185, 66, 0.25);
  border-radius: 11px;
  background: rgba(4, 14, 27, 0.7);
}

.resolved-loads strong {
  color: #ffd477;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}

.resolved-loads span {
  color: var(--muted);
  font-size: 13px;
}

.resolved-loads b {
  justify-self: end;
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--energyplus-soft);
  color: var(--energyplus);
  font-size: 14px;
}

.missing-default-object {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 13px;
  padding: 11px 14px;
  border: 1px dashed rgba(245, 185, 66, 0.34);
  border-radius: 10px;
  background: rgba(245, 185, 66, 0.05);
}

.missing-default-object > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--energyplus-soft);
  color: var(--energyplus);
  font-size: 22px;
}

.missing-default-object p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.missing-default-object strong {
  color: var(--ink-soft);
  font-size: 16px;
}

.defaults-takeaway {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  background: rgba(7, 18, 32, 0.76);
  font-size: 17px;
}

.defaults-takeaway strong {
  color: var(--openstudio);
}

.defaults-takeaway span {
  color: var(--ink-soft);
}

.defaults-takeaway em {
  margin-left: 10px;
  padding-left: 18px;
  border-left: 1px solid var(--line-bright);
  color: var(--energyplus);
  font-size: 13px;
  font-style: normal;
}

/* Resolution strategy */

.slide-resolution {
  gap: 16px;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
}

.api-invariant {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  min-height: 68px;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
  border: 1px solid rgba(87, 184, 255, 0.38);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(87, 184, 255, 0.14), rgba(87, 184, 255, 0.035));
}

.api-invariant > span {
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--openstudio);
  color: #04111d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.api-invariant strong {
  color: #a9ddff;
  font-size: 21px;
}

.api-invariant i {
  color: var(--node);
  font-size: 25px;
  font-style: normal;
}

.api-invariant b {
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 650;
}

.resolution-levers {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  min-height: 0;
}

.resolution-card {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px 18px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(20, 38, 63, 0.96), rgba(10, 23, 40, 0.98));
}

.adapt-card {
  border-top: 3px solid var(--node);
}

.evolve-card {
  border-top: 3px solid var(--energyplus);
}

.lever-number {
  display: grid;
  width: 60px;
  height: 60px;
  grid-row: 1 / 3;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 15px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 850;
}

.adapt-card .lever-number {
  border-color: rgba(101, 223, 196, 0.42);
  background: var(--node-soft);
  color: var(--node);
}

.evolve-card .lever-number {
  border-color: rgba(245, 185, 66, 0.42);
  background: var(--energyplus-soft);
  color: var(--energyplus);
}

.lever-heading > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lever-heading h2 {
  max-width: 500px;
  margin: 6px 0 0;
  font-size: 25px;
  line-height: 1.1;
}

.lever-example {
  align-self: end;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(3, 12, 23, 0.58);
}

.lever-example > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lever-example strong {
  color: var(--ink-soft);
  font-size: 18px;
}

.lever-example p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.adapt-card .lever-example strong {
  color: #a9f3e2;
}

.evolve-card .lever-example strong {
  color: #ffd477;
}

.lever-plus {
  display: grid;
  place-content: center;
  text-align: center;
}

.lever-plus span {
  display: grid;
  width: 43px;
  height: 43px;
  margin: 0 auto 8px;
  place-items: center;
  border: 1px solid rgba(101, 223, 196, 0.46);
  border-radius: 50%;
  background: #0b2430;
  color: var(--node);
  font-size: 26px;
}

.lever-plus small {
  color: var(--muted-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resolution-rule {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 61px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 11px 18px;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  background: rgba(7, 18, 32, 0.76);
}

.resolution-rule span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resolution-rule strong {
  color: var(--ink-soft);
  font-size: 18px;
}

.resolution-rule em {
  margin-left: 10px;
  padding-left: 20px;
  border-left: 1px solid var(--line-bright);
  color: var(--openstudio);
  font-size: 14px;
  font-style: normal;
}

/* Scale */

.slide-scale {
  gap: 18px;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.scale-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 22px;
  min-height: 0;
}

.scale-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(245, 185, 66, 0.34);
  border-top: 3px solid var(--energyplus);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(48, 38, 18, 0.64), rgba(10, 23, 40, 0.98));
  text-align: center;
}

.scale-hero > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scale-hero > strong {
  margin: 4px 0 -4px;
  color: var(--energyplus);
  font-size: 116px;
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 1;
}

.scale-hero > b {
  color: #ffd477;
  font-size: 24px;
  font-weight: 700;
}

.scale-hero p {
  max-width: 350px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.parity-dimensions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.parity-dimensions article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(155deg, rgba(20, 38, 63, 0.94), rgba(10, 23, 40, 0.96));
}

.dimension-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(87, 184, 255, 0.34);
  border-radius: 13px;
  background: var(--openstudio-soft);
  color: var(--openstudio);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 750;
}

.parity-dimensions strong {
  color: var(--ink-soft);
  font-size: 19px;
}

.parity-dimensions p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.scale-equation {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px 18px;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  background: rgba(7, 18, 32, 0.8);
}

.scale-equation span {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 650;
}

.scale-equation i,
.scale-equation b {
  color: var(--node);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
}

.scale-equation strong {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--node-soft);
  color: var(--node);
  font-size: 18px;
}

/* Agent evolution */

.slide-agents {
  gap: 18px;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.agent-evolution {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr) 74px minmax(0, 1fr);
  min-height: 0;
}

.agent-era {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px 24px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(20, 38, 63, 0.96), rgba(10, 23, 40, 0.98));
}

.prompt-era {
  border-top: 3px solid var(--muted-deep);
}

.campaign-era {
  border-top: 3px solid var(--openstudio);
}

.horizon-era {
  border-top: 3px solid var(--node);
  box-shadow: 0 0 44px rgba(101, 223, 196, 0.07);
}

.era-index {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(149, 168, 194, 0.16);
  font-size: 64px;
  font-weight: 850;
  line-height: 1;
}

.era-label {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.agent-era h2 {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  font-size: 27px;
}

.agent-era p {
  margin: 18px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.era-command,
.campaign-loop-mini {
  margin-top: auto;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(3, 12, 23, 0.66);
  color: var(--ink-soft);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  text-align: center;
}

.prompt-era .era-command {
  color: var(--muted);
}

.horizon-era .era-command {
  border-color: rgba(101, 223, 196, 0.28);
  color: #a9f3e2;
}

.campaign-loop-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-color: rgba(87, 184, 255, 0.28);
  color: #9edcff;
}

.campaign-loop-mini i {
  color: var(--node);
  font-style: normal;
}

.era-arrow {
  display: grid;
  place-items: center;
}

.era-arrow i {
  position: relative;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(87, 184, 255, 0.28), var(--node));
}

.era-arrow i::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--node);
  border-right: 2px solid var(--node);
  transform: rotate(45deg);
}

.agent-bottom-line {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 20px;
  border: 1px solid rgba(101, 223, 196, 0.32);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(101, 223, 196, 0.1), rgba(87, 184, 255, 0.04));
}

.agent-bottom-line strong {
  color: var(--node);
  font-size: 19px;
}

.agent-bottom-line span {
  padding-left: 20px;
  border-left: 1px solid var(--line-bright);
  color: var(--ink-soft);
  font-size: 16px;
}

/* End-to-end workflow proof */

.slide-workflow-proof {
  gap: 17px;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.proof-pipeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.84fr 82px 1.42fr 82px 0.84fr;
  min-height: 0;
}

.proof-stage {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(155deg, rgba(20, 38, 63, 0.96), rgba(10, 23, 40, 0.98));
}

.seed-stage {
  border-top: 3px solid var(--energyplus);
}

.measure-stage {
  border-top: 3px solid var(--openstudio);
}

.result-stage {
  border-top: 3px solid var(--node);
}

.proof-step {
  position: absolute;
  top: 18px;
  left: 21px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.file-icon,
.success-mark {
  display: grid;
  width: 67px;
  height: 67px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 900;
}

.file-icon {
  border: 1px solid rgba(245, 185, 66, 0.4);
  background: var(--energyplus-soft);
  color: var(--energyplus);
}

.success-mark {
  border: 1px solid rgba(101, 223, 196, 0.4);
  background: var(--node-soft);
  color: var(--node);
  font-size: 31px;
}

.proof-stage h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.proof-stage > code {
  color: var(--ink-soft);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  line-height: 1.5;
}

.seed-stage > code {
  color: #ffd477;
}

.result-stage > code {
  color: #a9f3e2;
}

.proof-stage > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.proof-stage > p strong {
  color: var(--ink-soft);
}

.measure-stage {
  padding-top: 54px;
}

.measure-stage pre {
  margin: 2px 0 0;
  padding: 17px;
  overflow: hidden;
  border: 1px solid rgba(87, 184, 255, 0.2);
  border-radius: 11px;
  background: rgba(2, 9, 18, 0.68);
}

.measure-stage pre code {
  color: var(--ink-soft);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre;
}

.proof-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.proof-arrow span {
  color: var(--muted-deep);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-arrow i {
  position: relative;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--openstudio), var(--node));
}

.proof-arrow i::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--node);
  border-right: 2px solid var(--node);
  transform: rotate(45deg);
}

.proof-results {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, auto) 1fr;
  min-height: 76px;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  background: rgba(7, 18, 32, 0.8);
}

.proof-results > div {
  display: grid;
  min-width: 132px;
  padding: 12px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.proof-results strong {
  color: var(--node);
  font-size: 22px;
}

.proof-results span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-results p {
  margin: 0;
  padding: 0 24px;
  color: var(--ink-soft);
  font-size: 14px;
  text-align: right;
}

/* Alpha milestone */

.slide-alpha {
  gap: 34px;
  grid-template-rows: auto minmax(0, 1fr);
  padding-bottom: 62px;
}

.slide-alpha .slide-header {
  max-width: 1320px;
}

.alpha-focus {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  min-height: 0;
}

.alpha-badge-card,
.alpha-qr-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(20, 38, 63, 0.96), rgba(10, 23, 40, 0.98));
}

.alpha-badge-card {
  border: 1px solid rgba(101, 223, 196, 0.44);
  border-top: 4px solid var(--node);
  background: linear-gradient(155deg, rgba(15, 55, 58, 0.78), rgba(8, 25, 38, 0.98));
  box-shadow: 0 0 70px rgba(101, 223, 196, 0.1);
  text-align: center;
}

.alpha-badge-card > span {
  color: var(--node);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alpha-badge-card > strong {
  margin: 20px 0 0;
  color: var(--node);
  font-size: 110px;
  font-weight: 820;
  letter-spacing: 0.02em;
  line-height: 1;
}

.alpha-badge-card > p {
  max-width: 480px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.45;
}

.presentation-qr,
.pdf-download {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(3, 12, 23, 0.7);
  color: var(--ink-soft);
  text-decoration: none;
}

.presentation-qr {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  width: 100%;
  padding: 18px;
  border-color: rgba(101, 223, 196, 0.3);
}

.presentation-qr img {
  width: 280px;
  height: 280px;
  padding: 13px;
  border-radius: 12px;
  background: #fff;
}

.presentation-qr > span {
  display: grid;
  gap: 5px;
}

.presentation-qr b,
.presentation-qr small {
  display: block;
}

.presentation-qr b {
  color: var(--node);
  font-size: 25px;
}

.presentation-qr small {
  color: var(--muted);
  font-size: 17px;
}

.pdf-download {
  width: 100%;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 18px;
}

.pdf-download > span {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--energyplus-soft);
  color: var(--energyplus);
  font-size: 12px;
  font-weight: 900;
}

.pdf-download b {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.25;
}

/* Bonus: the one-prompt version */

.slide-prompt {
  gap: 24px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding-bottom: 54px;
}

.prompt-shell {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 24px 34px 25px;
  overflow: hidden;
  border: 1px solid rgba(101, 223, 196, 0.42);
  border-top: 4px solid var(--node);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(14, 47, 54, 0.86), rgba(7, 22, 37, 0.98));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24), 0 0 40px rgba(101, 223, 196, 0.06);
}

.prompt-shell::before {
  content: "\201C";
  position: absolute;
  top: 28px;
  right: 36px;
  color: rgba(101, 223, 196, 0.12);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 0.7;
}

.prompt-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.prompt-label span {
  color: var(--node);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prompt-label b {
  padding: 7px 11px;
  border: 1px solid rgba(101, 223, 196, 0.3);
  border-radius: 999px;
  background: var(--node-soft);
  color: #bff9eb;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prompt-shell blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.42;
}

.prompt-shell blockquote p {
  margin: 0 0 13px;
}

.prompt-shell blockquote p:last-child {
  margin-bottom: 0;
}

.prompt-shell blockquote p:first-child {
  color: #c9fff2;
  font-weight: 650;
}

.prompt-verdict {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 22px;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  background: rgba(7, 18, 32, 0.82);
  font-size: 18px;
}

.prompt-verdict strong {
  color: var(--node);
  font-size: 21px;
}

.prompt-verdict span {
  padding-left: 18px;
  border-left: 1px solid var(--line-bright);
  color: var(--ink-soft);
}

/* Projection readability: supporting labels should remain legible from the room. */

.world-mode,
.alignment-tag,
.parallel-marker strong,
.tile-label,
.defines-arrow span,
.workflow-object span,
.workflow-arrow span,
.goal-label,
.epmodel-badge,
.lever-heading > span,
.lever-example > span,
.lever-plus small,
.resolution-rule span,
.era-label,
.proof-step,
.proof-arrow span,
.proof-results span {
  font-size: 12px;
}

.api-invariant > span,
.pdf-download > span {
  font-size: 13px;
}

.schema-tile p,
.interface-tile > p,
.type-count span,
.persistence-pill {
  font-size: 13px;
}

.interface-tile pre {
  font-size: 12.5px;
}

.reconciliation-card > p,
.parity-dimensions p,
.proof-stage > p {
  font-size: 15px;
}

/* Navigation and fullscreen chrome */

.progress-track {
  position: fixed;
  z-index: 12;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--openstudio), var(--node));
  transition: width 260ms ease;
}

.deck-controls {
  position: fixed;
  z-index: 15;
  right: 18px;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(146, 174, 207, 0.18);
  border-radius: 12px;
  background: rgba(4, 12, 23, 0.72);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  opacity: 0.42;
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease;
}

.deck-controls:hover,
.deck-controls:focus-within {
  opacity: 1;
}

.deck-controls button,
.help-control {
  display: grid;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.deck-controls button {
  min-width: 34px;
}

.deck-controls button:hover:not(:disabled),
.deck-controls button:focus-visible,
.help-control:hover,
.help-control:focus-visible {
  outline: none;
  background: rgba(87, 184, 255, 0.14);
}

.deck-controls button:disabled {
  cursor: default;
  opacity: 0.25;
}

.deck-controls svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.slide-count {
  display: flex;
  min-width: 52px;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
}

.slide-count b {
  color: var(--ink-soft);
  font-size: 13px;
}

.slide-count i {
  color: var(--muted-deep);
  font-style: normal;
}

.control-divider {
  width: 1px;
  height: 20px;
  margin: 0 3px;
  background: var(--line);
}

.fullscreen-control {
  display: flex !important;
  gap: 7px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.fullscreen-control .compress-icon {
  display: none;
}

body.is-fullscreen .fullscreen-control .expand-icon {
  display: none;
}

body.is-fullscreen .fullscreen-control .compress-icon {
  display: block;
}

.help-control {
  position: fixed;
  z-index: 15;
  bottom: 21px;
  left: 20px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(146, 174, 207, 0.2);
  background: rgba(4, 12, 23, 0.52);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  opacity: 0.4;
  backdrop-filter: blur(10px);
  transition: opacity 180ms ease;
}

.help-control:hover,
.help-control:focus-visible {
  opacity: 1;
}

.keyboard-help {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  background: rgba(1, 6, 14, 0.72);
  opacity: 0;
  backdrop-filter: blur(9px);
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.keyboard-help.is-visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.help-card {
  width: min(480px, calc(100vw - 40px));
  padding: 22px;
  border: 1px solid var(--line-bright);
  border-radius: 16px;
  background: #0d1c30;
  box-shadow: var(--shadow);
}

.help-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.help-heading h2 {
  margin: 0;
  font-size: 21px;
}

.help-heading button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 24px;
}

.help-card dl {
  margin: 0;
}

.help-card dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  border-top: 1px solid var(--line);
}

.help-card dt {
  color: var(--muted);
  font-size: 13px;
}

.help-card dd {
  margin: 0;
}

kbd {
  display: inline-grid;
  min-width: 28px;
  min-height: 25px;
  place-items: center;
  padding: 2px 7px;
  border: 1px solid var(--line-bright);
  border-bottom-width: 2px;
  border-radius: 6px;
  background: rgba(4, 12, 23, 0.72);
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 11px;
}

.help-card > p {
  margin: 16px 0 0;
  color: var(--muted-deep);
  font-size: 12px;
}

.help-card code {
  color: var(--node);
}

noscript {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px;
  background: #7a1e2b;
  color: white;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    size: 13.333in 7.5in;
    margin: 0;
  }

  html,
  body,
  .projection {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    background: white;
  }

  .deck {
    position: static;
    width: 1600px;
    height: auto;
    overflow: visible;
    transform: none;
    box-shadow: none;
  }

  .slide,
  .slide.is-active,
  .slide.was-active {
    position: relative;
    display: grid;
    visibility: visible;
    opacity: 1;
    transform: none;
    break-after: page;
    page-break-after: always;
  }

  .deck-controls,
  .help-control,
  .keyboard-help,
  .progress-track {
    display: none !important;
  }
}
