@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #11172d;
  --navy: #0b1022;
  --blue: #1f5eff;
  --cream: #f7f3ea;
  --pink: #e95d91;
  --gold: #f8c95a;
  --green: #71bda6;
  --muted: #73798b;
  --line: rgba(17, 23, 45, 0.14);
  --mono: 'DM Mono', 'Courier New', monospace;
  --sans: 'Manrope', 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  padding: 0 3.5vw 28px;
  background:
    radial-gradient(circle at 6% 12%, rgba(31, 94, 255, 0.13), transparent 24rem),
    radial-gradient(circle at 94% 88%, rgba(233, 93, 145, 0.1), transparent 22rem),
    var(--navy);
}

.topbar {
  align-items: center;
  display: flex;
  gap: 24px;
  height: 82px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1370px;
}

.brand {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 12px;
  min-width: 250px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--pink);
  border-radius: 10px;
  color: var(--navy);
  display: flex;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: #8b92aa;
  font-size: 10px;
  margin-top: 2px;
}

.session-label {
  color: #a3aac0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.session-label b {
  color: #4f5874;
  font-weight: 400;
  padding: 0 7px;
}

.deck-menu {
  position: relative;
}

.deck-menu summary {
  align-items: center;
  border-radius: 8px;
  color: #a3aac0;
  cursor: pointer;
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  list-style: none;
  padding: 9px 10px;
  transition: background 180ms ease, color 180ms ease;
}

.deck-menu summary::-webkit-details-marker {
  display: none;
}

.deck-menu summary:hover,
.deck-menu summary:focus-visible {
  background: #171d35;
  color: #fff;
  outline: none;
}

.deck-menu summary:focus-visible {
  box-shadow: 0 0 0 2px var(--blue);
}

.deck-menu summary b {
  color: #4f5874;
  font-weight: 400;
  padding: 0 7px;
}

.deck-menu-label {
  display: none;
}

.deck-menu-chevron {
  font-size: 14px;
  margin-left: 9px;
  transition: transform 180ms ease;
}

.deck-menu[open] .deck-menu-chevron {
  transform: rotate(180deg);
}

.deck-menu-list {
  background: #171d35;
  border: 1px solid #2e3652;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 3px;
  padding: 7px;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  width: min(290px, calc(100vw - 26px));
  z-index: 20;
}

.deck-menu-list a {
  align-items: center;
  border-radius: 7px;
  color: #c5cadd;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 11px;
  padding: 11px 10px;
  text-decoration: none;
}

.deck-menu-list a:hover,
.deck-menu-list a:focus-visible {
  background: #222a47;
  color: #fff;
  outline: none;
}

.deck-menu-list a[aria-current="page"] {
  background: rgba(31, 94, 255, 0.16);
  color: #fff;
}

.deck-menu-list a span {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 9px;
}

.live-dot,
.pulse-dot {
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  margin-right: 8px;
  vertical-align: 1px;
  width: 7px;
}

.live-dot {
  box-shadow: 0 0 0 4px rgba(113, 189, 166, 0.12);
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 1px solid #2e3652;
  border-radius: 8px;
  color: #a3aac0;
  display: flex;
  height: 36px;
  justify-content: center;
  transition: border-color 180ms ease, color 180ms ease;
  width: 36px;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: #7c86a8;
  color: #fff;
  outline: none;
}

.icon-button svg {
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 17px;
}

.deck-shell {
  margin: 0 auto;
  max-width: 1370px;
}

.deck-heading {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin: 4px 1px 13px;
}

.eyebrow {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.5;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #aab8ff;
}

.spark {
  color: var(--gold);
  font-size: 15px;
  margin-left: 3px;
}

.deck-title {
  color: #7d849b;
  font-size: 11px;
  font-weight: 700;
  margin: 0;
}

.slide-viewport {
  overflow: hidden;
  position: relative;
}

.slide {
  animation: slide-in 420ms ease both;
  border-radius: 17px;
  display: none;
  min-height: min(720px, calc(100vh - 210px));
  overflow: hidden;
  padding: clamp(38px, 5vw, 76px);
  position: relative;
}

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

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

.slide--hero,
.slide--blue {
  background: var(--blue);
  color: #fff;
}

