:root {
  --bg: #f4ecdd;
  --bg-strong: #ece0ca;
  --paper: rgba(255, 250, 240, 0.9);
  --paper-strong: rgba(255, 252, 246, 0.96);
  --ink: #132033;
  --ink-soft: rgba(19, 32, 51, 0.72);
  --line: rgba(19, 32, 51, 0.14);
  --signal: #ea5c2b;
  --signal-soft: rgba(234, 92, 43, 0.12);
  --chartreuse: #d4ff57;
  --blueprint: #2b66f0;
  --blueprint-soft: rgba(43, 102, 240, 0.1);
  --shadow: 0 28px 70px rgba(39, 30, 18, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1440px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 255, 87, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(43, 102, 240, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f2e8 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: var(--sans);
}

body.deck-page {
  min-height: 100vh;
  overflow: hidden;
}

body.guide-page {
  min-height: 100vh;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(19, 32, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 32, 51, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent);
}

.eyebrow,
.slide-deck,
.statement-label,
.phase-number,
.demo-pill,
.document-header,
.notes-title,
.footer-meta,
.footer-keys,
.pill,
.guide-tag,
.guide-stat-label {
  font-family: var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.slide-deck,
.statement-label,
.phase-number,
.document-name,
.guide-tag,
.guide-stat-label {
  color: var(--ink-soft);
}

.toolbar-button,
.toolbar-link,
.link-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.toolbar-button:hover,
.toolbar-link:hover,
.link-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(19, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.deck-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  min-height: 100vh;
  height: 100vh;
  margin: 0 auto;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.deck-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.deck-brand-title {
  margin: 6px 0 0;
  font-size: 0.82rem;
}

.deck-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.deck-stage {
  position: relative;
  flex: 1;
  min-height: 0;
}

.deck {
  height: 100%;
}

.deck:focus {
  outline: none;
}

.slide {
  display: none;
  position: relative;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: clamp(26px, 4vw, 54px);
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(43, 102, 240, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(234, 92, 43, 0.12), transparent 30%);
  pointer-events: none;
}

.slide > * {
  position: relative;
  z-index: 1;
}

.slide > .slide-ambient-art {
  z-index: 0;
}

.slide.is-active {
  display: grid;
  gap: 28px;
  animation: fade-up 220ms ease;
}

.slide-title,
.guide-header h1,
.guide-section-head h2,
.guide-hero-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.slide-title {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  max-width: 11ch;
}

.slide-title--cover {
  font-size: clamp(4.2rem, 9vw, 7.8rem);
  max-width: 8ch;
}

.slide-title--closing {
  max-width: 12ch;
}

.slide-lead {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.35;
  max-width: 24ch;
}

.slide-support,
.statement-copy,
.phase-card p,
.artifact-copy p,
.belief-card p,
.action-card p,
.guide-body,
.guide-card p,
.guide-checklist li,
.document-lines p,
.notes-list li,
.guide-stage,
.guide-steps li {
  font-size: clamp(1rem, 0.85vw + 0.72rem, 1.15rem);
  line-height: 1.6;
}

.slide-support {
  margin: 0;
  color: var(--ink-soft);
  max-width: 56ch;
}

.source-note {
  margin: -4px 0 0;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 0.72rem 0.96rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  font-size: 0.74rem;
}

.visual-panel,
.statement-card,
.phase-card,
.document-card,
.belief-card,
.action-card,
.guide-card,
.guide-stat,
.guide-image,
.guide-stage,
.guide-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
}

.visual-panel {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slide-ambient-art {
  position: absolute;
  right: clamp(28px, 4vw, 54px);
  top: clamp(42px, 7vh, 74px);
  width: min(39%, 520px);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: calc(var(--radius-lg) + 4px);
  background: rgba(255, 252, 246, 0.72);
  box-shadow: 0 26px 52px rgba(39, 30, 18, 0.14);
  opacity: 0.9;
  pointer-events: none;
  transform: rotate(1.25deg);
}

.slide-ambient-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.04), rgba(255, 252, 246, 0.14)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 30%);
}

.slide-ambient-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.slide-ambient-art--center-right {
  top: 50%;
  transform: translateY(-50%) rotate(1deg);
}

.slide-ambient-art--lower-right {
  top: auto;
  bottom: clamp(34px, 6vh, 56px);
  transform: rotate(-1deg);
}

.slide-ambient-art--wide {
  width: min(41%, 560px);
}

.slide-ambient-art--medium {
  width: min(35%, 460px);
}

.slide-ambient-art--panorama {
  width: min(36%, 500px);
  aspect-ratio: 21 / 9;
}

.slide-ambient-art--portrait {
  width: min(20%, 240px);
  aspect-ratio: 4 / 5;
  transform: rotate(-1deg);
}

.visual-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-panel--cover img {
  height: clamp(300px, 48vh, 520px);
  object-fit: cover;
}

.visual-panel figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.76);
}

.slide--cover,
.slide--contrast,
.slide--poll,
.slide--loop,
.slide--chain,
.slide--artifact,
.slide--story,
.slide--walkthrough,
.slide--matrix,
.slide--questions,
.slide--rule,
.slide--ladder,
.slide--transition,
.slide--lanes,
.slide--roadmap,
.slide--monday,
.slide--box,
.slide--metrics,
.slide--closing {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
}

.slide--story[data-slide-id="cora-lab"] {
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
}

.slide--story[data-slide-id="cora-lab"] .slide-title {
  max-width: 13.2ch;
  font-size: clamp(3rem, 6.15vw, 5.7rem);
}

.slide--story[data-slide-id="cora-lab"] .story-copy {
  gap: 14px;
}

.slide--story[data-slide-id="cora-lab"] .story-stack {
  margin-top: 188px;
  align-content: start;
  gap: 12px;
}

.slide--story[data-slide-id="cora-lab"] .story-card {
  padding: 18px;
}

.slide--story[data-slide-id="cora-lab"] .story-list {
  gap: 10px;
}

.slide--story[data-slide-id="cora-lab"] .story-list li {
  font-size: 0.95rem;
  line-height: 1.45;
}

.slide--story[data-slide-id="cora-lab"] .story-card-label {
  margin-bottom: 8px;
  font-size: 0.7rem;
}

.slide--story[data-slide-id="cora-lab"] .story-card-body {
  font-size: 0.96rem;
  line-height: 1.48;
}

.slide--poll[data-slide-id="blocker-poll"] {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.slide--poll[data-slide-id="blocker-poll"] .poll-copy {
  gap: 14px;
}

.slide--poll[data-slide-id="blocker-poll"] .slide-title {
  max-width: 14.2ch;
  font-size: clamp(2.95rem, 5.8vw, 5.35rem);
}

.slide--poll[data-slide-id="blocker-poll"] .slide-support {
  max-width: 34ch;
}

.slide--poll[data-slide-id="blocker-poll"] .poll-shell {
  grid-template-columns: minmax(0, 1fr) 240px;
}

.slide--triptych {
  grid-template-columns: 1fr;
  align-content: center;
}

.cover-copy,
.contrast-copy,
.loop-copy,
.chain-copy,
.artifact-copy,
.story-copy,
.walkthrough-copy,
.matrix-copy,
.questions-copy,
.rule-copy,
.ladder-copy,
.transition-copy,
.lanes-copy,
.roadmap-copy,
.monday-copy,
.box-copy,
.metrics-copy,
.closing-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  min-width: 0;
}

.statement-card,
.phase-card,
.belief-card,
.action-card,
.guide-card,
.guide-stat,
.guide-stage,
.guide-panel {
  padding: 22px;
}

.contrast-stack,
.phase-grid,
.action-grid,
.belief-card-grid {
  display: grid;
  gap: 16px;
}

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

.slide--contrast {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
}

.contrast-copy {
  gap: 14px;
  align-content: center;
}

.slide--contrast .slide-title {
  max-width: 10.4ch;
  font-size: clamp(3.15rem, 6vw, 5.5rem);
}

.contrast-stack {
  align-content: start;
  justify-self: end;
  width: min(100%, 620px);
}

