:root {
  color-scheme: light;
  --ink: #151515;
  --paper: #f7f4ec;
  --white: #ffffff;
  --orange: #f45a24;
  --orange-deep: #bd3e15;
  --yellow: #f2d40b;
  --green: #49c85c;
  --green-deep: #177e3d;
  --blue: #1778ad;
  --blue-deep: #0a527b;
  --line: 2px solid var(--ink);
  --header-height: 70px;
  --control-height: 62px;
  --rail-width: clamp(44px, 4vw, 66px);
  --body-font: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --display-font: Impact, "Arial Black", "Avenir Next Condensed", sans-serif;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
  --hero-title-size: clamp(3.5rem, 7.5vw, 7.5rem);
  --hero-subheading-size: clamp(1.45rem, 2.7vw, 2.6rem);
  --hero-subheading-weight: 600;
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
}

html.js,
.js body {
  height: 100%;
  overflow: hidden;
}

body {
  color: var(--ink);
  font-family: inherit;
  font-weight: 450;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 4px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--ink);
}

.deck-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: minmax(210px, 1fr) minmax(180px, 1fr) minmax(96px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 10px clamp(18px, 3vw, 44px);
  border-bottom: var(--line);
  background: var(--paper);
}

.deck-brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.deck-brand span {
  margin-bottom: 4px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.deck-brand strong {
  font-family: var(--display-font);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.deck-section,
.deck-count {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deck-section {
  text-align: center;
}

.deck-count {
  justify-self: end;
  font-variant-numeric: tabular-nums;
}

.deck-count [data-current-slide] {
  font-size: 1.2rem;
  font-weight: 900;
}

.index-rail {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 90;
  display: grid;
  width: var(--rail-width);
  height: 150px;
  padding: 0;
  place-items: center;
  border: 0;
  border-top: var(--line);
  border-right: var(--line);
  border-bottom: var(--line);
  background: var(--yellow);
  cursor: pointer;
  transform: translateY(-50%);
  transition: width 180ms var(--ease), background 180ms ease;
}

.index-rail:hover,
.index-rail:focus-visible {
  width: calc(var(--rail-width) + 10px);
  background: var(--orange);
}

.index-rail span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.deck {
  position: fixed;
  inset: var(--header-height) 0 var(--control-height);
  background: var(--paper);
}

.slide {
  --slide-bg: var(--paper);
  --slide-fg: var(--ink);
  position: absolute;
  inset: 0;
  color: var(--slide-fg);
  background: var(--slide-bg);
}

.js .slide {
  display: none;
}

.js .slide.is-active {
  display: block;
}

.js .slide.is-entering {
  animation: slide-enter 340ms var(--ease) both;
}

html[data-direction="backward"] .slide.is-entering {
  animation-name: slide-enter-backward;
}

.slide--paper {
  --slide-bg: var(--paper);
  --slide-fg: var(--ink);
}

.slide--ink {
  --slide-bg: var(--ink);
  --slide-fg: var(--white);
}

.slide--orange {
  --slide-bg: var(--orange);
  --slide-fg: var(--ink);
}

.slide--yellow {
  --slide-bg: var(--yellow);
  --slide-fg: var(--ink);
}

.slide--green {
  --slide-bg: var(--green);
  --slide-fg: var(--ink);
}

.slide--blue {
  --slide-bg: var(--blue-deep);
  --slide-fg: var(--white);
}

.slide__canvas {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  justify-content: safe center;
  padding: clamp(28px, 4.3vw, 76px) clamp(32px, 6vw, 112px);
  overflow: auto;
  scrollbar-width: thin;
}

.slide__canvas--edge {
  padding-bottom: 0;
}

.slide__canvas--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: safe center;
  gap: clamp(34px, 6vw, 110px);
}

.slide__eyebrow {
  margin: 0 0 clamp(14px, 2vh, 26px);
  font-size: clamp(0.72rem, 1.05vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.slide h1,
.slide h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.slide h1 {
  max-width: 9ch;
  font-size: var(--hero-title-size);
}

.slide h2 {
  font-size: clamp(2.8rem, 6.6vw, 7.4rem);
}

.slide h3 {
  margin: 0;
}

.slide p,
.slide li,
.slide dd {
  font-size: clamp(1rem, 1.55vw, 1.72rem);
  line-height: 1.32;
}

.slide ul,
.slide ol,
.slide dl {
  margin: 0;
}

.slide__support {
  max-width: 48ch;
  margin: clamp(22px, 4vh, 44px) 0 0;
  font-size: clamp(1.15rem, 2vw, 2.15rem) !important;
  font-weight: 620;
  line-height: 1.28 !important;
}

.closing-line {
  align-self: flex-end;
  max-width: 64ch;
  margin: clamp(20px, 3vh, 36px) 0 0;
  padding-top: 14px;
  border-top: 2px solid currentColor;
  font-weight: 760;
}

.slide--statement h2 {
  max-width: 10.5ch;
}

.slide--prompt h2 {
  max-width: 12ch;
}

.display-mark {
  position: absolute;
  right: 4vw;
  bottom: 1vh;
  z-index: 0;
  font-family: var(--display-font);
  font-size: clamp(9rem, 24vw, 25rem);
  line-height: 0.76;
  opacity: 0.11;
  pointer-events: none;
}

.display-mark--corner {
  right: 2vw;
  bottom: 3vh;
}

.ryan-mark {
  position: absolute;
  right: clamp(44px, 8vw, 140px);
  bottom: 0;
  z-index: 2;
  width: clamp(120px, 15vw, 230px);
  margin: 0;
  overflow: hidden;
  border: var(--line);
  border-bottom: 0;
  background: var(--green);
}

.ryan-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid var(--ink);
  pointer-events: none;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: end;
  margin-top: clamp(28px, 6vh, 80px);
}

.column-label {
  margin: 0 0 18px !important;
  font-size: clamp(0.78rem, 1vw, 1rem) !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clean-list {
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 5px 0;
  border-bottom: 1px solid currentColor;
  font-weight: 680;
}

.pull-quote {
  max-width: 20ch;
  margin: 0;
  color: var(--yellow);
  font-size: clamp(1.7rem, 3.2vw, 3.8rem) !important;
  font-weight: 800;
  line-height: 1.05 !important;
}

.comparison-copy {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 3.5rem) !important;
  font-weight: 800;
  line-height: 1.05 !important;
}

.ownership-line {
  max-width: 72ch;
  margin: clamp(24px, 4vh, 42px) 0 0 !important;
  padding-top: 16px;
  border-top: 2px solid currentColor;
  font-size: clamp(1rem, 1.45vw, 1.5rem) !important;
  font-weight: 700;
}

.decision-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: clamp(28px, 5vh, 58px);
  border: 2px solid var(--white);
  background: var(--white);
}

.decision-split > div {
  padding: clamp(20px, 3vw, 42px);
  color: var(--ink);
  background: var(--paper);
}

.decision-split > div:last-child {
  background: var(--yellow);
}

.decision-split ul {
  display: grid;
  gap: 8px;
  padding-left: 1.15em;
}

.large-copy {
  display: grid;
  gap: 2px;
  border-top: 2px solid currentColor;
}

.large-copy p {
  margin: 0;
  padding: clamp(14px, 2.5vh, 26px) 0;
  border-bottom: 2px solid currentColor;
  font-size: clamp(1.15rem, 2vw, 2.25rem);
  font-weight: 680;
  line-height: 1.22;
}

.bottom-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-top: clamp(28px, 6vh, 66px);
  padding-top: 22px;
  border-top: var(--line);
}

.bottom-band p,
.bottom-band strong {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.85rem);
  line-height: 1.25;
}