.slide--hero {
  background:
    radial-gradient(circle at 82% 37%, rgba(255, 255, 255, 0.15), transparent 16rem),
    linear-gradient(117deg, #1e55e4 0%, #2b68ff 100%);
}

.slide--cream {
  background: var(--cream);
}

.slide--dark {
  background:
    radial-gradient(circle at 78% 20%, rgba(31, 94, 255, 0.2), transparent 23rem),
    #171d35;
  color: #fff;
}

.slide--pink {
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 255, 255, 0.16), transparent 18rem),
    var(--pink);
  color: #fff;
}

.slide--green {
  background:
    radial-gradient(circle at 82% 85%, rgba(255, 255, 255, 0.16), transparent 20rem),
    var(--green);
  color: var(--navy);
}

.slide-content {
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

.slide-content--wide {
  max-width: 1120px;
}

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

h1,
h2 {
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(39px, 5.7vw, 78px);
  line-height: 0.98;
  margin-bottom: 27px;
}

h2 {
  font-size: clamp(36px, 5vw, 65px);
  line-height: 1;
  margin-bottom: 35px;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
}

.slide--cream h2 em {
  color: var(--blue);
}

.slide--green h2 em {
  color: var(--navy);
}

.slide-number {
  bottom: 29px;
  color: rgba(17, 23, 45, 0.3);
  font-family: var(--mono);
  font-size: 11px;
  position: absolute;
  right: 35px;
}

.slide-number--light {
  color: rgba(255, 255, 255, 0.45);
}

.hero-copy {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-intro {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.55;
  max-width: 455px;
}

.hero-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  gap: 22px;
  letter-spacing: 0.04em;
  margin-top: clamp(75px, 9vw, 130px);
  padding-top: 16px;
  text-transform: uppercase;
}

.hero-meta b {
  color: #fff;
  font-weight: 500;
}

.hero-art {
  height: 100%;
  position: absolute;
  right: 3%;
  top: 0;
  width: 46%;
}

.orbit {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  height: 360px;
  left: 22%;
  position: absolute;
  top: 17%;
  transform: rotate(-25deg) skewX(14deg);
  width: 360px;
}

.orbit--two {
  height: 260px;
  left: 35%;
  top: 27%;
  transform: rotate(40deg) skewX(-12deg);
  width: 260px;
}

.planet {
  align-items: center;
  background: var(--gold);
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(6, 25, 94, 0.25);
  color: var(--navy);
  display: flex;
  font-family: var(--mono);
  font-size: 29px;
  height: 157px;
  justify-content: center;
  left: 36%;
  position: absolute;
  top: 33%;
  width: 157px;
}

.code-card {
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 34, 0.77);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(6, 25, 94, 0.2);
  display: grid;
  gap: 9px;
  left: 3%;
  padding: 17px 18px;
  position: absolute;
  top: 68%;
  transform: rotate(-5deg);
  width: 300px;
}

.code-line {
  color: #e6e9f4;
  font-family: var(--mono);
  font-size: 10px;
}

.code-number {
  color: #5d688b;
  font-style: normal;
  margin-right: 13px;
}

.code-line b {
  color: var(--pink);
  font-weight: 400;
}

.code-line strong {
  color: var(--gold);
  font-weight: 400;
}

.code-comment {
  color: #7fcaaf;
}

.floating-tag {
  border-radius: 5px;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 10px;
  padding: 8px 12px;
  position: absolute;
  text-transform: uppercase;
}

.floating-tag--pink {
  background: var(--pink);
  right: 3%;
  top: 21%;
  transform: rotate(7deg);
}

.floating-tag--gold {
  background: var(--gold);
  bottom: 12%;
  right: 8%;
  transform: rotate(-6deg);
}

.objective-grid {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(3, 1fr);
}

.objective-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 11px;
  min-height: 210px;
  padding: 20px 21px;
  position: relative;
}

.objective-index {
  color: #a3a8b1;
  font-family: var(--mono);
  font-size: 10px;
}

.objective-icon {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-family: var(--mono);
  font-size: 21px;
  height: 44px;
  justify-content: center;
  margin: 22px 0 18px;
  width: 44px;
}

