@font-face {
  font-family: "Flexideck Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url("/fontsource/inter/inter-latin-wght-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Flexideck Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: block;
  src: url("/fontsource/inter/inter-latin-wght-italic.woff2") format("woff2");
}

:root {
  --ink: #241b35;
  --ink-soft: #463b58;
  --paper: #fffaf2;
  --paper-deep: #f3ead9;
  --line: #2d213f;
  --sun: #ffd457;
  --coral: #ff7565;
  --teal: #55c4b6;
  --lavender: #aa8cff;
  --mint: #c9efd9;
  --rose: #ffd2dc;
  --blue: #7db7ff;
  --shadow: 0 18px 60px rgba(36, 27, 53, 0.16);
  --radius: 8px;
  --fs-h1: 86px;
  --fs-h2: 62px;
  --fs-h3: 32px;
  --fs-body: 24px;
  --fs-small: 17px;
  --fs-lede: 32px;
  --fs-quote: 78px;
  --fs-quote-small: 42px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(36, 27, 53, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(36, 27, 53, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family:
    "Flexideck Inter", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button {
  font: inherit;
}

.deck {
  position: relative;
  width: 100vw;
  height: 100vh;
  isolation: isolate;
}

.slide {
  position: absolute;
  inset: 0;
  display: none;
  overflow-y: auto;
  padding: clamp(34px, 5vh, 70px) clamp(28px, 6vw, 92px);
  outline: 0;
}

.slide::before {
  content: "";
  position: fixed;
  inset: 18px;
  z-index: -1;
  border: 2px solid rgba(36, 27, 53, 0.12);
  border-radius: 18px;
  pointer-events: none;
}

.slide.is-active {
  display: block;
  animation: slideIn 180ms ease-out both;
}

.editor-preview .slide {
  overflow: hidden;
}

@keyframes slideIn {
  from {
    opacity: 1;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: var(--fs-h1);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 1030px;
  margin-bottom: 22px;
  font-size: var(--fs-h2);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1;
  letter-spacing: 0;
}

p,
li,
small {
  color: var(--ink-soft);
  font-size: var(--fs-body);
  line-height: 1.28;
}

small {
  display: block;
  font-size: var(--fs-small);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 2px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun);
  box-shadow: 5px 5px 0 var(--line);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.lede {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: var(--fs-lede);
  line-height: 1.12;
}

.highlight {
  display: inline;
  padding: 0 0.18em;
  background: linear-gradient(transparent 56%, rgba(255, 212, 87, 0.72) 0);
  color: var(--ink);
}

.slide-grid {
  display: grid;
  align-items: center;
  min-height: calc(100vh - clamp(34px, 5vh, 70px) * 2);
  gap: clamp(30px, 5vw, 74px);
}

.two-up {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
}

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

.title-credit {
  position: fixed;
  left: clamp(28px, 6vw, 92px);
  top: calc(100vh - clamp(26px, 4vh, 54px) - 1.1em);
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 850;
  line-height: 1;
}

.hero-board {
  position: relative;
  min-height: 530px;
}

.mock-window {
  position: relative;
  min-height: 500px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 16px 16px 0 var(--line), var(--shadow);
  overflow: visible;
}

.mock-bar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 3px solid var(--line);
  background: var(--lavender);
}

.mock-bar span {
  width: 13px;
  height: 13px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.manuscript-lines {
  display: grid;
  gap: 18px;
  padding: 54px 44px;
}

.manuscript-lines i {
  display: block;
  height: 20px;
  border-radius: 99px;
  background: rgba(36, 27, 53, 0.15);
}

.manuscript-lines i:nth-child(1) {
  width: 86%;
}

.manuscript-lines i:nth-child(2) {
  width: 64%;
}

.manuscript-lines i:nth-child(3) {
  width: 74%;
  background: rgba(255, 117, 101, 0.32);
}

.manuscript-lines i:nth-child(4) {
  width: 91%;
}

.manuscript-lines i:nth-child(5) {
  width: 58%;
  background: rgba(85, 196, 182, 0.35);
}

.manuscript-lines i:nth-child(6) {
  width: 79%;
}

.margin-note {
  position: absolute;
  width: min(260px, 46%);
  padding: 18px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--line);
}

.margin-note b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.margin-note span {
  display: block;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.25;
}

.note-one {
  top: 106px;
  right: -30px;
  background: var(--rose);
}

.note-two {
  right: 38px;
  bottom: 92px;
  background: var(--mint);
}

.note-three {
  left: -28px;
  bottom: 34px;
  background: #dbe9ff;
}

.slide-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: clamp(28px, 4vh, 52px);
}

.laundry-slide .slide-header {
  margin-bottom: clamp(20px, 3vh, 40px);
}

.laundry-slide h2 {
  font-size: clamp(50px, 4.2vw, var(--fs-h2));
}

.laundry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 22px);
}

