:root {
  color-scheme: dark;
  --ink: #fff;
  --dark: #0e0e10;
  --muted: rgba(255, 255, 255, 0.72);
  --paper: #f4f1eb;
  --paper-ink: #151412;
  --line: rgba(20, 18, 16, 0.12);
  --acid: #7c37ff;
  --cyan: #26c7e8;
  --lime: #a9e34b;
  --gb-red: #e4212b;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; }

.progress {
  position: fixed;
  z-index: 90;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gb-red), var(--acid), var(--cyan), var(--lime));
  box-shadow: 0 0 24px rgba(124, 55, 255, 0.56);
}

.nav {
  position: fixed;
  z-index: 80;
  top: 22px;
  left: clamp(18px, 4vw, 62px);
  right: clamp(18px, 4vw, 62px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  mix-blend-mode: difference;
  pointer-events: none;
}

.nav a,
.nav b,
.nav span { pointer-events: auto; }

.nav a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.page-rail {
  position: fixed;
  z-index: 82;
  top: 50%;
  right: 12px;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
  justify-items: center;
}

.page-count,
.toc-return {
  width: 46px;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(14, 14, 16, 0.52);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
}

.toc-return {
  font: inherit;
  font-size: 12px;
  line-height: 1.2;
  writing-mode: vertical-rl;
  cursor: pointer;
}

.is-preview .page-count,
.is-preview .toc-return {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.42);
  backdrop-filter: none;
  cursor: default;
}

.screen {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
  background: var(--paper);
  color: var(--paper-ink);
}

.frame {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: clamp(70px, 9vh, 108px) clamp(22px, 4vw, 54px) clamp(44px, 6vh, 68px);
}

.cover-screen {
  min-height: 100svh;
  color: #fff;
  background: #061326;
}

.cover-screen > img,
.acid-hero > img,
.origami-hero > img,
.thank-you > img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cover-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(1.05) contrast(1.04);
}

.thank-you > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(1.05) contrast(1.04);
}

.full-image-screen {
  min-height: auto;
  background: var(--paper);
}

.full-image-screen > img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
}

#acid-cover > img {
  margin-top: clamp(-92px, -6vw, -42px);
}

.cover-screen::after,
.acid-hero::after,
.thank-you::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(2, 10, 24, 0.3), transparent 34%, rgba(2, 10, 24, 0.64));
}

.origami-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(244, 241, 235, 0.82), rgba(244, 241, 235, 0.18) 58%, rgba(244, 241, 235, 0.72));
}

.cover-copy {
  position: absolute;
  inset: clamp(132px, 16vh, 196px) clamp(30px, 5vw, 88px) clamp(34px, 4vh, 64px);
  translate: 0 clamp(92px, 12vh, 150px);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: clamp(20px, 4vh, 44px);
  text-align: left;
}

.kicker {
  margin: 0 0 clamp(14px, 1.7vw, 22px);
  color: rgba(20, 18, 16, 0.62);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dark-section,
.thank-you {
  color: #fff;
  background: #111;
}

#chart-analysis {
  color: var(--paper-ink);
  background:
    linear-gradient(135deg, rgba(38, 199, 232, 0.13), transparent 34%),
    linear-gradient(225deg, rgba(20, 18, 16, 0.04), transparent 42%),
    #e5eceb;
}

#chart-analysis .kicker {
  color: rgba(20, 18, 16, 0.58);
}

#chart-analysis .lead {
  color: rgba(20, 18, 16, 0.68);
}

#chart-analysis .insight-card {
  border-color: rgba(20, 18, 16, 0.12);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 60px rgba(20, 18, 16, 0.1);
}

#chart-analysis .image-card {
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 18, 16, 0.12);
}