.contrast-figure {
  margin: 0;
  width: min(100%, 540px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 252, 246, 0.84);
  box-shadow: 0 22px 42px rgba(39, 30, 18, 0.12);
}

.contrast-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.contrast-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: 0 16px 34px rgba(39, 30, 18, 0.1);
}

.contrast-ledger-column {
  display: grid;
  gap: 10px;
  padding: 22px;
  min-height: 158px;
}

.contrast-ledger-column + .contrast-ledger-column {
  border-left: 1px solid var(--line);
}

.contrast-ledger-column--plain {
  background:
    linear-gradient(180deg, rgba(43, 102, 240, 0.08), rgba(255, 255, 255, 0.94)),
    var(--paper-strong);
}

.contrast-ledger-column--signal {
  background:
    linear-gradient(180deg, rgba(212, 255, 87, 0.24), rgba(255, 255, 255, 0.94)),
    var(--paper-strong);
}

.statement-card--signal,
.belief-card--adopt,
.guide-stat--signal {
  background:
    linear-gradient(180deg, rgba(212, 255, 87, 0.24), rgba(255, 255, 255, 0.94)),
    var(--paper-strong);
}

.statement-card--plain,
.belief-card--unlearn {
  background:
    linear-gradient(180deg, rgba(43, 102, 240, 0.08), rgba(255, 255, 255, 0.94)),
    var(--paper-strong);
}

.statement-label,
.guide-tag {
  margin: 0 0 10px;
  font-size: 0.74rem;
}

.statement-copy {
  margin: 0;
}

.loop-aside {
  margin: 0;
  max-width: 30ch;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 32, 51, 0.1);
  color: var(--ink-soft);
  line-height: 1.42;
}

.slide--loop {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.slide--loop .slide-title {
  font-size: clamp(2.85rem, 5.4vw, 5.05rem);
  max-width: 10.6ch;
}

.loop-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.loop-board {
  display: grid;
  align-content: center;
}

.loop-board-surface {
  position: relative;
  width: min(100%, 680px);
  min-height: 520px;
  margin-left: auto;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: calc(var(--radius-xl) - 4px);
  background:
    radial-gradient(circle at top left, rgba(43, 102, 240, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212, 255, 87, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(247, 239, 225, 0.94));
  box-shadow: 0 28px 62px rgba(39, 30, 18, 0.12);
  overflow: hidden;
}

.loop-upstream-note {
  position: absolute;
  top: 18px;
  left: 154px;
  right: 154px;
  z-index: 2;
  padding: 10px 14px 12px;
  border: 1px dashed rgba(169, 80, 53, 0.34);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 16px 24px rgba(39, 30, 18, 0.08);
  text-align: center;
}

.loop-upstream-head {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.loop-upstream-index,
.loop-upstream-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loop-upstream-index {
  color: var(--signal);
}

.loop-upstream-title {
  color: var(--ink-soft);
}

.loop-upstream-copy {
  margin: 6px 0 0;
  font-size: 0.8rem;
  line-height: 1.36;
  color: var(--ink-soft);
}

.loop-board-surface::before,
.loop-board-surface::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 22px;
  border-radius: 999px;
  background: rgba(210, 188, 150, 0.35);
  border: 1px solid rgba(162, 133, 98, 0.14);
}

.loop-board-surface::before {
  top: 22px;
  left: 34px;
  transform: rotate(-7deg);
}

.loop-board-surface::after {
  right: 48px;
  bottom: 26px;
  transform: rotate(9deg);
}

.loop-routes {
  position: absolute;
  inset: 70px 54px 52px;
  width: calc(100% - 108px);
  height: calc(100% - 122px);
  color: rgba(169, 80, 53, 0.55);
  pointer-events: none;
}

.loop-route {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-dasharray: 1.6 3;
  marker-end: url(#loop-arrow);
}

.loop-node,
.loop-repeat-note,
.loop-journal-scrap {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 241, 227, 0.96));
  box-shadow: 0 18px 32px rgba(39, 30, 18, 0.12);
}

.loop-node {
  width: 220px;
  min-height: 136px;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.loop-node::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 14px;
  border-radius: 999px;
  background: rgba(210, 188, 150, 0.28);
  transform: rotate(8deg);
}

.loop-node h3 {
  margin: 0;
  font-size: 1.18rem;
}

.loop-node p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.42;
}

.loop-node--plan {
  top: 92px;
  left: 30px;
  transform: rotate(-2.2deg);
}

.loop-node--work {
  top: 86px;
  right: 26px;
  transform: rotate(1.8deg);
}

.loop-node--review {
  right: 28px;
  bottom: 78px;
  transform: rotate(1.6deg);
}

.loop-node--compound {
  left: 42px;
  bottom: 84px;
  transform: rotate(-2.6deg);
  background:
    linear-gradient(180deg, rgba(212, 255, 87, 0.26), rgba(255, 255, 255, 0.96)),
    rgba(255, 252, 246, 0.98);
}

.loop-repeat-note {
  inset: 204px 202px 158px 202px;
  padding: 18px 16px;
  display: grid;
  gap: 10px;
  align-content: center;
  text-align: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.98), rgba(244, 236, 221, 0.96));
}

.loop-repeat-kicker,
.loop-journal-index {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
}

.loop-repeat-copy,
.loop-journal-text {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.loop-journal-scrap {
  left: 200px;
  right: 200px;
  bottom: 26px;
  padding: 14px 18px;
  border-radius: 18px;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 247, 240, 0.96), rgba(255, 252, 246, 0.98));
}

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

.prephase-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px dashed rgba(19, 32, 51, 0.18);
}

.prephase-index,
.artifact-stage-meta {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.prephase-copy {
  display: grid;
  gap: 6px;
}

.prephase-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.prephase-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.phase-number {
  margin: 0 0 10px;
  font-size: 0.8rem;
}

.phase-card h3,
.belief-card h3,
.action-card h3,
.guide-card h3,
.guide-panel h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
}

.phase-card p,
.belief-card p,
.action-card p,
.guide-card p {
  margin: 0;
}

.story-stack,
.walkthrough-stack,
.transition-stack,
.box-stack {
  display: grid;
  gap: 16px;
  align-content: end;
}

.walkthrough-copy .slide-title {
  max-width: 8.4ch;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.walkthrough-copy .slide-support {
  max-width: 30ch;
}

.slide--walkthrough {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.walkthrough-rail,
.walkthrough-footnote,
.walkthrough-figure-label,
.walkthrough-figure-stamp,
.walkthrough-step-badge {
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.walkthrough-rail,
.walkthrough-footnote {
  margin: 0;
  font-size: 0.78rem;
  color: var(--signal);
}

.walkthrough-stack {
  display: grid;
  gap: 10px;
  align-content: center;
}

.walkthrough-lab {
  display: grid;
  gap: 10px;
  width: min(100%, 820px);
  margin-left: auto;
}

.walkthrough-figure {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 51, 0.1);
  box-shadow: var(--shadow);
  aspect-ratio: 2.15 / 0.44;
}

.walkthrough-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.walkthrough-figure-note {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  gap: 4px;
  min-width: 136px;
  padding: 8px 10px;
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.9);
  border: 1px dashed rgba(169, 80, 53, 0.34);
  box-shadow: 0 16px 28px rgba(39, 30, 18, 0.12);
  text-align: right;
}

.walkthrough-figure-label {
  font-size: 0.62rem;
  color: var(--ink-soft);
}

.walkthrough-figure-stamp {
  font-size: 0.86rem;
  color: var(--signal);
}

.walkthrough-experiment-board {
  position: relative;
  min-height: 412px;
}

.walkthrough-snake {
  position: absolute;
  inset: 18px 26px 26px 26px;
  width: calc(100% - 52px);
  height: calc(100% - 44px);
  color: rgba(209, 92, 52, 0.78);
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 6px rgba(255, 251, 244, 0.96));
}