.hat-column {
  display: flex;
  flex-direction: column;
  min-height: clamp(430px, 54vh, 560px);
  padding: clamp(18px, 1.7vw, 24px);
  border: 3px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--line);
}

.hat-column h3 {
  margin-bottom: clamp(10px, 1.4vh, 14px);
  font-size: clamp(31px, 2vw, 38px);
}

.hat-column p {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
  color: var(--ink);
}

.responsibility-cloud {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-content: space-between;
  gap: clamp(6px, 0.9vh, 13px) 7px;
}

.responsibility-cloud span {
  display: inline-flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-height: clamp(28px, 3vh, 38px);
  padding: 4px 8px;
  border: 2px solid rgba(36, 27, 53, 0.42);
  border-radius: 6px;
  background: rgba(255, 253, 247, 0.58);
  box-shadow: 2px 2px 0 rgba(36, 27, 53, 0.28);
  color: var(--ink);
  font-size: clamp(13px, 0.95vw, 19px);
  font-weight: 850;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.manager .responsibility-cloud {
  gap: clamp(5px, 0.65vh, 9px) 7px;
}

.manager .responsibility-cloud span {
  min-height: clamp(25px, 2.65vh, 34px);
  padding-inline: 6px;
  font-size: clamp(12px, 0.82vw, 17px);
}

.maker {
  background: #ffdfd6;
}

.marketer {
  background: #d8f4ea;
}

.manager {
  background: #ded5ff;
}

.quote-card {
  max-width: 1080px;
  margin: min(12vh, 110px) auto 0;
  padding: clamp(34px, 6vw, 72px);
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 14px 14px 0 var(--line), var(--shadow);
}

.quote-card.wide {
  max-width: 1180px;
}

.quote {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: var(--fs-quote);
  font-weight: 900;
  line-height: 0.95;
}

.quote-small {
  margin-top: 18px;
  color: var(--ink);
  font-size: var(--fs-quote-small);
  font-weight: 850;
  line-height: 1;
}

.orbit-model {
  position: relative;
  min-height: 525px;
}

.center-node,
.orbit-card {
  position: absolute;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--line);
}

.center-node {
  left: 50%;
  top: 50%;
  display: grid;
  width: 280px;
  min-height: 180px;
  place-items: center;
  padding: 26px;
  background: #fffdf7;
  text-align: center;
  transform: translate(-50%, -50%);
}

.center-node span {
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.center-node small {
  color: var(--ink-soft);
  font-size: 18px;
}

.orbit-card {
  width: min(390px, 31vw);
  padding: 22px;
}

.orbit-card h3 {
  margin-bottom: 10px;
}

.orbit-card p {
  margin: 0;
  font-size: 20px;
}

.orbit-card.maker {
  left: 2%;
  top: 4%;
}

.orbit-card.marketer {
  right: 3%;
  top: 8%;
}

.orbit-card.manager {
  left: 50%;
  bottom: 3%;
  transform: translateX(-50%);
}

.strong-line,
.speaker-line {
  margin: clamp(24px, 4vh, 44px) auto 0;
  max-width: 1100px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 850;
  line-height: 1.05;
  text-align: center;
}

.speaker-line {
  max-width: 1160px;
  font-size: 28px;
}

.choice-row,
.usecase-grid,
.tier-grid,
.future-grid {
  display: grid;
  gap: 22px;
}

.choice-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice,
.usecase-card,
.tier-grid article,
.future-card,
.ownership-board article {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--line);
}