.bottom-band strong {
  padding: 18px;
  color: var(--yellow);
  background: var(--ink);
}

.quarter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  margin-top: clamp(24px, 5vh, 56px) !important;
  background: var(--white);
  list-style: none;
}

.quarter-grid li {
  min-height: 210px;
  padding: clamp(18px, 2.2vw, 32px);
  color: var(--ink);
  background: var(--paper);
}

.quarter-grid li:nth-child(2) {
  background: var(--yellow);
}

.quarter-grid li:nth-child(3) {
  color: var(--white);
  background: var(--blue);
}

.quarter-grid li:nth-child(4) {
  background: var(--orange);
}

.quarter-grid span {
  display: block;
  margin-bottom: 28px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.quarter-grid strong {
  display: block;
  font-size: clamp(1.1rem, 1.7vw, 1.9rem);
  line-height: 1.05;
}

.quarter-grid p {
  margin: 16px 0 0;
  font-size: clamp(0.85rem, 1.1vw, 1.1rem);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  margin-top: clamp(26px, 5vh, 54px) !important;
  border: var(--line);
  background: var(--ink);
  list-style: none;
}

.process-line li {
  display: grid;
  min-height: 110px;
  padding: 14px;
  place-items: center;
  background: var(--paper);
  font-size: clamp(0.85rem, 1.3vw, 1.35rem);
  font-weight: 850;
  text-align: center;
}

.process-line li:nth-child(2),
.process-line li:nth-child(5) {
  background: var(--yellow);
}

.process-line li:nth-child(3) {
  background: var(--orange);
}

.process-line li:nth-child(4) {
  background: var(--blue);
  color: var(--white);
}

.process-line li:nth-child(6) {
  background: var(--ink);
  color: var(--white);
}

.workflow-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  margin-top: clamp(24px, 5vh, 54px) !important;
  border: 2px solid var(--white);
  background: var(--white);
  list-style: none;
}

.workflow-line li {
  position: relative;
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(14px, 2vw, 25px);
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(0.9rem, 1.25vw, 1.3rem);
  font-weight: 800;
  line-height: 1.1;
}

.workflow-line li:nth-child(2),
.workflow-line li:nth-child(5) {
  background: var(--yellow);
}

.workflow-line li:nth-child(3) {
  background: var(--green);
}

.workflow-line li:nth-child(4) {
  background: var(--orange);
}

.workflow-line li:nth-child(6) {
  color: var(--white);
  background: var(--ink);
}

.workflow-line span {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.grade-split {
  display: grid;
  min-height: 48%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin: auto calc(clamp(32px, 6vw, 112px) * -1) 0;
  border-top: var(--line);
  background: var(--ink);
}

.grade-split > div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 22px;
  align-content: center;
  padding: clamp(24px, 4vw, 60px);
}

