:root {
  --bg: #050607;
  --surface: #0c0f12;
  --ink: #f7f8f2;
  --muted: #a6acb6;
  --dim: #6f7680;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff5d73;
  --accent-2: #7a5cff;
  --accent-rgb: 255, 93, 115;
  --danger: #ff6257;
  --max: 1480px;
  --reading: 760px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 10%, rgba(var(--accent-rgb), 0.09), transparent 32rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), black, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

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

.deck-shell {
  min-height: 100vh;
}

.deck-topbar {
  position: fixed;
  z-index: 80;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), 1420px);
  min-height: 58px;
  padding: 9px 10px 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.76);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.deck-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.deck-brand-mark {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 3px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.72);
}

.deck-brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.icon-button,
.pill-button {
  min-height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  transition: 180ms ease;
}

.icon-button:hover,
.pill-button:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  transform: translateY(-1px);
}

.pill-button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #070906;
}

.deck-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.72);
  transition: width 240ms ease;
}

.deck-rail {
  position: fixed;
  z-index: 70;
  top: 50%;
  right: 24px;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.rail-dot {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 180ms ease;
}

.rail-dot::before {
  position: absolute;
  top: 50%;
  right: 18px;
  min-width: max-content;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(8, 10, 12, 0.94);
  content: attr(data-label);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: 160ms ease;
}

.rail-dot:hover::before,
.rail-dot:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.rail-dot:hover,
.rail-dot.active {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.64);
  transform: scale(1.25);
}