.walkthrough-snake-route {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  marker-end: url(#walkthrough-arrow);
}

.walkthrough-snake-dot {
  fill: rgba(255, 251, 244, 0.96);
  stroke: currentColor;
  stroke-width: 1.35;
}

.walkthrough-node-slot {
  position: absolute;
  z-index: 1;
}

.walkthrough-node-slot--1 {
  top: 0;
  left: 0;
  width: 42%;
}

.walkthrough-node-slot--2 {
  top: 0;
  right: 0;
  width: 40%;
}

.walkthrough-node-slot--3 {
  top: 40%;
  right: 0;
  width: 38%;
}

.walkthrough-node-slot--4 {
  top: 44%;
  left: 4%;
  width: 40%;
}

.walkthrough-node-slot--5 {
  left: 24%;
  bottom: 0;
  width: 44%;
}

.walkthrough-node {
  display: grid;
  gap: 8px;
  min-height: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 241, 227, 0.96));
  box-shadow: var(--shadow);
}

.walkthrough-node--signal {
  background:
    linear-gradient(180deg, rgba(255, 247, 240, 0.96), rgba(255, 255, 255, 0.96));
}

.walkthrough-node--compound {
  background:
    linear-gradient(180deg, rgba(212, 255, 87, 0.22), rgba(255, 255, 255, 0.96)),
    rgba(255, 252, 246, 0.98);
}

.walkthrough-node-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.walkthrough-node-number {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
}

.walkthrough-node-badge {
  font-size: 0.62rem;
  color: var(--ink-soft);
}

.walkthrough-node-copy {
  display: grid;
  gap: 8px;
}

.walkthrough-node-copy h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.12;
}

.walkthrough-node-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.34;
}

.story-card,
.walkthrough-step,
.walkthrough-outcome,
.matrix-card,
.question-card,
.rule-card,
.triptych-card,
.transition-card,
.lane-card,
.roadmap-card,
.box-stat-card,
.metric-card,
.code-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 241, 227, 0.96));
  box-shadow: var(--shadow);
}

.story-card,
.matrix-card,
.question-card,
.rule-card,
.triptych-card,
.transition-card,
.lane-card,
.roadmap-card,
.box-stat-card,
.metric-card,
.walkthrough-outcome {
  padding: 22px;
}

.story-card--quote {
  background:
    linear-gradient(180deg, rgba(212, 255, 87, 0.18), rgba(255, 255, 255, 0.96)),
    var(--paper-strong);
}

.story-card--aside,
.rule-card--signal {
  background:
    linear-gradient(180deg, rgba(234, 92, 43, 0.12), rgba(255, 255, 255, 0.96)),
    var(--paper-strong);
}

.story-card-label {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.story-list,
.roadmap-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.story-list li,
.roadmap-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1rem;
  line-height: 1.55;
}

.story-list li::before,
.roadmap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(234, 92, 43, 0.12);
}

.story-quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.story-card-body,
.question-card-why,
.rule-footer,
.walkthrough-step-copy p,
.transition-card p,
.lane-card p,
.roadmap-card li,
.metric-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.walkthrough-step-copy p {
  font-size: 0.9rem;
  line-height: 1.34;
}

.walkthrough-timeline {
  display: grid;
  gap: 12px;
}

.walkthrough-timeline--rows {
  gap: 10px;
}

.walkthrough-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
}

.walkthrough-step--card {
  grid-template-columns: 1fr;
  gap: 8px;
  min-height: 0;
  padding: 14px 16px;
}

.walkthrough-step--signal {
  background:
    linear-gradient(180deg, rgba(255, 247, 240, 0.96), rgba(255, 255, 255, 0.96));
}

.walkthrough-step--compound {
  background:
    linear-gradient(180deg, rgba(212, 255, 87, 0.22), rgba(255, 255, 255, 0.96)),
    rgba(255, 252, 246, 0.98);
}

.walkthrough-step-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.walkthrough-step-number,
.box-stat-value {
  margin: 0;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.walkthrough-step-number {
  font-size: 0.82rem;
  color: var(--signal);
}

.walkthrough-step-badge {
  font-size: 0.62rem;
  color: var(--ink-soft);
}

.walkthrough-step-copy {
  display: grid;
  gap: 8px;
}

.walkthrough-step-copy h3,
.question-card-text,
.transition-card h3,
.lane-card h3,
.roadmap-card h3,
.metric-card h3 {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.15;
}

.walkthrough-outcome {
  display: grid;
  gap: 8px;
}

.walkthrough-finale {
  width: min(100%, 360px);
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.walkthrough-footnote {
  text-align: right;
}

.matrix-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.slide--matrix {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.slide--matrix .slide-title {
  font-size: clamp(2.85rem, 5vw, 4.95rem);
  max-width: 9.1ch;
}

.slide--matrix .slide-support {
  max-width: 33ch;
  font-size: 0.92rem;
  line-height: 1.42;
}

.slide--matrix .matrix-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.slide--matrix .matrix-card {
  padding: 15px;
  gap: 8px;
}

.slide--matrix .story-card-label {
  margin-bottom: 6px;
  font-size: 0.68rem;
}

.slide--matrix .matrix-card h3 {
  font-size: 1.04rem;
}

.slide--matrix .matrix-card p {
  font-size: 0.84rem;
  line-height: 1.34;
}

.matrix-card,
.question-card,
.transition-card,
.lane-card,
.roadmap-card,
.metric-card {
  display: grid;
  gap: 10px;
}

.question-stack,
.transition-stack {
  display: grid;
  gap: 16px;
}

.question-card-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}

.rule-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.rule-card-value,
.metric-value {
  margin: 0;
  font-family: var(--display);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.rule-card-value {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
}

.rule-footer {
  max-width: 52ch;
}

.triptych-copy {
  display: grid;
  gap: 14px;
  max-width: 56ch;
}

.triptych-grid,
.lanes-board,
.roadmap-grid,
.box-stats {
  display: grid;
  gap: 16px;
}

.triptych-grid,
.lanes-board,
.roadmap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.triptych-card h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
}

.triptych-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.lane-card {
  min-height: 220px;
  align-content: start;
}

.lane-card:nth-child(2) {
  transform: translateY(18px);
}

.roadmap-card .story-card-label {
  margin-bottom: 6px;
}

.roadmap-card h3 {
  margin-bottom: 4px;
}

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

.box-stat-card {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 154px;
}

.box-stat-value {
  font-family: var(--display);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.code-card {
  overflow: hidden;
}

.metric-card {
  min-height: 180px;
}

.metric-value {
  font-size: clamp(2.4rem, 3.8vw, 4rem);
}

.demo-pill {
  display: inline-flex;
  width: fit-content;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: var(--signal-soft);
  color: var(--signal);
  border: 1px solid rgba(234, 92, 43, 0.22);
  font-size: 0.74rem;
}

.phone-prompt {
  margin: 0;
  width: fit-content;
  padding: 0.76rem 1rem;
  border-radius: 999px;
  border: 1px dashed rgba(19, 32, 51, 0.16);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    background-color 220ms ease;
}

.phone-prompt.is-live {
  color: var(--signal);
  border-color: rgba(234, 92, 43, 0.36);
  background: rgba(255, 247, 240, 0.92);
  box-shadow: 0 0 0 6px rgba(234, 92, 43, 0.08);
  transform: translateY(-1px);
}

.document-card {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.document-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.document-lines {
  display: grid;
  gap: 8px;
  padding: 18px;
  font-family: var(--mono);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 242, 0.96));
}

.document-lines p {
  margin: 0;
}

.artifact-chain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
}

.artifact-chain-board {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: end;
}

.artifact-stage-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.96));
  box-shadow: var(--shadow);
}

.artifact-stage-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.artifact-stage-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.38;
}

