/* Bold dark deck — tuned to Our Updates v2 Bold Dark PDF exports */
:root {
  --bg: #000000;
  --bg-elevated: #0d0d0d;
  --bg-card: #111111;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --text-muted: #bababa;
  --accent: #ff2d8c;
  --accent-glow: rgba(209, 16, 122, 0.45);
  --accent-soft: rgba(255, 45, 140, 0.14);
  --lime: #dfff00;
  --lime-muted: #c8eb00;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --radius-card: 14px;
  --pad-x: clamp(1.35rem, 5vw, 4.25rem);
  --max: 92rem;
  --slide-pad-top: clamp(4rem, 8svh, 6rem);
  --slide-pad-bottom: clamp(1.25rem, 3.5svh, 2.75rem);
  --snap: mandatory;
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y var(--snap);
}

html.deck-wheel-nav {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

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

  html.deck-wheel-nav {
    scroll-snap-type: none;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(
      circle at 88% 12%,
      var(--accent-glow) 0%,
      transparent 42%
    ),
    radial-gradient(circle at 50% 120%, rgba(255, 45, 140, 0.06) 0%, transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: var(--pad-x);
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--text);
  color: var(--bg);
  z-index: 100;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem var(--pad-x);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.45) 65%,
    transparent 100%
  );
  pointer-events: none;
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: clamp(0.8125rem, 1.05vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--text);
  text-decoration: none;
}

.logo__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.site-header__meta {
  font-family: var(--mono);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* Deck sections — exactly one viewport tall; content flexes inside .deck-frame */
.deck {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  height: 100svh;
  max-height: 100lvh;
  min-height: 0;
  padding: var(--slide-pad-top) var(--pad-x) var(--slide-pad-bottom);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
  container-type: inline-size;
  container-name: deck;
}

.deck-frame {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.4rem, 1.8vh, 1rem);
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
}

.deck-frame::-webkit-scrollbar {
  display: none;
}

.deck-frame--hero {
  justify-content: center;
}

.deck-frame > .deck-title {
  flex-shrink: 0;
}

.deck-frame .dash-mock,
.deck-frame .signals,
.deck-frame .two-col,
.deck-frame .flow-steps,
.deck-frame .honesty-grid,
.deck-frame .wedges,
.deck-frame .team-grid,
.deck-frame .turn-split {
  flex: 1 1 auto;
  min-height: 0;
}

.deck-frame .signals,
.deck-frame .two-col,
.deck-frame .team-grid,
.deck-frame .honesty-grid,
.deck-frame .wedges {
  margin-top: 0;
}

.deck-frame .dash-mock__body {
  min-height: 0;
}

.deck:last-of-type {
  border-bottom: none;
}

/* Tall stacks on small viewports: allow slides to grow past one screen */
@media (max-width: 899px) {
  .deck {
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow: visible;
  }

  .deck-frame {
    overflow: visible;
    flex: 1 1 auto;
  }

  .deck-frame .dash-mock,
  .deck-frame .signals,
  .deck-frame .two-col,
  .deck-frame .flow-steps,
  .deck-frame .honesty-grid,
  .deck-frame .wedges,
  .deck-frame .team-grid,
  .deck-frame .turn-split {
    max-height: none;
  }
}

.deck-head {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: clamp(0.65rem, 2vh, 1.5rem);
  flex-shrink: 0;
  perspective: 960px;
}

.deck-head__slide {
  margin: 0;
}