.choice {
  position: relative;
  min-height: 360px;
  padding: 28px;
}

.choice-index {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: #fffdf7;
  color: var(--ink);
  font-weight: 900;
}

.choice p {
  color: var(--ink);
  font-size: 28px;
  font-weight: 850;
  line-height: 1.05;
}

.handoff-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.handoff-board article {
  min-height: 430px;
  padding: 28px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--line);
}

.handoff-board .keep {
  background: #d8f4ea;
}

.handoff-board .handoff {
  background: #ffd2dc;
}

.handoff-board .exercise {
  background: #f8dfbd;
}

.handoff-board span {
  display: inline-block;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fffdf7;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.handoff-board h3 {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 0.96;
}

.handoff-board p {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 760;
  line-height: 1.14;
}

.stacked-list {
  display: grid;
  gap: 24px;
}

.stacked-list div {
  padding: 30px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 8px 8px 0 var(--line);
}

.stacked-list b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}

.stacked-list span {
  display: block;
  color: var(--ink-soft);
  font-size: 23px;
  line-height: 1.22;
}

.evolution-ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.evolution-ladder article {
  min-height: 430px;
  padding: 26px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 8px 8px 0 var(--line);
}

.evolution-ladder article:nth-child(1) {
  background: #f8dfbd;
}

.evolution-ladder article:nth-child(2) {
  background: #ffd2dc;
}

.evolution-ladder article:nth-child(3) {
  background: #d8f4ea;
}

.evolution-ladder article:nth-child(4) {
  background: #ded5ff;
}

.evolution-ladder span,
.tier-grid span,
.permission-ladder span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fffdf7;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.evolution-ladder p {
  font-size: 21px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.check-grid div {
  min-height: 155px;
  padding: 20px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 7px 7px 0 var(--line);
  color: var(--ink);
  font-size: 22px;
  font-weight: 780;
  line-height: 1.08;
}

.check-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 32px;
}

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

.tier-grid article {
  min-height: 420px;
  padding: 24px;
  background: #fffdf7;
}

.tier-grid article:nth-child(1) {
  background: #ffd2dc;
}

.tier-grid article:nth-child(2) {
  background: #ded5ff;
}

.tier-grid article:nth-child(3) {
  background: #d8f4ea;
}

.tier-grid article:nth-child(4) {
  background: #f8dfbd;
}

.tier-grid h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.tier-grid p {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 820;
}

.tier-grid small {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.22;
}

.agent-landscape {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 22px);
}

.landscape-slide .slide-header {
  margin-bottom: clamp(22px, 3vh, 42px);
}

.landscape-card,
.landscape-layer {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--line);
}

.landscape-card {
  display: flex;
  flex-direction: column;
  min-height: clamp(300px, 34vh, 400px);
  padding: clamp(20px, 1.7vw, 24px);
}

.landscape-card.maker {
  background: #ffd2dc;
}

.landscape-card.marketer {
  background: #d8f4ea;
}

.landscape-card.manager {
  background: #ded5ff;
}

.landscape-layer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: clamp(16px, 1.5vw, 20px);
  align-items: center;
  min-height: clamp(160px, 20vh, 245px);
  padding: clamp(18px, 1.6vw, 24px) clamp(24px, 2vw, 30px);
  background: #f8dfbd;
}

.tier-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(12px, 1.6vh, 20px);
}

.tier-line span,
.tier-line em {
  display: inline-block;
  padding: 8px 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fffdf7;
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.landscape-card h3,
.landscape-layer h3 {
  margin-bottom: clamp(10px, 1.2vh, 14px);
  color: var(--ink);
  font-size: clamp(28px, 1.8vw, 33px);
  line-height: 0.96;
}

.landscape-card p,
.landscape-layer p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(17px, 1.05vw, 19px);
  font-weight: 760;
  line-height: 1.16;
}

.tool-pills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(7px, 0.8vw, 10px);
  align-content: flex-start;
  margin-top: auto;
}

.tool-pills.is-placeholder {
  visibility: hidden;
}