.dark-section .kicker,
.thank-you .kicker,
.cover-screen .kicker,
.acid-hero .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.mag-title,
.title {
  margin: 0;
  max-width: none;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 1.02;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.mag-title {
  font-family: inherit;
  font-size: clamp(54px, 7vw, 118px);
  line-height: 0.98;
  font-weight: 840;
  white-space: nowrap;
}

.title.zh {
  text-transform: none;
}

.line {
  display: block;
  overflow: hidden;
}

.line span {
  display: block;
  transform: translateY(112%);
  opacity: 0;
  filter: blur(12px);
  transition: transform 0.92s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.92s, filter 0.92s;
}

.is-visible .line span {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.cover-lead,
.lead {
  max-width: none;
  margin: clamp(16px, 1.9vw, 26px) 0 0;
  color: rgba(20, 18, 16, 0.72);
  font-size: clamp(13px, 1.12vw, 18px);
  line-height: 1.55;
  font-weight: 620;
}

.cover-lead {
  color: rgba(255, 255, 255, 0.82);
  font-family: inherit;
  letter-spacing: 0;
  white-space: nowrap;
}

.dark-section .lead,
.acid-hero .lead,
.thank-you p {
  color: rgba(255, 255, 255, 0.78);
}

.split-copy {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(26px, 5vw, 74px);
  align-items: start;
}

.purpose-screen {
  min-height: auto;
  background:
    linear-gradient(130deg, rgba(228, 33, 43, 0.1), transparent 34%),
    linear-gradient(50deg, rgba(38, 199, 232, 0.12), transparent 38%),
    var(--paper);
}

.strategy-frame {
  display: grid;
  align-content: start;
  gap: clamp(24px, 3vw, 42px);
  padding-top: clamp(86px, 10vh, 124px);
  padding-bottom: clamp(86px, 10vh, 124px);
}

.strategy-header .title {
  max-width: none;
  white-space: nowrap;
}

.strategy-header .lead {
  max-width: none;
  white-space: nowrap;
}

.logic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.logic-card,
.insight-card,
.point {
  padding: clamp(20px, 2.2vw, 32px);
  border: 1px solid rgba(20, 18, 16, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 60px rgba(20, 18, 16, 0.1);
}

.logic-card b {
  color: var(--gb-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.logic-card h3,
.point h3 {
  margin: 22px 0 0;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.15;
}

.logic-card p,
.point p {
  margin: 16px 0 0;
  color: rgba(20, 18, 16, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.contents {
  background: #f7f4ef;
}

.toc-wall {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 42px;
  min-height: min(58vh, 560px);
}

.toc {
  position: relative;
  min-height: min(58vh, 560px);
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  background:
    linear-gradient(180deg, #8d8d8d, #5f5f5f 38%, #111 38%, #111);
}

.toc img {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  bottom: 0;
  height: 62%;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s;
  opacity: 0.82;
}

.toc:hover img {
  transform: scale(1);
  opacity: 0.92;
}

.toc::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.18) 36%, rgba(0, 0, 0, 0.76)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 58%);
}

.toc-copy {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  top: 26px;
  bottom: 18px;
  display: grid;
  align-content: start;
}

.toc-copy b,
.toc-copy h3,
.toc-copy p {
  display: block;
  margin: 0;
}

.toc-copy b {
  color: rgba(255, 255, 255, 0.66);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 0.78;
}

.toc-copy h3 {
  margin-top: 12px;
  font-size: clamp(18px, 1.22vw, 22px);
  line-height: 1.12;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  max-height: none;
  text-wrap: balance;
}

.toc-copy p {
  align-self: end;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.36;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  max-height: none;
}

.insight-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 3vw, 42px);
}

.insight-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.insight-card span,
.point b {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insight-card strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.22;
}

.image-grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(24px, 3.4vw, 42px);
}

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

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

.acid-grid .image-card {
  aspect-ratio: 16 / 9;
}

.acid-grid .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.origami-grid .image-card {
  grid-column: span 2;
}

.origami-grid #pdf-page-22,
.origami-grid #pdf-page-23 {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
}

.origami-grid #pdf-page-22 img,
.origami-grid #pdf-page-23 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

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

.image-card,
.wide-proof,
.feature-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.dark-section .image-card,
.feature-shot {
  background: #1d1d1d;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.image-card img,
.wide-proof img,
.feature-shot img {
  height: auto;
  object-fit: contain;
}

.image-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.stacked-points {
  display: grid;
  gap: 14px;
}

.opportunity-section {
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(228, 33, 43, 0.1), transparent 30%),
    linear-gradient(210deg, rgba(38, 199, 232, 0.16), transparent 36%),
    #f7f3ea;
}

#acid-direction {
  background:
    linear-gradient(135deg, rgba(124, 55, 255, 0.16), transparent 34%),
    linear-gradient(210deg, rgba(38, 199, 232, 0.14), transparent 38%),
    #f3f0f8;
}

#origami-direction {
  min-height: auto;
}

#origami-direction .frame {
  padding-bottom: clamp(24px, 3vh, 38px);
}

.opportunity-frame {
  display: grid;
  align-content: start;
  gap: clamp(24px, 3.6vw, 52px);
}

.opportunity-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.64fr) minmax(0, 1.96fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
}

#opportunity .stacked-points {
  gap: clamp(10px, 1.2vw, 14px);
  align-content: start;
}

#opportunity .point {
  min-height: 0;
  display: grid;
  align-content: start;
  padding: clamp(15px, 1.55vw, 24px);
}

#opportunity .point b {
  font-size: 11px;
}