.artifact-chain-footnote,
.chain-rail {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.artifact-chain-footnote {
  text-align: right;
}

.chain-rail {
  color: var(--signal);
}

.slide--beliefs {
  align-content: center;
}

.beliefs-copy {
  display: grid;
  gap: 12px;
}

.slide--beliefs[data-slide-id="beliefs-new"] {
  align-content: start;
  gap: 18px;
}

.slide--beliefs[data-slide-id="beliefs-new"] .beliefs-copy {
  max-width: 68%;
  padding-top: 6px;
}

.slide--beliefs[data-slide-id="beliefs-new"] .slide-title {
  max-width: 10.2ch;
  font-size: clamp(2.8rem, 5.25vw, 4.95rem);
}

.slide--beliefs[data-slide-id="beliefs-new"] .slide-ambient-art {
  top: clamp(44px, 7vh, 74px);
  width: min(33%, 450px);
}

.slide--beliefs[data-slide-id="beliefs-new"] .belief-card-grid {
  gap: 12px;
  margin-top: auto;
}

.slide--beliefs[data-slide-id="beliefs-new"] .belief-card {
  padding: 16px 18px;
}

.slide--beliefs[data-slide-id="beliefs-new"] .belief-card h3 {
  margin-bottom: 7px;
  font-size: 1.16rem;
}

.slide--beliefs[data-slide-id="beliefs-new"] .belief-card p {
  font-size: 0.95rem;
  line-height: 1.36;
}

.ladder-rail {
  display: grid;
  gap: 12px;
}

.stage-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
}

.stage-row.is-featured {
  background: var(--ink);
  color: #fff8ef;
  transform: translateX(6px);
}

.stage-index {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.ladder-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.histogram-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 239, 226, 0.96));
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 16px;
}

.histogram-head,
.ledger-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.histogram-kicker,
.ledger-label,
.score-strip-label,
.answer-flash-label,
.mini-histogram-label,
.audience-status,
.idle-title,
.vote-button-badge {
  margin: 0;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.histogram-kicker,
.ledger-label,
.score-strip-label,
.answer-flash-label,
.mini-histogram-label {
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.histogram-total,
.ledger-total,
.progress-copy {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.histogram-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 170px;
}

.histogram-bar-group {
  display: grid;
  gap: 8px;
  align-items: end;
}

.histogram-bar {
  position: relative;
  min-height: 18px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, rgba(19, 32, 51, 0.18), rgba(43, 102, 240, 0.82));
  display: grid;
  place-items: start center;
  padding-top: 8px;
  transition: height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.histogram-bar-count {
  color: #fff8ef;
  font-family: var(--mono);
  font-size: 0.74rem;
}

.histogram-bar-label {
  font-family: var(--mono);
  font-size: 0.76rem;
  text-align: center;
  color: var(--ink-soft);
}

.histogram-footnote,
.reveal-footnote {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.link-column {
  display: grid;
  gap: 14px;
  align-self: end;
}

.link-card {
  justify-content: flex-start;
  padding-left: 1.2rem;
}

.poll-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.poll-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: stretch;
}

.poll-results,
.join-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  padding: 20px;
}

.poll-results {
  display: grid;
  gap: 14px;
}

.poll-status-row,
.poll-option-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.poll-status,
.poll-total,
.poll-count,
.join-label,
.join-footnote,
.join-url {
  margin: 0;
}

.poll-status,
.join-label {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.poll-option {
  display: grid;
  gap: 8px;
}

.poll-option-head {
  font-size: 0.98rem;
  line-height: 1.4;
}

.poll-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 32, 51, 0.08);
  overflow: hidden;
}

.poll-bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--signal), #f0ab52 55%, var(--chartreuse));
  transition: width 220ms ease;
}

.poll-count {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.join-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.join-url {
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.45;
  word-break: break-word;
}

.qr-frame {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(43, 102, 240, 0.08), rgba(255, 255, 255, 0.96)),
    var(--paper-strong);
  border: 1px solid var(--line);
  overflow: hidden;
}

.qr-frame--placeholder {
  text-align: center;
  padding: 18px;
  color: var(--ink-soft);
}

.qr-image {
  display: block;
  width: 100%;
  height: auto;
}

.join-footnote {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.phone-join-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  justify-items: start;
  max-width: min(100%, 420px);
  min-width: 0;
}

.join-widget {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 241, 227, 0.96));
  box-shadow: 0 16px 34px rgba(39, 30, 18, 0.1);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.join-widget--cover {
  max-width: 420px;
  margin-top: 6px;
}

.join-widget--inline {
  width: min(100%, 360px);
  justify-self: start;
}

.join-widget-label,
.join-widget-url {
  margin: 0;
}

.join-widget-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.join-widget-shell {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.join-widget--inline .join-widget-shell {
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: start;
}

.join-widget-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(43, 102, 240, 0.08), rgba(255, 255, 255, 0.96)),
    var(--paper-strong);
}

.join-widget--inline .join-widget-frame {
  width: 78px;
}

.join-widget-frame--placeholder {
  padding: 10px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.join-widget-image {
  display: block;
  width: 100%;
  height: auto;
}

.join-widget-copy {
  display: grid;
  gap: 6px;
}

.join-widget-url {
  font-family: var(--mono);
  font-size: 0.92rem;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.join-widget-footnote {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.join-widget--inline .join-widget-footnote {
  font-size: 0.82rem;
  line-height: 1.4;
}

.notes-drawer {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100% - 36px));
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(19, 32, 51, 0.96);
  color: #fff8ef;
  box-shadow: 0 24px 60px rgba(19, 32, 51, 0.32);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.notes-drawer.is-open {
  opacity: 1;
  transform: translateY(0);
}

.notes-title {
  margin: 0 0 12px;
  font-size: 0.76rem;
  color: rgba(255, 248, 239, 0.7);
}

.notes-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.notes-list li {
  position: relative;
  padding-left: 1.2rem;
}

.notes-list li::before,
.guide-checklist li::before,
.guide-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(234, 92, 43, 0.14);
}

.notes-hint {
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: rgba(255, 248, 239, 0.72);
  line-height: 1.5;
}

.deck-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.footer-meta {
  display: flex;
  gap: 10px;
  font-size: 0.76rem;
}

.deck-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(19, 32, 51, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--signal), #f2aa52 50%, var(--chartreuse));
  border-radius: inherit;
  transition: width 200ms ease;
}

.footer-keys {
  margin: 0;
  font-size: 0.76rem;
  color: var(--ink-soft);
}

.guide-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px 24px 88px;
}

.guide-header {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) auto;
  align-items: end;
  gap: 22px;
  margin-bottom: 16px;
}

.guide-header-copy {
  max-width: 74ch;
}

.guide-header h1 {
  font-size: clamp(2.8rem, 5vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: none;
  margin: 0;
}

.guide-header p {
  margin: 12px 0 0;
  max-width: 63ch;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.8;
}

.guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-self: start;
  max-width: 420px;
}

.guide-jumpbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(19, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.82);
  box-shadow: 0 16px 38px rgba(39, 30, 18, 0.08);
  backdrop-filter: blur(14px);
}

.guide-jumpbar .toolbar-link {
  min-height: 38px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.guide-hero,
.guide-section {
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  align-items: center;
}

.guide-hero-copy {
  display: grid;
  gap: 16px;
}

.guide-hero-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 10ch;
}

.guide-section {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 38px);
}

.guide-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.guide-section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  max-width: 13ch;
}

.guide-body {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-soft);
}

.guide-grid,
.guide-card-grid,
.guide-stats,
.guide-panels {
  display: grid;
  gap: 16px;
}

.guide-grid--two,
.guide-stats,
.guide-panels,
.guide-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.guide-article {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.78fr);
  gap: 16px;
  align-items: start;
}

.guide-prose {
  display: grid;
  gap: 14px;
  max-width: 70ch;
}

.guide-prose p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.guide-callout {
  padding: 20px 22px;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 243, 232, 0.9));
}

.guide-callout--note {
  background:
    linear-gradient(180deg, rgba(249, 244, 236, 0.96), rgba(255, 250, 242, 0.96));
}

.guide-pullquote {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.guide-stat {
  padding: 22px;
}

.guide-stat-value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.9;
}

.guide-stat-label {
  margin: 8px 0 0;
  font-size: 0.74rem;
}

.guide-image {
  overflow: hidden;
}

.guide-image img {
  display: block;
  width: 100%;
  height: auto;
}