.objective-icon--blue {
  background: #dce6ff;
  color: var(--blue);
}

.objective-icon--pink {
  background: #f9d6e3;
  color: var(--pink);
}

.objective-icon--gold {
  background: #f9e5a9;
  color: #9a6811;
}

.objective-card h3 {
  font-size: 17px;
  letter-spacing: -0.03em;
  margin-bottom: 7px;
}

.objective-card p {
  color: #676d7b;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 210px;
}

.agenda-strip {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: #62697b;
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  gap: 17px;
  margin-top: 34px;
  padding: 14px 0;
  text-transform: uppercase;
}

.agenda-strip b {
  color: var(--blue);
  font-weight: 500;
}

.agenda-arrow {
  color: #c1c3c9;
  font-size: 15px;
}

.split-heading,
.heading-row,
.demo-heading,
.exit-heading {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.split-heading h2,
.heading-row h2,
.demo-heading h2,
.exit-heading h2 {
  margin-bottom: 0;
}

.prompt-bubble {
  background: var(--gold);
  border-radius: 3px 18px 18px 18px;
  color: var(--navy);
  margin: 26px 5% 0 20px;
  padding: 18px 22px;
  transform: rotate(2deg);
}

.bubble-label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.prompt-bubble p {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.3;
  margin: 0;
}

.app-orbit {
  height: 290px;
  margin: 24px auto 16px;
  max-width: 670px;
  position: relative;
}

.orbit-ring {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring--outer {
  height: 285px;
  width: 620px;
}

.orbit-ring--inner {
  height: 190px;
  transform: translate(-50%, -50%) rotate(12deg) skewX(-12deg);
  width: 395px;
}

.orbit-center {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: 14px;
  height: 116px;
  justify-content: center;
  left: 50%;
  line-height: 1.1;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 116px;
}

.orbit-center small {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 6px;
}

.app-chip {
  border-radius: 4px;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 10px;
  padding: 9px 12px;
  position: absolute;
  z-index: 1;
}

.app-chip span {
  font-size: 14px;
  margin-right: 4px;
}

.app-chip--pink {
  background: var(--pink);
  left: 3%;
  top: 35%;
  transform: rotate(-6deg);
}

.app-chip--gold {
  background: var(--gold);
  right: 7%;
  top: 12%;
  transform: rotate(4deg);
}

.app-chip--cream {
  background: var(--cream);
  bottom: 6%;
  left: 14%;
  transform: rotate(3deg);
}

.app-chip--green {
  background: var(--green);
  bottom: 25%;
  right: 2%;
  transform: rotate(-5deg);
}

.bottom-note {
  align-items: center;
  color: #656b79;
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  gap: 12px;
  margin: 29px 0 0;
}

.bottom-note--light {
  color: rgba(255, 255, 255, 0.7);
}

.note-line {
  background: currentColor;
  display: inline-block;
  height: 1px;
  width: 35px;
}

.definition-layout {
  align-items: stretch;
  display: grid;
  gap: 55px;
  grid-template-columns: 1.1fr 1fr;
}

.definition-box {
  align-items: center;
  background: #e7eefc;
  border-radius: 4px;
  color: var(--blue);
  display: flex;
  min-height: 250px;
  padding: 28px 37px;
  position: relative;
}

.definition-box p {
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: -0.04em;
  line-height: 1.3;
  margin: 0;
}

.definition-box strong {
  color: var(--navy);
}

.definition-mark {
  font-family: Georgia, serif;
  font-size: 65px;
  left: 19px;
  line-height: 1;
  position: absolute;
  top: 11px;
}

.definition-mark--end {
  bottom: -16px;
  left: auto;
  right: 19px;
  top: auto;
}

.compare-stack {
  display: grid;
  gap: 16px;
  grid-template-rows: 1fr 1fr;
}

.compare-card {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: flex;
  gap: 17px;
  padding: 20px;
}

.compare-card--accent {
  background: #1a2140;
  border-color: #1a2140;
  color: #fff;
}

.compare-icon {
  align-items: center;
  background: #e4e8ef;
  border-radius: 6px;
  color: var(--navy);
  display: flex;
  flex: 0 0 42px;
  font-family: var(--mono);
  font-size: 13px;
  height: 42px;
  justify-content: center;
}

.compare-card--accent .compare-icon {
  background: var(--pink);
}

.compare-card small {
  color: #8c929e;
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.compare-card strong {
  display: block;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.compare-card p {
  color: #8c929e;
  font-size: 10px;
  margin: 5px 0 0;
}

.compare-card--accent strong {
  color: #fff;
}

.side-quote {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: #a8b0c9;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.35;
  margin: 21px 0 0;
  padding-left: 22px;
}

.side-quote strong {
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
}

.everywhere-grid {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 37px;
}

.everywhere-card {
  background: var(--cream);
  border-radius: 6px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  min-height: 140px;
  padding: 19px;
}

.everywhere-card--pink {
  background: var(--pink);
}

.everywhere-card--gold {
  background: var(--gold);
}

.everywhere-card--blue {
  background: #8eaaff;
}

.everywhere-card--green {
  background: var(--green);
}

.everywhere-card--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.everywhere-icon {
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.55;
}

.everywhere-card strong {
  font-size: 16px;
  letter-spacing: -0.04em;
  margin-top: auto;
}

.everywhere-card small {
  font-family: var(--mono);
  font-size: 9px;
  margin-top: 5px;
  opacity: 0.7;
}

.myth-stamp,
.activity-badge {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.25;
  padding-top: 19px;
  text-align: center;
  transform: rotate(9deg);
}

.myth-stamp {
  height: 89px;
  margin: 8px 5% 0 20px;
  width: 89px;
}

.myth-stamp span {
  color: var(--gold);
  font-size: 12px;
}

.team-layout {
  align-items: center;
  display: grid;
  gap: 10%;
  grid-template-columns: 0.9fr 1.5fr;
  margin-top: 19px;
}

.house-analogy {
  text-align: center;
}

.house-roof {
  border-bottom: 57px solid var(--gold);
  border-left: 95px solid transparent;
  border-right: 95px solid transparent;
  height: 0;
  margin: 0 auto;
  width: 0;
}

.house-body {
  background: var(--cream);
  height: 113px;
  margin: 0 auto;
  position: relative;
  width: 173px;
}

.house-window {
  background: var(--blue);
  height: 29px;
  position: absolute;
  top: 25px;
  width: 29px;
}

.house-window--one {
  left: 22px;
}

.house-window--two {
  right: 22px;
}

.house-door {
  background: var(--pink);
  bottom: 0;
  height: 68px;
  left: 72px;
  position: absolute;
  width: 29px;
}

.house-analogy p {
  font-size: 12px;
  line-height: 1.35;
  margin: 18px 0 0;
}

.house-analogy strong {
  color: var(--gold);
  font-size: 18px;
}

.role-cloud {
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
}

.role-pill {
  border-radius: 4px;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 11px;
  padding: 14px 17px;
  transform: rotate(-2deg);
}

.role-pill:nth-child(even) {
  transform: rotate(3deg);
}

.role-pill--cream {
  background: var(--cream);
}

.role-pill--blue {
  background: #8eaaff;
}

.role-pill--gold {
  background: var(--gold);
}

.role-pill--dark {
  background: var(--navy);
  color: #fff;
}

.role-pill--green {
  background: var(--green);
}

.role-pill--outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.heading-row--tight {
  align-items: end;
}

.heading-row--tight h2 {
  margin-bottom: 0;
}

.journey-example {
  border-left: 1px solid var(--line);
  color: #717785;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  margin: 0 6% 5px 0;
  padding-left: 19px;
}

.journey-example span {
  color: var(--blue);
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}

.lifecycle {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 54px;
}

.lifecycle-step {
  background: #e5ebf9;
  border-radius: 4px;
  min-height: 168px;
  padding: 15px 13px;
  position: relative;
}

.lifecycle-step::after {
  color: var(--blue);
  content: '→';
  font-size: 18px;
  position: absolute;
  right: -9px;
  top: 71px;
  z-index: 2;
}

.lifecycle-step:last-child::after {
  display: none;
}

.lifecycle-step--accent {
  background: var(--pink);
  color: #fff;
}

.lifecycle-step span {
  color: #7d8db8;
  font-family: var(--mono);
  font-size: 10px;
}

.lifecycle-step strong {
  color: var(--blue);
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  margin-top: 62px;
}

.lifecycle-step--accent strong {
  color: #fff;
}

.lifecycle-step small {
  color: #66708a;
  display: block;
  font-size: 9px;
  line-height: 1.35;
  margin-top: 6px;
}

.lifecycle-step--accent small {
  color: rgba(255, 255, 255, 0.75);
}

.lifecycle-caption {
  align-items: center;
  color: #6e7481;
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  gap: 10px;
  margin-top: 30px;
}

.caption-dot {
  background: var(--pink);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.demo-label {
  background: var(--gold);
  border-radius: 3px;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 10px;
  margin: 11px 4% 0 0;
  padding: 11px 13px;
}

.pulse-dot {
  background: var(--pink);
  box-shadow: 0 0 0 3px rgba(233, 93, 145, 0.18);
  height: 6px;
  width: 6px;
}

.demo-stage {
  align-items: center;
  display: grid;
  gap: 9%;
  grid-template-columns: 1.5fr 0.7fr;
  margin-top: 44px;
}

.browser-window {
  background: #fbfbfd;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(4, 13, 50, 0.22);
  color: var(--navy);
  overflow: hidden;
  transform: rotate(-2deg);
}

.browser-top {
  align-items: center;
  background: #e4e8f1;
  display: flex;
  gap: 5px;
  height: 30px;
  padding: 0 12px;
}

.browser-top > span {
  background: #b9c0ce;
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.browser-top small {
  color: #8c95a9;
  font-family: var(--mono);
  font-size: 8px;
  margin: 0 auto;
}

.browser-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 238px;
}

.browser-code {
  background: #141a30;
  color: #8eaaff;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  padding: 31px 22px;
}

.browser-code i {
  color: var(--pink);
  font-style: normal;
}

.cursor {
  background: var(--gold);
  display: inline-block;
  height: 14px;
  margin-left: 3px;
  vertical-align: -2px;
  width: 1px;
}

.browser-result {
  align-items: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
}

.result-spark {
  color: var(--pink);
  font-size: 21px;
  margin-bottom: 7px;
}

.browser-result strong {
  color: var(--blue);
  font-size: 21px;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.browser-result button {
  background: var(--gold);
  border: 0;
  border-radius: 3px;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 9px;
  margin-top: 18px;
  padding: 8px 13px;
}

.demo-options {
  display: grid;
  gap: 11px;
}

.demo-options p {
  color: #b1bbdc;
  font-family: var(--mono);
  font-size: 10px;
  margin-bottom: 3px;
}

.demo-options span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  padding-bottom: 11px;
}

.demo-options b {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  margin-right: 12px;
}

.activity-badge {
  background: var(--blue);
  border: 0;
  height: 86px;
  margin: 5px 5% 0 0;
  padding-top: 17px;
  transform: rotate(6deg);
  width: 86px;
}

.activity-badge strong {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: -0.08em;
}

.activity-layout {
  display: grid;
  gap: 8%;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 25px;
}

.activity-steps {
  border-left: 1px solid var(--line);
}

.activity-step {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 21px;
  min-height: 75px;
  padding: 8px 20px;
}

.activity-step:first-child {
  border-top: 1px solid var(--line);
}

.activity-step > span {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 10px;
}

.activity-step p {
  font-size: 13px;
  line-height: 1.25;
  margin: 0;
}

.activity-step strong {
  color: var(--blue);
}

.role-cards {
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.role-cards span {
  background: #fffdf8;
  border-radius: 4px;
  box-shadow: 0 6px 15px rgba(17, 23, 45, 0.06);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 10px;
  padding: 13px 15px;
}

.role-cards span:nth-child(2) {
  background: var(--gold);
  transform: rotate(3deg);
}

.role-cards span:nth-child(3) {
  background: #d8e2ff;
  transform: rotate(-2deg);
}

.role-cards span:nth-child(4) {
  background: var(--green);
  transform: rotate(2deg);
}

.role-cards span:nth-child(5) {
  background: var(--pink);
  transform: rotate(-3deg);
}

.role-cards span:nth-child(6) {
  background: #1a2140;
  color: #fff;
  transform: rotate(2deg);
}

.discussion-prompt {
  background: #dce6ff;
  border-radius: 4px;
  color: var(--navy);
  font-size: 12px;
  margin-top: 30px;
  padding: 15px 19px;
}

.discussion-prompt span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  margin-right: 17px;
}

.discussion-prompt strong {
  margin-left: 6px;
}

.slide--green h2 {
  color: #fff;
}

.question-card {
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  gap: 20px;
  margin-top: 5px;
  padding: 20px 24px;
  transform: rotate(-2deg);
  width: fit-content;
}

.question-mark {
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 28px;
  height: 43px;
  justify-content: center;
  line-height: 42px;
  width: 43px;
}

.question-card p {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.16;
  margin: 0;
}

.question-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
}

.question-list > div {
  border-top: 1px solid rgba(17, 23, 45, 0.4);
  padding-top: 15px;
}

.question-list span {
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.55;
}

.question-list p {
  font-size: 13px;
  line-height: 1.45;
  margin: 17px 0 0;
}

.question-list strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.04em;
}

.board-note {
  border-left: 1px solid rgba(17, 23, 45, 0.4);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  margin: 52px 0 0;
  padding-left: 17px;
}

.board-note strong {
  font-family: var(--sans);
  font-size: 12px;
}

.board-pin {
  background: var(--pink);
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin-right: 7px;
  vertical-align: 1px;
  width: 8px;
}

.takeaway-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 34px;
}

.takeaway {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  gap: 28px;
  grid-template-columns: 35px 1fr 40px;
  min-height: 105px;
}

.takeaway > span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
}

.takeaway h3 {
  font-size: 20px;
  letter-spacing: -0.04em;
  margin-bottom: 5px;
}

.takeaway p {
  color: #aeb5cc;
  font-size: 11px;
  margin-bottom: 0;
}

.takeaway > b {
  color: var(--pink);
  font-size: 26px;
  font-weight: 400;
  text-align: right;
}

.next-session {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  margin-top: 30px;
  padding: 14px 17px;
}

.next-session span {
  color: var(--gold);
  margin-right: 15px;
}

.next-session strong {
  color: var(--pink);
}

.exit-star {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--navy);
  display: flex;
  font-size: 28px;
  height: 73px;
  justify-content: center;
  margin: 12px 6% 0 0;
  transform: rotate(11deg);
  width: 73px;
}