#opportunity .point h3 {
  margin-top: clamp(12px, 1.2vw, 18px);
  font-size: clamp(18px, 1.45vw, 26px);
}

#opportunity .point p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.58;
}

.wide-proof {
  width: 100%;
  min-height: 0;
  margin: 0;
}

.acid-hero,
.origami-hero {
  min-height: 92svh;
}

.hero-overlay {
  min-height: 92svh;
  display: grid;
  align-content: center;
}

.hero-overlay .lead {
  max-width: 720px;
}

.hero-overlay.light .kicker,
.hero-overlay.light .lead {
  color: rgba(20, 18, 16, 0.72);
}

.feature-shot {
  align-self: center;
}

.marketing-frame {
  display: grid;
  align-content: start;
  gap: clamp(26px, 4vw, 50px);
}

.marketing-header .lead {
  max-width: none;
  white-space: nowrap;
}

#marketing .feature-shot {
  width: 100%;
}

.thank-you {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  background: #061326;
}

.thanks {
  display: grid;
  justify-items: center;
  gap: clamp(34px, 6vh, 72px);
}

.thanks .kicker {
  margin: 0;
}

.thanks h2 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(54px, 7vw, 118px);
  line-height: 0.98;
  font-weight: 840;
}

.thanks p {
  margin: 22px 0 0;
  font-size: clamp(14px, 1.4vw, 22px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.reveal,
.toc,
.image-card,
.logic-card,
.insight-card,
.point {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(10px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.72s ease;
  transition-delay: calc(var(--motion-order, 0) * 0.045s);
}

.is-visible .reveal,
.reveal.is-visible,
.toc.is-visible,
.image-card.is-visible,
.logic-card.is-visible,
.insight-card.is-visible,
.point.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-height: 700px) and (min-width: 721px) {
  #opportunity .opportunity-frame {
    padding-top: clamp(34px, 5.6vh, 46px);
    padding-bottom: clamp(22px, 4vh, 30px);
    gap: clamp(14px, 2.4vh, 20px);
  }

  #opportunity .kicker {
    margin-bottom: 10px;
  }

  #opportunity .title {
    font-size: clamp(32px, 4vw, 48px);
  }

  #opportunity .lead {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.42;
  }

  #opportunity .opportunity-layout {
    grid-template-columns: minmax(190px, 0.58fr) minmax(0, 2.04fr);
    gap: 18px;
  }

  #opportunity .stacked-points {
    gap: 10px;
  }

  #opportunity .point {
    padding: 12px 16px;
  }

  #opportunity .point b {
    font-size: 9px;
  }

  #opportunity .point h3 {
    margin-top: 8px;
    font-size: clamp(16px, 1.7vw, 22px);
  }

  #opportunity .point p {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.5;
  }
}

@media (max-width: 1100px) {
  .toc-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split-copy,
  .insight-row,
  .research-grid,
  .logic-grid,
  .final-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .acid-grid #pdf-page-11,
  .acid-grid #pdf-page-12,
  .acid-grid #pdf-page-13,
  .acid-grid #pdf-page-14,
  .acid-grid #pdf-page-15,
  .origami-grid .image-card,
  .origami-grid #pdf-page-22,
  .origami-grid #pdf-page-23 {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .nav {
    left: 16px;
    right: 16px;
    gap: 10px;
    font-size: 10px;
  }

  .nav span {
    display: none;
  }

  .page-rail {
    display: none;
  }

  .frame {
    padding: 72px 18px 48px;
  }

  .strategy-frame {
    gap: 24px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  #origami-direction .frame {
    padding-bottom: 28px;
  }

  .cover-copy {
    inset: 118px 20px 40px;
    translate: 0 56px;
  }

  .mag-title {
    font-size: clamp(62px, 22vw, 110px);
  }

  .cover-screen .mag-title {
    font-size: clamp(42px, 12vw, 64px);
    white-space: normal;
  }

  .cover-lead {
    white-space: normal;
  }

  .logic-grid,
  #opportunity .stacked-points,
  .toc-wall,
  .acid-grid,
  .origami-grid {
    grid-template-columns: 1fr;
  }

  .strategy-header .title,
  .strategy-header .lead,
  .marketing-header .lead {
    white-space: normal;
  }

  .toc {
    min-height: 210px;
  }

  .toc-copy h3,
  .toc-copy p {
    writing-mode: horizontal-tb;
    max-height: none;
  }
}

.is-preview {
  overflow: hidden;
  scroll-behavior: auto;
}

.is-preview body {
  overflow: hidden;
}

.is-preview .nav {
  top: 18px;
}

