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

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

:root {
  --ink: #070707;
  --soft-ink: #222a2e;
  --paper: #f8f5ef;
  --white: #ffffff;
  --orange: #fa4502;
  --amber: #f59200;
  --aqua: #38b7b5;
  --leaf: #5d9b67;
  --blue: #001c2d;
  --muted: rgba(7, 7, 7, 0.62);
  --line: rgba(7, 7, 7, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: "Arimo Local", Arial, Helvetica, sans-serif;
}

body {
  letter-spacing: 0;
}

.deck {
  height: 100vh;
  height: 100svh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  background: #0b0d0f;
}

.slide {
  height: 100vh;
  height: 100svh;
  width: 100vw;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0b0d0f;
}

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

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

.stage.dark,
.stage.solid {
  background: #080b0e;
  color: var(--white);
}

.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 44%, rgba(0, 0, 0, 0.08) 100%);
}

.scrim.right {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.46) 43%, rgba(0, 0, 0, 0.88) 100%);
}

.scrim.left-light {
  background: linear-gradient(90deg, rgba(248, 245, 239, 0.98) 0%, rgba(248, 245, 239, 0.88) 35%, rgba(248, 245, 239, 0.14) 74%, rgba(248, 245, 239, 0) 100%);
}

.logo {
  position: absolute;
  height: 5.8%;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.48rem 0.65rem;
  border-radius: 0.25rem;
}

.cover-logo {
  top: 6.3%;
  left: 6.2%;
}

.closing-logo {
  top: 6%;
  right: 6%;
}

.brand-mark {
  position: absolute;
  right: 4.2%;
  bottom: 5%;
  height: 23%;
  opacity: 0.35;
}

.cover-copy,
.right-copy,
.center-copy,
.closing-copy {
  position: absolute;
  max-width: 58%;
}

.cover-copy {
  left: 6.2%;
  top: 15%;
}

.right-copy {
  right: 6.3%;
  top: 18%;
  width: 43%;
}

.right-copy.wide {
  width: 50%;
  top: 16%;
}

.center-copy {
  left: 9%;
  right: 9%;
  bottom: 21%;
  max-width: 72%;
}

.closing-copy {
  left: 6%;
  bottom: 12%;
  max-width: 66%;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: clamp(0.7rem, 1vw, 1rem);
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
}

.eyebrow.orange {
  color: var(--orange);
}

h1,
h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 7.9rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(2rem, 4.25vw, 4.85rem);
  line-height: 0.94;
}

.lede,
.body-large {
  margin: 1.3rem 0 0;
  font-size: clamp(1rem, 1.55vw, 1.68rem);
  line-height: 1.28;
  max-width: 41rem;
}

.body-large {
  color: inherit;
}

.light .body-large,
.light .lede {
  color: var(--soft-ink);
}

.cover-kpis {
  position: absolute;
  left: 6.2%;
  right: 6.2%;
  bottom: 5.8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.cover-kpis span,
.architecture-footer span,
.flow-ribbon span,
.next-actions span,
.hotel-pills span,
.node-grid span {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  padding: 0.75rem 0.9rem;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.02vw, 1.04rem);
  line-height: 1.1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.split {
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: center;
  padding: 6.5%;
  gap: 5%;
}

.split.reverse {
  grid-template-columns: 50% 42%;
}

.copy {
  min-width: 0;
}

.requirement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.05rem;
}

.requirement-grid div {
  min-height: 10.4rem;
  padding: 1.35rem;
  border-top: 0.4rem solid var(--orange);
  background: var(--white);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.08);
}

.requirement-grid strong,
.venue-strip strong,
.scale-line strong,
.mini-table strong,
.journey-map strong,
.ops-grid strong,
.price-system strong {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.55rem);
  line-height: 1.08;
}

.requirement-grid span {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(0.82rem, 1.18vw, 1.18rem);
  line-height: 1.28;
  color: var(--muted);
}

.spend-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 2rem;
}

.spend-chain span {
  min-height: 5.6rem;
  display: flex;
  align-items: end;
  padding: 0.75rem;
  background: rgba(250, 69, 2, 0.86);
  color: var(--white);
  font-size: clamp(0.74rem, 0.94vw, 0.98rem);
  font-weight: 700;
  line-height: 1.08;
}

.slide-head {
  position: relative;
  padding: 5.4% 6.2% 0;
  z-index: 1;
}

.slide-head h2 {
  max-width: 15ch;
}

.slide-head.compact h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 3.8vw, 4.25rem);
}

.venue-strip {
  position: absolute;
  left: 6.2%;
  right: 6.2%;
  bottom: 9.5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.venue-strip article {
  min-height: 20.5rem;
  background: var(--white);
  border-bottom: 0.42rem solid var(--orange);
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.1);
}