.tool-pills span {
  display: inline-flex;
  align-items: center;
  min-height: clamp(34px, 3.7vh, 42px);
  padding: 7px 11px;
  border: 2px solid rgba(36, 27, 53, 0.55);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 2px 2px 0 rgba(36, 27, 53, 0.24);
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 850;
  line-height: 1;
}

.landscape-layer .tier-line {
  grid-row: 1 / span 3;
  margin-bottom: 0;
}

.landscape-layer h3,
.landscape-layer p,
.landscape-layer .tool-pills {
  grid-column: 2;
}

.landscape-layer p {
  font-size: clamp(17px, 1.1vw, 20px);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.skills-grid article {
  min-height: 310px;
  padding: 24px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 8px 8px 0 var(--line);
}

.skills-grid article:nth-child(1) {
  background: #ffd2dc;
}

.skills-grid article:nth-child(2) {
  background: #d8f4ea;
}

.skills-grid article:nth-child(3) {
  background: #ded5ff;
}

.skills-grid article:nth-child(4) {
  background: #f8dfbd;
}

.skills-grid span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fffdf7;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.skills-grid h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 31px;
  line-height: 0.96;
}

.skills-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 760;
  line-height: 1.16;
}

.big-center {
  display: grid;
  min-height: calc(100vh - clamp(34px, 5vh, 70px) * 2);
  align-content: center;
  justify-items: start;
}

.big-center h2 {
  max-width: 1150px;
}

.big-center p:last-child {
  max-width: 980px;
  font-size: 32px;
}

.prompt-slide,
.questions-slide {
  display: none;
}

.prompt-slide.is-active,
.questions-slide.is-active {
  display: grid;
  align-items: center;
}

.prompt-panel,
.questions-card {
  max-width: 1220px;
}

.prompt-panel h2,
.questions-card h2 {
  max-width: 1190px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(76px, 7.8vw, 132px);
  font-weight: 900;
  line-height: 0.9;
}

.questions-card h2 {
  max-width: 1080px;
}

.disclosure-slide {
  display: none;
}

.disclosure-slide.is-active {
  display: grid;
  align-items: center;
}

.disclosure-lockup {
  max-width: 1260px;
}

.disclosure-lockup h2 {
  max-width: 1200px;
  margin-bottom: 24px;
  font-size: clamp(64px, 7vw, 118px);
  line-height: 0.9;
}

.disclosure-lockup .lede {
  max-width: 1080px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 760;
  line-height: 1.08;
}

.file-card {
  position: relative;
  display: grid;
  gap: 17px;
  padding: 68px 34px 34px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 12px 12px 0 var(--line);
}

.context-slide .slide-grid,
.human-slide .slide-grid {
  min-height: calc(100vh - clamp(34px, 5vh, 70px) * 2 - 104px);
}

.file-tab {
  position: absolute;
  left: 24px;
  top: -24px;
  padding: 12px 16px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--sun);
  font-weight: 900;
}

.file-line {
  height: 15px;
  border-radius: 999px;
  background: rgba(36, 27, 53, 0.15);
}

.file-line.w90 {
  width: 90%;
}

.file-line.w70 {
  width: 70%;
}

.file-line.w80 {
  width: 80%;
}

.file-section {
  padding: 17px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #f4efdf;
  color: var(--ink);
  font-size: 24px;
  font-weight: 850;
}

.context-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.context-map article {
  min-height: 245px;
  padding: 22px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 7px 7px 0 var(--line);
}

.context-map article:nth-child(1),
.context-map article:nth-child(6) {
  background: #ffd2dc;
}

.context-map article:nth-child(2),
.context-map article:nth-child(5) {
  background: #d8f4ea;
}

.context-map article:nth-child(3),
.context-map article:nth-child(4) {
  background: #ded5ff;
}

.context-map h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.context-map p {
  margin-bottom: 0;
  font-size: 18px;
}

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

.usecase-card {
  min-height: 455px;
  padding: 28px;
  background: #fffdf7;
}

.usecase-card h3 {
  max-width: 560px;
}

.problem {
  color: var(--ink);
  font-size: 27px;
  font-weight: 850;
  line-height: 1.08;
}

.usecase-card ul {
  margin: 22px 0 0;
  padding-left: 25px;
}