.grade-split__projects {
  background: var(--orange);
}

.grade-split__daily {
  color: var(--white);
  background: var(--blue-deep);
}

.grade-split strong {
  grid-row: 1 / 3;
  font-family: var(--display-font);
  font-size: clamp(4.5rem, 9vw, 10rem);
  line-height: 0.82;
}

.grade-split h3 {
  align-self: end;
  font-size: clamp(1.6rem, 2.6vw, 3.2rem);
}

.grade-split p {
  margin: 10px 0 0;
  font-size: clamp(0.92rem, 1.25vw, 1.3rem);
}

.score-lines {
  display: grid;
  gap: 2px;
  margin-top: clamp(22px, 4vh, 44px) !important;
  background: var(--white);
}

.score-lines div {
  display: grid;
  grid-template-columns: clamp(65px, 8vw, 120px) 1fr;
  color: var(--ink);
  background: var(--paper);
}

.score-lines dt,
.score-lines dd {
  margin: 0;
  padding: clamp(7px, 1.2vh, 13px) clamp(12px, 1.5vw, 22px);
}

.score-lines dt {
  display: grid;
  place-items: center;
  border-right: var(--line);
  background: var(--yellow);
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  line-height: 1;
}

.score-lines dd {
  font-weight: 700;
}

.check-list,
.arrow-list,
.rule-list {
  display: grid;
  gap: 2px;
  padding: 0;
  border-top: 2px solid currentColor;
  list-style: none;
}

.check-list li,
.arrow-list li,
.rule-list li {
  padding: clamp(10px, 1.5vh, 17px) 0;
  border-bottom: 2px solid currentColor;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  margin-right: 14px;
  font-weight: 900;
}

.arrow-list li::before {
  content: "→";
  margin-right: 14px;
  font-weight: 900;
}

.callout {
  margin: clamp(18px, 3vh, 30px) 0 0 !important;
  padding: 16px 18px;
  border: 2px solid currentColor;
  font-size: clamp(0.95rem, 1.3vw, 1.35rem) !important;
  font-weight: 780;
}

.slide__canvas--score {
  text-align: center;
}

.slide__canvas--score h2 {
  max-width: none;
  margin-inline: auto;
}

.binary-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 70px);
  margin: clamp(18px, 3vh, 34px) 0;
}

.binary-score span {
  font-family: var(--display-font);
  font-size: clamp(6rem, 15vw, 16rem);
  line-height: 0.72;
}

.binary-score span:last-child {
  -webkit-text-stroke: 3px var(--ink);
  color: transparent;
}

