@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/arimo-regular.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/arimo-bold.woff") format("woff");
  font-weight: 700;
}

:root {
  --black: #050505;
  --ink: #111111;
  --paper: #f4f2ed;
  --white: #ffffff;
  --orange: #f84404;
  --gold: #e6a93b;
  --sea: #0c5d67;
  --leaf: #17392f;
  --mist: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Arimo", Arial, sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.deck {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  background: var(--black);
}

.slide {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--black);
}

.stage {
  position: relative;
  width: min(100vw, calc(100dvh * 16 / 9));
  height: min(100dvh, calc(100vw * 9 / 16));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.light .stage {
  background: var(--paper);
  color: var(--ink);
}

.slide-image,
.stage > picture,
.slide-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-image {
  object-position: 54% 50%;
}

.right-focus {
  object-position: 76% center;
}

.scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 58%);
  z-index: 1;
}

.scrim-strong {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.46) 52%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12) 64%);
}

.scrim-left {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.64) 44%, rgba(0, 0, 0, 0.08) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 55%);
}

.scrim-right {
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 47%, rgba(0, 0, 0, 0.08) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 50%);
}

.brand-row,
.hero-copy,
.slide-meta,
.split-copy,
.fact-strip,
.module-tags,
.corner-mark,
.panel-copy,
.journey-line,
.section-head,
.proof-board,
.scale-grid,
.route-map,
.ops-copy,
.risk-matrix,
.tiers,
.addon-row,
.collab-copy {
  position: relative;
  z-index: 2;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.1% 5%;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.62rem, 1.05vw, 1rem);
  text-transform: uppercase;
}

.logo {
  display: block;
  width: clamp(120px, 17vw, 260px);
  max-height: 7vh;
  object-fit: contain;
}

.logo-white {
  filter: brightness(0) invert(1);
}

.corner-mark {
  position: absolute;
  top: 5%;
  right: 4.7%;
  width: clamp(18px, 2.3vw, 36px);
  height: clamp(18px, 2.3vw, 36px);
  object-fit: contain;
  z-index: 5;
}

.dark-mark {
  filter: none;
}

.hero-copy {
  width: 58%;
  margin: 7.4% 0 0 5%;
}

.hero-copy.narrow {
  width: 44%;
  margin-top: 13%;
}

.kicker {
  margin: 0 0 0.85rem;
  color: var(--orange);
  font-size: clamp(0.68rem, 1vw, 1rem);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 7.8vw, 8.4rem);
}

h2 {
  font-size: clamp(2.1rem, 5.8vw, 6.2rem);
}

h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.05rem, 1.55vw, 1.8rem);
  line-height: 1.05;
}

.subtitle,
.hero-copy p,
.split-copy p,
.panel-copy p,
.map-copy p,
.ops-copy p {
  max-width: 42rem;
  font-size: clamp(0.92rem, 1.55vw, 1.55rem);
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.86);
}

.slide-meta {
  position: absolute;
  left: 5%;
  bottom: 4%;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.58rem, 0.85vw, 0.86rem);
  text-transform: uppercase;
}

#next-steps .hero-copy {
  width: 72%;
  margin-top: 7%;
}

#next-steps .hero-copy h2 {
  max-width: 21ch;
  font-size: clamp(2.3rem, 4vw, 4.25rem);
}

.split-copy {
  width: 48%;
  margin: 12.5% 0 0 5%;
}

.split-copy h2 {
  max-width: 10.5ch;
}

.fact-strip {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip div {
  padding: 1rem 1.2rem 1.1rem 0;
  border-right: 1px solid var(--line);
}

.fact-strip div:last-child {
  border-right: 0;
}

.fact-strip b,
.fact-strip span {
  display: block;
}

.fact-strip b {
  margin-bottom: 0.25rem;
  font-size: clamp(0.8rem, 1.2vw, 1.2rem);
}

.fact-strip span {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.68rem, 1vw, 0.95rem);
  line-height: 1.35;
}