.venue-strip img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
  display: block;
}

.venue-strip div {
  padding: 1rem 1rem 1.15rem;
}

.venue-strip span {
  display: block;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: clamp(0.76rem, 1vw, 1rem);
  line-height: 1.26;
}

.source-note {
  position: absolute;
  left: 6.2%;
  bottom: 4.8%;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.68rem, 0.85vw, 0.86rem);
}

.scale-line {
  position: absolute;
  left: 6.2%;
  right: 6.2%;
  top: 43.5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.scale-line article {
  min-height: 17.2rem;
  padding: 1.4rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, rgba(250, 69, 2, 0.2), rgba(56, 183, 181, 0.12));
}

.pax {
  display: block;
  color: var(--orange);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 1.2rem;
}

.scale-line p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.85rem, 1.08vw, 1.08rem);
  line-height: 1.25;
}

.architecture-footer {
  position: absolute;
  left: 6.2%;
  right: 6.2%;
  bottom: 6%;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 0.8rem;
}

.pack-card {
  position: absolute;
  left: 6.2%;
  top: 14%;
  width: 40%;
  color: var(--ink);
}

.pack-card h2 {
  color: var(--ink);
}

.pack-card ul {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.pack-card li {
  font-size: clamp(0.86rem, 1.22vw, 1.25rem);
  line-height: 1.24;
  color: var(--soft-ink);
}

.pack-meta {
  position: absolute;
  left: 6.2%;
  bottom: 7%;
  width: 40%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.pack-meta span {
  padding: 0.68rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(0.7rem, 0.92vw, 0.95rem);
  line-height: 1.1;
  border-left: 0.25rem solid var(--orange);
}

.flow-ribbon {
  position: absolute;
  left: 6.2%;
  right: 6.2%;
  bottom: 6.5%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
}

.image-tile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  height: 100%;
  align-content: center;
}

.image-tile img {
  width: 100%;
  height: 16.5rem;
  object-fit: cover;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.16);
}

.mini-table {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.7rem;
}

.mini-table div {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 0.72rem;
}

.mini-table strong {
  font-size: clamp(0.9rem, 1.2vw, 1.18rem);
  color: var(--orange);
}

.mini-table span {
  color: var(--soft-ink);
  font-size: clamp(0.82rem, 1.08vw, 1.08rem);
  line-height: 1.2;
}

.big-number {
  position: absolute;
  left: 5%;
  bottom: 3%;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 0.75;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.16);
}

.node-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.journey-map {
  position: absolute;
  left: 6.2%;
  right: 6.2%;
  bottom: 9%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.journey-map article {
  min-height: 19.5rem;
  padding: 1.2rem;
  background: var(--white);
  border-top: 0.4rem solid var(--aqua);
}

.journey-map span {
  display: block;
  color: var(--orange);
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 1.2rem;
}

.journey-map p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: clamp(0.8rem, 1.05vw, 1.08rem);
  line-height: 1.28;
}

.ops-grid {
  position: absolute;
  left: 6.2%;
  right: 6.2%;
  bottom: 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.ops-grid div {
  min-height: 15.8rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-top: 0.35rem solid var(--amber);
}

.ops-grid span {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.8rem, 1.05vw, 1.08rem);
  line-height: 1.28;
}