.guide-image figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
}

.guide-checklist,
.guide-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.guide-checklist li,
.guide-steps li {
  position: relative;
  padding-left: 1.2rem;
}

.guide-stage {
  padding: 16px 18px;
}

.guide-panel-copy {
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.62;
}

.guide-panel .document-card {
  box-shadow: none;
}

.guide-footer {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-essay {
  position: relative;
  display: grid;
  gap: 44px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 242, 231, 0.96));
  box-shadow: 0 28px 72px rgba(39, 30, 18, 0.1);
  overflow: hidden;
}

.guide-essay::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  border: 1px solid rgba(19, 32, 51, 0.045);
  pointer-events: none;
}

.guide-intro,
.guide-story-grid,
.guide-story-grid--figure,
.guide-exhibit,
.guide-capability-grid,
.guide-stage-list,
.guide-loop-strip,
.guide-essay-footer {
  position: relative;
  z-index: 1;
}

.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 4vw, 50px);
  align-items: start;
}

.guide-intro-copy {
  display: grid;
  gap: 16px;
  max-width: 64ch;
}

.guide-intro-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 10.2ch;
}

.guide-standfirst {
  margin: 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.84;
}

.guide-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 40px rgba(39, 30, 18, 0.08);
}

.guide-figure--hero {
  align-self: start;
}

.guide-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.guide-figure figcaption {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
}

.guide-story-section {
  display: grid;
  gap: 18px;
}

.guide-story-section + .guide-story-section {
  padding-top: 42px;
  border-top: 1px solid rgba(19, 32, 51, 0.08);
}

.guide-story-header {
  display: grid;
  gap: 8px;
  max-width: 65ch;
}

.guide-story-header h3 {
  margin: 0;
  font-size: clamp(1.95rem, 3.8vw, 3.05rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.guide-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(220px, 0.58fr);
  gap: 32px;
  align-items: start;
}

.guide-story-grid--figure {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 34px;
  align-items: start;
}

.guide-story-prose {
  display: grid;
  gap: 15px;
  max-width: 68ch;
}

.guide-story-prose--wide {
  max-width: 76ch;
}

.guide-story-prose p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.84;
}

.guide-story-prose code,
.guide-exhibit-copy code,
.guide-steps code {
  padding: 0.1rem 0.3rem;
  border-radius: 8px;
  background: rgba(19, 32, 51, 0.06);
  font-family: var(--mono);
  font-size: 0.92em;
}

.guide-margin-note {
  display: grid;
  gap: 10px;
  padding: 2px 0 2px 18px;
  border-left: 2px solid rgba(19, 32, 51, 0.14);
  background: transparent;
}

.guide-margin-note--rule {
  border-left-color: rgba(43, 102, 240, 0.34);
}

.guide-margin-note--signal {
  border-left-color: rgba(191, 122, 24, 0.32);
}

.guide-note-body {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.guide-pullquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.guide-loop-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.guide-loop-step {
  display: grid;
  gap: 8px;
  min-height: 0;
  padding: 16px 18px;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.guide-loop-step p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

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

.guide-exhibit {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.guide-exhibit + .guide-exhibit {
  padding-top: 24px;
  border-top: 1px dashed rgba(19, 32, 51, 0.12);
}

.guide-exhibit-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.guide-exhibit-copy h4 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: none;
}

.guide-exhibit-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.76;
}

.guide-exhibit .document-card {
  box-shadow: 0 12px 28px rgba(39, 30, 18, 0.08);
}

.guide-points {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.guide-stage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.guide-stage {
  padding: 15px 16px;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
  color: var(--ink-soft);
}

.guide-stage--featured {
  color: var(--ink);
  border-color: rgba(212, 255, 87, 0.55);
  background:
    linear-gradient(180deg, rgba(212, 255, 87, 0.18), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 6px rgba(212, 255, 87, 0.08);
}

.guide-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-capability {
  padding: 18px 20px;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.guide-capability h4 {
  margin: 0 0 12px;
  font-size: 1.14rem;
}

.guide-checklist li {
  color: var(--ink-soft);
  line-height: 1.55;
}

.guide-steps {
  display: grid;
  gap: 10px;
  max-width: 66ch;
  list-style: decimal;
  padding-left: 1.7rem;
}

.guide-steps li {
  position: static;
  padding-left: 0.25rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.guide-steps li::before {
  content: none;
}

.guide-essay-footer {
  display: grid;
  gap: 12px;
  padding-top: 30px;
  border-top: 1px solid rgba(19, 32, 51, 0.08);
}

body.audience-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(212, 255, 87, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(43, 102, 240, 0.14), transparent 28%),
    linear-gradient(180deg, #f9f2e7 0%, #efe2cf 100%);
}

.audience-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 24px;
}

.audience-view {
  width: 100%;
}

.notebook-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 34px);
  border-radius: 34px;
  border: 1px solid rgba(19, 32, 51, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 242, 229, 0.98)),
    var(--paper-strong);
  box-shadow:
    0 24px 70px rgba(39, 30, 18, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
  animation: notebook-rise 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.notebook-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 102, 240, 0.04), transparent 36%),
    repeating-linear-gradient(
      180deg,
      transparent 0 25px,
      rgba(19, 32, 51, 0.04) 25px 26px
    );
  pointer-events: none;
}

.notebook-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
  pointer-events: none;
}

.notebook-card > * {
  position: relative;
  z-index: 1;
}

.notebook-card.is-answered {
  box-shadow:
    0 28px 78px rgba(39, 30, 18, 0.16),
    0 0 0 8px rgba(234, 92, 43, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.notebook-pin {
  position: absolute;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff8ef 0 24%, #d6c6ad 25% 55%, #8e7f6d 56% 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.68),
    0 3px 8px rgba(39, 30, 18, 0.18);
}

.notebook-pin--left {
  left: 24px;
}

.notebook-pin--right {
  right: 24px;
}

.notebook-header-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.audience-status {
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  font-size: 0.68rem;
  border: 1px solid rgba(19, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.66);
}

.audience-status--live {
  color: var(--signal);
  border-color: rgba(234, 92, 43, 0.22);
  background: rgba(255, 244, 236, 0.92);
}

.audience-status--pulse {
  color: #9a4e12;
  border-color: rgba(240, 171, 82, 0.26);
  background: rgba(255, 248, 236, 0.96);
}

.audience-status--signal {
  color: var(--blueprint);
  border-color: rgba(43, 102, 240, 0.22);
  background: rgba(239, 245, 255, 0.92);
}

.audience-status--soft {
  color: var(--ink-soft);
}

.audience-status--danger {
  color: #a22e2e;
  border-color: rgba(162, 46, 46, 0.22);
  background: rgba(255, 240, 240, 0.92);
}

.progress-row {
  display: grid;
  gap: 8px;
}

.progress-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.progress-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(19, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.56);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.progress-dot.is-filled {
  background: linear-gradient(180deg, var(--chartreuse), #edf8b4);
  border-color: rgba(155, 191, 44, 0.36);
  box-shadow: 0 0 0 5px rgba(212, 255, 87, 0.12);
}

.progress-dot.is-active {
  transform: scale(1.08);
  animation: dot-pulse 1.25s ease-in-out infinite;
}

.notebook-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(19, 32, 51, 0.18), transparent);
}

.notebook-body {
  display: grid;
  gap: 16px;
}

.audience-question {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 10vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.audience-description,
.audience-footnote {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1rem;
}

.idle-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px dashed rgba(19, 32, 51, 0.14);
  background: rgba(255, 255, 255, 0.54);
}

.idle-panel--danger {
  border-color: rgba(162, 46, 46, 0.2);
  background: rgba(255, 244, 244, 0.7);
}

.idle-title {
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.idle-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

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

.glyph-cell {
  min-height: 28px;
  border-radius: 12px;
  border: 1px solid rgba(19, 32, 51, 0.12);
  background:
    linear-gradient(180deg, rgba(43, 102, 240, 0.08), rgba(255, 255, 255, 0.92));
  position: relative;
  overflow: hidden;
}

.glyph-cell::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  border: 1px solid rgba(19, 32, 51, 0.1);
}

.glyph-cell--tall {
  min-height: 48px;
}

.glyph-cell--wide {
  grid-column: span 2;
}

.vote-grid,
.audience-results {
  display: grid;
  gap: 12px;
}

.vote-button {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 241, 227, 0.92));
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vote-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(19, 32, 51, 0.08);
  border-color: rgba(19, 32, 51, 0.18);
}