.slide {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: 116px max(5.5vw, 48px) 72px;
  display: flex;
  align-items: center;
  overflow: clip;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.slide::after {
  position: absolute;
  z-index: -2;
  right: -12vw;
  bottom: -30vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 7vw rgba(var(--accent-rgb), 0.025),
    0 0 0 14vw rgba(var(--accent-rgb), 0.018);
}

.slide:nth-child(even) {
  background: #090b0d;
}

.slide-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.slide-no {
  position: absolute;
  top: 112px;
  right: max(5.5vw, 48px);
  color: rgba(255, 255, 255, 0.26);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.display {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(3.8rem, 7.15vw, 7.6rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.display em,
.section-title em {
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 400;
}

.section-title {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.lede {
  max-width: var(--reading);
  margin: 24px 0 0;
  color: #d8dce2;
  font-size: clamp(1.04rem, 1.35vw, 1.28rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.lede strong {
  color: var(--ink);
}

.micro {
  color: var(--dim);
  font-size: 0.84rem;
  line-height: 1.6;
}

.hero-layout,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.cover-meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.signal {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c9ced6;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal.live {
  border-color: rgba(var(--accent-rgb), 0.5);
  color: var(--accent);
}

.orbital {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbital::before,
.orbital::after {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  animation: spin 24s linear infinite;
}

.orbital::after {
  inset: 22%;
  border-style: dashed;
  border-color: rgba(var(--accent-rgb), 0.46);
  animation-direction: reverse;
  animation-duration: 16s;
}

.orbital-core {
  position: relative;
  z-index: 2;
  width: 44%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.7);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.26), transparent 68%);
  box-shadow:
    inset 0 0 60px rgba(var(--accent-rgb), 0.12),
    0 0 70px rgba(var(--accent-rgb), 0.16);
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 5.5rem);
  font-style: italic;
}

.orbit-node {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0a0c0e;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.orbit-node:nth-of-type(2) {
  top: 8%;
  left: 46%;
}

.orbit-node:nth-of-type(3) {
  top: 45%;
  right: 1%;
}

.orbit-node:nth-of-type(4) {
  bottom: 8%;
  left: 42%;
}

.orbit-node:nth-of-type(5) {
  top: 48%;
  left: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.metric-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  position: relative;
  min-height: 202px;
  padding: 26px 24px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top-color: rgba(var(--accent-rgb), 0.7);
  background:
    linear-gradient(155deg, rgba(var(--accent-rgb), 0.1), transparent 58%),
    #080a0c;
}

.metric-card::after {
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(var(--accent-rgb), 0.26);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 22px rgba(var(--accent-rgb), 0.025);
}

.metric-value {
  display: block;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.metric-label {
  display: block;
  margin-top: 18px;
  color: #d4d8df;
  font-size: 0.96rem;
  font-weight: 780;
  line-height: 1.4;
}

.metric-note {
  display: block;
  margin-top: 9px;
  max-width: 24ch;
  color: #858c96;
  font-size: 0.78rem;
  line-height: 1.48;
}

.card-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

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

.info-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  background:
    linear-gradient(155deg, rgba(var(--accent-rgb), 0.09), transparent 62%),
    rgba(255, 255, 255, 0.02);
}

.info-card::after {
  position: absolute;
  top: 27px;
  right: 24px;
  width: 38px;
  height: 1px;
  background: rgba(var(--accent-rgb), 0.55);
  content: "";
}

.info-card .card-index {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.info-card h3 {
  margin: 32px 0 12px;
  font-size: clamp(1.3rem, 1.75vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.info-card strong {
  color: var(--ink);
}

.portfolio-row {
  margin-top: 38px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.portfolio-item {
  position: relative;
  min-height: 116px;
  padding: 20px 18px;
  display: grid;
  grid-template-columns: 96px 1fr minmax(180px, 0.5fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: 180ms ease;
}

.portfolio-item:hover {
  padding-left: 28px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.08), transparent 70%);
}

.portfolio-item .code {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
}

.portfolio-item h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  letter-spacing: -0.05em;
}

.portfolio-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.portfolio-item .stage {
  justify-self: end;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.flow-step {
  position: relative;
  min-height: 198px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-right: 0;
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.055), transparent 52%);
}

.flow-step:last-child {
  border-right: 1px solid var(--line);
}

.flow-step::after {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -9px;
  width: 17px;
  height: 17px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  background: #080a0c;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

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

.flow-step .flow-no {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.52);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.flow-step h3 {
  margin: 32px 0 9px;
  font-size: 1.14rem;
  letter-spacing: -0.03em;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.52;
  text-wrap: pretty;
}

.chart {
  margin-top: 44px;
  padding: 30px 28px 24px;
  border: 1px solid var(--line);
  background: #080a0c;
}

.chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.chart-head h3 {
  margin: 0;
  font-size: 1.12rem;
}

.chart-head span {
  color: var(--dim);
  font-size: 0.7rem;
  text-align: right;
}

.bar-chart {
  height: 270px;
  margin-top: 30px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.bar {
  position: relative;
  min-width: 34px;
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--accent), rgba(var(--accent-rgb), 0.16));
  transform-origin: bottom;
  transition: height 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bar::before {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  content: attr(data-value);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  transform: translateX(-50%);
}

.bar::after {
  position: absolute;
  top: calc(100% + 11px);
  left: 50%;
  content: attr(data-label);
  color: var(--dim);
  font-size: 0.64rem;
  white-space: nowrap;
  transform: translateX(-50%);
}

.comparison {
  margin-top: 34px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.comparison-row {
  min-width: 760px;
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) repeat(3, minmax(160px, 1fr));
  border-bottom: 1px solid var(--line);
}

.comparison-row > div {
  min-height: 68px;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.comparison-row:not(.head) > div:nth-child(2) {
  background: rgba(var(--accent-rgb), 0.07);
  color: #e5e8ed;
}

.comparison-row > div:first-child {
  color: var(--ink);
  font-weight: 820;
}

.comparison-row > div:last-child {
  border-right: 0;
}

.comparison-row.head > div {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.valuation-lens {
  margin-top: 16px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 150px minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.11), rgba(var(--accent-rgb), 0.025));
}

.valuation-lens span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.valuation-lens strong {
  font-size: 1rem;
  line-height: 1.35;
}

.valuation-lens p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.product-shot {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0c0e;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.48);
}

.product-shot.phone {
  width: min(320px, 82vw);
  aspect-ratio: 0.53;
  padding: 8px;
  border-radius: 34px;
}

.product-shot.phone::before {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 50%;
  width: 92px;
  height: 19px;
  border-radius: 999px;
  background: #050607;
  content: "";
  transform: translateX(-50%);
}

.product-shot.phone img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  object-position: top;
}

.product-shot.desktop {
  width: min(690px, 100%);
  aspect-ratio: 4 / 3;
  padding: 8px;
  border-radius: 22px;
  transform: rotate(1.4deg);
}

.product-shot.desktop img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.shot-stack {
  position: relative;
  min-height: 560px;
}

.shot-stack .product-shot {
  position: absolute;
}

.shot-stack .product-shot:nth-child(1) {
  top: 2%;
  left: 0;
  width: 74%;
  z-index: 2;
}

.shot-stack .product-shot:nth-child(2) {
  right: 0;
  bottom: 2%;
  width: 66%;
  z-index: 3;
  transform: rotate(-2.5deg);
}

.photo-collage {
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 1fr 0.8fr;
  gap: 8px;
}

.photo-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}

.photo-collage img:first-child {
  grid-row: 1 / 3;
}

.scenario {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: stretch;
}

.scenario-output {
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.42), transparent 34%),
    var(--accent);
  color: #070906;
}

.scenario-output span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scenario-output strong {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.07em;
}

.scenario-output p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
}

.scenario-lines {
  display: grid;
  border-top: 1px solid var(--line);
}

.scenario-line {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.scenario-line span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.scenario-line strong {
  color: var(--accent);
  font-size: 1.08rem;
}

.timeline {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  min-height: 238px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item::before {
  position: absolute;
  top: -5px;
  left: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.8);
  content: "";
}

.timeline-item .when {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.timeline-item h3 {
  margin: 46px 0 12px;
  font-size: 1.24rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.quote {
  max-width: 1080px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.9vw, 6.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.quote span {
  color: var(--accent);
}

.closing-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.source-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.source-list a,
.source-list .source-item {
  min-height: 98px;
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.source-list a:nth-child(odd),
.source-list .source-item:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.source-list a:nth-child(even),
.source-list .source-item:nth-child(even) {
  padding-left: 28px;
}

.source-list a:hover {
  color: var(--accent);
}

.source-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.print-note {
  margin-top: 18px;
  color: #858c96;
  font-size: 0.8rem;
  line-height: 1.45;
}

.deck-footer-label {
  position: absolute;
  right: max(5.5vw, 48px);
  bottom: 28px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Five products, five visual systems. Shared structure keeps the decks usable;
   the selectors below change how each product communicates. */

.deck-mode {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

/* SelfAware — an instrument panel for a long-horizon AI company. */
body[data-deck="selfaware"] .deck-topbar {
  border-radius: 8px;
  background: rgba(7, 7, 11, 0.84);
  box-shadow: inset 3px 0 var(--accent), inset -3px 0 var(--accent-2);
}

body[data-deck="selfaware"] .slide::before {
  position: absolute;
  z-index: -1;
  top: 12%;
  left: 4%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 18px, rgba(var(--accent-rgb), 0.055) 19px 20px);
  content: "";
}

body[data-deck="selfaware"] .metric-card,
body[data-deck="selfaware"] .info-card,
body[data-deck="selfaware"] .chart {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

body[data-deck="selfaware"] .info-card {
  border-top-width: 1px;
  box-shadow: inset 4px 0 rgba(var(--accent-rgb), 0.7);
}

body[data-deck="selfaware"] .flow {
  gap: 8px;
}

body[data-deck="selfaware"] .flow-step {
  border-right: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

body[data-deck="selfaware"] .flow-step::after {
  display: none;
}

/* Nyumba — warm, local and map-native. Gold remains the product identity. */
body[data-deck="nyumba"] {
  --bg: #080704;
  --surface: #151006;
  --line: rgba(240, 185, 79, 0.2);
}

body[data-deck="nyumba"]::before {
  background-image: radial-gradient(rgba(240, 185, 79, 0.16) 1.2px, transparent 1.2px);
  background-size: 27px 27px;
}

body[data-deck="nyumba"] .deck-topbar {
  border-color: rgba(240, 185, 79, 0.28);
  border-radius: 18px;
  background: rgba(13, 10, 5, 0.88);
  box-shadow: 0 16px 60px rgba(38, 23, 3, 0.4);
}

body[data-deck="nyumba"] .deck-brand-mark {
  border: 0;
  border-radius: 50% 50% 50% 7px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.12);
  transform: rotate(-45deg);
}

body[data-deck="nyumba"] .slide:nth-child(even) {
  background: #100d07;
}

body[data-deck="nyumba"] .slide::after {
  right: -8vw;
  bottom: -18vw;
  width: 46vw;
  height: 46vw;
  border-color: rgba(240, 185, 79, 0.18);
  border-radius: 46% 54% 62% 38%;
  box-shadow: 0 0 0 5vw rgba(240, 185, 79, 0.025), 0 0 0 10vw rgba(230, 111, 57, 0.018);
  transform: rotate(18deg);
}

body[data-deck="nyumba"] .display,
body[data-deck="nyumba"] .section-title {
  letter-spacing: -0.055em;
}

body[data-deck="nyumba"] .signal,
body[data-deck="nyumba"] .metric-card,
body[data-deck="nyumba"] .info-card,
body[data-deck="nyumba"] .chart,
body[data-deck="nyumba"] .scenario-output,
body[data-deck="nyumba"] .product-shot.desktop {
  border-radius: 20px 20px 5px 20px;
}

body[data-deck="nyumba"] .metric-card {
  border: 1px solid rgba(240, 185, 79, 0.25);
  background: linear-gradient(145deg, rgba(240, 185, 79, 0.13), rgba(230, 111, 57, 0.025) 62%), #100d07;
}

body[data-deck="nyumba"] .metric-card::after {
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
}

body[data-deck="nyumba"] .info-card {
  border-top: 1px solid rgba(240, 185, 79, 0.3);
  background: linear-gradient(145deg, rgba(240, 185, 79, 0.09), transparent 68%), rgba(255, 248, 223, 0.018);
}

body[data-deck="nyumba"] .flow {
  gap: 12px;
}

body[data-deck="nyumba"] .flow-step {
  border: 1px solid rgba(240, 185, 79, 0.22);
  border-radius: 18px 18px 5px 18px;
  background: rgba(240, 185, 79, 0.045);
}

body[data-deck="nyumba"] .flow-step::after {
  right: -10px;
  border-color: var(--accent);
  background: #0d0a05;
}

body[data-deck="nyumba"] .comparison,
body[data-deck="nyumba"] .valuation-lens {
  overflow: hidden;
  border: 1px solid rgba(240, 185, 79, 0.22);
  border-radius: 15px;
}

/* Stok — a crisp ledger: square, numerical and operational. */
body[data-deck="stok"] {
  --bg: #07070a;
  --surface: #0e0d15;
  --line: rgba(245, 205, 73, 0.18);
}

body[data-deck="stok"]::before {
  background:
    linear-gradient(rgba(245, 205, 73, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 72, 216, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

body[data-deck="stok"] .deck-topbar {
  border-radius: 3px;
  background: rgba(8, 8, 12, 0.9);
  box-shadow: 8px 8px 0 rgba(85, 72, 216, 0.14);
}

body[data-deck="stok"] .deck-brand,
body[data-deck="stok"] .eyebrow,
body[data-deck="stok"] .metric-label,
body[data-deck="stok"] .metric-note,
body[data-deck="stok"] .scenario-line,
body[data-deck="stok"] .timeline-item .when {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

body[data-deck="stok"] .deck-brand-mark {
  border: 0;
  border-radius: 1px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 2px, transparent 2px 4px);
  box-shadow: none;
}

body[data-deck="stok"] .slide::before {
  position: absolute;
  z-index: -1;
  right: 7%;
  top: 18%;
  width: 130px;
  height: 32px;
  background: repeating-linear-gradient(90deg, rgba(245, 205, 73, 0.26) 0 2px, transparent 2px 5px);
  content: "";
  opacity: 0.45;
}

body[data-deck="stok"] .slide::after {
  width: 42vw;
  height: 42vw;
  border-radius: 0;
  border-style: dashed;
  transform: rotate(8deg);
}

body[data-deck="stok"] .metric-card,
body[data-deck="stok"] .info-card,
body[data-deck="stok"] .chart,
body[data-deck="stok"] .scenario-output,
body[data-deck="stok"] .product-shot {
  border-radius: 2px;
}

body[data-deck="stok"] .metric-card {
  border: 1px dashed rgba(245, 205, 73, 0.34);
  border-left: 6px solid var(--accent);
  background: linear-gradient(90deg, rgba(85, 72, 216, 0.11), transparent 55%), #0b0a10;
}

body[data-deck="stok"] .metric-card::after {
  width: 48px;
  height: 88px;
  border: 0;
  border-radius: 0;
  background: repeating-linear-gradient(90deg, rgba(245, 205, 73, 0.24) 0 2px, transparent 2px 5px);
  box-shadow: none;
}

body[data-deck="stok"] .metric-value,
body[data-deck="stok"] .scenario-output strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-style: normal;
  font-weight: 760;
  letter-spacing: -0.08em;
}

body[data-deck="stok"] .info-card {
  border: 1px dashed rgba(245, 205, 73, 0.2);
  border-top: 5px solid var(--accent-2);
  background: rgba(255, 255, 255, 0.016);
}

body[data-deck="stok"] .info-card::after {
  width: 70px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 2px, transparent 2px 5px);
}

body[data-deck="stok"] .flow {
  gap: 0;
  border: 1px dashed rgba(245, 205, 73, 0.26);
}

body[data-deck="stok"] .flow-step {
  border: 0;
  border-right: 1px dashed rgba(245, 205, 73, 0.25);
  background: linear-gradient(180deg, rgba(85, 72, 216, 0.1), transparent);
}

body[data-deck="stok"] .flow-step:last-child {
  border-right: 0;
}

body[data-deck="stok"] .flow-step::after {
  display: none;
}

body[data-deck="stok"] .flow-no {
  border-radius: 2px;
}

body[data-deck="stok"] .scenario-output {
  background: linear-gradient(145deg, var(--accent), #ffe891);
  box-shadow: 10px 10px 0 rgba(85, 72, 216, 0.28);
}

/* ZidiSales — a conversational revenue console in motion. */
body[data-deck="zidisales"] {
  --bg: #030806;
  --surface: #07130d;
  --line: rgba(85, 229, 152, 0.18);
}

body[data-deck="zidisales"]::before {
  background-image: radial-gradient(rgba(85, 229, 152, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
}

body[data-deck="zidisales"] .deck-topbar {
  border-color: rgba(85, 229, 152, 0.25);
  border-radius: 22px 22px 22px 7px;
  background: rgba(4, 13, 8, 0.88);
  box-shadow: 0 18px 70px rgba(12, 65, 37, 0.24);
}

body[data-deck="zidisales"] .deck-brand-mark {
  border: 0;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.12), 0 0 24px rgba(var(--accent-rgb), 0.7);
}

body[data-deck="zidisales"] .slide::before {
  position: absolute;
  z-index: -1;
  top: 20%;
  right: 8%;
  width: 180px;
  height: 260px;
  border-left: 1px solid rgba(85, 229, 152, 0.18);
  border-bottom: 1px solid rgba(85, 229, 152, 0.18);
  border-radius: 0 0 0 40px;
  content: "";
}

body[data-deck="zidisales"] .slide::after {
  right: -8vw;
  bottom: -12vw;
  width: 38vw;
  height: 38vw;
  border-radius: 48% 52% 10% 90%;
  transform: rotate(24deg);
}

body[data-deck="zidisales"] .signal,
body[data-deck="zidisales"] .metric-card,
body[data-deck="zidisales"] .info-card,
body[data-deck="zidisales"] .chart,
body[data-deck="zidisales"] .scenario-output {
  border-radius: 22px 22px 22px 7px;
}

body[data-deck="zidisales"] .metric-card {
  border-color: rgba(85, 229, 152, 0.24);
  background: linear-gradient(145deg, rgba(85, 229, 152, 0.14), transparent 62%), #061009;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

body[data-deck="zidisales"] .info-card {
  border: 1px solid rgba(85, 229, 152, 0.2);
  background: rgba(85, 229, 152, 0.045);
}

body[data-deck="zidisales"] .info-card:nth-child(even) {
  border-radius: 22px 22px 7px 22px;
  background: rgba(32, 84, 63, 0.14);
}

body[data-deck="zidisales"] .info-card::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.75);
}

body[data-deck="zidisales"] .flow {
  gap: 16px;
}

body[data-deck="zidisales"] .flow-step {
  min-height: 188px;
  border: 1px solid rgba(85, 229, 152, 0.23);
  border-radius: 20px 20px 20px 6px;
  background: linear-gradient(150deg, rgba(85, 229, 152, 0.1), transparent);
}

body[data-deck="zidisales"] .flow-step:nth-child(even) {
  border-radius: 20px 20px 6px 20px;
  transform: translateY(18px);
}

body[data-deck="zidisales"] .flow-step::after {
  top: auto;
  right: -13px;
  bottom: 26px;
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.1);
}

body[data-deck="zidisales"] .scenario-output {
  background: linear-gradient(145deg, var(--accent), #b5ffd5);
}

/* Unlocked — cinematic Nairobi editorial, led by image and atmosphere. */
body[data-deck="unlocked"] {
  --bg: #080a05;
  --surface: #111408;
  --line: rgba(204, 255, 39, 0.17);
}

body[data-deck="unlocked"]::before {
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(204, 255, 39, 0.025) 48% 52%, transparent 52%),
    radial-gradient(circle at 70% 30%, rgba(255, 77, 98, 0.06), transparent 34%);
}

body[data-deck="unlocked"] .deck-topbar {
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(8, 10, 5, 0.74);
  backdrop-filter: blur(22px);
}

body[data-deck="unlocked"] .deck-brand-mark {
  width: 18px;
  height: 9px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--accent) 0 55%, var(--accent-2) 55%);
  box-shadow: none;
  transform: skewX(-18deg);
}

body[data-deck="unlocked"] .slide:nth-child(even) {
  background: #101307;
}

body[data-deck="unlocked"] .slide::after {
  right: -5vw;
  bottom: -20vw;
  width: 50vw;
  height: 65vw;
  border: 0;
  border-radius: 0;
  background: linear-gradient(145deg, rgba(204, 255, 39, 0.06), transparent 46%, rgba(255, 77, 98, 0.055));
  box-shadow: none;
  transform: skewX(-11deg);
}

body[data-deck="unlocked"] .display,
body[data-deck="unlocked"] .section-title,
body[data-deck="unlocked"] .metric-value,
body[data-deck="unlocked"] .scenario-output strong {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

body[data-deck="unlocked"] .display em,
body[data-deck="unlocked"] .section-title em {
  color: var(--accent-2);
}

body[data-deck="unlocked"] .eyebrow {
  color: var(--accent);
  letter-spacing: 0.32em;
}

body[data-deck="unlocked"] .metric-grid {
  gap: 2px;
}

body[data-deck="unlocked"] .metric-card {
  min-height: 224px;
  border: 0;
  border-bottom: 4px solid var(--accent);
  background: linear-gradient(160deg, rgba(204, 255, 39, 0.08), transparent 65%), #111408;
}

body[data-deck="unlocked"] .metric-card:nth-child(even) {
  border-color: var(--accent-2);
  transform: translateY(16px);
}

body[data-deck="unlocked"] .metric-card::after {
  border: 0;
  border-radius: 0;
  background: linear-gradient(145deg, rgba(255, 77, 98, 0.16), transparent);
  transform: rotate(18deg);
}

body[data-deck="unlocked"] .info-card {
  min-height: 245px;
  border: 0;
  border-left: 4px solid var(--accent);
  background: linear-gradient(140deg, rgba(204, 255, 39, 0.07), rgba(255, 77, 98, 0.035));
}

body[data-deck="unlocked"] .info-card:nth-child(even) {
  border-color: var(--accent-2);
}

body[data-deck="unlocked"] .info-card::after {
  width: 70px;
  background: var(--accent-2);
}

body[data-deck="unlocked"] .flow {
  gap: 22px;
}

body[data-deck="unlocked"] .flow-step {
  border: 0;
  border-bottom: 1px solid rgba(204, 255, 39, 0.3);
  background: transparent;
}

body[data-deck="unlocked"] .flow-step::after {
  display: none;
}

body[data-deck="unlocked"] .flow-step .flow-no {
  width: auto;
  height: auto;
  place-items: start;
  border: 0;
  color: var(--accent-2);
  font-size: 2rem;
}

body[data-deck="unlocked"] .photo-collage {
  gap: 13px;
  transform: rotate(-1.2deg);
}

body[data-deck="unlocked"] .photo-collage img {
  filter: saturate(1.02) contrast(1.08);
  box-shadow: 12px 12px 0 rgba(204, 255, 39, 0.06);
}

body[data-deck="unlocked"] .scenario-output {
  background: linear-gradient(145deg, var(--accent), #efffb8 64%, var(--accent-2));
}

@media (max-width: 1100px) {
  .metric-grid,
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .flow-step:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .flow-step:nth-child(3)::after {
    display: none;
  }

  .flow-step:nth-child(n + 4) {
    border-top: 0;
  }

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

  .timeline-item:nth-child(2) {
    border-right: 0;
  }

  .timeline-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .deck-topbar {
    top: 10px;
  }

  .deck-actions .download-label,
  .deck-actions .hub-label {
    display: none;
  }

  .deck-mode {
    display: none;
  }

  .deck-rail {
    display: none;
  }

  .slide {
    min-height: auto;
    padding: 108px 22px 68px;
  }

  .slide-no {
    top: 94px;
    right: 22px;
  }

  .display {
    font-size: clamp(3rem, 14.5vw, 4.8rem);
    line-height: 0.89;
  }

  .section-title {
    font-size: clamp(2.35rem, 10.8vw, 3.8rem);
    line-height: 0.98;
  }

  .hero-layout,
  .split,
  .scenario {
    grid-template-columns: 1fr;
  }

  .orbital {
    width: min(100%, 520px);
    margin: 30px auto 0;
  }

  .metric-grid,
  .card-grid,
  .card-grid.two,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

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

  .portfolio-item {
    grid-template-columns: 54px 1fr;
  }

  .portfolio-item .stage {
    grid-column: 2;
    justify-self: start;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: 164px;
  }

  .flow-step h3 {
    margin-top: 24px;
  }

  .flow-step,
  .flow-step:nth-child(3),
  .flow-step:last-child {
    border: 1px solid var(--line);
    border-bottom: 0;
  }

  .flow-step:last-child {
    border-bottom: 1px solid var(--line);
  }

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

  .bar-chart {
    height: 220px;
    gap: 6px;
  }

  .bar::after {
    font-size: 0.54rem;
    transform: translateX(-50%) rotate(-30deg);
    transform-origin: top;
  }

  .shot-stack {
    min-height: 420px;
  }

  .photo-collage {
    min-height: 490px;
  }

  .scenario-output {
    min-height: 260px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .timeline-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .timeline-item {
    min-height: 205px;
  }

  .source-list {
    grid-template-columns: 1fr;
  }

  .valuation-lens {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .source-list a:nth-child(odd),
  .source-list .source-item:nth-child(odd),
  .source-list a:nth-child(even),
  .source-list .source-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .deck-footer-label {
    right: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media print {
  @page {
    size: 13.333in 7.5in;
    margin: 0;
  }

  html,
  body {
    width: 13.333in;
    background: #050607 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  body::before,
  .deck-topbar,
  .deck-progress,
  .deck-rail {
    display: none !important;
  }

  .slide {
    width: 13.333in;
    height: 7.5in;
    min-height: 7.5in;
    max-height: 7.5in;
    padding: 0.58in 0.68in 0.48in;
    align-items: flex-start;
    page-break-after: always;
    break-after: page;
    overflow: hidden;
  }

  .slide:last-child {
    page-break-after: auto;
  }

  .slide-no {
    top: 0.42in;
    right: 0.55in;
  }

  .slide-inner {
    width: 100%;
  }

  .hero-layout,
  .split {
    grid-template-columns: minmax(0, 1.08fr) minmax(2.8in, 0.92fr);
    gap: 0.42in;
  }

  .display {
    font-size: 0.64in;
  }

  .section-title {
    font-size: 0.43in;
  }

  .lede {
    margin-top: 0.14in;
    font-size: 0.15in;
    line-height: 1.45;
  }

  .metric-grid,
  .card-grid,
  .portfolio-row,
  .flow,
  .chart,
  .comparison,
  .scenario,
  .timeline,
  .source-list {
    margin-top: 0.26in;
  }

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

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

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

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

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

  .scenario {
    grid-template-columns: minmax(2.5in, 0.78fr) minmax(0, 1.22fr);
  }

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

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

  .valuation-lens {
    margin-top: 0.12in;
    padding: 0.11in 0.14in;
    grid-template-columns: 1.25in minmax(2.6in, 0.8fr) minmax(0, 1.2fr);
    gap: 0.16in;
  }

  .valuation-lens span {
    font-size: 0.09in;
  }

  .valuation-lens strong {
    font-size: 0.115in;
  }

  .valuation-lens p {
    font-size: 0.1in;
    line-height: 1.42;
  }

  .metric-card {
    min-height: 1.4in;
    padding: 0.16in;
  }

  .metric-value {
    font-size: 0.44in;
  }

  .metric-label {
    margin-top: 0.1in;
    font-size: 0.12in;
  }

  .metric-note,
  .micro,
  .print-note {
    font-size: 0.105in;
  }

  .info-card {
    min-height: 1.48in;
    padding: 0.15in;
  }

  .info-card h3 {
    margin-top: 0.18in;
    font-size: 0.17in;
  }

  .info-card p {
    font-size: 0.115in;
  }

  .portfolio-item {
    min-height: 0.65in;
    padding: 0.08in 0;
  }

  .portfolio-item h3 {
    font-size: 0.22in;
  }

  .portfolio-item p,
  .portfolio-item .stage {
    font-size: 0.105in;
  }

  .flow-step {
    min-height: 1.2in;
    padding: 0.14in;
  }

  .flow-step,
  .flow-step:nth-child(3),
  .flow-step:last-child {
    border: 1px solid var(--line);
    border-right: 0;
  }

  .flow-step:last-child {
    border-right: 1px solid var(--line);
  }

  .flow-step::after,
  .flow-step:nth-child(3)::after {
    display: block;
  }

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

  .flow-step h3 {
    margin-top: 0.16in;
    font-size: 0.145in;
  }

  .flow-step p {
    font-size: 0.105in;
  }

  .flow-step .flow-no {
    width: 0.24in;
    height: 0.24in;
    font-size: 0.1in;
  }

  .bar-chart {
    height: 1.75in;
  }

  .product-shot.phone {
    width: 1.92in;
  }

  .shot-stack {
    min-height: 3.3in;
  }

  .photo-collage {
    min-height: 3.45in;
  }

  .timeline-item {
    min-height: 1.58in;
    padding: 0.17in;
  }

  .timeline-item,
  .timeline-item:nth-child(2) {
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .timeline-item:last-child {
    border-right: 0;
  }

  .timeline-item h3 {
    margin-top: 0.3in;
    font-size: 0.16in;
  }

  .timeline-item p {
    font-size: 0.105in;
  }

  .quote {
    font-size: 0.52in;
  }

  .source-list a,
  .source-list .source-item {
    font-size: 0.105in;
  }
}