.binary-score small {
  font-size: clamp(1rem, 2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slide__canvas--score .slide__support {
  max-width: 64ch;
  margin: 0 auto;
  font-size: clamp(1rem, 1.6vw, 1.65rem) !important;
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  max-width: 1120px;
  margin: 16px 0 0;
  background: var(--ink);
  border: 2px solid var(--ink);
}

.expectation-grid div {
  min-height: 126px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--paper);
}

.expectation-grid div:nth-child(2) {
  background: var(--orange);
}

.expectation-grid div:nth-child(3),
.expectation-grid div:nth-child(6) {
  background: var(--yellow);
}

.expectation-grid dt {
  margin-bottom: 10px;
  font-family: var(--display-font);
  font-size: clamp(1.15rem, 1.75vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.expectation-grid dd {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 500;
  line-height: 1.22;
}

.slide .grade-daily-copy {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem) !important;
  font-weight: 500 !important;
  line-height: 1.36 !important;
}

.mandala-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  margin-top: clamp(22px, 4vh, 46px);
}

.mandala-shape {
  position: relative;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.mandala-shape::before,
.mandala-shape::after,
.mandala-shape span {
  content: "";
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.mandala-shape::before {
  inset: 17%;
}

.mandala-shape::after {
  inset: 34%;
}

.mandala-shape span {
  width: 42%;
  height: 42%;
}

.mandala-shape span:nth-child(1) {
  left: 29%;
  top: -5%;
}

.mandala-shape span:nth-child(2) {
  right: -5%;
  top: 29%;
}

.mandala-shape span:nth-child(3) {
  left: 29%;
  bottom: -5%;
}

.mandala-shape span:nth-child(4) {
  left: -5%;
  top: 29%;
}

.mandala-layout ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  border: var(--line);
  background: var(--ink);
  list-style: none;
}

.mandala-layout li {
  display: grid;
  min-height: 84px;
  padding: 14px;
  align-items: center;
  background: var(--paper);
  font-size: clamp(0.9rem, 1.25vw, 1.25rem);
  font-weight: 700;
}

.sentence-prompts {
  display: grid;
  gap: clamp(18px, 3vh, 32px);
  margin-top: clamp(34px, 7vh, 80px);
}

.sentence-prompts p {
  margin: 0;
  padding: clamp(18px, 2.5vh, 28px) 0;
  border-bottom: 3px solid currentColor;
  font-size: clamp(1.4rem, 2.7vw, 3rem);
  font-weight: 750;
}

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

.sentence-prompts--four p {
  font-size: clamp(1.1rem, 2vw, 2.2rem);
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: clamp(24px, 5vh, 52px);
  border: var(--line);
  background: var(--ink);
}

.resource-links a {
  position: relative;
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2vw, 26px);
  background: var(--paper);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.resource-links a:nth-child(2) {
  background: var(--yellow);
}

.resource-links a:nth-child(3) {
  background: var(--green);
}

.resource-links a:nth-child(4) {
  background: var(--blue-deep);
  color: var(--white);
}

.resource-links a:hover,
.resource-links a:focus-visible {
  background: var(--ink);
  color: var(--yellow);
}

.resource-links span {
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-links strong {
  font-size: clamp(1.15rem, 2vw, 2.2rem);
  line-height: 1;
}

.resource-links i {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 1.5rem;
  font-style: normal;
}

.responsibility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  margin-top: clamp(24px, 5vh, 54px) !important;
  background: var(--white);
  list-style: none;
}

.responsibility-list li {
  position: relative;
  min-height: 90px;
  padding: 18px 18px 18px 64px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 730;
}

.responsibility-list li:nth-child(2),
.responsibility-list li:nth-child(5) {
  background: var(--yellow);
}

.responsibility-list span {
  position: absolute;
  left: 16px;
  top: 20px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.tool-line {
  margin: clamp(28px, 6vh, 66px) 0 0 !important;
  padding: 18px 0;
  border-top: var(--line);
  border-bottom: var(--line);
  font-size: clamp(0.82rem, 1.2vw, 1.2rem) !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.number-steps {
  display: grid;
  gap: 2px;
  padding: 0;
  background: currentColor;
  list-style: none;
}

.number-steps li {
  position: relative;
  min-height: 54px;
  padding: 12px 18px 12px 66px;
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(0.9rem, 1.3vw, 1.35rem);
  font-weight: 700;
}

.number-steps span {
  position: absolute;
  left: 16px;
  top: 15px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.word-field {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 5vh, 56px);
}

.word-field span {
  padding: 12px 16px;
  border: var(--line);
  background: var(--paper);
  font-size: clamp(1rem, 1.6vw, 1.7rem);
  font-weight: 800;
}

.ten-quarter-grid li {
  min-height: 150px;
}

.ten-process-line {
  margin: clamp(20px, 3vh, 34px) 0 0 !important;
  padding: 14px 0;
  border-top: var(--line);
  border-bottom: var(--line);
  font-size: clamp(0.92rem, 1.35vw, 1.35rem) !important;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-align: center;
}

.ten-grade-canvas h2 {
  max-width: 14ch;
}

.ten-grading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2px;
  margin-top: clamp(22px, 4vh, 42px);
  border: var(--line);
  background: var(--ink);
}

.ten-grading > section {
  padding: clamp(18px, 2.4vw, 34px);
}

.ten-grade-projects {
  background: var(--orange);
}

.ten-grade-daily {
  color: var(--white);
  background: var(--blue-deep);
}

.ten-grade-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.ten-grade-heading strong,
.ten-or-zero {
  font-family: var(--display-font);
  line-height: 0.85 !important;
  text-transform: uppercase;
}

.ten-grade-heading strong {
  font-size: clamp(3.8rem, 6vw, 7rem);
}

.ten-grade-heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.4rem);
}

.ten-score-lines {
  display: grid;
  gap: 1px;
  margin-top: 16px !important;
  background: var(--ink);
}

.ten-score-lines div {
  display: grid;
  grid-template-columns: 48px 1fr;
  color: var(--ink);
  background: var(--paper);
}

.ten-score-lines dt,
.ten-score-lines dd {
  margin: 0;
  padding: 8px 10px;
  font-size: clamp(0.76rem, 1vw, 1.02rem);
}

.ten-score-lines dt {
  font-weight: 900;
}

.ten-criteria-lines {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 16px 0 0 !important;
  background: var(--ink);
  list-style: none;
}

.ten-criteria-lines li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(0.76rem, 1vw, 1.02rem);
  font-weight: 720;
}

.ten-criteria-lines strong {
  font-weight: 900;
}

.ten-grade-daily > p:last-child {
  margin: 14px 0 0;
  font-size: clamp(0.9rem, 1.25vw, 1.3rem);
  font-weight: 700;
}

.ten-or-zero {
  margin: clamp(22px, 4vh, 42px) 0 0 !important;
  color: var(--yellow);
  font-size: clamp(4rem, 7vw, 8rem) !important;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  margin-top: clamp(24px, 5vh, 54px);
}

.studio-links,
.studio-rules {
  display: grid;
  padding: 0;
  border-top: 2px solid currentColor;
}

.studio-links a,
.studio-rules li {
  padding: clamp(12px, 1.7vh, 20px) 0;
  border-bottom: 2px solid currentColor;
  font-size: clamp(1rem, 1.6vw, 1.7rem);
  font-weight: 780;
}

.studio-links a {
  display: flex;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
}

.studio-links a:hover,
.studio-links a:focus-visible {
  color: var(--yellow);
}

.studio-rules {
  margin: 0;
  list-style: none;
}

.studio-rules li::before {
  content: "→";
  margin-right: 12px;
}

.direction-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  margin-top: clamp(22px, 4vh, 46px);
}