.ticket {
  background: var(--cream);
  box-shadow: 14px 14px 0 rgba(17, 23, 45, 0.12);
  color: var(--navy);
  margin: 38px auto 0;
  max-width: 910px;
  padding: 21px 29px 28px;
  transform: rotate(-1deg);
}

.ticket-top {
  border-bottom: 1px solid #c7c9cf;
  color: #8c919f;
  display: flex;
  font-family: var(--mono);
  font-size: 8px;
  justify-content: space-between;
  padding-bottom: 15px;
}

.ticket-top strong {
  color: var(--pink);
  font-size: 10px;
  font-weight: 500;
}

.ticket-questions {
  display: grid;
  gap: 18px;
  padding-top: 22px;
}

.ticket-questions > div {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 24px auto 1fr;
}

.ticket-questions b {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
}

.ticket-questions span {
  font-size: 11px;
  font-weight: 700;
}

.ticket-questions i {
  border-bottom: 1px solid #aeb2bb;
  height: 18px;
}

.stars {
  color: var(--pink);
  font-size: 17px;
  letter-spacing: 5px;
  white-space: nowrap;
}

.exit-footer {
  font-family: var(--mono);
  font-size: 10px;
  margin: 29px 0 0;
  text-align: center;
}

.exit-footer strong {
  color: var(--gold);
}