.usecase-card li {
  margin-bottom: 9px;
  font-size: 20px;
}

.demo-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.demo-flow div {
  min-height: 410px;
  padding: 30px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 8px 8px 0 var(--line);
}

.demo-flow div:nth-child(1) {
  background: #ffd2dc;
}

.demo-flow div:nth-child(2) {
  background: #d8f4ea;
}

.demo-flow div:nth-child(3) {
  background: #ded5ff;
}

.demo-flow span {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 28px;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: #fffdf7;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.ownership-board {
  display: grid;
  gap: 24px;
}

.ownership-board article {
  padding: 30px;
  background: #fffdf7;
}

.ownership-board article:first-child {
  background: #ffd2dc;
}

.ownership-board article:last-child {
  background: #d8f4ea;
}

.ownership-board p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 23px;
  font-weight: 760;
}

.permission-ladder {
  display: grid;
  gap: 22px;
}

.permission-ladder article {
  display: grid;
  grid-template-columns: 160px minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: 28px;
  padding: 26px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--line);
}

.permission-ladder h3,
.permission-ladder p {
  margin: 0;
}

.permission-ladder h3 {
  font-size: 30px;
}

.permission-ladder p {
  font-size: 22px;
}

.permission-ladder .green {
  background: #d8f4ea;
}

.permission-ladder .yellow {
  background: #ffeaa3;
}

.permission-ladder .red {
  background: #ffd2dc;
}

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

.future-card {
  min-height: 330px;
  padding: 30px;
  background: #fffdf7;
}

.future-card:nth-child(1) {
  background: #d8f4ea;
}

.future-card:nth-child(2) {
  background: #ded5ff;
}

.future-card:nth-child(3) {
  background: #ffd2dc;
}