.mandala-summary {
  display: grid;
  grid-template-columns: minmax(130px, 0.6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.mandala-summary .mandala-shape {
  grid-row: 1 / 3;
}

.mandala-summary p {
  margin: 0;
  font-size: clamp(0.92rem, 1.25vw, 1.25rem);
  font-weight: 700;
}

.privacy-line {
  padding-top: 12px;
  border-top: var(--line);
}

.direction-prompts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  border: var(--line);
  background: var(--ink);
  counter-reset: direction;
  list-style: none;
}

.direction-prompts li {
  min-height: 94px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 780;
  counter-increment: direction;
}

.direction-prompts li:nth-child(2) {
  background: var(--green);
}

.direction-prompts li:nth-child(3) {
  background: var(--orange);
}

.direction-prompts li:nth-child(4) {
  color: var(--white);
  background: var(--blue-deep);
}

.direction-prompts li::before {
  content: "0" counter(direction);
  display: block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.setup-overview h2 {
  max-width: 15ch;
}

.setup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 5vw, 76px);
  margin-top: clamp(22px, 4vh, 44px);
}

.setup-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  background: var(--white);
  list-style: none;
}

.setup-steps li {
  position: relative;
  min-height: 82px;
  padding: 18px 16px 16px 54px;
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(0.88rem, 1.15vw, 1.2rem);
  font-weight: 780;
}

.setup-steps li:nth-child(2),
.setup-steps li:nth-child(5) {
  background: var(--yellow);
}

.setup-steps li:nth-child(3) {
  background: var(--orange);
}

.setup-steps li:nth-child(4) {
  background: var(--green);
}

.setup-steps li:nth-child(6) {
  color: var(--white);
  background: var(--blue-deep);
}

.setup-steps span {
  position: absolute;
  left: 14px;
  top: 18px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.setup-support {
  display: grid;
  align-content: start;
  gap: 14px;
}

.setup-support p {
  margin: 0;
  font-size: clamp(0.9rem, 1.2vw, 1.25rem);
  font-weight: 700;
}

.setup-support nav {
  display: grid;
  border-top: 2px solid currentColor;
}

.setup-support a {
  padding: 10px 0;
  border-bottom: 2px solid currentColor;
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.setup-support a:hover,
.setup-support a:focus-visible {
  color: var(--white);
}

.setup-fallback {
  padding: 12px;
  color: var(--ink);
  background: var(--green);
}

.week-start-list {
  display: grid;
  margin: clamp(28px, 5vh, 58px) 0 0;
  border-top: 2px solid currentColor;
}

.week-start-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  border-bottom: 2px solid currentColor;
}

.week-start-list dt,
.week-start-list dd {
  margin: 0;
  padding: clamp(14px, 2vh, 22px) 0;
}

.week-start-list dt {
  color: var(--yellow);
  font-size: clamp(0.82rem, 1.1vw, 1.08rem);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.week-start-list dd {
  font-size: clamp(1.25rem, 2vw, 2.15rem);
  font-weight: 760;
  line-height: 1.14;
}

.mandala-instructions {
  display: grid;
  padding: 0;
  margin: clamp(28px, 5vh, 58px) 0 0 !important;
  border-top: var(--line);
  list-style: none;
}

.mandala-instructions li {
  padding: clamp(16px, 2.3vh, 26px) 0;
  border-bottom: var(--line);
  font-size: clamp(1.2rem, 2vw, 2.15rem);
  font-weight: 760;
}

.mandala-instructions li::before {
  content: "→";
  margin-right: 14px;
  font-weight: 900;
}

.word-field span:nth-child(2),
.word-field span:nth-child(5) {
  background: var(--yellow);
}

.word-field span:nth-child(3) {
  background: var(--orange);
}

.word-field span:nth-child(4) {
  color: var(--white);
  background: var(--blue-deep);
}

.word-field span:nth-child(6) {
  color: var(--white);
  background: var(--ink);
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 2px;
  margin-top: clamp(24px, 5vh, 56px) !important;
  background: var(--ink);
  counter-reset: questions;
  list-style: none;
}

.question-list li {
  position: relative;
  min-height: 92px;
  padding: 18px 18px 18px 66px;
  background: var(--paper);
  font-weight: 700;
  counter-increment: questions;
}

.question-list li::before {
  content: "0" counter(questions);
  position: absolute;
  left: 16px;
  top: 20px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.question-list li:nth-child(2),
.question-list li:nth-child(5) {
  background: var(--yellow);
}

.question-list li:nth-child(3) {
  background: var(--green);
}

.question-list li:nth-child(4) {
  background: var(--orange);
}

.question-list--compact li {
  min-height: 74px;
  font-size: clamp(0.9rem, 1.25vw, 1.3rem);
}

.three-directions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: clamp(28px, 6vh, 68px);
  border: var(--line);
  background: var(--ink);
}

.three-directions > div {
  position: relative;
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
}

.three-directions > div:nth-child(2) {
  background: var(--yellow);
}

.three-directions > div:nth-child(3) {
  color: var(--white);
  background: var(--blue-deep);
}

.three-directions span {
  font-family: var(--display-font);
  font-size: clamp(3.6rem, 6vw, 6.5rem);
  line-height: 0.8;
}

.three-directions p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  margin: 0;
  font-weight: 750;
}

.format-grid,
.test-questions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  margin-top: clamp(24px, 5vh, 54px) !important;
  background: var(--white);
  list-style: none;
}