.deck-controls {
  align-items: center;
  display: flex;
  gap: 27px;
  margin: 20px 3px 0;
}

.control-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #a1a8bd;
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  gap: 8px;
  padding: 8px 0;
  transition: color 180ms ease, opacity 180ms ease;
}

.control-button:hover:not(:disabled),
.control-button:focus-visible:not(:disabled) {
  color: #fff;
  outline: none;
}

.control-button:disabled {
  cursor: default;
  opacity: 0.3;
}

.control-button svg {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 16px;
}

.progress-wrap {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 14px;
}

.progress-track {
  background: #2a324e;
  border-radius: 10px;
  height: 2px;
  overflow: hidden;
  width: 100%;
}

.progress-track span {
  background: var(--pink);
  display: block;
  height: 100%;
  transition: width 250ms ease;
  width: 8.333%;
}

.slide-counter {
  color: #6e7690;
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  gap: 6px;
  min-width: 49px;
}

.slide-counter strong {
  color: var(--pink);
  font-weight: 500;
}

.control-button--next {
  color: #fff;
}

.slide-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 15px;
}

.dot {
  background: #3a425d;
  border: 0;
  border-radius: 50%;
  height: 5px;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease;
  width: 5px;
}

.dot:hover,
.dot:focus-visible {
  background: #939bb5;
  outline: none;
}