.hotel-pills {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.hotel-pills span:last-child {
  grid-column: 1 / -1;
}

.commercial {
  padding: 0;
}

.price-system {
  position: absolute;
  left: 6.2%;
  right: 6.2%;
  bottom: 18%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-system article {
  min-height: 18rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.price-system .featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.price {
  display: block;
  color: var(--orange);
  font-size: clamp(3.6rem, 6.5vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 1rem;
}

.price-system p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: clamp(0.84rem, 1.08vw, 1.08rem);
  line-height: 1.28;
}

.price-system .featured p {
  color: rgba(255, 255, 255, 0.72);
}

.bottom-claim {
  position: absolute;
  left: 6.2%;
  right: 6.2%;
  bottom: 7%;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: clamp(1rem, 1.45vw, 1.55rem);
  font-weight: 700;
  color: var(--soft-ink);
}

.closing .scrim {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.46) 54%, rgba(0, 0, 0, 0.06) 100%);
}

.closing {
  color: var(--white);
}

.next-actions {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

@media (max-aspect-ratio: 16/9) {
  .stage {
    font-size: calc(100vw / 120);
  }
}

@media (min-aspect-ratio: 16/9) {
  .stage {
    font-size: calc(100svh / 67.5);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .slide-head {
    padding: 4.6% 5.4% 0;
  }

  .slide-head h2 {
    max-width: 20ch;
  }

  .lede,
  .body-large {
    font-size: 0.72rem;
    line-height: 1.22;
    margin-top: 0.7rem;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 1.78rem;
    line-height: 0.96;
  }

  .eyebrow {
    font-size: 0.56rem;
    margin-bottom: 0.38rem;
  }

  .logo {
    padding: 0.25rem 0.35rem;
  }

  .cover-copy {
    top: 17%;
  }

  .cover-kpis span,
  .architecture-footer span,
  .flow-ribbon span,
  .next-actions span,
  .hotel-pills span,
  .node-grid span {
    padding: 0.42rem;
    font-size: 0.56rem;
  }

  .split {
    padding: 5%;
    gap: 3.5%;
  }

  .requirement-grid {
    gap: 0.48rem;
  }

  .requirement-grid div {
    min-height: 5.4rem;
    padding: 0.58rem;
    border-top-width: 0.22rem;
  }

  .requirement-grid strong,
  .venue-strip strong,
  .scale-line strong,
  .mini-table strong,
  .journey-map strong,
  .ops-grid strong,
  .price-system strong {
    font-size: 0.76rem;
  }

  .requirement-grid span,
  .venue-strip span,
  .journey-map p,
  .ops-grid span,
  .price-system p,
  .mini-table span,
  .scale-line p,
  .pack-card li {
    font-size: 0.56rem;
    line-height: 1.18;
  }

  .venue-strip {
    left: 5.4%;
    right: 5.4%;
    bottom: 7.5%;
    gap: 0.48rem;
  }

  .venue-strip article,
  .journey-map article {
    min-height: 8.4rem;
  }

  .venue-strip img {
    height: 3.7rem;
  }

  .venue-strip div {
    padding: 0.5rem;
  }

  .source-note {
    left: 5.4%;
    bottom: 3.6%;
    font-size: 0.5rem;
  }

  .scale-line {
    left: 5.4%;
    right: 5.4%;
    top: 53%;
    gap: 0.5rem;
  }

  .scale-line article,
  .ops-grid div,
  .price-system article {
    min-height: 7.5rem;
    padding: 0.62rem;
  }

  .scale-line article {
    min-height: 6.25rem;
    padding: 0.48rem;
  }

  .pax {
    font-size: 1.82rem;
    margin-bottom: 0.36rem;
  }

  .scale-line strong {
    font-size: 0.62rem;
  }

  .scale-line p {
    margin-top: 0.42rem;
    font-size: 0.49rem;
  }

  .architecture-footer {
    left: 5.4%;
    right: 5.4%;
    bottom: 5%;
    gap: 0.45rem;
  }

  .pack-card {
    width: 42%;
    top: 12%;
  }

  .pack-meta {
    bottom: 5%;
    width: 42%;
    gap: 0.35rem;
  }

  .pack-meta span {
    padding: 0.4rem;
    font-size: 0.52rem;
  }

  .flow-ribbon {
    left: 5.4%;
    right: 5.4%;
    bottom: 5.4%;
    gap: 0.35rem;
  }

  .image-tile {
    gap: 0.5rem;
  }

  .image-tile img {
    height: 7.1rem;
  }

  .mini-table {
    margin-top: 0.8rem;
    gap: 0.35rem;
  }

  .mini-table div {
    grid-template-columns: 3.8rem 1fr;
    gap: 0.45rem;
    padding-top: 0.35rem;
  }

  .journey-map,
  .ops-grid,
  .price-system {
    left: 5.4%;
    right: 5.4%;
    gap: 0.5rem;
  }

  .journey-map {
    bottom: 7%;
  }

  .journey-map article {
    padding: 0.6rem;
    border-top-width: 0.22rem;
  }

  .journey-map span {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }

  .ops-grid {
    bottom: 7%;
  }

  .ops-grid div {
    border-top-width: 0.22rem;
  }

  .ops-grid span {
    margin-top: 0.55rem;
  }

  .price-system {
    bottom: 16%;
  }

  .price {
    font-size: 2.2rem;
    margin-bottom: 0.55rem;
  }

  .bottom-claim {
    left: 5.4%;
    right: 5.4%;
    bottom: 5.8%;
    font-size: 0.7rem;
    padding-top: 0.5rem;
  }

  .right-copy {
    top: 14%;
    right: 5.4%;
    width: 45%;
  }

  .right-copy.wide {
    width: 51%;
  }

  .hotel-pills,
  .node-grid,
  .next-actions {
    margin-top: 0.8rem;
    gap: 0.35rem;
  }
}