.two-panel {
  display: grid;
  grid-template-columns: 42% 58%;
  padding: 6% 5%;
  background:
    radial-gradient(circle at 78% 22%, rgba(248, 68, 4, 0.34), transparent 24%),
    linear-gradient(140deg, #050505, #0f322f 60%, #050505);
}

.panel-copy {
  align-self: center;
}

.panel-copy h2 {
  font-size: clamp(2.2rem, 5vw, 5.8rem);
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  align-self: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.journey-line div {
  min-height: 18vh;
  padding: 1.3rem;
  background: rgba(0, 0, 0, 0.46);
}

.journey-line span {
  color: var(--orange);
  font-size: clamp(0.7rem, 0.9vw, 0.95rem);
  font-weight: 700;
}

.journey-line b,
.journey-line em {
  display: block;
}

.journey-line b {
  margin: 1.15rem 0 0.35rem;
  font-size: clamp(1.35rem, 2.25vw, 2.5rem);
}

.journey-line em {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.72rem, 1vw, 1rem);
  line-height: 1.3;
  font-style: normal;
}

.module-tags {
  position: absolute;
  left: 5%;
  bottom: 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 52%;
}

.module-tags span {
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.64rem, 0.9vw, 0.92rem);
  text-transform: uppercase;
}

.editorial-grid,
.risk-stage,
.commercial-stage,
.scale-stage {
  padding: 5.3% 5%;
}

.section-head {
  max-width: 65%;
}

.section-head.compact {
  max-width: 78%;
}

.section-head h2 {
  color: inherit;
  font-size: clamp(2rem, 4.7vw, 5rem);
}

.proof-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3.3%;
  background: rgba(0, 0, 0, 0.18);
}

.proof-board article {
  min-height: 39vh;
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.72);
}

.proof-board b {
  display: block;
  margin-bottom: 35%;
  color: var(--orange);
  font-size: clamp(1rem, 1.35vw, 1.45rem);
}

.proof-board p {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(0.72rem, 1vw, 1rem);
  line-height: 1.38;
}

.scale-stage {
  background:
    linear-gradient(160deg, rgba(12, 93, 103, 0.4), transparent 42%),
    #060606;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 2.3%;
}

.scale-grid article {
  min-height: 55vh;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.scale-grid img {
  width: 100%;
  height: 21vh;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.06);
}

.scale-grid span,
.scale-grid h3,
.scale-grid p,
.scale-grid b {
  display: block;
  margin-left: 1rem;
  margin-right: 1rem;
}

.scale-grid span {
  margin-top: 0.95rem;
  color: var(--orange);
  font-size: clamp(1.2rem, 2.2vw, 2.45rem);
  font-weight: 700;
}

.scale-grid p {
  min-height: 8.4vh;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.65rem, 0.88vw, 0.92rem);
  line-height: 1.35;
}

.scale-grid b {
  color: var(--gold);
  font-size: clamp(0.6rem, 0.78vw, 0.78rem);
  line-height: 1.35;
}

.route-map {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 3%;
  height: 100%;
  padding: 7% 5%;
  align-items: center;
}

.map-copy h2 {
  max-width: 9ch;
}

.map-nodes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
  align-items: end;
}

.map-nodes div {
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.map-nodes span {
  color: var(--orange);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 700;
}

.map-nodes b,
.map-nodes em {
  display: block;
}

.map-nodes b {
  margin: 1rem 0 0.35rem;
  font-size: clamp(0.85rem, 1.25vw, 1.25rem);
}

.map-nodes em {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.58rem, 0.75vw, 0.78rem);
  line-height: 1.3;
  font-style: normal;
}

.ops-copy {
  width: 42%;
  margin: 10% 5% 0 auto;
}

.ops-copy h2 {
  font-size: clamp(2.1rem, 4.8vw, 5.2rem);
}

.clean-list {
  display: grid;
  gap: 0.68rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--orange);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.72rem, 1vw, 1.02rem);
  line-height: 1.34;
}

.risk-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.5%;
  background: rgba(0, 0, 0, 0.18);
}

.risk-matrix article {
  min-height: 19vh;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.68);
}

.risk-matrix span {
  color: var(--orange);
  font-size: clamp(0.65rem, 0.85vw, 0.85rem);
  font-weight: 700;
}

.risk-matrix b {
  display: block;
  margin: 0.65rem 0 0.45rem;
  font-size: clamp(0.98rem, 1.35vw, 1.35rem);
}