.format-grid li,
.test-questions li {
  display: grid;
  min-height: 104px;
  padding: 16px;
  align-items: end;
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(0.9rem, 1.25vw, 1.3rem);
  font-weight: 750;
}

.format-grid li:nth-child(2),
.test-questions li:nth-child(2) {
  background: var(--yellow);
}

.format-grid li:nth-child(3),
.test-questions li:nth-child(3) {
  background: var(--green);
}

.format-grid li:nth-child(4),
.test-questions li:nth-child(4) {
  background: var(--orange);
}

.format-grid li:nth-child(5),
.test-questions li:nth-child(5) {
  color: var(--white);
  background: var(--blue-deep);
}

.format-grid li:nth-child(6),
.test-questions li:nth-child(6) {
  color: var(--white);
  background: var(--ink);
}

.arrow-list--wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: clamp(24px, 5vh, 54px) !important;
  border: var(--line);
  background: var(--ink);
}

.arrow-list--wide li {
  padding: 18px;
  border: 0;
  background: var(--paper);
}

.arrow-list--wide li:nth-child(2),
.arrow-list--wide li:nth-child(5) {
  background: var(--orange);
}

.verb-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  margin-top: clamp(28px, 6vh, 68px) !important;
  border: 2px solid var(--white);
  background: var(--white);
  list-style: none;
}

.verb-line li {
  display: grid;
  min-height: 110px;
  padding: 12px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(0.9rem, 1.25vw, 1.35rem);
  font-weight: 800;
  text-align: center;
}

.verb-line li:nth-child(2) {
  background: var(--yellow);
}

.verb-line li:nth-child(3) {
  background: var(--orange);
}

.verb-line li:nth-child(4) {
  background: var(--green);
}

.verb-line li:nth-child(5) {
  color: var(--white);
  background: var(--blue-deep);
}

.rule-list {
  max-width: 70ch;
  margin-top: clamp(26px, 5vh, 58px) !important;
}

.rule-list li {
  padding-left: 34px;
}

.rule-list li::before {
  content: "×";
  display: inline-block;
  width: 30px;
  margin-left: -34px;
  font-family: var(--display-font);
  font-size: 1.5em;
  line-height: 0.6;
}

.screen-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  margin-top: clamp(24px, 5vh, 54px) !important;
  border: var(--line);
  background: var(--ink);
  list-style: none;
}

.screen-steps li {
  position: relative;
  min-height: 145px;
  padding: 50px 16px 16px;
  color: var(--ink);
  background: var(--paper);
  font-size: clamp(0.84rem, 1.15vw, 1.17rem);
  font-weight: 720;
}

.screen-steps li:nth-child(2),
.screen-steps li:nth-child(5) {
  background: var(--yellow);
}

.screen-steps li:nth-child(3) {
  background: var(--green);
}

.screen-steps li:nth-child(4) {
  background: var(--orange);
}

.screen-steps span {
  position: absolute;
  left: 16px;
  top: 10px;
  font-family: var(--display-font);
  font-size: 2rem;
}