.deck-head__roll {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transform-origin: 50% 55%;
  backface-visibility: hidden;
  font-family: var(--mono);
  font-size: clamp(0.74rem, 1.2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.deck-head__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.kicker {
  font-family: var(--mono);
  font-size: clamp(0.68rem, 1.05vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.75rem;
}

.kicker--top {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.deck-title {
  font-size: clamp(2.85rem, 7.25vw, 6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(1rem, 2.5vh, 1.75rem);
  max-width: min(46rem, 96vw);
}

.deck-title--massive {
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  line-height: 0.95;
  max-width: none;
  text-transform: lowercase;
}

.deck-lede {
  font-size: clamp(1.28rem, 2.65vw, 1.72rem);
  font-weight: 500;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 42ch;
}

.deck-lede--narrow {
  max-width: 28ch;
}

.body-muted {
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 1.58;
  color: var(--text-muted);
  margin: 0;
  max-width: min(64ch, 92vw);
}

.body-muted .text-highlight {
  font-weight: 600;
  color: var(--accent);
}

.body-muted--tight {
  font-size: clamp(0.98rem, 1.45vw, 1.2rem);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.text-highlight {
  color: var(--accent);
}

.body-deck .text-highlight {
  font-weight: 700;
}

.body-deck {
  font-size: clamp(1.1rem, 1.75vw, 1.45rem);
  line-height: 1.58;
  color: var(--text);
  margin: 0;
  max-width: min(62ch, 92vw);
}

.body-deck--darkcard {
  color: rgba(255, 255, 255, 0.82);
}

.body-deck--on-accent {
  color: rgba(0, 0, 0, 0.78);
}

.text-lime {
  color: var(--lime);
  font-weight: 700;
}

.slide-footer__accent {
  color: var(--lime);
}

.deck-title--founder {
  max-width: min(92vw, 76rem);
  font-size: clamp(3rem, 8vw, 6.25rem);
  line-height: 1.03;
  text-wrap: pretty;
  hyphens: manual;
}

.deck-title--team {
  max-width: min(56rem, 96vw);
  line-height: 1.06;
  margin-bottom: clamp(0.55rem, 1.8vh, 1.25rem);
}

.deck-title__then {
  font-style: italic;
  font-weight: 500;
  color: var(--text-muted);
}

.deck-title--insight {
  max-width: min(46rem, 94vw);
  font-size: clamp(3rem, 7.8vw, 6.25rem);
}

/* Hero — cover slide */
.deck--hero > .deck-frame {
  flex: 1 1 auto;
  min-height: 0;
}

.deck--hero {
  padding-top: clamp(4.5rem, 12vh, 7.5rem);
  justify-content: space-between;
}

.deck--hero__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-wordmark {
  margin: 0 0 clamp(1rem, 3vh, 1.75rem);
  font-size: clamp(4rem, 17vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: lowercase;
  color: var(--text);
}

.hero-wordmark__period {
  display: inline-block;
  width: 0.23em;
  height: 0.23em;
  margin-left: 0.02em;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: baseline;
  /* Sit like a full stop after lowercase: slightly below the optical center of “s” */
  transform: translateY(0.12em);
}

.hero-tagline {
  margin: 0;
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.025em;
  max-width: min(42rem, 94vw);
  color: var(--text);
}

.hero-tagline .text-highlight {
  font-weight: 600;
}

.slide-footer--hero {
  color: rgba(255, 255, 255, 0.72);
}

.support-line {
  font-family: var(--mono);
  font-size: clamp(0.62rem, 1.05vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
  margin: clamp(1.25rem, 3vh, 2rem) 0;
}

/* Slide footer bar */
.slide-footer {
  margin-top: auto;
  padding-top: clamp(1rem, 3.5vh, 2.25rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: clamp(0.62rem, 1.05vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--border);
}

.slide-footer__left {
  flex-shrink: 0;
}

.slide-footer__right {
  text-align: right;
}

/* The Turn — iMessage-style */
.turn-split {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, auto);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  width: 100%;
  min-height: 0;
}

@media (min-width: 900px) {
  .turn-split {
    grid-template-columns: minmax(0, 1fr) minmax(min(340px, 38vw), 520px);
    grid-template-rows: minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: stretch;
  }

  .turn-split__copy {
    align-self: center;
  }
}

.deck--turn .turn-split {
  flex: 1 1 auto;
  align-content: stretch;
  min-height: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .deck--turn .deck-frame .turn-split {
    height: 100%;
    max-height: 100%;
  }
}

.turn-split__copy .support-line {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.turn-headline {
  max-width: none;
  line-height: 1.08;
}

.msg-thread {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.8vw, 1rem);
  padding: clamp(1.15rem, 2.5vw, 2rem);
  border-radius: var(--radius-card);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, transparent 50%);
  border: 1px solid var(--border);
  min-height: 0;
  max-height: none;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  align-self: stretch;
}

.msg-thread::-webkit-scrollbar {
  width: 6px;
}

.msg-thread::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

@media (min-width: 900px) {
  .deck--turn .msg-thread {
    height: 100%;
    max-height: 100%;
  }
}

@media (max-width: 899px) {
  .msg-thread {
    min-height: 0;
    max-height: none;
  }
}

.msg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 94%;
}

.msg--me {
  align-self: flex-end;
  align-items: flex-end;
  max-width: 88%;
}

.msg__meta {
  font-family: var(--mono);
  font-size: clamp(0.54rem, 0.95vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.35rem;
  padding: 0 0.35rem;
}

.msg--me .msg__meta {
  color: rgba(255, 255, 255, 0.42);
}

.msg__bubble {
  margin: 0;
  padding: clamp(0.72rem, 1.6vw, 1rem) clamp(0.95rem, 2vw, 1.35rem);
  border-radius: 22px;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.42;
}

.msg--them .msg__bubble {
  background: #1e1e1e;
  color: rgba(255, 255, 255, 0.92);
  border-bottom-left-radius: 6px;
}

.msg--me .msg__bubble {
  background: linear-gradient(165deg, var(--accent) 0%, #e41568 100%);
  color: #080808;
  font-weight: 550;
  border-bottom-right-radius: 6px;
  box-shadow: 0 6px 22px rgba(255, 45, 140, 0.28);
}

/* Two column problem */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.35rem, 3.5vw, 2.75rem);
  margin-top: clamp(1.25rem, 4vh, 2.75rem);
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 4vw, 3.5rem);
    min-height: min(320px, 36vh);
    max-height: min(380px, 44vh);
    align-items: stretch;
  }
}

.two-col__block {
  padding: clamp(1.65rem, 3vw, 3rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
}

.two-col__block--muted {
  background: #121212;
}

.two-col__block--accent {
  background: var(--accent);
  border-color: transparent;
}

.two-col__label--on-accent {
  color: rgba(0, 0, 0, 0.55);
}

.two-col__headline--on-accent {
  color: #000;
}

.two-col__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: auto;
  margin-bottom: 0.85rem;
}

.two-col__rule--on-accent {
  background: rgba(0, 0, 0, 0.22);
}

.cost-tag--on-accent {
  color: rgba(0, 0, 0, 0.55);
}

.two-col__label {
  font-family: var(--mono);
  font-size: clamp(0.62rem, 1vw, 0.75rem);
  letter-spacing: 0.2em;
  font-weight: 600;
  margin: 0 0 clamp(0.65rem, 1.5vw, 1rem);
  color: var(--accent);
}

.two-col__headline {
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 600;
  margin: 0 0 clamp(0.65rem, 1.5vw, 1rem);
  line-height: 1.2;
}

.two-col__block .body-muted,
.two-col__block .body-deck {
  flex: 1;
}

.cost-tag {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(0.54rem, 0.9vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.68);
}

/* Signals */
.signals {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-top: clamp(1rem, 3.5vh, 2.25rem);
}

@media (min-width: 900px) {
  .signals {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
    min-height: min(320px, 38vh);
    max-height: min(420px, 46vh);
    align-items: stretch;
  }
}

.signal-card {
  padding: clamp(1.65rem, 2.8vw, 3rem);
  background: #121212;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

@media (min-width: 900px) {
  .signal-card {
    min-height: min(300px, 38vh);
  }
}

.signal-card--spotlight {
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.signal-card--spotlight .signal-card__n {
  color: rgba(0, 0, 0, 0.45);
}

.signal-card--spotlight .signal-card__src {
  color: #000;
  font-weight: 600;
}

.signal-card--spotlight .signal-card__title {
  color: #000;
}

.signal-card--spotlight .body-muted--tight {
  color: rgba(0, 0, 0, 0.72);
}

.signal-card__stat--lime {
  color: var(--lime);
}

.signal-card--spotlight .signal-card__stat:not(.signal-card__stat--lime) {
  color: #000;
}

.signal-card--spotlight .signal-card__stat:not(.signal-card__stat--lime) span {
  color: rgba(0, 0, 0, 0.55);
}

.signal-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(0.85rem, 2vw, 1.35rem);
}

.signal-card__n {
  font-family: var(--mono);
  font-size: clamp(0.56rem, 0.95vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.68);
}

.signal-card__src {
  font-family: var(--mono);
  font-size: clamp(0.56rem, 0.95vw, 0.68rem);
  letter-spacing: 0.12em;
  color: var(--accent);
}

.signal-card__title {
  margin: 0 0 clamp(0.65rem, 1.5vw, 1rem);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 700;
}

.signal-card__stat {
  margin-top: auto;
  padding-top: clamp(1.15rem, 2.5vw, 1.85rem);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.signal-card__stat span {
  display: block;
  font-family: var(--mono);
  font-size: clamp(0.54rem, 0.9vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.35rem;
}

/* Flow */
.flow-steps {
  list-style: none;
  margin: clamp(1rem, 3.5vh, 2.25rem) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  grid-template-columns: 1fr;
}

@media (min-width: 1050px) {
  .flow-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.85rem, 1.8vw, 1.65rem);
    min-height: min(300px, 36vh);
    max-height: min(380px, 42vh);
    align-items: stretch;
  }
}

.flow-step {
  padding: clamp(1.35rem, 2.5vw, 2.25rem) clamp(1.15rem, 2vw, 1.85rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  border-top: 4px solid var(--accent);
  background: #121212;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.flow-step__label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: clamp(0.65rem, 1.5vw, 1rem);
}

.flow-step__n {
  font-family: var(--mono);
  font-size: clamp(0.6rem, 1vw, 0.72rem);
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
}

.flow-step__time {
  font-family: var(--mono);
  font-size: clamp(0.55rem, 0.95vw, 0.66rem);
  letter-spacing: 0.1em;
  color: var(--lime);
  font-weight: 500;
}

.flow-step__title {
  margin: 0 0 clamp(0.5rem, 1.2vw, 0.85rem);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 600;
}

.flow-step .body-muted {
  flex: 1;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  max-width: none;
}

.flow-tagline {
  margin: 2rem 0 0;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  color: var(--lime);
  text-align: center;
}

.flow-tagline--small {
  font-family: var(--mono);
  font-size: clamp(0.58rem, 0.95vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.68);
  text-align: left;
  margin-top: 1.5rem;
}

/* Dashboard mock */
.dash-mock {
  margin-top: clamp(1rem, 3.5vh, 2.25rem);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #141414;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  max-height: min(520px, 54vh);
}

.deck-frame .dash-mock {
  margin-top: 0;
  max-height: min(480px, 52vh);
}

@media (max-width: 899px) {
  .dash-mock {
    min-height: auto;
  }
}

.dash-mock__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(0.72rem, 1.5vw, 1.1rem) clamp(1rem, 2vw, 1.5rem);
  font-family: var(--mono);
  font-size: clamp(0.52rem, 0.95vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.68);
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
}

.dash-mock__dots i {
  display: block;
  width: clamp(9px, 1.2vw, 11px);
  height: clamp(9px, 1.2vw, 11px);
  border-radius: 50%;
  background: var(--accent);
}

.dash-mock__dots {
  display: inline-flex;
  gap: 6px;
  flex-shrink: 0;
}

.dash-mock__dots i:nth-child(2) {
  background: var(--lime);
}

.dash-mock__dots i:nth-child(3) {
  background: #22c55e;
}

.dash-mock__dots--traffic i:nth-child(1) {
  background: #ff5f57;
}

.dash-mock__dots--traffic i:nth-child(2) {
  background: #febc2e;
}

.dash-mock__dots--traffic i:nth-child(3) {
  background: #28c840;
}

.dash-mock__bar-center {
  flex: 1;
  text-align: center;
  min-width: 12rem;
}

.dash-mock__body {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

@media (min-width: 900px) {
  .dash-mock__body {
    grid-template-columns: 1.22fr 0.78fr;
    align-items: stretch;
  }
}

.dash-mock__summary {
  padding: clamp(1.65rem, 3vw, 2.75rem);
  border-bottom: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  margin-left: 0;
}

@media (min-width: 900px) {
  .dash-mock__summary {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
}

.dash-mock__summary-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.45rem);
  font-family: var(--mono);
  font-size: clamp(0.56rem, 1vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
}

.dash-mock__pill {
  padding: 0.42rem 0.65rem;
  background: var(--lime);
  color: #000;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  letter-spacing: 0.08em;
  font-size: clamp(0.52rem, 0.9vw, 0.6rem);
}

.dash-mock__lede {
  margin: 0 0 clamp(1rem, 2vw, 1.35rem);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
}

.dash-mock__lede .text-highlight {
  font-weight: 700;
}

.dash-mock__strike {
  color: var(--lime);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.dash-mock__summary .dash-mock__excerpt {
  margin: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  font-size: clamp(0.92rem, 1.45vw, 1.12rem);
  line-height: 1.55;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.dash-metrics {
  display: grid;
  grid-template-columns: 1fr;
}

.dash-metrics--sidebar {
  background: #0f0f0f;
}

.dash-metrics--sidebar .dash-metric:first-child {
  border-top: none;
}

@media (max-width: 899px) {
  .dash-metrics--sidebar .dash-metric:first-child {
    border-top: 1px solid var(--border);
  }
}

.dash-metric__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.dash-metric {
  padding: clamp(1.35rem, 2.5vw, 2rem) clamp(1.35rem, 2.5vw, 2rem);
  border-top: 1px solid var(--border);
}

.dash-metric__label {
  font-family: var(--mono);
  font-size: clamp(0.52rem, 0.9vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.68);
}

.dash-metric__src {
  font-family: var(--mono);
  font-size: clamp(0.52rem, 0.9vw, 0.62rem);
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.dash-metric__stat {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.dash-metric__stat--ship {
  color: var(--text) !important;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.dash-metric__stat--scribble {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--lime);
  text-underline-offset: 6px;
}

.dash-metric__sub {
  margin: 0.4rem 0 0;
  font-size: clamp(0.85rem, 1.35vw, 1.05rem);
  font-weight: 500;
  color: var(--lime);
}

/* Honesty */
.honesty-grid {
  margin-top: clamp(1rem, 3.5vh, 2.25rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

@media (min-width: 800px) {
  .honesty-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.25rem);
    min-height: min(300px, 38vh);
    max-height: min(380px, 42vh);
  }
}

.honesty-intro {
  max-width: min(68ch, 92vw);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
}

.honesty-col {
  padding: clamp(1.65rem, 3vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: #141414;
}

.honesty-col p {
  margin: 0;
  font-size: clamp(1.02rem, 1.65vw, 1.28rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.honesty-strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  color: rgba(255, 255, 255, 0.42);
}

.honesty-hl {
  background: var(--accent);
  color: #fff;
  padding: 0.06em 0.28em;
  border-radius: 3px;
  font-weight: 600;
}

.honesty-pill {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: clamp(0.54rem, 0.95vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.honesty-pill--warn {
  border-color: rgba(255, 45, 140, 0.85);
}

.honesty-col--truth {
  border-left: 3px solid var(--accent);
  background: #141414;
}

.honesty-col__label {
  display: block;
  font-family: var(--mono);
  font-size: clamp(0.56rem, 0.95vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.75rem;
}

.honesty-col--truth .honesty-col__label {
  color: var(--accent);
}

.honesty-arrow {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

@media (max-width: 799px) {
  .honesty-arrow {
    transform: rotate(90deg);
  }
}

.honesty-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
}

.honesty-badge--solid {
  margin-top: 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
}

/* Wedges */
.wedges {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  margin-top: clamp(1rem, 3.5vh, 2.25rem);
}

@media (min-width: 800px) {
  .wedges {
    grid-template-columns: 1fr 1fr;
    min-height: min(340px, 40vh);
    max-height: min(420px, 46vh);
    align-items: stretch;
  }
}

.wedge {
  padding: clamp(1.85rem, 3.25vw, 3.25rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
}

.wedge__title {
  margin: 0.75rem 0 0.35rem;
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  font-weight: 700;
}

.wedge__n {
  font-family: var(--mono);
  font-size: clamp(0.58rem, 1vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.wedge__audience {
  margin: 0 0 clamp(0.85rem, 2vw, 1.35rem);
  font-family: var(--mono);
  font-size: clamp(0.56rem, 1vw, 0.66rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.68);
}

.wedge .body-muted,
.wedge .body-deck {
  flex: 1;
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
  max-width: none;
}

.wedge__rule {
  height: 1px;
  margin-top: auto;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.12);
}

.wedge__rule--on-accent {
  background: rgba(0, 0, 0, 0.22);
}

.wedge--accent {
  background: var(--accent);
  border-color: transparent;
}

.wedge--muted {
  background: #1a1a1a;
}

.wedge__n--on-accent {
  color: rgba(0, 0, 0, 0.52);
}

.wedge__title--on-accent {
  color: #101010;
}

.wedge__audience--on-accent {
  color: rgba(0, 0, 0, 0.55);
}

.wedge__foot {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(0.52rem, 0.95vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.wedge__foot--on-accent {
  color: rgba(0, 0, 0, 0.52);
}

.wedge--muted .wedge__n {
  color: var(--accent);
}

.wedge--muted .wedge__foot {
  color: rgba(255, 255, 255, 0.62);
}

.wedge--muted .body-muted {
  color: rgba(255, 255, 255, 0.82);
}

/* Team — pitch PDF: horizontal cards, large square portrait (~40%), white frame, rule above tags */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.35rem, 3.4vw, 2.75rem);
  margin-top: clamp(0.35rem, 1.8vh, 1rem);
  min-height: 0;
}

@media (min-width: 800px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.person {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(0.85rem, 2.4vw, 1.65rem);
  padding: clamp(1rem, 2.5vw, 1.65rem) clamp(1rem, 2.8vw, 1.9rem) clamp(1rem, 2.5vw, 1.65rem)
    clamp(0.85rem, 2.2vw, 1.35rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: clamp(14px, 2.2cqmin, 20px);
  background: var(--bg-elevated);
}

.person__media {
  flex: 0 0 auto;
  align-self: center;
  width: clamp(176px, 41%, 312px);
  max-width: min(44%, 312px);
  aspect-ratio: 1;
  border-radius: 6px;
  border: 3px solid #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2),
    0 10px 32px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  overflow: hidden;
  padding: 0;
}

@media (min-width: 800px) {
  .person__media {
    width: clamp(188px, 40%, 304px);
    max-width: min(44%, 304px);
    max-height: min(46vh, 420px);
  }
}

.person__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
}

.person__name {
  margin: 0 0 clamp(0.55rem, 1.4vw, 0.85rem);
  font-size: clamp(1.65rem, 2.85vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.person__bio {
  margin: 0;
  flex: 1 1 auto;
  font-size: clamp(0.92rem, 1.5vw, 1.16rem);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.78);
}

.person__role {
  font-family: var(--mono);
  font-size: clamp(0.56rem, 1vw, 0.66rem);
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: clamp(0.4rem, 1.2vw, 0.65rem);
}

.person__tags {
  list-style: none;
  margin: 0;
  margin-top: auto;
  padding: clamp(0.85rem, 2cqh, 1.15rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

@media (max-width: 640px) {
  .person {
    flex-direction: column;
    align-items: stretch;
    padding: clamp(1rem, 4vw, 1.35rem);
  }

  .person__media {
    width: min(100%, 300px);
    max-width: 100%;
    align-self: center;
    max-height: none;
  }

  .person__body {
    padding-top: 0.2rem;
  }
}

.person__tags li {
  font-family: var(--mono);
  font-size: clamp(0.52rem, 0.9vw, 0.58rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
}

.person--cto {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.08);
}

.person--cto .person__tags {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.person--cto .person__tags li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.person--ceo {
  background: var(--accent);
  border-color: transparent;
}

.person__body {
  flex: 1;
  min-width: 0;
  padding: 0.12rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.person__role--ceo {
  color: #f7e8a8;
}

.person__name--on-accent {
  color: #0a0a0a;
}

.person__bio--on-accent {
  color: rgba(0, 0, 0, 0.82);
}

.person__tags--ceo li {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: #101010;
  font-weight: 650;
}

.person--ceo .person__tags {
  border-top-color: rgba(0, 0, 0, 0.2);
}

/* Closing */
.deck--closing {
  padding-bottom: clamp(1rem, 4vh, 3rem);
}

.deck--closing .closing-split {
  flex: 1;
  align-content: center;
  min-height: 0;
}

.closing-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.75rem);
  align-items: start;
  margin-top: clamp(0.25rem, 1.5vh, 1rem);
}

@media (min-width: 960px) {
  .closing-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(min(320px, 34vw), 0.95fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
  }
}

.closing-hero {
  margin: 0;
  font-size: clamp(2.85rem, 8.5vw, 5.35rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: lowercase;
}

.closing-panel {
  border-top: 1px solid var(--border);
}

@media (min-width: 960px) {
  .closing-panel {
    border-top: none;
    padding-top: 0.35rem;
  }
}

.closing-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.35rem, 1vw, 0.65rem);
  padding: clamp(1.15rem, 2.2vw, 2rem) 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 520px) {
  .closing-row {
    grid-template-columns: clamp(7.25rem, 11vw, 11rem) 1fr;
    gap: clamp(1.15rem, 2.5vw, 2rem);
    align-items: baseline;
  }
}

.closing-row:last-child {
  border-bottom: none;
}

.closing-row__label {
  font-family: var(--mono);
  font-size: clamp(0.58rem, 1vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
}

.closing-row__copy {
  margin: 0;
  font-size: clamp(1.05rem, 1.85vw, 1.38rem);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.9);
}

.closing-row__copy .text-highlight {
  font-weight: 700;
}

.site-footer {
  padding: 2rem var(--pad-x) 3rem;
  text-align: center;
  font-family: var(--mono);
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.site-footer p {
  margin: 0;
}

/*
 * Desktop: each slide is a size container — typography & modules scale with
 * available height/width (cqh / cqmin) so layouts shrink instead of clipping.
 */
@media (min-width: 900px) {
  .deck {
    container-type: size;
    padding: clamp(2.85rem, 6.5cqh, 6rem) var(--pad-x) clamp(0.65rem, 2.9cqh, 2.75rem);
  }

  .deck.deck--hero {
    padding-top: clamp(3.2rem, min(11vh, 13cqh), 7rem);
  }

  .deck.deck--closing {
    padding-bottom: clamp(0.65rem, 3cqh, 2.75rem);
  }

  .deck-frame {
    gap: clamp(0.3rem, min(1.1vh, 1.7cqh), 1rem);
  }

  .deck-head {
    margin-bottom: clamp(0.25rem, 2cqh, 1.35rem);
  }

  .deck-head__roll {
    font-size: clamp(0.62rem, min(1vw, 3.2cqh), 0.95rem);
  }

  .deck-title {
    font-size: clamp(1.85rem, min(7vw, 11.5cqmin), 6rem);
    margin-bottom: clamp(0.35rem, min(1.8vh, 2cqh), 1.5rem);
  }

  .deck-title--insight {
    font-size: clamp(1.95rem, min(8vw, 12cqmin), 6.25rem);
  }

  .deck-title--founder {
    font-size: clamp(1.55rem, min(6.2vw, 9.2cqmin), 5.25rem);
    max-width: min(96cqw, 82rem);
    line-height: 1.02;
    margin-bottom: clamp(0.25rem, min(1.2vh, 1.5cqh), 1.1rem);
    text-wrap: pretty;
  }

  .deck-title--team {
    font-size: clamp(1.75rem, min(6.5vw, 10.5cqmin), 5.25rem);
    max-width: min(96cqw, 56rem);
    line-height: 1.05;
    margin-bottom: clamp(0.2rem, min(1.2vh, 1.6cqh), 1rem);
  }

  #team .deck-frame {
    gap: clamp(0.25rem, min(1.2vw, 1.5cqh), 0.85rem);
  }

  #founder-story .deck-frame {
    gap: clamp(0.2rem, min(1cqh, 1vh), 0.65rem);
    justify-content: center;
  }

  #founder-story .deck-frame > .body-muted {
    font-size: clamp(0.76rem, min(1.25vw, 2.85cqh), 1.12rem);
    line-height: 1.48;
    margin-top: 0;
  }

  .deck-title--massive {
    font-size: clamp(1.85rem, min(9vw, 11cqmin), 5.5rem);
  }

  .body-deck {
    font-size: clamp(0.88rem, min(1.6vw, 3.8cqh), 1.42rem);
  }

  .body-muted {
    font-size: clamp(0.84rem, min(1.45vw, 3.5cqh), 1.32rem);
  }

  .body-muted--tight {
    font-size: clamp(0.78rem, min(1.28vw, 3.2cqh), 1.12rem);
  }

  .hero-wordmark {
    font-size: clamp(2.75rem, min(15vw, 18cqmin), 11rem);
    margin-bottom: clamp(0.35rem, min(1.8vh, 2cqh), 1.5rem);
  }

  .hero-tagline {
    font-size: clamp(0.95rem, min(2.5vw, 3.8cqh), 1.82rem);
  }

  .support-line {
    font-size: clamp(0.54rem, min(0.92vw, 2.8cqh), 0.78rem);
    margin: clamp(0.65rem, min(2vh, 2.5cqh), 1.35rem) 0;
  }

  .slide-footer {
    padding-top: clamp(0.55rem, min(2.4vh, 3cqh), 1.85rem);
    font-size: clamp(0.54rem, min(0.92vw, 2.6cqh), 0.76rem);
  }

  .msg-thread {
    min-height: 0;
    max-height: none;
    padding: clamp(0.85rem, min(2vw, 3cqmin), 1.85rem);
  }

  .msg__bubble {
    font-size: clamp(0.82rem, min(1.45vw, 3.6cqh), 1.28rem);
    padding: clamp(0.55rem, min(1.35vw, 2.8cqmin), 0.95rem)
      clamp(0.72rem, min(1.75vw, 3cqmin), 1.25rem);
  }

  .msg__meta {
    font-size: clamp(0.48rem, min(0.85vw, 2.6cqh), 0.68rem);
  }

  .two-col {
    gap: clamp(1rem, min(3vw, 3cqh), 3.25rem);
    min-height: min(22cqh, 260px);
    max-height: min(44cqh, 520px);
  }

  .two-col__block {
    padding: clamp(0.95rem, min(2.4vw, 4cqmin), 2.85rem);
  }

  .two-col__headline {
    font-size: clamp(1.05rem, min(2.2vw, 5cqh), 2.05rem);
  }

  .signals {
    gap: clamp(0.85rem, min(2.2vw, 2.8cqh), 2.1rem);
    min-height: min(22cqh, 260px);
    max-height: min(46cqh, 560px);
  }

  .signal-card {
    padding: clamp(0.95rem, min(2.4vw, 4cqmin), 2.85rem);
    min-height: min(20cqh, 220px);
  }

  .signal-card__title {
    font-size: clamp(1.1rem, min(2.35vw, 5.8cqh), 2.35rem);
  }

  .signal-card__stat {
    font-size: clamp(1rem, min(2.5vw, 6cqh), 2.35rem);
  }

  .flow-steps {
    gap: clamp(0.65rem, min(1.6vw, 2cqh), 1.55rem);
    min-height: min(22cqh, 240px);
    max-height: min(48cqh, 540px);
  }

  .flow-step {
    padding: clamp(0.95rem, min(2.1vw, 3.5cqmin), 2.15rem)
      clamp(0.85rem, min(1.75vw, 3cqmin), 1.75rem);
  }

  .flow-step__title {
    font-size: clamp(0.95rem, min(1.65vw, 4cqh), 1.72rem);
  }

  .flow-step .body-muted {
    font-size: clamp(0.82rem, min(1.2vw, 3.2cqh), 1.15rem);
  }

  .dash-mock {
    max-height: min(58cqh, 640px);
  }

  .deck-frame .dash-mock {
    max-height: min(56cqh, 620px);
  }

  .dash-mock__summary {
    padding: clamp(1rem, min(2.4vw, 4cqmin), 2.5rem);
  }

  .dash-mock__lede {
    font-size: clamp(0.88rem, min(1.75vw, 4cqh), 1.62rem);
  }

  .dash-mock__excerpt {
    font-size: clamp(0.82rem, min(1.35vw, 3.5cqh), 1.08rem);
  }

  .honesty-intro {
    font-size: clamp(0.88rem, min(1.45vw, 3.6cqh), 1.28rem);
  }

  .honesty-grid {
    gap: clamp(0.75rem, min(2vw, 2.5cqh), 2rem);
    min-height: min(22cqh, 240px);
    max-height: min(44cqh, 500px);
  }

  .honesty-col {
    padding: clamp(0.95rem, min(2.4vw, 4cqmin), 2.75rem);
  }

  .honesty-col p {
    font-size: clamp(0.88rem, min(1.45vw, 3.6cqh), 1.22rem);
  }

  .wedges {
    gap: clamp(1rem, min(2.5vw, 3cqh), 2.1rem);
    min-height: min(24cqh, 280px);
    max-height: min(46cqh, 520px);
  }

  .wedge {
    padding: clamp(1rem, min(2.6vw, 4.5cqmin), 3.2rem);
  }

  .wedge__title {
    font-size: clamp(1.25rem, min(2.85vw, 6.5cqh), 3rem);
  }

  .wedge .body-muted,
  .wedge .body-deck {
    font-size: clamp(0.92rem, min(1.45vw, 3.5cqh), 1.28rem);
  }

  .team-grid {
    gap: clamp(1rem, min(2.5vw, 3cqh), 2.35rem);
    margin-top: clamp(0.15rem, min(1cqh, 1.2vh), 0.55rem);
  }

  #team .person {
    min-height: min(44cqh, 400px);
    padding: clamp(0.65rem, min(2.2vw, 3.2cqmin), 1.45rem)
      clamp(0.75rem, min(2.6vw, 3.8cqmin), 1.75rem);
    gap: clamp(0.55rem, min(1.8vw, 2.4cqmin), 1.35rem);
  }

  #team .person__media {
    width: clamp(178px, min(41cqw, 42%), 308px);
    max-width: min(46cqw, 308px);
    max-height: min(42cqh, 400px);
  }

  #team .person__name {
    font-size: clamp(1.1rem, min(2.35vw, 5.2cqh), 2.45rem);
  }

  #team .person__bio {
    font-size: clamp(0.76rem, min(1.22vw, 2.95cqh), 1.1rem);
  }

  .closing-split {
    gap: clamp(1.25rem, min(3.5vw, 4cqh), 3.5rem);
    margin-top: clamp(0.1rem, 1.2cqh, 0.75rem);
  }

  .closing-hero {
    font-size: clamp(1.85rem, min(8vw, 11cqmin), 5.35rem);
  }

  .closing-row {
    padding: clamp(0.55rem, min(1.65vw, 2.6cqh), 1.85rem) 0;
  }

  .closing-row__copy {
    font-size: clamp(0.88rem, min(1.55vw, 3.5cqh), 1.38rem);
  }

  .closing-row__label {
    font-size: clamp(0.52rem, min(0.88vw, 2.6cqh), 0.74rem);
  }
}

/* ─── Deck motion: subtle entrances (html.deck-motion set when reduced-motion is off) ─── */

.msg-thread__typing {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.deck-motion .msg-thread__typing {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      margin-bottom 0.45s ease;
    margin-bottom: 0;
  }

  html.deck-motion .msg-thread.msg-thread--play .msg-thread__typing {
    max-height: 5rem;
    opacity: 1;
    margin-bottom: clamp(0.35rem, 1vw, 0.55rem);
  }

  html.deck-motion .msg-thread.msg-thread--play.msg-thread--dots-out .msg-thread__typing {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    pointer-events: none;
  }

  .msg-thread__typing-bubble {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: clamp(0.72rem, 1.6vw, 0.95rem) clamp(1rem, 2vw, 1.2rem);
    border-radius: 22px;
    background: #1e1e1e;
    border-bottom-left-radius: 6px;
  }

  .msg-thread__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.44);
    animation: deck-typing-dot 1.08s ease-in-out infinite;
  }

  .msg-thread__dot:nth-child(2) {
    animation-delay: 0.14s;
  }

  .msg-thread__dot:nth-child(3) {
    animation-delay: 0.28s;
  }

  @keyframes deck-typing-dot {
    0%,
    72%,
    100% {
      opacity: 0.35;
      transform: translateY(0);
    }
    36% {
      opacity: 1;
      transform: translateY(-3px);
    }
  }

  html.deck-motion .msg-thread.msg-thread--play .msg:not(.msg--in) {
    opacity: 0;
    transform: translateY(14px);
  }

  html.deck-motion .msg-thread.msg-thread--play .msg.msg--in {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes deck-head-roll {
    from {
      opacity: 0;
      transform: rotateX(-86deg) translateY(-0.55rem);
    }
    to {
      opacity: 1;
      transform: rotateX(0deg) translateY(0);
    }
  }

  html.deck-motion .deck-head__roll--in {
    animation: deck-head-roll 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  @keyframes deck-hero-rise {
    from {
      opacity: 0.72;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  html.deck-motion .deck--hero.deck--active .hero-wordmark.hero-rise--in {
    animation: deck-hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  html.deck-motion .deck--hero.deck--active .hero-tagline.hero-rise--in {
    animation: deck-hero-rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.1s;
  }

  @keyframes deck-content-rise {
    from {
      opacity: 0.62;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes deck-soft-scale {
    from {
      opacity: 0.58;
      transform: translateY(14px) scale(0.988);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  html.deck-motion .deck--active:not(.deck--hero):not(.deck--turn) .deck-frame > .deck-title {
    animation: deck-content-rise 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  html.deck-motion .deck--active:not(.deck--hero):not(.deck--turn) .deck-frame > .body-deck,
  html.deck-motion .deck--active:not(.deck--hero):not(.deck--turn) .deck-frame > .body-muted {
    animation: deck-content-rise 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.07s;
  }

  html.deck-motion .deck--turn.deck--active .turn-split__copy .deck-title {
    animation: deck-content-rise 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  html.deck-motion .deck--turn.deck--active .turn-split__copy .support-line {
    animation: deck-content-rise 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.12s;
  }

  html.deck-motion #problem.deck--active .two-col__block:nth-child(1) {
    animation: deck-soft-scale 0.74s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.12s;
  }

  html.deck-motion #problem.deck--active .two-col__block:nth-child(2) {
    animation: deck-soft-scale 0.74s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.22s;
  }

  html.deck-motion #product.deck--active .signal-card:nth-child(1) {
    animation: deck-soft-scale 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.1s;
  }

  html.deck-motion #product.deck--active .signal-card:nth-child(2) {
    animation: deck-soft-scale 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.2s;
  }

  html.deck-motion #product.deck--active .signal-card:nth-child(3) {
    animation: deck-soft-scale 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.3s;
  }

  html.deck-motion #flow.deck--active .flow-step:nth-child(1) {
    animation: deck-soft-scale 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.08s;
  }

  html.deck-motion #flow.deck--active .flow-step:nth-child(2) {
    animation: deck-soft-scale 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.16s;
  }

  html.deck-motion #flow.deck--active .flow-step:nth-child(3) {
    animation: deck-soft-scale 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.24s;
  }

  html.deck-motion #flow.deck--active .flow-step:nth-child(4) {
    animation: deck-soft-scale 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.32s;
  }

  html.deck-motion #dashboard.deck--active .dash-mock {
    animation: deck-soft-scale 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.12s;
  }

  html.deck-motion #honesty.deck--active .honesty-col:nth-child(1) {
    animation: deck-soft-scale 0.74s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.14s;
  }

  html.deck-motion #honesty.deck--active .honesty-arrow {
    animation: deck-content-rise 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.22s;
  }

  html.deck-motion #honesty.deck--active .honesty-col:nth-child(3) {
    animation: deck-soft-scale 0.74s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.28s;
  }

  html.deck-motion #gtm.deck--active .wedge:nth-child(1) {
    animation: deck-soft-scale 0.74s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.12s;
  }

  html.deck-motion #gtm.deck--active .wedge:nth-child(2) {
    animation: deck-soft-scale 0.74s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.22s;
  }

  html.deck-motion #team.deck--active .person:nth-child(1) {
    animation: deck-soft-scale 0.76s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.12s;
  }

  html.deck-motion #team.deck--active .person:nth-child(2) {
    animation: deck-soft-scale 0.76s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.22s;
  }

  html.deck-motion #closing.deck--active .closing-hero {
    animation: deck-content-rise 0.84s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  html.deck-motion #closing.deck--active .closing-panel {
    animation: deck-content-rise 0.84s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.1s;
  }

  @keyframes deck-footer-reveal {
    from {
      opacity: 0.55;
    }
    to {
      opacity: 1;
    }
  }

  html.deck-motion .deck--active .slide-footer {
    animation: deck-footer-reveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.18s;
  }
}