.risk-matrix p {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(0.66rem, 0.88vw, 0.9rem);
  line-height: 1.32;
}

.commercial-stage {
  background:
    radial-gradient(circle at 86% 20%, rgba(248, 68, 4, 0.25), transparent 18%),
    linear-gradient(140deg, #050505, #122c2e 63%, #050505);
}

.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3%;
}

.tier {
  min-height: 38vh;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.4);
}

.tier.featured {
  background: rgba(248, 68, 4, 0.16);
  border-color: rgba(248, 68, 4, 0.56);
}

.tier span {
  color: var(--orange);
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
}

.tier h3 {
  margin: 1.1rem 0 1rem;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
}

.tier p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.8rem, 1.1vw, 1.12rem);
  line-height: 1.38;
}

.tier b {
  color: var(--gold);
  font-size: clamp(0.68rem, 0.9vw, 0.9rem);
}

.addon-row {
  display: grid;
  grid-template-columns: 18% 82%;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.addon-row span {
  color: var(--orange);
  font-weight: 700;
}

.addon-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.72rem, 1vw, 1rem);
  line-height: 1.32;
}

.collab-copy {
  width: 43%;
  margin: 9% 0 0 5%;
}

.collab-copy h2 {
  font-size: clamp(2.1rem, 5vw, 5.4rem);
}

.collab-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.collab-list p {
  margin: 0;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.72rem, 1vw, 1rem);
  line-height: 1.34;
}

.collab-list b {
  color: var(--white);
}