.vote-button.is-selected {
  background: linear-gradient(180deg, rgba(19, 32, 51, 0.98), rgba(35, 51, 78, 0.98));
  color: #fff8ef;
  border-color: rgba(19, 32, 51, 0.9);
}

.vote-button.is-recommended {
  border-color: rgba(212, 255, 87, 0.6);
  box-shadow: 0 0 0 6px rgba(212, 255, 87, 0.1);
}

.vote-button-index {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--ink-soft);
}

.vote-button.is-selected .vote-button-index {
  color: rgba(255, 248, 239, 0.72);
}

.vote-button-copy {
  display: grid;
  gap: 5px;
}

.vote-button-label {
  font-size: 1rem;
  line-height: 1.45;
}

.vote-button-badge {
  width: fit-content;
  padding: 0.32rem 0.54rem;
  border-radius: 999px;
  font-size: 0.62rem;
  color: #58600d;
  background: rgba(212, 255, 87, 0.3);
}

.score-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(19, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.66);
}

.score-strip--pulse {
  grid-template-columns: 1fr auto;
}

.score-strip--personalized {
  background:
    linear-gradient(180deg, rgba(212, 255, 87, 0.16), rgba(255, 255, 255, 0.76));
}

.score-strip-copy {
  display: grid;
  gap: 4px;
}