.is-preview .screen {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

.is-preview main {
  transition: opacity 0.1s ease;
}

.is-preview.is-page-flipping main {
  opacity: 0;
}

.is-preview .preview-fit-content {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform-origin: 0 0;
  will-change: transform;
}

.is-preview .frame {
  width: min(100%, 1480px);
  padding: clamp(42px, 5.2vh, 58px) clamp(44px, 5.2vw, 82px) clamp(24px, 3.4vh, 34px);
}

.is-preview .editorial-section .frame {
  padding-top: 48px;
  padding-bottom: 28px;
}

.is-preview .title {
  font-size: clamp(34px, 3.45vw, 56px);
  line-height: 1.02;
}

.is-preview .lead {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.38;
}

.is-preview .kicker {
  margin-bottom: 12px;
  font-size: 10px;
}

.is-preview .strategy-frame,
.is-preview .marketing-frame {
  gap: clamp(22px, 3.2vh, 34px);
  padding-top: clamp(54px, 7vh, 72px);
  padding-bottom: 34px;
}

.is-preview .logic-grid,
.is-preview .insight-row,
.is-preview #opportunity .stacked-points {
  gap: 14px;
}

.is-preview .logic-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1280px);
  gap: clamp(16px, 1.8vw, 24px);
}

.is-preview .toc-wall {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  min-height: min(56vh, 500px);
  margin-top: 26px;
}

.is-preview .toc {
  min-height: min(56vh, 500px);
}

.is-preview .toc-copy {
  left: 10px;
  right: 10px;
  top: 22px;
  bottom: 16px;
}

.is-preview .toc-copy b {
  font-size: clamp(30px, 3.9vw, 60px);
}

.is-preview .toc-copy h3 {
  font-size: clamp(15px, 1.08vw, 19px);
}

.is-preview .toc-copy p {
  font-size: 10px;
}

.is-preview .logic-card,
.is-preview .insight-card,
.is-preview .point {
  padding: clamp(22px, 2.4vw, 34px);
}

.is-preview .insight-card {
  padding: 24px 28px;
}

.is-preview .logic-card b {
  font-size: clamp(30px, 2.4vw, 42px);
}

.is-preview .logic-card h3,
.is-preview .point h3 {
  margin-top: clamp(12px, 1.8vh, 20px);
  font-size: clamp(24px, 2.3vw, 36px);
}

.is-preview .logic-card p,
.is-preview .point p {
  margin-top: clamp(8px, 1.4vh, 14px);
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.5;
}

.is-preview .insight-card strong {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.is-preview .image-grid {
  gap: 12px;
  margin-top: 18px;
}

.is-preview .acid-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  margin-inline: auto;
}

.is-preview .origami-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  width: min(100%, 1240px);
  margin-inline: auto;
}

.is-preview .research-grid .image-card {
  height: 340px;
  max-height: none;
}

.is-preview .acid-grid .image-card {
  aspect-ratio: 16 / 9;
  max-height: none;
}

.is-preview .origami-grid .image-card {
  grid-column: span 2;
  max-height: 205px;
}

.is-preview .origami-grid #pdf-page-22,
.is-preview .origami-grid #pdf-page-23 {
  grid-column: span 3;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: none;
}

.is-preview .origami-grid #pdf-page-22 img,
.is-preview .origami-grid #pdf-page-23 img {
  object-fit: contain;
  object-position: center center;
  transform: none;
}

.is-preview .image-card img,
.is-preview .wide-proof img,
.is-preview .feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.is-preview #opportunity .opportunity-frame {
  gap: 18px;
  padding-top: 62px;
  padding-bottom: 28px;
}

.is-preview #opportunity .opportunity-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.72fr);
  gap: 22px;
  min-height: 510px;
}

.is-preview #opportunity .stacked-points {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.is-preview #opportunity .point {
  padding: 24px 30px;
}

.is-preview #opportunity .point h3 {
  font-size: clamp(24px, 2vw, 34px);
}

.is-preview #opportunity .point p {
  font-size: 15px;
}

.is-preview .wide-proof {
  height: 100%;
}

.is-preview .full-image-screen {
  display: grid;
  place-items: center;
}

.is-preview .full-image-screen > img {
  width: 100%;
  height: 100svh;
  object-fit: contain;
}

.is-preview #acid-cover > img {
  margin-top: 0;
}

.is-preview #marketing .feature-shot {
  aspect-ratio: 16 / 9;
  height: auto;
}

.is-preview #marketing .feature-shot img {
  object-fit: contain;
  object-position: center center;
}

.is-private-view,
.is-private-view body {
  scroll-snap-type: y mandatory;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.is-private-view .screen {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.is-private-view img {
  pointer-events: none;
  -webkit-user-drag: none;
  filter: blur(.08px) contrast(.98) saturate(.96);
}