.dot.is-active {
  background: var(--pink);
  transform: scale(1.5);
}

.keyboard-hint {
  color: #606981;
  font-family: var(--mono);
  font-size: 9px;
  margin: 12px 0 0;
  text-align: center;
}

.keyboard-hint span {
  border: 1px solid #3a425d;
  border-radius: 3px;
  color: #929ab2;
  padding: 2px 4px;
}

.keyboard-hint b {
  font-weight: 400;
  margin: 0 5px;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 900px) {
  .slide {
    min-height: 630px;
    padding: 45px;
  }

  .hero-art {
    opacity: 0.45;
    right: -14%;
    width: 55%;
  }

  .definition-layout {
    gap: 22px;
  }

  .lifecycle {
    gap: 5px;
  }

  .lifecycle-step {
    padding: 12px 8px;
  }

  .lifecycle-step::after {
    display: none;
  }

  .lifecycle-step strong {
    font-size: 9px;
  }
}

@media (max-width: 620px) {
  .app-shell {
    padding: 0 13px 22px;
  }

  .topbar {
    gap: 10px;
    height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 10px;
  }

  .brand small {
    font-size: 8px;
  }

  .session-label {
    display: none;
  }

  .deck-menu-session {
    display: none;
  }

  .deck-menu-label {
    display: inline;
  }

  .deck-menu-list {
    right: -50px;
  }

  .deck-heading {
    display: block;
    margin-bottom: 11px;
  }

  .deck-title {
    font-size: 10px;
  }

  .slide {
    border-radius: 12px;
    min-height: 650px;
    padding: 32px 24px 48px;
  }

  .slide-number {
    bottom: 18px;
    right: 22px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 40px;
    margin-bottom: 28px;
  }

  .hero-art {
    bottom: -5%;
    height: 45%;
    opacity: 0.37;
    right: -28%;
    top: auto;
    width: 90%;
  }

  .hero-meta {
    display: grid;
    gap: 7px;
    margin-top: 55px;
  }

  .objective-grid,
  .everywhere-grid,
  .question-list {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .objective-card {
    min-height: 0;
    padding: 14px;
  }

  .objective-icon {
    display: none;
  }

  .objective-card h3 {
    margin: 8px 0 3px 31px;
  }

  .objective-card p {
    margin-left: 31px;
  }

  .agenda-strip {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }

  .agenda-arrow {
    display: none;
  }

  .split-heading,
  .heading-row,
  .demo-heading,
  .exit-heading {
    display: block;
  }

  .prompt-bubble {
    margin: 21px 0 0;
    width: fit-content;
  }

  .app-orbit {
    height: 270px;
    margin-top: 12px;
    transform: scale(0.88);
  }

  .bottom-note {
    font-size: 9px;
  }

  .definition-layout,
  .team-layout,
  .demo-stage,
  .activity-layout {
    display: block;
  }

  .definition-box {
    min-height: 165px;
    padding: 22px 28px;
  }

  .definition-box p {
    font-size: 16px;
  }

  .definition-mark {
    font-size: 48px;
    left: 12px;
    top: 4px;
  }

  .definition-mark--end {
    bottom: -12px;
    left: auto;
    right: 12px;
    top: auto;
  }

  .compare-stack {
    gap: 8px;
    margin-top: 10px;
  }

  .compare-card {
    padding: 11px;
  }

  .compare-icon {
    flex-basis: 32px;
    height: 32px;
  }

  .compare-card strong {
    font-size: 11px;
  }

  .compare-card p {
    font-size: 9px;
    margin-top: 2px;
  }

  .side-quote,
  .journey-example {
    margin: 17px 0 0;
  }

  .everywhere-grid {
    margin-top: 20px;
  }

  .everywhere-card {
    min-height: 74px;
  }

  .everywhere-card strong {
    margin-top: 7px;
  }

  .everywhere-card small {
    display: none;
  }

  .myth-stamp,
  .activity-badge {
    display: none;
  }

  .team-layout {
    margin-top: 36px;
  }

  .house-analogy {
    display: none;
  }

  .role-cloud {
    gap: 9px;
    justify-content: start;
  }

  .role-pill {
    font-size: 9px;
    padding: 11px 12px;
  }

  .heading-row--tight {
    align-items: start;
  }

  .lifecycle {
    gap: 7px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
  }

  .lifecycle-step {
    min-height: 110px;
  }

  .lifecycle-step strong {
    margin-top: 27px;
  }

  .lifecycle-step small {
    font-size: 8px;
  }

  .lifecycle-caption {
    font-size: 9px;
    margin-top: 18px;
  }

  .demo-label {
    display: inline-block;
    margin: 17px 0 0;
  }

  .demo-stage {
    margin-top: 28px;
  }

  .browser-body {
    min-height: 190px;
  }

  .browser-code {
    font-size: 9px;
    padding: 24px 12px;
  }

  .browser-result strong {
    font-size: 16px;
  }

  .browser-result button {
    font-size: 8px;
    margin-top: 12px;
  }

  .demo-options {
    gap: 7px;
    margin-top: 20px;
  }

  .demo-options span {
    font-size: 11px;
    padding-bottom: 7px;
  }

  .activity-steps {
    margin-bottom: 22px;
  }

  .activity-step {
    min-height: 58px;
  }

  .role-cards {
    justify-content: start;
  }

  .role-cards span {
    font-size: 8px;
    padding: 10px;
  }

  .discussion-prompt {
    font-size: 10px;
    margin-top: 20px;
    padding: 12px;
  }

  .discussion-prompt span {
    display: block;
    margin: 0 0 5px;
  }

  .question-card {
    margin-top: 10px;
  }

  .question-card p {
    font-size: 15px;
  }

  .question-list {
    margin-top: 32px;
  }

  .question-list > div {
    align-items: center;
    display: flex;
    gap: 10px;
    padding-top: 10px;
  }

  .question-list p {
    margin: 0;
  }

  .board-note {
    margin-top: 25px;
  }

  .takeaway-list {
    margin-top: 20px;
  }

  .takeaway {
    gap: 11px;
    grid-template-columns: 24px 1fr 25px;
    min-height: 105px;
  }

  .takeaway h3 {
    font-size: 16px;
  }

  .takeaway p {
    font-size: 9px;
    line-height: 1.35;
  }

  .takeaway > b {
    font-size: 18px;
  }

  .next-session {
    font-size: 9px;
    line-height: 1.7;
    margin-top: 20px;
  }

  .next-session span {
    display: block;
  }

  .exit-star {
    display: none;
  }

  .ticket {
    margin-top: 24px;
    padding: 15px 14px 19px;
  }

  .ticket-top {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .ticket-questions {
    gap: 21px;
    padding-top: 17px;
  }

  .ticket-questions > div {
    align-items: start;
    gap: 8px;
    grid-template-columns: 19px 1fr;
  }

  .ticket-questions i {
    grid-column: 2;
  }

  .ticket-questions .stars {
    grid-column: 2;
  }

  .exit-footer {
    font-size: 9px;
  }

  .deck-controls {
    gap: 13px;
    margin-top: 15px;
  }

  .control-button span {
    display: none;
  }

  .control-button svg {
    height: 19px;
    width: 19px;
  }

  .progress-wrap {
    gap: 9px;
  }

  .keyboard-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
