.slide-stage {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide-viewport {
  position: relative;
  width: 1920px;
  height: 1080px;
  flex-shrink: 0;
  transform-origin: center center;
}

.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide__content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 104px 118px 144px;
}

.slide__meta {
  position: absolute;
  top: 70px;
  right: 96px;
  z-index: 2;
}

.slide__eyebrow,
.label {
  display: block;
  color: var(--gold);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.slide__rule {
  width: 168px;
  height: 5px;
  margin-bottom: 42px;
  background: var(--gold);
}

.slide__sub {
  max-width: 900px;
  margin-top: 38px;
  color: var(--paper-muted);
  font-size: 42px;
  line-height: 1.28;
}

.heading-cover {
  max-width: 1120px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 176px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.heading-display {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 128px;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.heading-statement {
  max-width: 1240px;
  margin-top: 32px;
  color: var(--paper);
  font-size: 116px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.heading-slide {
  margin-top: 22px;
  color: var(--paper);
  font-size: 72px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.body-text {
  max-width: 820px;
  margin-top: 28px;
  color: var(--paper-muted);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.52;
}

.body-text--large {
  max-width: 1000px;
  font-size: 40px;
  line-height: 1.42;
}

.slide--cover .slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide--statement .slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide--section .slide__eyebrow {
  position: absolute;
  top: 84px;
  left: 118px;
  z-index: 2;
}

.slide--section .slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide__number {
  margin-bottom: 28px;
  color: var(--paper-faint);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.slide--two-column .slide__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.slide__bullets {
  margin-top: 34px;
  list-style: none;
}

.slide__bullets li {
  padding: 24px 0;
  border-top: 1px solid var(--divider);
  color: var(--paper-muted);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.38;
}

.slide__bullets li:last-child {
  border-bottom: 1px solid var(--divider);
}

.slide--image .slide__content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.image-placeholder {
  min-height: 620px;
  display: grid;
  place-items: center;
  border: 2px dashed var(--mist-border);
  border-radius: 0;
  background: rgba(37, 46, 101, 0.24);
  color: var(--paper-faint);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.deck-image-panel {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--mist-border);
  background: rgba(37, 46, 101, 0.24);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.deck-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
}

.deck-image-panel--tall {
  width: 520px;
  flex-shrink: 0;
}

.deck-image-panel--tall img {
  object-position: 56% center;
}

.deck-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 36px 28px;
  background: linear-gradient(to top, rgba(3, 8, 7, 0.78), transparent);
}

.deck-nav__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.deck-nav__btn {
  min-width: 48px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--mist-border);
  border-radius: 0;
  background: rgba(17, 19, 18, 0.72);
  color: var(--paper-muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-nav__btn:hover {
  border-color: var(--gold);
  color: var(--paper);
}

.deck-nav__btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.deck-nav__strip {
  max-width: 1120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.deck-nav__pip {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: rgba(152, 184, 182, 0.26);
  color: transparent;
  cursor: pointer;
}

.deck-nav__pip.is-active {
  background: var(--gold);
}

.deck-nav__counter {
  min-width: 72px;
  color: var(--paper-faint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

@media (max-width: 768px), (max-height: 480px) {
  .slide-stage {
    padding-bottom: 0;
  }

  .deck-nav {
    padding: 14px 18px 22px;
  }

  .deck-nav__strip {
    display: none;
  }

  .deck-nav__btn {
    height: 48px;
  }
}

/* ──────────────────────────────────────────────
   CARD PRIMITIVE
────────────────────────────────────────────── */
.card {
  background: var(--panel);
  border: 2px solid var(--mist-border);
}

/* ──────────────────────────────────────────────
   ADDITIONAL TYPOGRAPHY
────────────────────────────────────────────── */
.heading-deck {
  color: var(--paper);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  margin-top: 10px;
}

/* ──────────────────────────────────────────────
   COVER FOOTER
────────────────────────────────────────────── */
.cover-footer {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.cover-footer__sep {
  color: var(--paper-faint);
  font-weight: 300;
}

.cover-detail {
  color: var(--paper-faint);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ──────────────────────────────────────────────
   SLIDE LAYOUTS
────────────────────────────────────────────── */
.slide--col .slide__content {
  display: flex;
  flex-direction: column;
  padding: 56px 100px;
}

.slide--split .slide__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 64px 120px;
  align-items: start;
}

.slide--split-wide .slide__content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 28px;
  padding: 64px 120px;
  align-items: center;
}

.slide--iphone .slide__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding: 64px 120px;
  align-items: center;
}

.slide--table .slide__content {
  display: flex;
  flex-direction: column;
  padding: 48px 100px 64px;
}

.slide--grid .slide__content {
  display: flex;
  flex-direction: column;
  padding: 44px 100px 64px;
}

.slide--roadmap .slide__content {
  display: flex;
  flex-direction: column;
  padding: 52px 100px 72px;
}

.slide--screens .slide__content {
  display: flex;
  flex-direction: column;
  padding: 44px 80px 64px;
}

.slide--os .slide__content {
  display: flex;
  flex-direction: column;
  padding: 44px 100px 60px;
}

.slide--principles .slide__content {
  display: flex;
  flex-direction: column;
  padding: 44px 100px 64px;
}

.slide--concentric .slide__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  padding: 64px 120px;
  align-items: center;
}

.slide--founders .slide__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 64px 120px;
}

.slide--closing .slide__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding: 64px 120px;
  align-items: center;
}

.slide--map .slide__content {
  display: flex;
  flex-direction: column;
  padding: 48px 100px 60px;
}

.slide--appendix .slide__content {
  display: flex;
  flex-direction: column;
  padding: 52px 120px;
}

.slide--user-story .slide__content {
  display: flex;
  flex-direction: column;
  padding: 48px 100px 56px;
}

/* ──────────────────────────────────────────────
   PANEL ELEMENTS
────────────────────────────────────────────── */
.panel-title {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.panel-heading {
  color: var(--paper);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(236, 193, 28, 0.38);
}

/* ──────────────────────────────────────────────
   SLIDE TABLE
────────────────────────────────────────────── */
.slide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.slide-table th {
  padding: 11px 18px;
  text-align: left;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--mist-border);
  white-space: nowrap;
}

.slide-table td {
  padding: 13px 18px;
  color: var(--paper-muted);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.38;
  border-bottom: 1px solid rgba(152, 184, 182, 0.10);
  vertical-align: top;
}

.slide-table td:first-child {
  color: var(--paper);
  font-weight: 500;
  white-space: nowrap;
}

.slide-table tr:last-child td {
  border-bottom: none;
}

.slide-table tr.table-total td {
  border-top: 2px solid var(--mist-border);
  color: var(--paper);
  font-weight: 900;
  border-bottom: none;
  padding-top: 16px;
}

.table-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
  color: var(--paper-muted);
  font-size: 23px;
  font-weight: 300;
  line-height: 1.42;
}

.table-note strong {
  color: var(--warm);
  font-weight: 500;
}

/* ──────────────────────────────────────────────
   FLOW STEPS (alert flow)
────────────────────────────────────────────── */
.flow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}

.flow-step {
  flex: 1;
  padding: 14px 20px;
  background: var(--panel);
  border: 1px solid var(--mist-border);
}

.flow-step + .flow-step {
  border-left: none;
}

.flow-step__num {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.flow-step__label {
  color: var(--paper);
  font-size: 26px;
  font-weight: 900;
}

/* ──────────────────────────────────────────────
   GRID CARDS
────────────────────────────────────────────── */
.slide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
  flex: 1;
}

.slide-grid--2col { grid-template-columns: repeat(2, 1fr); }
.slide-grid--3col { grid-template-columns: repeat(3, 1fr); }

.grid-card {
  padding: 26px 28px;
  background: var(--panel);
  border: 2px solid var(--mist-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.grid-card--highlight {
  border-color: var(--gold);
  background: rgba(236, 193, 28, 0.04);
}

.grid-card__num {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.grid-card__title {
  color: var(--paper);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.18;
}

.grid-card__body {
  color: var(--paper-muted);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.44;
}

/* ──────────────────────────────────────────────
   ROADMAP
────────────────────────────────────────────── */
.roadmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(152, 184, 182, 0.16);
}

.roadmap-step {
  padding: 26px 12px 0;
  position: relative;
}

.roadmap-step__dot {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mist);
  border: 3px solid var(--bg);
  z-index: 2;
}

.roadmap-step--highlight .roadmap-step__dot {
  background: var(--gold);
  width: 24px;
  height: 24px;
  top: -12px;
}

.roadmap-step__timing {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1.36;
  margin-bottom: 12px;
}

.roadmap-step__phase {
  color: var(--paper);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}

.roadmap-step__outcome {
  color: var(--paper-muted);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.36;
}

.roadmap-step--highlight .roadmap-step__outcome {
  color: var(--paper);
}

/* ──────────────────────────────────────────────
   iPHONE MOCKUP
────────────────────────────────────────────── */
.iphone-mock {
  --phone-width: 340px;
  --phone-height: 700px;
  --phone-radius: 54px;
  --screen-radius: 42px;
  width: var(--phone-width);
  height: var(--phone-height);
  margin: 0;
  flex-shrink: 0;
}

.iphone-mock--mini {
  --phone-width: 178px;
  --phone-height: 366px;
  --phone-radius: 29px;
  --screen-radius: 22px;
  width: 100%;
  max-width: var(--phone-width);
  height: var(--phone-height);
  margin-inline: auto;
}

.iphone-mock__frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: calc(var(--phone-width) * 0.045);
  border-radius: var(--phone-radius);
  background:
    linear-gradient(145deg, rgba(247, 243, 234, 0.18), rgba(247, 243, 234, 0) 28%),
    linear-gradient(160deg, #0b0d0d 0%, #191d1f 48%, #050606 100%);
  border: 2px solid rgba(247, 243, 234, 0.16);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.iphone-mock__frame::after {
  content: "";
  position: absolute;
  inset: calc(var(--phone-width) * 0.018);
  border-radius: calc(var(--phone-radius) - 4px);
  border: 1px solid rgba(247, 243, 234, 0.12);
  pointer-events: none;
}

.iphone-mock__island {
  position: absolute;
  top: calc(var(--phone-height) * 0.035);
  left: 50%;
  z-index: 3;
  width: calc(var(--phone-width) * 0.31);
  height: calc(var(--phone-width) * 0.085);
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050606;
  box-shadow: inset 0 1px 0 rgba(247, 243, 234, 0.10);
}

.phone-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--screen-radius);
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 173, 179, 0.24), transparent 34%),
    linear-gradient(180deg, #f8f3ea 0%, #ece5d8 100%);
  color: #171918;
  padding: 76px 26px 28px;
  font-weight: 500;
}

.phone-screen--mini {
  padding: 48px 14px 14px;
}

.phone-screen__status {
  position: absolute;
  top: 20px;
  right: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(17, 19, 18, 0.66);
  font-size: 15px;
  font-weight: 900;
}

.app-kicker {
  color: rgba(17, 19, 18, 0.48);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-title {
  margin-top: 12px;
  color: #111312;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.phone-screen--mini .app-kicker {
  font-size: 8px;
}

.phone-screen--mini .app-title {
  font-size: 18px;
  margin-top: 7px;
}

.alert-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: #ecc11c;
  color: #111312;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  display: grid;
  gap: 5px;
}

.alert-card span {
  color: rgba(17, 19, 18, 0.62);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.alert-card strong {
  font-size: 24px;
}

.alert-card--watch {
  background: linear-gradient(135deg, #f5d772 0%, #ecc11c 100%);
}

.incident-card {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f5d772 0%, #ecc11c 100%);
  color: #111312;
}

.incident-card span {
  color: rgba(17, 19, 18, 0.58);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.incident-card strong {
  font-size: 27px;
  font-weight: 900;
  line-height: 1.05;
}

.dashboard-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.dashboard-status div {
  display: grid;
  align-content: center;
  min-height: 78px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(17, 19, 18, 0.08);
  color: rgba(17, 19, 18, 0.72);
  font-weight: 900;
}

.dashboard-status strong {
  color: #111312;
  font-size: 27px;
  line-height: 1;
}

.dashboard-status span {
  margin-top: 4px;
  color: rgba(17, 19, 18, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-status__requests {
  place-items: center;
  background: rgba(207, 72, 54, 0.16) !important;
  color: #a32920 !important;
  font-size: 17px;
  text-align: center;
}

.emergency-feed {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(37, 46, 101, 0.12);
  color: rgba(17, 19, 18, 0.78);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.safe-button {
  width: 100%;
  min-height: 68px;
  margin-top: 16px;
  border: 0;
  border-radius: 22px;
  background: #4f8f62;
  color: #f7f3ea;
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.app-stat-grid div,
.mini-card,
.mini-list span,
.action-row,
.partner-panel {
  min-height: 64px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(17, 19, 18, 0.08);
  color: rgba(17, 19, 18, 0.74);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.24;
}

.app-stat-grid div {
  display: grid;
  align-content: center;
  gap: 3px;
}

.app-stat-grid strong {
  color: #111312;
  font-size: 25px;
}

.app-stat-grid span {
  color: rgba(17, 19, 18, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-map {
  position: relative;
  height: 168px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 66% 36%, rgba(236, 193, 28, 0.20), transparent 22%),
    repeating-linear-gradient(35deg, rgba(17, 19, 18, 0.08), rgba(17, 19, 18, 0.08) 1px, transparent 1px, transparent 18px),
    linear-gradient(145deg, rgba(37, 46, 101, 0.16), rgba(0, 173, 179, 0.10));
  border: 1px solid rgba(17, 19, 18, 0.08);
}

.mini-map--small {
  height: 138px;
}

.mini-map--small .hazard-perimeter {
  top: 16px;
  right: 14px;
  width: 66px;
  height: 54px;
  border-width: 2px;
}

.mini-map--small .route-line {
  left: 18px;
  height: 3px;
}

.mini-map--small .route-line--primary {
  bottom: 34px;
  width: 112px;
}

.mini-map--small .map-pin {
  width: 10px;
  height: 10px;
  border-width: 3px;
}

.mini-map--small .map-pin--home {
  left: 24px;
  bottom: 31px;
}

.mini-map--small .map-pin--exit {
  right: 22px;
  bottom: 74px;
}

.hazard-perimeter {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 104px;
  height: 82px;
  border: 3px solid rgba(207, 72, 54, 0.70);
  border-radius: 52% 42% 48% 58%;
  background: rgba(207, 72, 54, 0.12);
}

.route-line {
  position: absolute;
  left: 28px;
  height: 4px;
  border-radius: 999px;
  background: #00adb3;
  transform-origin: left center;
}

.route-line--primary {
  bottom: 46px;
  width: 190px;
  transform: rotate(-18deg);
}

.route-line--secondary {
  bottom: 82px;
  width: 126px;
  background: rgba(0, 173, 179, 0.48);
  transform: rotate(16deg);
}

.map-pin {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #f7f3ea;
  border: 4px solid #00adb3;
}

.map-pin--home {
  left: 40px;
  bottom: 42px;
}

.map-pin--exit {
  right: 34px;
  bottom: 94px;
  border-color: #ecc11c;
}

.mini-card {
  display: grid;
  place-items: center start;
  margin-top: 16px;
  min-height: 54px;
  font-size: 13px;
}

.mini-card--gold {
  background: #ecc11c;
  color: #111312;
}

.mini-card--amber {
  background: #f5d772;
  color: #111312;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mini-list span {
  min-height: 38px;
  padding: 10px;
  border-radius: 13px;
  font-size: 10px;
}

.mini-list .mini-news {
  min-height: 88px;
  background: rgba(37, 46, 101, 0.12);
  color: rgba(17, 19, 18, 0.78);
  line-height: 1.55;
}

.mini-list--tasks span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #00adb3;
}

.household-fields {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.household-fields span {
  display: grid;
  gap: 3px;
  min-height: 48px;
  padding: 10px;
  border-radius: 13px;
  background: rgba(17, 19, 18, 0.08);
  color: rgba(17, 19, 18, 0.72);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.household-fields strong {
  color: rgba(17, 19, 18, 0.46);
  font-size: 8px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.check-ring,
.readiness-score {
  display: grid;
  place-items: center;
  margin: 18px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #f7f3ea 0 55%, transparent 56%),
    conic-gradient(#4f8f62 0 86%, rgba(17, 19, 18, 0.10) 86% 100%);
  color: #111312;
  font-weight: 900;
}

.check-ring {
  width: 84px;
  height: 84px;
  font-size: 20px;
}

.readiness-score {
  width: 132px;
  height: 132px;
  font-size: 34px;
}

.action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  min-height: 58px;
}

.action-row span {
  color: rgba(17, 19, 18, 0.66);
  font-size: 14px;
}

.action-row strong {
  color: #0f6f55;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-panel {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  min-height: 92px;
  background: #252e65;
  color: #f7f3ea;
}

.partner-panel span {
  color: rgba(247, 243, 234, 0.64);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.partner-panel strong {
  font-size: 21px;
  line-height: 1.15;
}

.phone-screen--watch {
  background: linear-gradient(180deg, #fbf1d0 0%, #ece5d8 100%);
}

.phone-screen--safe {
  background: linear-gradient(180deg, #eaf3e4 0%, #ece5d8 100%);
}

.phone-screen--map {
  background:
    radial-gradient(circle at 72% 26%, rgba(0, 173, 179, 0.28), transparent 28%),
    repeating-linear-gradient(35deg, rgba(17, 19, 18, 0.06), rgba(17, 19, 18, 0.06) 2px, transparent 2px, transparent 18px),
    linear-gradient(180deg, #f8f3ea 0%, #e7eee9 100%);
}

.phone-screen--household {
  background:
    radial-gradient(circle at 76% 10%, rgba(152, 184, 182, 0.28), transparent 26%),
    linear-gradient(180deg, #f8f3ea 0%, #eee7da 100%);
}

.phone-screen--offline {
  background: linear-gradient(180deg, #e8edf4 0%, #ece5d8 100%);
}

.phone-screen--civic,
.phone-screen--ready {
  background:
    radial-gradient(circle at 70% 18%, rgba(236, 193, 28, 0.30), transparent 26%),
    linear-gradient(180deg, #f8f3ea 0%, #e5e6dc 100%);
}

/* ──────────────────────────────────────────────
   MAP PLACEHOLDER
────────────────────────────────────────────── */
.map-placeholder {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 560px;
  border: 2px dashed var(--mist-border);
  background: rgba(37, 46, 101, 0.09);
  display: grid;
  place-items: center;
  color: var(--paper-faint);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 20px;
  overflow: hidden;
}

.map-region {
  position: absolute;
  color: var(--warm);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(17, 19, 18, 0.72);
  padding: 5px 12px;
  border: 1px solid rgba(245, 215, 114, 0.22);
}

.map-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 0;
}

.map-svg {
  width: 100%;
  flex: 1;
  display: block;
  min-height: 380px;
  margin-top: 20px;
}

/* ──────────────────────────────────────────────
   REGION GRID (slide 10)
────────────────────────────────────────────── */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
  flex: 1;
  margin-top: 20px;
}

.region-card {
  padding: 32px 36px;
  background: var(--panel);
  border: 2px solid var(--mist-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.region-card--highlight {
  border-color: rgba(0, 173, 179, 0.38);
}

.region-card__name {
  color: var(--warm);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.region-card__hazards {
  color: var(--paper-muted);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.44;
}

/* ──────────────────────────────────────────────
   HEADSHOT IMAGES
────────────────────────────────────────────── */
.founder-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  object-position: center 18%;
  display: block;
}

/* ──────────────────────────────────────────────
   SCREEN ROW
────────────────────────────────────────────── */
.screens-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 24px;
  flex: 1;
}

.screen-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-label {
  color: var(--paper-muted);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

/* ──────────────────────────────────────────────
   PRINCIPLES GRID
────────────────────────────────────────────── */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  background: var(--panel);
  border: 2px solid var(--mist-border);
}

.principle {
  padding: 26px 40px;
  border-bottom: 1px solid rgba(152, 184, 182, 0.11);
}

.principle:nth-child(odd) {
  border-right: 1px solid rgba(152, 184, 182, 0.11);
}

.principle:nth-last-child(-n+2) {
  border-bottom: none;
}

.principle__title {
  color: var(--warm);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.principle__body {
  color: var(--paper-muted);
  font-size: 23px;
  font-weight: 300;
  line-height: 1.4;
}

/* ──────────────────────────────────────────────
   OS GRID
────────────────────────────────────────────── */
.os-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.os-card {
  padding: 26px 30px;
  background: var(--panel);
  border: 2px solid var(--mist-border);
}

.os-card--full {
  grid-column: 1 / -1;
}

.os-card--highlight {
  border-color: var(--teal);
  background: rgba(0, 173, 179, 0.05);
}

.os-card__tool {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.os-card__desc {
  color: var(--paper-muted);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.38;
}

/* ──────────────────────────────────────────────
   FOUNDER CARDS
────────────────────────────────────────────── */
.founder-card {
  padding: 44px 52px;
  background: var(--panel);
  border: 2px solid var(--mist-border);
  height: 100%;
}

.founder-headshot {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: rgba(152, 184, 182, 0.12);
  border: 2px solid var(--mist-border);
  margin-bottom: 20px;
}

.founder-name {
  color: var(--paper);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
}

.founder-title {
  color: var(--gold);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--divider);
}

.founder-section-label {
  color: var(--mist);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}

.founder-bullets {
  list-style: none;
}

.founder-bullets li {
  padding: 9px 0;
  border-top: 1px solid var(--divider);
  color: var(--paper-muted);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.36;
}

/* ──────────────────────────────────────────────
   CONCENTRIC DIAGRAM
────────────────────────────────────────────── */
.concentric {
  position: relative;
  width: 460px;
  height: 460px;
  flex-shrink: 0;
}

.concentric-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.concentric-ring:nth-child(1) { inset: 0; border-color: rgba(152, 184, 182, 0.12); }
.concentric-ring:nth-child(2) { inset: 56px; border-color: rgba(152, 184, 182, 0.20); }
.concentric-ring:nth-child(3) { inset: 112px; border-color: rgba(152, 184, 182, 0.30); }
.concentric-ring:nth-child(4) { inset: 168px; border-color: rgba(152, 184, 182, 0.44); }
.concentric-ring:nth-child(5) {
  inset: 224px;
  background: rgba(236, 193, 28, 0.08);
  border-color: var(--gold);
  align-items: center;
  padding-top: 0;
}

.concentric-ring__label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--bg);
  padding: 2px 8px;
  white-space: nowrap;
}

.concentric-ring:nth-child(1) .concentric-ring__label { color: rgba(152, 184, 182, 0.44); }
.concentric-ring:nth-child(2) .concentric-ring__label { color: rgba(152, 184, 182, 0.56); }
.concentric-ring:nth-child(3) .concentric-ring__label { color: rgba(152, 184, 182, 0.70); }
.concentric-ring:nth-child(4) .concentric-ring__label { color: var(--mist); }
.concentric-ring:nth-child(5) .concentric-ring__label { color: var(--gold); background: transparent; }

/* ──────────────────────────────────────────────
   APPENDIX
────────────────────────────────────────────── */
.appendix-tag {
  color: var(--mist);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.appendix-bullets {
  list-style: none;
}

.appendix-bullets--2col {
  columns: 2;
  column-gap: 56px;
}

.appendix-bullets li {
  padding: 12px 0;
  border-top: 1px solid var(--divider);
  color: var(--paper-muted);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.4;
  break-inside: avoid;
}

/* ──────────────────────────────────────────────
   BULLETS COMPACT
────────────────────────────────────────────── */
.slide__bullets--sm li {
  padding: 14px 0;
  font-size: 26px;
}

.slide__bullets--tight li {
  padding: 10px 0;
  font-size: 23px;
}

/* ──────────────────────────────────────────────
   CLOSING SLIDE ELEMENTS
────────────────────────────────────────────── */
.closing-seek {
  list-style: none;
  margin-top: 20px;
}

.closing-seek li {
  padding: 9px 0;
  border-top: 1px solid var(--divider);
  color: var(--paper-muted);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.36;
}

.closing-seek li:last-child {
  border-bottom: 1px solid var(--divider);
}

.closing-milestone {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--divider);
  color: var(--warm);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.44;
}

.closing-cta {
  margin-top: 24px;
  padding: 22px 28px;
  background: rgba(236, 193, 28, 0.05);
  border: 1px solid rgba(236, 193, 28, 0.22);
  color: var(--paper);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
}

/* ──────────────────────────────────────────────
   USER STORY LAYOUT
────────────────────────────────────────────── */
.story-header {
  margin-bottom: 20px;
}

.story-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  flex: 1;
}