.score-strip-body {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.score-strip-number {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.95;
}

.score-orb {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 2px;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(180deg, rgba(19, 32, 51, 0.98), rgba(43, 102, 240, 0.9));
  color: #fff8ef;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 36px rgba(19, 32, 51, 0.18);
}

.score-orb--compact {
  width: 78px;
}

.score-orb-value {
  display: block;
  font-family: var(--display);
  font-size: 2.7rem;
  line-height: 0.86;
}

.score-orb--compact .score-orb-value {
  font-size: 2rem;
}

.score-orb-total {
  display: block;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.answer-flash {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(234, 92, 43, 0.18);
  background: rgba(255, 246, 240, 0.94);
}

.answer-flash.is-fresh {
  animation: stamp-in 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.answer-flash-value {
  margin: 0;
  font-size: 1rem;
}

.reveal-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.score-breakdown {
  display: grid;
  gap: 8px;
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(19, 32, 51, 0.08);
}

.score-row span,
.score-row strong {
  font-size: 0.98rem;
}

.histogram-shell {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(19, 32, 51, 0.1);
}

.mini-histogram {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 136px;
}

.mini-histogram-group {
  display: grid;
  gap: 8px;
  align-items: end;
}

.mini-histogram-bar {
  min-height: 16px;
  border-radius: 16px 16px 10px 10px;
  background: linear-gradient(180deg, rgba(234, 92, 43, 0.88), rgba(240, 171, 82, 0.84));
  display: grid;
  place-items: start center;
  padding-top: 6px;
  transition: height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mini-histogram-count {
  color: #fff8ef;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.mini-histogram-label {
  text-align: center;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes notebook-rise {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(234, 92, 43, 0.18);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(234, 92, 43, 0);
  }
}

@keyframes stamp-in {
  0% {
    opacity: 0;
    transform: scale(0.96) rotate(-1deg);
  }

  70% {
    opacity: 1;
    transform: scale(1.02) rotate(0.3deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 1120px) {
  .slide {
    padding: 24px;
  }

  .slide-title {
    font-size: clamp(3rem, 6vw, 5rem);
  }

  .slide-title--cover {
    font-size: clamp(3.7rem, 7vw, 6.4rem);
  }

  .slide--cover,
  .slide--contrast,
  .slide--poll,
  .slide--loop,
  .slide--chain,
  .slide--artifact,
  .slide--story,
  .slide--walkthrough,
  .slide--matrix,
  .slide--questions,
  .slide--rule,
  .slide--ladder,
  .slide--transition,
  .slide--lanes,
  .slide--roadmap,
  .slide--monday,
  .slide--box,
  .slide--metrics,
  .slide--closing,
  .guide-hero,
  .guide-article,
  .guide-grid--two,
  .guide-stats,
  .guide-panels,
  .guide-card-grid,
  .guide-intro,
  .guide-story-grid,
  .guide-story-grid--figure,
  .guide-exhibit {
    grid-template-columns: 1fr;
  }

  .guide-header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guide-jumpbar {
    top: 12px;
    border-radius: 24px;
  }

  .guide-links {
    justify-content: flex-start;
    max-width: none;
  }

  .guide-loop-strip,
  .guide-stage-list,
  .guide-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-height: 860px) {
  .deck-shell {
    height: 100vh;
    min-height: 100vh;
    padding-top: 18px;
    padding-bottom: 16px;
    gap: 14px;
  }

  .deck-toolbar {
    gap: 14px;
  }

  .toolbar-button,
  .toolbar-link,
  .link-card {
    min-height: 40px;
    padding: 0.72rem 0.92rem;
  }

  .deck-brand-title {
    margin-top: 4px;
    font-size: 0.76rem;
  }

  .slide {
    padding: 22px;
  }

  .slide.is-active {
    gap: 22px;
  }

  .slide-title {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
  }

  .slide-title--cover {
    font-size: clamp(3.3rem, 6vw, 5.6rem);
  }

  .slide-lead {
    font-size: 1.28rem;
  }

  .slide-support,
  .statement-copy,
  .phase-card p,
  .artifact-copy p,
  .belief-card p,
  .action-card p,
  .guide-body,
  .guide-card p,
  .guide-panel-copy,
  .guide-checklist li,
  .document-lines p,
  .notes-list li,
  .guide-stage,
  .guide-steps li {
    font-size: 0.98rem;
  }

  .contrast-stack,
  .phase-grid,
  .artifact-chain-grid,
  .action-grid,
  .belief-card-grid,
  .matrix-grid,
  .metrics-grid,
  .triptych-grid,
  .lanes-board,
  .roadmap-grid,
  .box-stats {
    gap: 12px;
  }

  .statement-card,
  .phase-card,
  .belief-card,
  .action-card,
  .story-card,
  .matrix-card,
  .question-card,
  .rule-card,
  .triptych-card,
  .transition-card,
  .lane-card,
  .roadmap-card,
  .box-stat-card,
  .metric-card,
  .walkthrough-outcome,
  .guide-card,
  .guide-stat,
  .guide-stage,
  .guide-panel {
    padding: 18px;
  }

  .walkthrough-step {
    padding: 16px;
  }

  .slide--walkthrough {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .walkthrough-copy .slide-title {
    font-size: clamp(2.35rem, 4vw, 3.85rem);
    max-width: 8.8ch;
  }

  .walkthrough-copy .slide-support {
    max-width: 29ch;
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .walkthrough-rail,
  .walkthrough-footnote {
    font-size: 0.68rem;
  }

  .walkthrough-lab {
    width: min(100%, 750px);
    gap: 10px;
  }

  .walkthrough-figure {
    border-radius: 24px;
    aspect-ratio: 2 / 0.5;
  }

  .walkthrough-figure-note {
    top: 12px;
    right: 14px;
    min-width: 132px;
    padding: 8px 10px;
  }

  .walkthrough-figure-label {
    font-size: 0.56rem;
  }

  .walkthrough-figure-stamp {
    font-size: 0.76rem;
  }

  .walkthrough-experiment-board {
    min-height: 368px;
  }

  .walkthrough-snake {
    inset: 16px 22px 20px 22px;
    width: calc(100% - 44px);
    height: calc(100% - 36px);
  }

  .walkthrough-snake-route {
    stroke-width: 3.2;
  }

  .walkthrough-node {
    padding: 12px 14px;
    gap: 6px;
  }

  .walkthrough-node-number {
    font-size: 0.74rem;
  }

  .walkthrough-node-badge {
    font-size: 0.54rem;
  }

  .walkthrough-node-copy {
    gap: 5px;
  }

  .walkthrough-node-copy h3 {
    font-size: 1rem;
  }

  .walkthrough-node-copy p {
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .walkthrough-node-slot--5 {
    left: 28%;
    width: 40%;
  }

  .visual-panel--cover img {
    height: clamp(240px, 40vh, 420px);
  }

  .slide-ambient-art {
    width: min(34%, 420px);
    opacity: 0.82;
  }

  .slide-ambient-art--panorama {
    width: min(32%, 360px);
  }

  .slide-ambient-art--portrait {
    width: min(18%, 200px);
  }

  .loop-aside {
    padding: 14px 16px;
  }

  .prephase-callout {
    gap: 12px;
    padding: 13px 15px;
  }

  .loop-board-surface {
    min-height: 500px;
  }

  .loop-node {
    width: 220px;
    min-height: 136px;
    padding: 18px;
  }

  .loop-repeat-note {
    inset: 168px 186px 156px 186px;
    padding: 22px 20px;
  }

  .loop-journal-scrap {
    left: 220px;
    right: 220px;
  }

  .prephase-title {
    font-size: 0.94rem;
  }

  .prephase-text,
  .artifact-stage-card p {
    font-size: 0.92rem;
  }

  .phase-card h3,
  .belief-card h3,
  .action-card h3,
  .guide-card h3,
  .guide-panel h3,
  .triptych-card h3 {
    font-size: 1.18rem;
  }

  .guide-pullquote {
    font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  }

  .phase-card p,
  .belief-card p,
  .action-card p,
  .guide-card p,
  .triptych-card p,
  .poll-option-head,
  .story-list li,
  .roadmap-list li,
  .walkthrough-step-copy p,
  .artifact-stage-card p {
    font-size: 0.92rem;
  }

  .story-quote {
    font-size: clamp(1.55rem, 2vw, 2.15rem);
  }

  .story-card,
  .matrix-card,
  .question-card,
  .rule-card,
  .triptych-card,
  .transition-card,
  .lane-card,
  .roadmap-card,
  .box-stat-card,
  .metric-card,
  .walkthrough-outcome {
    padding: 16px;
  }

  .walkthrough-step {
    padding: 14px;
    gap: 12px;
  }

  .poll-results,
  .join-card {
    padding: 18px;
  }

  .contrast-ledger-column {
    padding: 18px;
    min-height: 0;
  }

  .qr-frame {
    min-height: 150px;
  }
}

@media (max-height: 820px) and (min-width: 1121px) {
  .deck-shell {
    padding: 14px 18px 14px;
    gap: 10px;
  }

  .deck-toolbar {
    gap: 12px;
  }

  .slide {
    padding: 18px;
  }

  .slide.is-active {
    gap: 18px;
  }

  .slide-title {
    font-size: clamp(2.55rem, 4.2vw, 4.1rem);
  }

  .slide-title--cover {
    font-size: clamp(3rem, 5.2vw, 5rem);
  }

  .slide-lead {
    font-size: 1.16rem;
  }

  .slide-support,
  .statement-copy,
  .phase-card p,
  .artifact-copy p,
  .belief-card p,
  .action-card p,
  .document-lines p,
  .notes-list li {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .slide-ambient-art {
    width: min(30%, 360px);
    top: 30px;
  }

  .slide-ambient-art--panorama {
    width: min(28%, 320px);
  }

  .slide-ambient-art--portrait {
    width: min(16%, 180px);
  }

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

  .slide--contrast {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }

  .slide--loop {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .slide--contrast .slide-title {
    max-width: 9.8ch;
    font-size: clamp(2.8rem, 5vw, 4.55rem);
  }

  .slide--loop .slide-title {
    font-size: clamp(2.55rem, 4.5vw, 4.15rem);
    max-width: 10.2ch;
  }

  .loop-board-surface {
    width: min(100%, 600px);
    min-height: 442px;
  }

  .loop-upstream-note {
    top: 14px;
    left: 118px;
    right: 118px;
    padding: 9px 12px 11px;
  }

  .loop-upstream-copy {
    font-size: 0.72rem;
  }

  .loop-node {
    width: 182px;
    min-height: 112px;
    padding: 13px;
    gap: 6px;
  }

  .loop-node h3 {
    font-size: 1.12rem;
  }

  .loop-node p:last-child,
  .loop-repeat-copy,
  .loop-journal-text {
    font-size: 0.82rem;
    line-height: 1.32;
  }

  .loop-node--plan {
    top: 82px;
    left: 20px;
  }

  .loop-node--work {
    top: 76px;
    right: 18px;
  }

  .loop-node--review {
    right: 18px;
    bottom: 66px;
  }

  .loop-node--compound {
    left: 28px;
    bottom: 72px;
  }

  .loop-repeat-note {
    inset: 176px 158px 126px 158px;
    padding: 14px 12px;
  }

  .loop-journal-scrap {
    left: 132px;
    right: 132px;
    bottom: 20px;
    padding: 12px 14px;
  }

  .contrast-stack {
    width: min(100%, 540px);
    gap: 12px;
  }

  .contrast-figure {
    width: min(100%, 470px);
  }

  .contrast-ledger-column {
    gap: 8px;
    padding: 16px;
  }

  .contrast-ledger-column .statement-copy {
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .slide--poll .poll-shell {
    grid-template-columns: minmax(0, 1fr) 184px;
    gap: 12px;
  }

  .poll-results,
  .join-card {
    padding: 14px;
  }

  .poll-results {
    gap: 10px;
  }

  .poll-option {
    gap: 6px;
  }

  .poll-option-head {
    font-size: 0.88rem;
  }

  .poll-count,
  .join-footnote,
  .join-url {
    font-size: 0.82rem;
  }

  .qr-frame {
    min-height: 124px;
  }

  .phase-grid,
  .artifact-chain-grid,
  .action-grid,
  .belief-card-grid,
  .matrix-grid,
  .metrics-grid,
  .triptych-grid,
  .lanes-board,
  .roadmap-grid,
  .box-stats {
    gap: 10px;
  }

  .phase-card,
  .belief-card,
  .action-card,
  .story-card,
  .matrix-card,
  .question-card,
  .rule-card,
  .triptych-card,
  .transition-card,
  .lane-card,
  .roadmap-card,
  .box-stat-card,
  .metric-card,
  .walkthrough-outcome,
  .guide-card,
  .guide-stat,
  .guide-stage,
  .guide-panel {
    padding: 14px;
  }

  .story-list,
  .roadmap-list,
  .walkthrough-timeline,
  .question-stack,
  .transition-stack,
  .rule-stack,
  .story-stack,
  .walkthrough-stack,
  .box-stack {
    gap: 10px;
  }

  .story-list li,
  .roadmap-list li {
    line-height: 1.38;
  }

  .story-quote {
    font-size: clamp(1.42rem, 1.9vw, 1.95rem);
  }

  .walkthrough-step {
    padding: 12px;
  }

  .walkthrough-step-copy h3,
  .question-card-text,
  .transition-card h3,
  .lane-card h3,
  .roadmap-card h3,
  .metric-card h3 {
    font-size: 1.08rem;
  }

  .phase-card h3,
  .belief-card h3,
  .action-card h3,
  .guide-card h3,
  .guide-panel h3,
  .triptych-card h3,
  .artifact-stage-card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
  }

  .artifact-stage-card {
    padding: 14px;
    gap: 8px;
  }

  .prephase-callout {
    padding: 12px 13px;
  }

  .loop-aside {
    padding: 12px 14px;
  }

  .rule-card-value {
    font-size: clamp(2.3rem, 3.2vw, 3.4rem);
  }

  .metric-value,
  .box-stat-value {
    font-size: clamp(2rem, 3vw, 3rem);
  }

  .lane-card {
    min-height: 0;
  }
}

@media (max-height: 760px) and (min-width: 1121px) {
  .cover-copy,
  .matrix-copy,
  .loop-copy,
  .walkthrough-copy {
    gap: 10px;
  }

  .slide--cover .slide-title--cover {
    font-size: clamp(2.7rem, 4.6vw, 4.3rem);
  }

  .slide--cover .slide-lead {
    font-size: 1.02rem;
    line-height: 1.28;
  }

  .slide--cover .slide-support {
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .source-note {
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .pill-row {
    gap: 8px;
  }

  .pill {
    padding: 0.5rem 0.7rem;
    font-size: 0.62rem;
  }

  .join-widget {
    padding: 10px;
    gap: 8px;
  }

  .join-widget--cover {
    margin-top: 2px;
  }

  .join-widget-shell {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
  }

  .join-widget-frame {
    border-radius: 14px;
  }

  .join-widget-url {
    font-size: 0.82rem;
    line-height: 1.32;
  }

  .join-widget-footnote {
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .visual-panel--cover img {
    height: clamp(180px, 25vh, 250px);
  }

  .slide--walkthrough {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

  .walkthrough-copy .slide-title {
    font-size: clamp(2.05rem, 3.2vw, 2.95rem);
    max-width: 9.2ch;
  }

  .walkthrough-copy .slide-support {
    max-width: 28ch;
    font-size: 0.76rem;
    line-height: 1.24;
  }

  .walkthrough-rail {
    font-size: 0.62rem;
  }

  .walkthrough-lab {
    width: min(100%, 660px);
    gap: 6px;
  }

  .walkthrough-figure {
    border-radius: 20px;
    aspect-ratio: 2.25 / 0.36;
  }

  .walkthrough-figure-note {
    top: 10px;
    right: 10px;
    min-width: 112px;
    padding: 6px 8px;
  }

  .walkthrough-figure-label {
    font-size: 0.5rem;
  }

  .walkthrough-figure-stamp {
    font-size: 0.68rem;
  }

  .walkthrough-experiment-board {
    min-height: 292px;
  }

  .walkthrough-snake {
    inset: 12px 16px 14px 16px;
    width: calc(100% - 32px);
    height: calc(100% - 26px);
  }

  .walkthrough-snake-route {
    stroke-width: 3;
  }

  .walkthrough-node {
    padding: 8px 10px;
    gap: 4px;
  }

  .walkthrough-node-number {
    font-size: 0.62rem;
  }

  .walkthrough-node-badge {
    font-size: 0.48rem;
  }

  .walkthrough-node-copy {
    gap: 4px;
  }

  .walkthrough-node-copy h3 {
    font-size: 0.84rem;
  }

  .walkthrough-node-copy p {
    font-size: 0.66rem;
    line-height: 1.14;
  }

  .walkthrough-node-slot--1 {
    width: 43%;
  }

  .walkthrough-node-slot--2 {
    width: 39%;
  }

  .walkthrough-node-slot--3 {
    top: 43%;
    width: 37%;
  }

  .walkthrough-node-slot--4 {
    top: 46%;
    width: 39%;
  }

  .walkthrough-node-slot--5 {
    left: 29%;
    width: 38%;
  }

  .walkthrough-footnote {
    display: none;
  }

  .slide--loop .slide-title {
    font-size: clamp(2.05rem, 3.25vw, 2.9rem);
    max-width: 10ch;
  }

  .loop-board-surface {
    width: min(100%, 540px);
    min-height: 390px;
  }

  .loop-upstream-note {
    top: 12px;
    left: 92px;
    right: 92px;
    padding: 8px 10px;
  }

  .loop-node {
    width: 164px;
    min-height: 102px;
    padding: 11px;
  }

  .loop-node h3 {
    font-size: 1rem;
  }

  .loop-node p:last-child,
  .loop-repeat-copy,
  .loop-journal-text {
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .loop-node--plan {
    top: 74px;
    left: 16px;
  }

  .loop-node--work {
    top: 70px;
    right: 14px;
  }

  .loop-node--review {
    right: 14px;
    bottom: 58px;
  }

  .loop-node--compound {
    left: 22px;
    bottom: 62px;
  }

  .loop-repeat-note {
    inset: 156px 136px 108px 136px;
    padding: 12px 10px;
  }

  .loop-journal-scrap {
    left: 118px;
    right: 118px;
    bottom: 16px;
  }

  .slide--contrast .slide-title {
    font-size: clamp(2.3rem, 3.7vw, 3.2rem);
    max-width: 9.6ch;
  }

  .slide--contrast .slide-support {
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .contrast-stack {
    gap: 10px;
  }

  .contrast-figure {
    width: min(100%, 420px);
  }

  .contrast-ledger-column {
    padding: 14px;
  }

  .contrast-ledger-column .statement-copy {
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .slide--matrix {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  }

  .slide--matrix .slide-title {
    font-size: clamp(2.15rem, 3.4vw, 3.25rem);
    max-width: 9ch;
  }

  .slide--matrix .slide-support {
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .slide--matrix .matrix-grid {
    gap: 8px;
  }

  .slide--matrix .matrix-card {
    padding: 12px;
    gap: 6px;
  }

  .slide--matrix .story-card-label {
    margin-bottom: 6px;
    font-size: 0.64rem;
  }

  .slide--matrix .matrix-card h3 {
    font-size: 0.98rem;
  }

  .slide--matrix .matrix-card p {
    font-size: 0.82rem;
    line-height: 1.34;
  }
}

@media (max-width: 920px) {
  body.deck-page {
    overflow: auto;
  }

  .deck-shell {
    min-height: auto;
  }

  .deck-stage,
  .deck {
    height: auto;
  }

  .slide {
    height: auto;
    min-height: 72vh;
  }

  .slide-ambient-art {
    display: none;
  }

  .deck-toolbar,
  .guide-header,
  .guide-jumpbar,
  .deck-footer {
    grid-template-columns: 1fr;
    display: grid;
    justify-content: start;
  }

  .contrast-stack,
  .belief-card-grid,
  .action-grid,
  .phase-grid,
  .artifact-chain-grid,
  .matrix-grid,
  .metrics-grid,
  .triptych-grid,
  .lanes-board,
  .roadmap-grid,
  .box-stats,
  .guide-grid--four,
  .guide-loop-strip,
  .guide-stage-list,
  .guide-capability-grid,
  .poll-shell,
  .reveal-grid,
  .score-strip {
    grid-template-columns: 1fr;
  }

  .guide-shell {
    padding: 18px 16px 40px;
  }

  .guide-jumpbar {
    position: static;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 22px;
  }

  .guide-essay {
    gap: 38px;
    padding: 26px 18px 32px;
  }

  .guide-essay::after {
    inset: 10px;
  }

  .guide-header h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .guide-intro-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.9rem);
    max-width: 10ch;
  }

  .guide-story-header h3 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    max-width: none;
  }

  .guide-standfirst,
  .guide-story-prose p,
  .guide-exhibit-copy p,
  .guide-note-body,
  .guide-steps li,
  .guide-points,
  .guide-loop-step p:last-child,
  .guide-stage,
  .guide-checklist li {
    font-size: 1rem;
  }

  .guide-story-section + .guide-story-section {
    padding-top: 30px;
  }

  .guide-loop-step,
  .guide-capability,
  .guide-stage,
  .guide-margin-note {
    padding: 16px;
  }

  .guide-margin-note {
    border-left-width: 0;
    border-top: 2px solid rgba(19, 32, 51, 0.14);
    padding: 14px 0 0;
  }

  .guide-exhibit-copy h4 {
    max-width: none;
  }

  .phone-join-row,
  .join-widget-shell {
    grid-template-columns: 1fr;
  }

  .histogram-bars,
  .mini-histogram {
    gap: 8px;
  }

  .notebook-header-row {
    align-items: start;
    grid-template-columns: 1fr;
    display: grid;
  }

  .audience-question {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .notes-drawer {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .lane-card:nth-child(2) {
    transform: none;
  }
}

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