.slide-link {
  display: inline-block;
  width: fit-content;
  margin-top: 28px;
  padding: 12px 14px;
  border: 2px solid currentColor;
  font-size: clamp(0.84rem, 1.05vw, 1.05rem);
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.slide-link:hover,
.slide-link:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.filename {
  width: fit-content;
  max-width: 100%;
  margin: clamp(28px, 6vh, 70px) 0 0 !important;
  padding: 18px 22px;
  border: 3px solid currentColor;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(1.25rem, 2.5vw, 3rem) !important;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.export-compare {
  display: grid;
  gap: 2px;
  background: var(--ink);
}

.export-compare > div {
  padding: clamp(18px, 3vw, 34px);
  background: var(--paper);
}

.export-compare > div:nth-child(2) {
  background: var(--yellow);
}

.export-compare span {
  font-size: clamp(1.25rem, 2vw, 2.2rem);
  font-weight: 850;
}

.export-compare p {
  margin: 10px 0 0;
}

.export-compare strong {
  padding: 16px 20px;
  color: var(--white);
  background: var(--ink);
  font-size: clamp(1.3rem, 2vw, 2rem);
  text-transform: uppercase;
}

.system-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: clamp(26px, 5vh, 58px);
  border: var(--line);
  background: var(--ink);
}

.system-split > div {
  padding: clamp(24px, 4vw, 52px);
  background: var(--orange);
}

.system-split > div:last-child {
  color: var(--white);
  background: var(--blue-deep);
}

.system-split h3 {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  text-transform: uppercase;
}

.system-split a {
  display: inline-block;
  margin-top: 20px;
  font-weight: 800;
}

.final-statement {
  max-width: 34ch;
  margin: clamp(28px, 5vh, 56px) 0 0 !important;
  font-size: clamp(1.3rem, 2.4vw, 2.7rem) !important;
  font-weight: 650;
  line-height: 1.2 !important;
}

.final-word {
  position: absolute;
  right: 5vw;
  bottom: 7vh;
  z-index: 2;
  margin: 0 !important;
  color: var(--yellow);
  font-family: var(--display-font);
  font-size: clamp(4rem, 9vw, 10rem) !important;
  line-height: 0.8 !important;
  text-transform: uppercase;
}

.deck-controls {
  position: fixed;
  inset: auto 0 0;
  z-index: 80;
  display: grid;
  min-height: var(--control-height);
  grid-template-columns: auto 1fr auto auto auto;
  align-items: stretch;
  border-top: var(--line);
  background: var(--paper);
}

.deck-controls button {
  min-width: 124px;
  padding: 0 20px;
  border: 0;
  border-left: var(--line);
  background: var(--paper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.deck-controls button:first-child {
  border-left: 0;
  border-right: var(--line);
}

.deck-controls button:hover,
.deck-controls button:focus-visible {
  color: var(--yellow);
  background: var(--ink);
}

.deck-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.deck-controls button:disabled:hover {
  color: var(--ink);
  background: var(--paper);
}

.deck-controls [data-previous],
.deck-controls [data-next] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.deck-controls [data-next] {
  color: var(--white);
  background: var(--ink);
}

.control-hint {
  align-self: center;
  margin: 0;
  padding: 0 20px;
  color: #5d5a54;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.slide-index {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper);
}

.slide-index::backdrop {
  background: rgb(21 21 21 / 0.78);
}

.slide-index__header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px clamp(20px, 4vw, 64px);
  border-bottom: var(--line);
  background: var(--paper);
}

.slide-index__header p {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slide-index__header h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.slide-index__header button {
  padding: 12px 16px;
  border: var(--line);
  background: var(--yellow);
  font-weight: 800;
  cursor: pointer;
}

.slide-index__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  padding: 2px;
  background: var(--ink);
}

.index-item {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  text-align: left;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 160ms ease;
}

.index-item:nth-child(5n + 2) {
  background: var(--yellow);
}

.index-item:nth-child(5n + 3) {
  background: var(--green);
}

.index-item:nth-child(5n + 4) {
  background: var(--orange);
}

.index-item:nth-child(5n + 5) {
  color: var(--white);
  background: var(--blue-deep);
}

.index-item:hover,
.index-item:focus-visible {
  z-index: 2;
  color: var(--yellow);
  background: var(--ink);
  transform: scale(0.985);
}

.index-item[aria-current="true"] {
  box-shadow: inset 0 0 0 7px var(--ink);
}

.index-item span {
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.index-item small {
  margin-bottom: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.index-item strong {
  max-width: 18ch;
  font-size: clamp(1rem, 1.45vw, 1.5rem);
  line-height: 1.02;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--control-height) + 18px);
  z-index: 120;
  margin: 0;
  padding: 10px 14px;
  border: var(--line);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 180ms var(--ease);
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.no-js .deck-header,
.no-js .index-rail,
.no-js .deck-controls,
.no-js .slide-index {
  display: none;
}

.no-js .deck {
  position: static;
}

.no-js .slide {
  position: relative;
  min-height: 100svh;
  border-bottom: 6px solid var(--ink);
}

@keyframes slide-enter {
  from {
    transform: translateX(32px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-enter-backward {
  from {
    transform: translateX(-32px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 60px;
    --control-height: 56px;
    --rail-width: 42px;
  }

  .deck-header {
    grid-template-columns: minmax(150px, 1fr) 1fr auto;
    padding: 8px 16px;
  }

  .deck-brand span {
    display: none;
  }

  .deck-section {
    font-size: 0.66rem;
  }

  .slide__canvas {
    padding: 24px 54px;
  }

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

  .grade-split {
    margin-inline: -54px;
  }

  .quarter-grid li,
  .workflow-line li {
    min-height: 150px;
  }

  .deck-controls {
    grid-template-columns: auto 1fr auto auto;
  }

  .control-hint {
    display: none;
  }

  .deck-controls [data-copy-link] {
    display: none;
  }

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

@media (max-height: 700px) and (min-width: 721px) {
  .protocol-canvas {
    padding-block: 20px;
  }

  .protocol-canvas .slide__eyebrow {
    margin-bottom: 8px;
  }

  .protocol-canvas .expectation-grid {
    margin-top: 12px;
  }

  .protocol-canvas .expectation-grid div {
    min-height: 116px;
    padding: 12px 16px;
  }

  .protocol-canvas .expectation-grid dt {
    margin-bottom: 8px;
    font-size: 1.15rem;
  }

  .protocol-canvas .expectation-grid dd {
    font-size: 0.95rem;
  }

  .slide__canvas {
    padding-block: 18px;
  }

  .slide__eyebrow {
    margin-bottom: 10px;
  }

  .slide h2 {
    font-size: clamp(2.5rem, 4.7vw, 4.2rem);
  }

  .two-column,
  .ten-grading,
  .studio-grid,
  .direction-grid,
  .setup-grid {
    margin-top: 14px;
  }

  .ownership-line {
    margin-top: 12px !important;
    padding-top: 10px;
  }

  .ten-quarter-grid {
    margin-top: 14px !important;
  }

  .ten-quarter-grid li {
    min-height: 100px;
    padding: 14px;
  }

  .ten-quarter-grid span {
    margin-bottom: 12px;
  }

  .ten-process-line {
    margin-top: 12px !important;
    padding: 9px 0;
  }

  .ten-grading > section {
    padding: 14px;
  }

  .ten-grade-heading strong {
    font-size: 3.7rem;
  }

  .ten-score-lines,
  .ten-criteria-lines {
    margin-top: 10px !important;
  }

  .ten-score-lines dt,
  .ten-score-lines dd {
    padding: 4px 8px;
  }

  .ten-criteria-lines li {
    padding: 4px 8px;
  }

  .ten-or-zero {
    margin-top: 14px !important;
    font-size: 4rem !important;
  }

  .studio-grid,
  .direction-grid,
  .setup-grid {
    gap: 28px;
  }

  .studio-links a,
  .studio-rules li {
    padding: 8px 0;
  }

  .mandala-summary .mandala-shape {
    max-width: 150px;
  }

  .direction-prompts li {
    min-height: 72px;
    padding: 12px;
  }

  .direction-prompts li::before {
    margin-bottom: 6px;
  }

  .number-steps li {
    min-height: 46px;
    padding-block: 9px;
  }

  .setup-steps li {
    min-height: 62px;
    padding-block: 12px;
  }

  .setup-steps span {
    top: 13px;
  }

  .setup-support {
    gap: 8px;
  }

  .setup-support a {
    padding: 6px 0;
  }

  .week-start-list,
  .mandala-instructions {
    margin-top: 14px !important;
  }

  .week-start-list dt,
  .week-start-list dd,
  .mandala-instructions li {
    padding-block: 8px;
  }
}

@media (max-width: 720px), (max-height: 560px) {
  :root {
    --header-height: 52px;
    --control-height: 52px;
  }

  .deck-header {
    grid-template-columns: 1fr auto;
  }

  .deck-section {
    display: none;
  }

  .deck-brand strong {
    font-size: 1.02rem;
  }

  .deck-count [data-current-slide] {
    font-size: 1rem;
  }

  .index-rail {
    top: auto;
    bottom: var(--control-height);
    width: 82px;
    height: 38px;
    border-left: 0;
    transform: none;
  }

  .index-rail:hover,
  .index-rail:focus-visible {
    width: 92px;
  }

  .index-rail span {
    font-size: 0.6rem;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .slide__canvas,
  .slide__canvas--split {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    padding: 22px 22px 30px;
  }

  .slide h1 {
    font-size: clamp(3.2rem, 14vw, 5.8rem);
  }

  .slide h2 {
    font-size: clamp(2.2rem, 10vw, 4.8rem);
  }

  .slide p,
  .slide li,
  .slide dd {
    font-size: clamp(0.9rem, 3.8vw, 1.3rem);
  }

  .ryan-mark {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .ryan-mark {
    width: 100px;
    margin: 18px 0 0 auto;
    border-bottom: var(--line);
  }

  .two-column,
  .decision-split,
  .bottom-band,
  .mandala-layout,
  .system-split,
  .ten-grading,
  .studio-grid,
  .direction-grid,
  .mandala-summary,
  .setup-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quarter-grid,
  .process-line,
  .workflow-line,
  .verb-line,
  .screen-steps,
  .setup-steps,
  .direction-prompts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mandala-summary .mandala-shape {
    grid-row: auto;
    width: min(170px, 60vw);
  }

  .ten-grade-heading strong {
    font-size: 3.6rem;
  }

  .week-start-list div {
    grid-template-columns: 1fr;
  }

  .week-start-list dt {
    padding-bottom: 0;
  }

  .grade-split {
    grid-template-columns: 1fr;
    margin: 24px -22px -30px;
  }

  .grade-split > div {
    padding: 22px;
  }

  .grade-split strong {
    font-size: 4.4rem;
  }

  .responsibility-list,
  .question-list,
  .format-grid,
  .test-questions,
  .resource-links,
  .arrow-list--wide,
  .sentence-prompts--four,
  .mandala-layout ul {
    grid-template-columns: 1fr;
  }

  .three-directions {
    grid-template-columns: 1fr;
  }

  .three-directions > div {
    min-height: 140px;
  }

  .binary-score span {
    font-size: clamp(5rem, 26vw, 9rem);
  }

  .deck-controls button {
    min-width: 0;
    padding: 0 14px;
    font-size: 0.65rem;
  }

  .deck-controls [data-fullscreen] {
    display: none;
  }

  .deck-controls {
    grid-template-columns: 1fr 1fr;
  }

  .deck-controls [data-previous] {
    grid-column: 1;
  }

  .deck-controls [data-next] {
    grid-column: 2;
  }

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

  .index-item {
    min-height: 126px;
  }
}

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

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

  html,
  body {
    height: auto;
    overflow: visible;
    background: var(--white);
  }

  .deck-header,
  .index-rail,
  .deck-controls,
  .slide-index,
  .toast,
  .skip-link {
    display: none !important;
  }

  .deck {
    position: static;
  }

  .js .slide,
  .slide {
    position: relative;
    display: block !important;
    width: 16in;
    height: 9in;
    break-after: page;
  }

  .slide__canvas {
    overflow: hidden;
  }
}