@media (max-aspect-ratio: 16 / 9) {
  .stage {
    width: 100vw;
    height: calc(100vw * 9 / 16);
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .stage {
    height: 100dvh;
    width: calc(100dvh * 16 / 9);
  }

  h1 {
    font-size: clamp(2.35rem, 6.4vw, 3.9rem);
  }

  h2,
  .section-head h2,
  .ops-copy h2,
  .collab-copy h2 {
    font-size: clamp(1.4rem, 3.55vw, 2.45rem);
  }

  h3 {
    font-size: clamp(0.76rem, 1.7vw, 0.98rem);
  }

  .brand-row {
    padding: 3.2% 5%;
    font-size: 0.56rem;
  }

  .logo {
    width: 110px;
  }

  .hero-copy {
    width: 61%;
    margin-top: 5.6%;
  }

  .hero-copy.narrow {
    width: 48%;
    margin-top: 8%;
  }

  .subtitle,
  .hero-copy p,
  .split-copy p,
  .panel-copy p,
  .map-copy p,
  .ops-copy p {
    font-size: 0.67rem;
    line-height: 1.2;
  }

  .slide-meta {
    display: none;
  }

  .kicker {
    margin-bottom: 0.42rem;
    font-size: 0.56rem;
  }

  .split-copy {
    width: 50%;
    margin-top: 7%;
  }

  .split-copy h2,
  .panel-copy h2,
  .map-copy h2 {
    margin-bottom: 0.58rem;
  }

  .fact-strip {
    bottom: 4%;
  }

  .fact-strip div {
    padding: 0.52rem 0.6rem 0.55rem 0;
  }

  .fact-strip b {
    font-size: 0.62rem;
  }

  .fact-strip span {
    font-size: 0.52rem;
  }

  .two-panel {
    padding: 4.2% 5%;
    grid-template-columns: 39% 61%;
  }

  .journey-line div {
    min-height: 15vh;
    padding: 0.52rem;
  }

  .journey-line span {
    font-size: 0.48rem;
  }

  .journey-line b {
    margin: 0.45rem 0 0.15rem;
    font-size: 0.78rem;
  }

  .journey-line em {
    font-size: 0.48rem;
    line-height: 1.18;
  }

  .module-tags {
    bottom: 4%;
    gap: 0.28rem;
  }

  .module-tags span {
    padding: 0.34rem 0.42rem;
    font-size: 0.46rem;
  }

  .editorial-grid,
  .risk-stage,
  .commercial-stage,
  .scale-stage {
    padding: 4.2% 5%;
  }

  .section-head {
    max-width: 70%;
  }

  .section-head.compact {
    max-width: 91%;
  }

  .section-head h2 {
    margin-bottom: 0.5rem;
  }

  .proof-board article {
    min-height: 34vh;
    padding: 0.9rem;
  }

  .proof-board b {
    margin-bottom: 19%;
    font-size: 0.78rem;
  }

  .proof-board p {
    font-size: 0.56rem;
    line-height: 1.24;
  }

  .scale-grid {
    gap: 0.34rem;
    margin-top: 1.2%;
  }

  .scale-grid article {
    min-height: 50vh;
  }

  .scale-grid img {
    height: 13.2vh;
  }

  .scale-grid span,
  .scale-grid h3,
  .scale-grid p,
  .scale-grid b {
    margin-left: 0.52rem;
    margin-right: 0.52rem;
  }

  .scale-grid span {
    margin-top: 0.45rem;
    font-size: 1.05rem;
  }

  .scale-grid h3 {
    margin-bottom: 0.22rem;
    line-height: 1.02;
  }

  .scale-grid p {
    min-height: 8vh;
    margin-bottom: 0.35rem;
    font-size: 0.5rem;
    line-height: 1.2;
  }

  .scale-grid b {
    font-size: 0.46rem;
    line-height: 1.18;
  }

  .route-map {
    padding: 5% 5%;
    grid-template-columns: 34% 63%;
  }

  .map-nodes {
    gap: 0.32rem;
  }

  .map-nodes div {
    min-height: 40vh;
    padding: 0.55rem;
  }

  .map-nodes span {
    font-size: 1.35rem;
  }

  .map-nodes b {
    margin-top: 0.5rem;
    font-size: 0.65rem;
  }

  .map-nodes em {
    font-size: 0.45rem;
  }

  .ops-copy {
    width: 45%;
    margin-top: 6.2%;
    margin-right: 4%;
  }

  .clean-list {
    gap: 0.35rem;
    margin-top: 0.75rem;
  }

  .clean-list li {
    padding-left: 0.55rem;
    border-left-width: 2px;
    font-size: 0.52rem;
    line-height: 1.2;
  }

  .risk-matrix article {
    min-height: 16.5vh;
    padding: 0.52rem;
  }

  .risk-matrix b {
    margin: 0.35rem 0 0.22rem;
    font-size: 0.72rem;
  }

  .risk-matrix span {
    font-size: 0.48rem;
  }

  .risk-matrix p {
    font-size: 0.48rem;
    line-height: 1.18;
  }

  .tiers {
    gap: 0.55rem;
    margin-top: 1.2%;
  }

  .tier {
    min-height: 27vh;
    padding: 0.85rem;
  }

  .tier h3 {
    margin: 0.45rem 0 0.35rem;
    font-size: 2.2rem;
  }

  .tier p {
    font-size: 0.52rem;
    line-height: 1.2;
  }

  .tier b,
  .tier span {
    font-size: 0.5rem;
  }

  .addon-row {
    grid-template-columns: 19% 81%;
    gap: 0.55rem;
    margin-top: 0.55rem;
    padding: 0.45rem 0;
  }

  .addon-row span,
  .addon-row p {
    font-size: 0.5rem;
    line-height: 1.18;
  }

  .collab-copy {
    width: 46%;
    margin-top: 6.5%;
  }

  .collab-list {
    gap: 0.32rem;
    margin-top: 0.55rem;
  }

  .collab-list p {
    padding: 0.38rem 0;
    font-size: 0.5rem;
    line-height: 1.18;
  }

  #next-steps .hero-copy {
    width: 68%;
    margin-top: 6.2%;
  }

  #next-steps .hero-copy h2 {
    max-width: 22ch;
    font-size: clamp(1.28rem, 3vw, 2rem);
  }

  #next-steps .subtitle {
    max-width: 28rem;
  }
}

@media print {
  @page {
    size: 16in 9in;
    margin: 0;
  }

  html,
  body,
  .deck {
    height: auto;
    width: 16in;
    overflow: visible;
  }

  .slide {
    width: 16in;
    height: 9in;
    min-height: 9in;
    page-break-after: always;
  }

  .stage {
    width: 16in;
    height: 9in;
  }
}