.future-card b {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.future-card span {
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.2;
}

.steps-list {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  display: grid;
  grid-template-columns: 74px minmax(200px, 0.85fr) minmax(240px, 1.15fr);
  align-items: center;
  gap: 22px;
  padding: 20px 26px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 7px 7px 0 var(--line);
  counter-increment: steps;
}

.steps-list li::before {
  content: counter(steps);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
}

.steps-list b {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.05;
}

.steps-list span {
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.18;
}

.closing-card {
  display: grid;
  min-height: calc(100vh - clamp(34px, 5vh, 70px) * 2);
  align-content: center;
  max-width: 1120px;
}

.closing-card h2 {
  max-width: 1040px;
}

.closing-card p:last-child {
  color: var(--ink);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.deck-controls {
  position: fixed;
  right: 30px;
  bottom: 26px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 6px 6px 0 var(--line);
}

.control-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: #fffdf7;
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.control-button:hover,
.control-button:focus-visible {
  background: var(--sun);
}

.slide-count {
  min-width: 58px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.progress-track {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 21;
  height: 7px;
  background: rgba(36, 27, 53, 0.12);
}

.progress-fill {
  width: 0;
  height: 100%;
  background: var(--coral);
  transition: width 220ms ease;
}

.editor-preview .deck-controls,
.editor-preview .progress-track {
  display: none;
}

.pdf-export {
  overflow: visible;
}

.pdf-export .deck {
  height: auto;
}

.pdf-export .slide,
.pdf-export .slide.is-active,
.pdf-export .slide:not(.is-active) {
  position: relative;
  display: block;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  page-break-after: always;
  break-after: page;
}

.pdf-export .slide:last-of-type {
  page-break-after: auto;
  break-after: auto;
}

.pdf-export .deck-controls,
.pdf-export .progress-track {
  display: none;
}

.pdf-export .disclosure-slide,
.pdf-export .disclosure-slide.is-active,
.pdf-export .disclosure-slide:not(.is-active) {
  display: grid;
  align-items: center;
}

.export-shot {
  overflow: hidden;
}

.export-shot .slide {
  overflow: hidden;
}

.export-shot .deck-controls,
.export-shot .progress-track {
  display: none;
}

@media (max-height: 760px) and (min-width: 1101px) {
  :root {
    --fs-h1: 74px;
    --fs-h2: 50px;
    --fs-h3: 28px;
    --fs-body: 20px;
    --fs-small: 15px;
    --fs-lede: 26px;
    --fs-quote: 64px;
    --fs-quote-small: 38px;
  }

  .slide {
    padding: 32px 58px 62px;
  }

  .slide-grid,
  .big-center,
  .closing-card {
    min-height: calc(100vh - 94px);
  }

  .context-slide .slide-grid,
  .human-slide .slide-grid {
    min-height: 500px;
  }

  h1 {
    margin-bottom: 16px;
  }

  h2 {
    margin-bottom: 16px;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 13px;
    box-shadow: 4px 4px 0 var(--line);
  }

  .hero-board {
    min-height: 438px;
  }

  .mock-window {
    min-height: 420px;
  }

  .manuscript-lines {
    gap: 14px;
    padding: 42px 36px;
  }

  .manuscript-lines i {
    height: 16px;
  }

  .margin-note {
    padding: 14px;
  }

  .margin-note b {
    font-size: 16px;
  }

  .margin-note span {
    font-size: 15px;
  }

  .note-one {
    top: 84px;
  }

  .note-two {
    bottom: 70px;
  }

  .hat-column {
    min-height: 430px;
    padding: 18px;
  }

  .hat-column h3 {
    font-size: 31px;
  }

  .hat-column p {
    font-size: 14px;
    line-height: 1.14;
  }

  .responsibility-cloud {
    gap: 6px;
  }

  .responsibility-cloud span {
    min-height: 25px;
    padding: 3px 5px;
    font-size: 12px;
  }

  .quote-card {
    margin-top: 58px;
    padding: 42px;
  }

  .orbit-model {
    min-height: 390px;
  }

  .center-node {
    width: 240px;
    min-height: 150px;
  }

  .center-node span {
    font-size: 31px;
  }

  .orbit-card {
    padding: 18px;
  }

  .orbit-card p {
    font-size: 17px;
  }

  .strong-line,
  .speaker-line {
    margin-top: 20px;
    font-size: 25px;
  }

  .choice {
    min-height: 300px;
    padding: 22px;
  }

  .handoff-board article {
    min-height: 330px;
    padding: 22px;
  }

  .handoff-board h3 {
    font-size: 28px;
  }

  .handoff-board p {
    font-size: 20px;
  }

  .choice-index {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

  .choice p {
    font-size: 23px;
  }

  .stacked-list div,
  .usecase-card,
  .future-card,
  .ownership-board article {
    padding: 22px;
  }

  .stacked-list b {
    font-size: 31px;
  }

  .stacked-list span {
    font-size: 19px;
  }

  .evolution-ladder article {
    min-height: 330px;
    padding: 20px;
  }

  .evolution-ladder p,
  .tier-grid p {
    font-size: 18px;
  }

  .check-grid div {
    min-height: 126px;
    padding: 16px;
    font-size: 18px;
  }

  .tier-grid article {
    min-height: 342px;
    padding: 18px;
  }

  .tier-grid h3 {
    font-size: 25px;
  }

  .tier-grid small {
    font-size: 14px;
  }

  .landscape-card {
    min-height: 260px;
    padding: 20px;
  }

  .landscape-layer {
    min-height: 140px;
    padding: 20px 24px;
  }

  .landscape-card h3,
  .landscape-layer h3 {
    font-size: 27px;
  }

  .landscape-card p,
  .landscape-layer p {
    font-size: 18px;
  }

  .tool-pills span {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 17px;
  }

  .file-card {
    gap: 12px;
    padding: 56px 26px 26px;
  }

  .file-section {
    padding: 13px;
    font-size: 20px;
  }

  .context-map article {
    min-height: 185px;
    padding: 17px;
  }

  .context-map h3 {
    font-size: 23px;
  }

  .context-map p {
    font-size: 15px;
  }

  .usecase-card {
    min-height: 365px;
  }

  .problem {
    font-size: 22px;
  }

  .usecase-card li {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .demo-flow div {
    min-height: 310px;
    padding: 22px;
  }

  .demo-flow span {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }

  .permission-ladder article {
    padding: 20px;
  }

  .permission-ladder h3 {
    font-size: 25px;
  }

  .permission-ladder p {
    font-size: 18px;
  }

  .future-card {
    min-height: 270px;
  }

  .future-card b {
    font-size: 28px;
  }

  .future-card span {
    font-size: 18px;
  }

  .steps-list {
    gap: 9px;
  }

  .steps-list li {
    grid-template-columns: 56px minmax(200px, 0.8fr) minmax(240px, 1.2fr);
    gap: 16px;
    padding: 11px 18px;
  }

  .steps-list li::before {
    width: 42px;
    height: 42px;
  }

  .steps-list b {
    font-size: 20px;
  }

  .steps-list span {
    font-size: 15px;
  }

  .closing-card p:last-child {
    font-size: 39px;
  }
}

@media (max-width: 1100px) {
  :root {
    --fs-h1: 62px;
    --fs-h2: 46px;
    --fs-h3: 28px;
    --fs-body: 21px;
    --fs-small: 16px;
    --fs-lede: 25px;
    --fs-quote: 52px;
    --fs-quote-small: 34px;
  }

  body {
    overflow: auto;
  }

  .deck,
  .slide {
    min-height: 100vh;
  }

  .slide {
    position: relative;
    min-height: 100vh;
  }

  .slide:not(.is-active) {
    display: none;
  }

  .two-up,
  .laundry-grid,
  .choice-row,
  .handoff-board,
  .evolution-ladder,
  .check-grid,
  .skills-grid,
  .tier-grid,
  .agent-landscape,
  .context-map,
  .usecase-grid,
  .demo-flow,
  .future-grid {
    grid-template-columns: 1fr;
  }

  .slide-grid {
    min-height: auto;
  }

  .hero-board {
    min-height: 500px;
  }

  .mock-window {
    min-height: 460px;
  }

  .note-one {
    right: 12px;
  }

  .note-three {
    left: 12px;
  }

  .hat-column,
  .choice,
  .handoff-board article,
  .usecase-card,
  .tier-grid article,
  .landscape-card,
  .landscape-layer,
  .demo-flow div,
  .future-card {
    min-height: auto;
  }

  .landscape-layer {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .landscape-layer .tier-line,
  .landscape-layer h3,
  .landscape-layer p,
  .landscape-layer .tool-pills {
    grid-column: auto;
    grid-row: auto;
  }

  .responsibility-cloud {
    align-content: flex-start;
  }

  .responsibility-cloud span {
    white-space: normal;
  }

  .orbit-model {
    display: grid;
    min-height: auto;
    gap: 18px;
  }

  .center-node,
  .orbit-card,
  .orbit-card.maker,
  .orbit-card.marketer,
  .orbit-card.manager {
    position: static;
    width: auto;
    transform: none;
  }

  .permission-ladder article,
  .steps-list li {
    grid-template-columns: 1fr;
  }

  .deck-controls {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 650px) {
  :root {
    --fs-h1: 48px;
    --fs-h2: 38px;
    --fs-h3: 25px;
    --fs-body: 19px;
    --fs-small: 15px;
    --fs-lede: 22px;
    --fs-quote: 42px;
    --fs-quote-small: 30px;
  }

  .slide {
    padding: 38px 22px 92px;
  }

  .slide::before {
    inset: 10px;
  }

  .margin-note {
    position: relative;
    inset: auto;
    width: auto;
    margin: 12px;
  }

  .hero-board,
  .mock-window {
    min-height: auto;
  }
}

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

  body {
    overflow: visible;
    background: var(--paper);
  }

  .deck {
    height: auto;
    width: 16in;
  }

  .slide,
  .slide.is-active,
  .slide:not(.is-active),
  .pdf-export .slide,
  .pdf-export .slide.is-active,
  .pdf-export .slide:not(.is-active) {
    position: relative;
    display: block;
    width: 16in;
    min-height: 9in;
    height: 9in;
    max-height: 9in;
    overflow: hidden;
    break-inside: avoid;
    page-break-after: always;
    break-after: page;
  }

  .slide:last-of-type {
    page-break-after: auto;
    break-after: auto;
  }

  .deck-controls,
  .progress-track {
    display: none;
  }
}
