@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest.woff2?v=84591ac0") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --cyan: #2ff5ff;
  --cyan-deep: #00d9e6;
  --yellow: #ffce00;
  --ink: #000000;
  --paper: #ffffff;
  --muted: #5b5b5b;
  --line: #e3e3e3;
  --wash: #f5f5f5;

  --space-section: clamp(80px, 9vw, 168px);
  --space-head: clamp(28px, 3vw, 48px);
  --space-block: clamp(20px, 2vw, 32px);
  --gutter: clamp(20px, 4vw, 64px);
  --content: 1360px;
  --radius: 28px;

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.2;
}

p {
  margin: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

:focus,
:focus-visible {
  outline: none;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: var(--gutter);
  z-index: 20;
  padding: 12px 20px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  font-weight: 700;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 0;
}

.topbar {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  max-width: var(--content);
  margin: 0 auto;
  padding: calc(24px + var(--safe-top)) var(--gutter) 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mark {
  width: 30px;
  height: 26px;
  color: var(--ink);
  transition: color 180ms ease;
}

.logo:hover .mark,
.logo:focus-visible .mark {
  color: var(--cyan-deep);
}

.topbar__nav {
  display: flex;
  gap: clamp(14px, 2vw, 32px);
  margin-inline-start: auto;
  font-weight: 600;
}

.topbar__nav a {
  padding: 8px 16px;
  border-radius: 999px;
  transition: color 180ms ease, background-color 180ms ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  background: var(--yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn--compact {
  padding: 11px 22px;
  font-size: 15px;
}

.btn--fill {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.btn--fill:hover,
.btn--fill:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
}

.btn--ghost {
  background: rgba(0, 0, 0, 0.08);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.btn--light {
  color: var(--paper);
  border-color: var(--paper);
}

.btn--light:hover,
.btn--light:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section {
  max-width: var(--content);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter) 0;
}

.head {
  max-width: 62ch;
  margin-bottom: var(--space-head);
  display: grid;
  gap: 18px;
}

.head p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  max-width: 56ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 64px) var(--gutter) 0;
}

.hero .actions {
  margin-top: 36px;
}

.hero__art img {
  width: 100%;
}

.story {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
}

.story__item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
}

.story__item:nth-child(even) .story__art {
  order: 2;
}

.story__art {
  padding: clamp(16px, 2vw, 32px);
  background: var(--wash);
  border-radius: var(--radius);
}

.story__copy {
  display: grid;
  gap: 12px;
}

.story__copy p {
  color: var(--muted);
}

.turn {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  max-width: var(--content);
  margin: var(--space-section) auto 0;
  padding: clamp(40px, 5vw, 80px) clamp(28px, 4vw, 72px);
  color: var(--ink);
  background: var(--cyan);
  border-radius: var(--radius);
  width: calc(100% - 2 * var(--gutter));
}

.turn__copy {
  display: grid;
  gap: 22px;
}

.turn__copy p {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.how__art {
  margin-bottom: var(--space-block);
}

.how {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 40px);
}

.how__item {
  display: grid;
  gap: 12px;
  padding-top: 22px;
}

.how__item p {
  color: var(--muted);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.tile {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 260px;
  padding: clamp(24px, 2.4vw, 36px);
  background: var(--wash);
  border-radius: var(--radius);
}

.tile p {
  color: var(--muted);
}

.tile--cyan {
  background: var(--cyan);
}

.tile--cyan p {
  color: var(--ink);
}

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

.tile--ink p {
  color: rgba(255, 255, 255, 0.72);
}

.split__art {
  margin-bottom: var(--space-block);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
}

.split__item {
  display: grid;
  gap: 12px;
  padding-top: 22px;
}

.split__item p {
  color: var(--muted);
}

.pair__box {
  display: grid;
  gap: 22px;
  justify-items: start;
  padding: clamp(32px, 4vw, 64px);
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.pair__box p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq__item {
  padding: clamp(18px, 2vw, 26px) clamp(20px, 2.4vw, 32px);
  background: var(--wash);
  border-radius: 20px;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  font-weight: 700;
}

.faq__item summary::after {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 100% 3px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 3px 100% no-repeat;
  transition: transform 200ms ease;
}

.faq__item[open] summary::after {
  transform: rotate(0);
  background: linear-gradient(var(--ink), var(--ink)) center / 100% 3px no-repeat;
}

.faq__item p {
  max-width: 74ch;
  margin-top: 14px;
  color: var(--muted);
}

.faq__item:hover,
.faq__item:focus-within {
  background: var(--cyan);
}

.faq__item:hover p,
.faq__item:focus-within p {
  color: var(--ink);
}

.final {
  display: grid;
  gap: 22px;
  justify-items: center;
  max-width: var(--content);
  width: calc(100% - 2 * var(--gutter));
  margin: var(--space-section) auto 0;
  padding: clamp(48px, 6vw, 96px) clamp(24px, 4vw, 72px);
  color: var(--paper);
  text-align: center;
  background: var(--ink);
  border-radius: var(--radius);
}

.final p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
}

.final .actions {
  justify-content: center;
  margin-top: 12px;
}

.final .btn--fill {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.footer {
  max-width: var(--content);
  margin: var(--space-section) auto 0;
  padding: clamp(40px, 5vw, 72px) var(--gutter) calc(32px + var(--safe-bottom));
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.footer__brand p {
  max-width: 34ch;
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted);
}

.footer__col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer__col h2 {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__col a {
  font-size: 15px;
  color: var(--muted);
  transition: color 180ms ease;
}

.footer__col a:hover,
.footer__col a:focus-visible {
  color: var(--ink);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: 24px;
  color: var(--muted);
  font-size: 15px;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.lang select {
  border: 0;
  padding: 10px 14px;
  color: var(--ink);
  background: transparent;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.lang select:hover,
.lang select:focus-visible {
  background: var(--wash);
  border-color: var(--ink);
}

.legal {
  max-width: 76ch;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 72px) var(--gutter) 0;
}

.legal h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.legal__updated {
  margin: 18px 0 var(--space-head);
  color: var(--muted);
}

.legal section {
  margin-top: var(--space-block);
}

.legal section h2 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
}

.legal section p {
  color: var(--muted);
}

.notfound {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 96px) var(--gutter);
}

.notfound__code {
  font-size: clamp(5rem, 16vw, 12rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.notfound p {
  max-width: 44ch;
  margin: 18px 0 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

@media (max-width: 64rem) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 56.25rem) {
  .hero,
  .turn,
  .story__item,
  .notfound {
    grid-template-columns: minmax(0, 1fr);
  }

  .story__item:nth-child(even) .story__art {
    order: 0;
  }

  .hero__art,
  .turn__art,
  .notfound img {
    max-width: 620px;
  }

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

  .topbar__nav {
    display: none;
  }
}

@media (max-width: 40rem) {
  body {
    font-size: 16px;
  }

  .how,
  .tiles,
  .split,
  .footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__brand {
    grid-column: auto;
  }

  .tile {
    min-height: 0;
  }

  .actions {
    width: 100%;
  }

  .actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  * {
    transition-duration: 0.01ms !important;
  }
}

@font-face {
  font-family: "Dela Gothic One";
  src: url("/assets/fonts/dela-gothic-one.woff2?v=5ceb6107") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.home--editorial {
  --paper: #ffffff;
  --editorial-gutter: clamp(20px, 4vw, 72px);
  background: var(--paper);
  overflow-x: clip;
}

.home--editorial .topbar {
  position: relative;
  z-index: 10;
  max-width: none;
  min-height: 76px;
  padding: calc(18px + var(--safe-top)) var(--editorial-gutter) 18px;
  background: var(--paper);
}

.home--editorial .topbar__nav {
  font-size: 14px;
}

.home--editorial .logo {
  font-size: 20px;
}

.home--editorial h1,
.home--editorial h2 {
  font-family: "Dela Gothic One", "Onest", sans-serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.stack {
  position: relative;
  isolation: isolate;
}

.stack {
  position: relative;
  isolation: isolate;
}

.stack > .scene {
  position: sticky;
  top: 0;
  min-height: 100svh;

  contain: paint;
}

.stack > .editorial-hero,
.stack > .wait-scene,
.stack > .flow-scene {
  overflow: hidden;
}

.stack > .scene:not(:last-child) {
  margin-bottom: 100svh;
}

.stack > .scene.scene--tall {

  position: relative;
  min-height: 0;
  margin-bottom: 0;
  contain: none;
}

@media (max-width: 56.25rem) {
  .stack > .scene {

    position: relative;
    contain: none;
  }

  .stack > .scene:not(:last-child) {
    margin-bottom: 0;
  }
}

.stack > .scene:not(.editorial-hero):not(.wait-scene):not(.flow-scene):not(.flow-strip) {
  display: grid;
  align-content: center;
  padding-block: clamp(56px, 5vw, 96px);
}

.stack > .editorial-hero { background: var(--paper); }
.stack > .wait-scene { background: var(--cyan); }
.stack > .flow-scene { background: var(--ink); }
.stack > .flow-strip { background: var(--yellow); }
.stack > .capabilities { background: var(--paper); }
.stack > .proof-scene { background: var(--cyan); }
.stack > .audience-line { background: var(--ink); }
.stack > .faq-section { background: var(--paper); }
.stack > .editorial-final { background: var(--yellow); }

.stack > .flow-scene,
.stack > .audience-line {
  color: var(--paper);
}

.stack > .flow-strip,
.stack > .proof-scene,
.stack > .editorial-final {
  color: var(--ink);
}

.stack > .scene:not(:first-child) {
  --wave-height: clamp(46px, 7vh, 108px);
  -webkit-mask:
    url("/assets/images/wave.svg?v=48981ca2") top center / 100% var(--wave-height) no-repeat,
    linear-gradient(#000, #000) bottom center / 100% calc(100% - var(--wave-height) + 1px) no-repeat;
  mask:
    url("/assets/images/wave.svg?v=48981ca2") top center / 100% var(--wave-height) no-repeat,
    linear-gradient(#000, #000) bottom center / 100% calc(100% - var(--wave-height) + 1px) no-repeat;
  contain: none;
}

[data-parallax] {
  transition: transform 60ms linear;
}

.editorial-hero {
  --scene-progress: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  align-items: end;
  min-height: 760px;
  padding: clamp(24px, 3vw, 52px) var(--editorial-gutter) 0;
  isolation: isolate;
}

.editorial-hero__headline {
  grid-column: 1 / 11;
  grid-row: 1;
  z-index: 2;
  align-self: start;
}

.editorial-hero h1 {
  max-width: 9ch;
  font-size: clamp(4.2rem, 10.8vw, 11rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.editorial-hero__copy {
  position: absolute;
  top: clamp(360px, 45vh, 680px);
  left: var(--editorial-gutter);
  z-index: 3;
  display: grid;
  gap: 18px;
  max-width: 34rem;
  padding: 0;
}

.editorial-hero__copy[data-reveal] {
  opacity: 1;
  transform: none;
}

.editorial-hero__copy .lead {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  line-height: 1.35;
}

.hero-note {
  max-width: 35ch;
  color: var(--muted);
}

.editorial-hero__copy .btn {
  justify-self: start;
  margin-top: 6px;
}

.editorial-hero__art {
  position: absolute;
  right: -2vw;
  bottom: -1px;
  left: clamp(0px, 44%, calc(34rem + var(--editorial-gutter) + 2rem));
  grid-row: 1 / 3;
  z-index: 1;
  align-self: end;
}

.editorial-hero__art img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  object-position: right bottom;
}

.wait-scene {
  --scene-progress: 0;

  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: 760px;
  padding: clamp(52px, 7vw, 120px) var(--editorial-gutter);
  background: var(--cyan);
  overflow: hidden;
  isolation: isolate;
}

.wait-scene__copy {

  grid-column: 1 / 8;
  align-self: start;
  max-width: min(46rem, 100%);
  z-index: 2;
  display: grid;
  gap: 30px;
}

.wait-scene h2 {

  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.76;
  text-transform: uppercase;
}

.wait-scene p {
  max-width: 31ch;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.35;
}

.wait-scene__art,
.flow-scene__art {
  position: absolute;
  inset: auto -2vw 0 clamp(0px, 44%, calc(34rem + var(--editorial-gutter) + 2rem));
  z-index: 1;
  display: grid;
  align-content: end;
}

.wait-scene__art .scene__art,
.flow-scene__art .scene__art {
  width: 100%;
}

.flow-scene {
  --scene-progress: 0;

  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: 720px;
  padding: clamp(64px, 8vw, 132px) var(--editorial-gutter);
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.flow-scene__headline {
  grid-column: 1 / 9;
  align-self: start;
  z-index: 2;
  display: grid;
  gap: 26px;
}

.flow-scene h2 {
  display: grid;
  font-size: clamp(2.8rem, 6.1vw, 6.6rem);
  line-height: 0.91;
  text-transform: uppercase;
}

.flow-scene h2 .accent {
  color: var(--yellow);
}

.flow-scene p {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.flow-strip {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper);

  margin-top: -1px;
}

.flow-step {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: clamp(230px, 25vw, 360px);
  padding: clamp(32px, 4vw, 64px) var(--editorial-gutter);
}

.flow-step:last-child {
}

.flow-step--accent {
  background: var(--yellow);
}

.flow-step h3 {
  max-width: 13ch;
  font-family: "Dela Gothic One", "Onest", sans-serif;
  font-size: clamp(1.45rem, 2.35vw, 2.55rem);
  font-weight: 400;
}

.flow-step p {
  max-width: 32ch;
  color: var(--muted);
}

.flow-step--accent p {
  color: var(--ink);
}

.editorial-section,
.faq-section,
.audience-line {
  padding: clamp(88px, 11vw, 180px) var(--editorial-gutter);
}

.editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 120px);
}

.editorial-head h2,
.proof-scene__head h2,
.audience-line h2,
.faq-section h2,
.editorial-final h2 {
  font-size: clamp(3rem, 7vw, 7.6rem);
  line-height: 0.94;
}

.editorial-head p,
.proof-scene__head p,
.audience-line > div > p {
  max-width: 40ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}

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

.capability {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);

  min-height: 150px;
  padding: clamp(28px, 3.5vw, 54px) 0;
}

.capability:nth-child(odd) {
  padding-inline-end: clamp(28px, 4vw, 72px);
}

.capability:nth-child(even) {
  padding-inline-start: clamp(28px, 4vw, 72px);
}

.capability h3,
.proof h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.85rem);
}

.capability p,
.proof p {
  color: var(--muted);
}

.proof-scene {
  padding: clamp(88px, 10vw, 164px) var(--editorial-gutter);
  background: var(--cyan);
}

.proof-scene__head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 96px);
}

.proof-scene__head p,
.proof p {
  color: var(--ink);
}

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

.proof {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 3.2vw, 52px) 0 0;
}

.proof + .proof {
  padding-inline-start: clamp(24px, 3.2vw, 52px);
}

.audience-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(44px, 8vw, 140px);
  color: var(--paper);
  background: var(--ink);
}

.audience-line h2 {
  max-width: 9ch;
}

.audience-line > div > p {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.66);
}

.audience-line__items {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 0;
  font-family: "Dela Gothic One", "Onest", sans-serif;
  font-size: clamp(1.25rem, 2.35vw, 2.6rem);
  line-height: 1.45;
}

.audience-line__items span:not(:last-child)::after {
  content: " / ";
  color: var(--cyan);
  white-space: pre;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.4fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.faq-section .faq {
  gap: 0;
}

.faq-section .faq__item {
  padding: clamp(22px, 2.5vw, 36px) 0;
  background: transparent;
  border-radius: 0;
}

.faq-section .faq__item summary h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
}

.faq-section .faq__item summary::after {
  display: none;
}

.faq-section .faq__item:hover,
.faq-section .faq__item:focus-within {
  color: var(--ink);
  background: transparent;
}

.faq-section .faq__item:hover h3,
.faq-section .faq__item:focus-within h3 {
  color: var(--cyan-deep);
}

.editorial-final {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.6fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
  padding: clamp(72px, 9vw, 140px) var(--editorial-gutter);
  background: var(--yellow);
}

.editorial-final h2 {
  grid-row: 1 / 3;
  max-width: 10ch;
  text-transform: uppercase;
}

.editorial-final p {
  max-width: 36ch;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

.editorial-final .actions {
  margin-top: 6px;
}

.btn--dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.home--editorial .footer {
  max-width: none;
  margin: 0;
  padding: clamp(42px, 5vw, 72px) var(--editorial-gutter) calc(28px + var(--safe-bottom));
  color: var(--paper);
  background: var(--ink);
}

.home--editorial .footer__grid {
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(0, 0.6fr));
}

.home--editorial .footer__brand p,
.home--editorial .footer__col a,
.home--editorial .footer__bottom {
  color: rgba(255, 255, 255, 0.62);
}

.home--editorial .footer__col a:hover,
.home--editorial .footer__col a:focus-visible {
  color: var(--cyan);
}

.home--editorial .footer .mark {
  color: inherit;
}

.home--editorial .footer .logo:hover .mark,
.home--editorial .footer .logo:focus-visible .mark {
  color: var(--cyan);
}

.home--editorial .footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.home--editorial .lang select {
  border: 0;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
}

.js [data-reveal] {
  opacity: 0;
  translate: 0 34px;
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    translate 800ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    scale 800ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

.js [data-reveal="zoom"] {
  translate: 0 24px;
  scale: 0.94;
}

.js [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

@media (max-width: 62rem) {
  .editorial-hero {
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  .editorial-hero__headline {
    grid-column: 1 / 13;
  }

  .editorial-hero__copy {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / 7;
    grid-row: 2;
    padding: 34px 0 0;
  }

  .editorial-hero__art {
    grid-column: 4 / 13;
    grid-row: 2 / 4;
    padding-top: 80px;
  }

  .editorial-hero__art img {
    max-height: 600px;
  }

  .capability {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 46rem) {
  .home--editorial .topbar {
    min-height: 68px;
  }

  .home--editorial .topbar > .btn {
    display: none;
  }

  .editorial-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: 28px;
  }

  .editorial-hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.3rem);
  }

  .editorial-hero__copy {
    order: 2;
    padding: 26px 0 44px;
  }

  .editorial-hero__art {
    position: relative;

    right: auto;
    left: auto;
    bottom: auto;
    width: auto;
    align-self: stretch;
    order: 1;
    margin: -12px -10vw 0 8vw;
    padding: 0;
  }

  .wait-scene {
    min-height: 760px;
    align-content: start;
  }

  .wait-scene__copy {
    grid-column: 1 / 13;
  }

  .wait-scene h2 {
    font-size: clamp(4.8rem, 25vw, 8rem);
  }

  .wait-scene__art,
  .flow-scene__art {
    position: static;
    grid-column: 1 / 13;
    width: auto;
    margin-top: clamp(12px, 4vw, 28px);
  }

  .flow-scene {
    min-height: 690px;
    align-content: start;
  }

  .flow-scene__headline {
    grid-column: 1 / 13;
  }

  .flow-scene h2 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .flow-scene__lead {
    grid-column: 1 / 13;
    margin-top: 18px;
  }

  .flow-strip,
  .capabilities__grid,
  .proof-scene__grid,
  .editorial-head,
  .proof-scene__head,
  .audience-line,
  .faq-section,
  .editorial-final {
    grid-template-columns: minmax(0, 1fr);
  }

  .flow-step {
    min-height: 0;
  }

  .capability:nth-child(odd),
  .capability:nth-child(even) {
    padding-inline: 0;
  }

  .proof + .proof {
    padding-inline-start: 0;
  }

  .proof {
    padding-bottom: 28px;
  }

  .editorial-final h2 {
    grid-row: auto;
  }

  .home--editorial .footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-scroll-copy],
  [data-scroll-art],
  [data-parallax] {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-scroll-copy],
  [data-scroll-art],
  [data-parallax] {
    transform: none !important;
  }
}

.plate,
.capability,
.flow-step,
.proof,
.faq__item,
.how__item,
.split__item {
  padding: clamp(22px, 2.4vw, 34px) clamp(24px, 2.6vw, 38px);
  background: rgba(0, 0, 0, 0.05);
  border-radius: clamp(18px, 1.8vw, 26px);
}

.flow-scene .plate,
.audience-line .plate,
.flow-scene .faq__item,
.audience-line .faq__item,
.proof-scene .proof,
.flow-strip .flow-step,
.editorial-final .plate {
  background: rgba(255, 255, 255, 0.14);
}

.flow-strip .flow-step--accent {
  background: var(--ink);
  color: var(--paper);
}

.flow-strip .flow-step--accent p {
  color: rgba(255, 255, 255, 0.72);
}

.scene__art {
  position: relative;
  width: 100%;
  aspect-ratio: var(--scene-ratio, 3 / 2);
  overflow: clip;
}

.scene__layer,
.scene__micro {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.scene__layer--1 { z-index: 1; }
.scene__layer--2 { z-index: 2; }
.scene__layer--3 { z-index: 3; }

.scene__micro {
  z-index: 4;
}

.scene__micro--b {
  opacity: 0;
}

.scene__art.is-playing .scene__micro--a,
.scene__art.is-playing .scene__micro--b {
  animation: scene-two-frame var(--micro-duration, 1100ms) steps(1, end) infinite;
  animation-delay: var(--micro-offset, 0ms);
}

.scene__art.is-playing .scene__micro--b {
  animation-delay: calc(var(--micro-offset, 0ms) + var(--micro-duration, 1100ms) / 2);
}

@keyframes scene-two-frame {
  0%,
  49.99% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.section__art {

  --art-height: clamp(170px, 24vh, 300px);
  display: grid;
  width: 100%;
}

.section__art .scene__art {
  width: auto;
  height: var(--art-height);
  max-width: 100%;
}

.capabilities > .section__art,
.proof-scene > .section__art {
  margin-block: clamp(20px, 2.5vw, 40px);
}

.proof-scene:has(> .section__art) .proof-scene__head {
  margin-bottom: clamp(28px, 3.5vw, 56px);
}

.capabilities > .section__art {
  justify-items: center;
}

.proof-scene > .section__art {
  justify-items: end;
}

.audience-line__copy {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.audience-line__items {
  grid-column: 2;
  grid-row: 1;
}

.audience-line > .section__art {
  grid-column: 2;
  grid-row: 2;
  justify-items: start;
  margin-top: clamp(24px, 3vw, 48px);
}

.faq-section > .section__art {
  grid-column: 1;
  justify-items: start;
}

.faq-section > .faq {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.editorial-final > h2 {
  grid-column: 1;
}

.editorial-final > p {
  grid-column: 2;
  grid-row: 1;
}

.editorial-final > .section__art {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-items: end;
}

.editorial-final > .actions {
  grid-column: 1;
  grid-row: 3;
}

@media (max-width: 46rem) {
  .audience-line__copy,
  .audience-line > .section__art,
  .audience-line__items,
  .faq-section > .section__art,
  .faq-section > .faq,
  .editorial-final > h2,
  .editorial-final > p,
  .editorial-final > .section__art,
  .editorial-final > .actions {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 46.25rem) {

  .scene__art {
    aspect-ratio: auto;
    min-height: 52vh;
  }

  .section__art .scene__art {
    aspect-ratio: var(--scene-ratio, 3 / 2);
    min-height: 0;
    width: 100%;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {

  .scene__art.is-playing .scene__micro--a,
  .scene__art.is-playing .scene__micro--b {
    animation: none;
  }

  .scene__micro--b {
    opacity: 0;
  }
}

.is-measuring .stack > .scene {
  position: static !important;
}

.is-measuring .stack [data-parallax],
.is-measuring .stack .scene__layer,
.is-measuring .stack [data-reveal] {
  transform: none !important;
  translate: none !important;
  scale: none !important;
  transition: none !important;
}

.home--editorial {
  overflow-x: clip;
}

.home--editorial .stack > .scene,
.home--editorial .stack > .scene:not(.scene--tall) {
  position: sticky;
  top: 0;
  min-height: 100svh;
  margin: 0;
  contain: none;
  overflow: hidden;
}

.home--editorial .stack > .scene:not(.scene--tall):not(:last-child) {
  margin-bottom: 68svh;
}

.home--editorial .stack > .scene.scene--tall {
  position: relative;
  top: auto;
  min-height: 0;
  margin-bottom: 0;
  contain: none;
}

.home--editorial .stack > .scene:not(:first-child) {
  --wave-height: clamp(34px, 5vw, 76px);
  margin-top: var(--wave-height);
  padding-top: clamp(56px, 5vw, 88px);
  -webkit-mask: none;
  mask: none;
  overflow: visible;
}

.home--editorial .stack > .scene:not(:first-child)::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: calc(var(--wave-height) * -1) 0 auto;
  height: calc(var(--wave-height) + 2px);
  background: inherit;
  -webkit-mask: url("/assets/images/wave.svg?v=48981ca2") center / 100% 100% no-repeat;
  mask: url("/assets/images/wave.svg?v=48981ca2") center / 100% 100% no-repeat;
  pointer-events: none;
}

.home--editorial .stack > .scene.editorial-hero {
  height: auto;
  min-height: calc(100svh - 76px);
  max-height: none;
  padding: clamp(108px, 12svh, 152px) var(--editorial-gutter) 32px;
  grid-template-rows: auto auto;
  align-content: start;
  row-gap: 0;
}

.home--editorial .editorial-hero__headline {
  grid-column: 1 / -1;
}

.home--editorial .editorial-hero h1 {
  max-width: none;
  font-size: clamp(4rem, 11.9vw, 13.3rem);
  line-height: .87;
  letter-spacing: -.055em;
}

.hero-rise-title {
  transform: translateY(clamp(10px, 1.6vw, 28px)) rotate(-4deg);
  transform-origin: left center;
}

.home--editorial .editorial-hero__copy {
  position: relative;
  inset: auto;
  grid-column: 1 / 5;
  grid-row: 2;
  align-self: center;
  max-width: 29ch;
  padding: 0;
  gap: 20px;
}

.home--editorial .editorial-hero__art {
  position: relative;
  inset: auto;
  grid-column: 5 / -1;
  grid-row: 2;
  width: 100%;
  margin: 0;
  padding: 0;
  align-self: center;
}

.home--editorial .editorial-hero__art .scene__art {
  max-height: none;
  width: min(100%, 84svh);
  margin-inline: auto;
}

.hero-rise-art {
  transform: translateY(clamp(6px, 1vw, 18px)) rotate(-4deg) scale(.97);
  transform-origin: 52% 58%;
}

.home--editorial .editorial-hero__art img {
  max-height: none;
  object-position: center;
}

.home--editorial .stack > .wait-scene,
.home--editorial .stack > .flow-scene {
  min-height: 100svh;
  padding: clamp(64px, 6vw, 96px) var(--editorial-gutter);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  column-gap: clamp(24px, 4vw, 64px);
}

.home--editorial .wait-scene__copy,
.home--editorial .flow-scene__headline {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  gap: 32px;
}

.home--editorial .wait-scene h2 {
  font-size: clamp(5rem, 14.5vw, 16rem);
  line-height: .9;
}

.home--editorial .wait-scene__headline {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  gap: .25em;
  align-items: start;
  z-index: 2;
  padding-bottom: .14em;
}

.home--editorial .wait-scene__headline span:last-child {
  display: inline-block;
  rotate: -9deg;
  translate: 0 .18em;
}

.home--editorial .wait-scene__copy {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  max-width: 29ch;
}

.home--editorial .wait-scene__art,
.home--editorial .flow-scene__art {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  margin: 0;
  align-self: center;
}

.home--editorial .flow-scene h2 {
  font-size: clamp(2.7rem, 6.5vw, 7rem);
  line-height: 1.1;
}

.home--editorial .stack > .flow-scene {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.flow-word {
  position: relative;
  transform-origin: left center;
}

@media (min-width: 40.001rem) {
  .home--editorial .stack > .flow-scene {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    align-content: center;
    column-gap: clamp(16px, 2vw, 32px);
    row-gap: clamp(8px, 1.2vh, 16px);

    padding-block: clamp(10px, 1.6vh, 28px);
  }

  .home--editorial .flow-scene__headline {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: start;
    display: block;
  }

  .home--editorial .flow-scene__headline h2 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(8px, 1.1vw, 18px);
    min-height: clamp(142px, 12vw, 190px);
    font-size: clamp(2.45rem, 4.6vw, 5.2rem);
    line-height: .86;
    letter-spacing: -.045em;
    white-space: nowrap;
    scale: .93 1;
    transform-origin: left top;
  }

  .flow-word:nth-child(1) { top: 0; }
  .flow-word:nth-child(2) {
    top: clamp(28px, 3vw, 48px);
    margin-left: clamp(-24px, -1.2vw, -10px);
  }
  .flow-word:nth-child(3) {
    top: clamp(56px, 6vw, 96px);
    margin-left: clamp(-138px, -8.5vw, -72px);
  }

  .home--editorial .flow-scene__art {
    grid-column: 1 / 10;
    grid-row: 2;
    align-self: center;
    width: 110%;
    margin: clamp(-12px, -1vh, -4px) 0 0 -8%;
  }

  .home--editorial .flow-scene__lead {
    grid-column: 2 / 8;
    grid-row: 3;
    align-self: start;
    justify-self: start;
    margin: 0;
  }

  @media (min-width: 75rem) {
    .home--editorial .flow-scene__art .scene__art {
      width: min(100%, calc((100svh - 400px) * 1.5));
      margin-inline: auto;
    }
  }
}

[data-emphasis] { transition: opacity 220ms ease, color 220ms ease; }
.js [data-emphasis]:not(.is-emphasized) { opacity: .72; }
@media (prefers-reduced-motion: no-preference) {
  .js .flow-word.accent { color: inherit; }
  .js .flow-word.is-current { color: var(--yellow); }
}
.capability.is-emphasized h3, .proof.is-emphasized h3 { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: .18em; text-underline-offset: .15em; }
.ink-underline { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: .1em; text-underline-offset: .12em; }

.is-measuring [data-kinetic] { transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .js [data-emphasis]:not(.is-emphasized) { opacity: 1; }
  [data-kinetic] { transform: none !important; transition: none !important; }
}

.scene__art--coherent { overflow: visible; }

.scene__art--v4 .scene__pulse-wrap {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.scene__art--v4 .scene__pulse-wrap .scene__micro--b {
  transform: translate(7px, -5px) rotate(.55deg);
  transform-origin: center;
}

.art-swoosh {
  position: absolute;
  z-index: 3;
  width: 18%;
  height: 7%;
  left: 2%;
  bottom: 1%;
  color: var(--yellow);
  background: currentColor;
  clip-path: polygon(0 65%, 96% 0, 100% 22%, 8% 100%, 80% 22%);
  pointer-events: none;
}
.faq-section .art-swoosh { display: none; }
.editorial-final .art-swoosh { color: var(--ink); }

.home--editorial .wait-scene__art {
  grid-column: 2;
  grid-row: 2;
  width: 120%;
  margin-left: -20%;
}

.home--editorial .wait-scene__art .scene__art {
  width: min(100%, 76svh);
  margin-left: auto;
}

.home--editorial .flow-step__art {
  width: auto;
  max-width: 100%;
  height: min(33svh, 380px);
  object-fit: contain;
}

.home--editorial .flow-step__art--0 {
  rotate: -5deg;
}

.home--editorial .flow-step__art--2 {
  rotate: 4deg;
}

.step-art-motion {
  transform-origin: center;
}
.step-art-motion.is-playing img { animation: step-paper 1500ms steps(1, end) infinite; }
.flow-step:nth-child(2) .step-art-motion.is-playing img { animation-delay: -600ms; }
.flow-step:nth-child(3) .step-art-motion.is-playing img { animation-delay: -1000ms; }
@keyframes step-paper { 50% { translate: 0 -5px; rotate: 0deg; } }
@media (prefers-reduced-motion: reduce) {
  .step-art-motion.is-playing img { animation: none; }
}

.home--editorial .stack > .scene.flow-strip {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: 100svh;
  min-height: 100svh;

  padding: clamp(10px, 1.4svh, 18px) var(--editorial-gutter) clamp(46px, 4.4svh, 60px);
  gap: 0;
  align-content: stretch;
  background: var(--yellow);
}

.home--editorial .flow-step {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  height: 100%;
  min-height: 0;
  padding: clamp(0px, .2vh, 4px) clamp(12px, 1.4vw, 24px);
  gap: clamp(4px, 1vw, 16px);
  background: transparent;
  border-radius: 0;
}

@media (max-width: 56.25rem) {
  .home--editorial .stack > .scene.flow-strip {
    grid-template-rows: none;
    height: auto;
    min-height: 0;
    padding-block: 36px;
  }

  .home--editorial .flow-step {
    height: auto;
  }

  .home--editorial .flow-step__art {
    height: clamp(210px, 30vw, 300px);
  }
}

.home--editorial .flow-step__copy {
  display: grid;
  gap: 16px;
  align-content: center;
  max-width: 38rem;
}

.home--editorial .flow-step:nth-child(odd) .flow-step__copy {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.home--editorial .flow-step:nth-child(odd) .step-art-motion {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.home--editorial .flow-step:nth-child(even) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home--editorial .flow-step:nth-child(even) .step-art-motion {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.home--editorial .flow-step:nth-child(3) .step-art-motion {
  justify-self: start;
}

@media (min-width: 75rem) {
  .home--editorial .flow-step:nth-child(1) .step-art-motion {
    justify-self: start;
  }
}

.home--editorial .flow-step:nth-child(even) .flow-step__copy {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
}

.home--editorial .flow-step .step-art-motion {
  width: fit-content;
  max-width: 100%;
}

.home--editorial .flow-step--accent {
  background: var(--yellow);
  color: var(--ink);
}

.home--editorial .flow-step h3 {
  min-height: 0;
  max-width: 16ch;
  font-size: clamp(1.65rem, 2.6vw, 3rem);
  line-height: 1.08;
}

.home--editorial .flow-step p,
.home--editorial .flow-step--accent p {
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.home--editorial .editorial-section,
.home--editorial .proof-scene,
.home--editorial .audience-line,
.home--editorial .faq-section,
.home--editorial .editorial-final {
  padding-right: var(--editorial-gutter);
  padding-bottom: clamp(56px, 5vw, 80px);
  padding-left: var(--editorial-gutter);
}

.home--editorial .stack > .scene.capabilities,
.home--editorial .stack > .scene.proof-scene,
.home--editorial .stack > .scene.audience-line,
.home--editorial .stack > .scene.faq-section,
.home--editorial .stack > .scene.editorial-final {
  position: sticky;
  top: 0;
  min-height: 100svh;
  margin-bottom: 68svh;
}

.home--editorial .stack > .scene.editorial-final {
  margin-bottom: 0;
}

.home--editorial .stack > .scene.scene--tall {
  position: relative;
  top: auto;
  min-height: 0;
  margin-bottom: 0;
}

.home--editorial .editorial-head,
.home--editorial .proof-scene__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin: 0;
}

.home--editorial .editorial-head h2,
.home--editorial .proof-scene__head h2,
.home--editorial .audience-line h2,
.home--editorial .faq-section h2,
.home--editorial .editorial-final h2 {
  font-size: clamp(2.6rem, 4.25vw, 4.75rem);
  line-height: 1.05;
  max-width: 15ch;
  text-wrap: balance;
}

.home--editorial .editorial-head p,
.home--editorial .proof-scene__head p,
.home--editorial .audience-line__copy p,
.home--editorial .editorial-final > p {
  max-width: 43ch;
  font-size: clamp(1rem, 1.2vw, 1.1875rem);
  line-height: 1.55;
}

.home--editorial .capabilities,
.home--editorial .proof-scene {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 24px clamp(40px, 5vw, 80px);
  align-items: center;
}

.home--editorial .capabilities .editorial-head,
.home--editorial .proof-scene .proof-scene__head {
  grid-column: 1 / -1;
  grid-row: 1;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: end;
  column-gap: clamp(32px, 5vw, 80px);
}

.home--editorial .capabilities .editorial-head h2,
.home--editorial .proof-scene .proof-scene__head h2 { max-width: none; }

.home--editorial .capabilities .editorial-head {
  margin-bottom: clamp(20px, 2.4vw, 44px);
}

.home--editorial .capabilities > .section__art,
.home--editorial .proof-scene > .section__art {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  justify-items: stretch;
  width: 100%;
  margin-left: 0;
}

.home--editorial .capabilities__grid,
.home--editorial .proof-scene__grid {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px) clamp(24px, 3vw, 48px);
}

.home--editorial .section__art .scene__art {
  --art-cap: 66svh;
  width: min(100%, var(--art-cap));
  height: auto;
  max-width: none;
  margin-inline: auto;
}

.home--editorial .capabilities .section__art .scene__art {
  width: min(100%, var(--art-cap), calc(45svh * var(--scene-ratio)));
}

.home--editorial .capability,
.home--editorial .proof {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.home--editorial .capability:nth-child(odd),
.home--editorial .capability:nth-child(even),
.home--editorial .proof + .proof {
  padding-inline: 0;
}

.home--editorial .proof-scene .proof {
  background: transparent;
}

.home--editorial .capability h3,
.home--editorial .proof h3 {
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  line-height: 1.25;
  text-wrap: balance;
}

.home--editorial .capability p,
.home--editorial .proof p {
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.55;
}

.home--editorial .proof-scene__grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 30rem;
  justify-self: center;
  gap: 32px;
}

.home--editorial .audience-line {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 32px clamp(32px, 4vw, 64px);
}

.home--editorial .audience-line__copy {
  grid-row: 1;
}

.home--editorial .audience-line > .section__art {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  width: 100%;
  margin-left: 0;
}

.home--editorial .audience-line__items {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  font-family: "Onest", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.35;
}

.home--editorial .audience-line__items span::after {
  content: none;
}

.home--editorial .faq-section {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
  gap: 24px clamp(40px, 5vw, 80px);
  align-items: center;
}

.home--editorial .faq-section > .section__art {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  margin-left: 0;
}

.home--editorial .faq-section > .faq {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.home--editorial .faq-section .faq__item {
  padding: 22px 0;
  background: transparent;
}

.home--editorial .faq-section .faq__item summary {
  align-items: start;
  gap: 24px;
}

.home--editorial .faq-section .faq__item summary h3 {
  font-size: clamp(1.0625rem, 1.5vw, 1.375rem);
  line-height: 1.35;
}

.home--editorial .faq-section .faq__item summary::after {
  display: block;
  flex: 0 0 18px;
  margin-top: 4px;
}

.home--editorial .faq-section .faq__item p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 55ch;
  padding-right: 24px;
}

.home--editorial .editorial-final {
  grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr);
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 24px clamp(32px, 4vw, 64px);
}

.home--editorial .editorial-final > h2 {
  grid-column: 1 / -1;
  grid-row: 1;
  max-width: none;
  font-size: clamp(3rem, 7.8vw, 9rem);
  line-height: .98;
  text-wrap: initial;
}

.home--editorial .editorial-final > p {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  margin-top: 0;
}

.home--editorial .editorial-final > .actions {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  margin-top: 8px;
  gap: 14px;
}

.home--editorial .editorial-final > .section__art {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
  width: 100%;
  margin-left: 0;
}

.home--editorial .editorial-final .section__art .scene__art {
  --art-cap: calc(50svh * var(--scene-ratio));
}

.scene__micro-orbit {
  position: absolute;
  z-index: 5;
  right: 1.5%;
  top: 2%;
  width: clamp(84px, 21%, 190px);
  aspect-ratio: var(--micro-ratio, 1);
}

.scene__micro-orbit .scene__micro {
  object-fit: contain;
}

.audience-line .scene__micro-orbit { right: auto; left: 2%; top: 10%; }
.proof-scene .scene__micro-orbit { top: auto; bottom: 3%; }

@media (max-width: 62rem) {
  .home--editorial .capabilities,
  .home--editorial .proof-scene,
  .home--editorial .audience-line,
  .home--editorial .faq-section,
  .home--editorial .editorial-final {
    grid-template-columns: 1fr;
  }

  .home--editorial .capabilities > .section__art,
  .home--editorial .proof-scene > .section__art,
  .home--editorial .capabilities__grid,
  .home--editorial .proof-scene__grid,
  .home--editorial .audience-line__copy,
  .home--editorial .audience-line > .section__art,
  .home--editorial .audience-line__items,
  .home--editorial .faq-section__title,
  .home--editorial .faq-section > .section__art,
  .home--editorial .faq-section > .faq,
  .home--editorial .editorial-final > h2,
  .home--editorial .editorial-final > p,
  .home--editorial .editorial-final > .actions,
  .home--editorial .editorial-final > .section__art {
    grid-column: 1;
    grid-row: auto;
  }

  .home--editorial .capabilities > .section__art,
  .home--editorial .proof-scene > .section__art,
  .home--editorial .audience-line > .section__art,
  .home--editorial .faq-section > .section__art {
    width: min(780px, 100%);
    margin-inline: auto;
  }

  .home--editorial .editorial-final > .section__art {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .home--editorial .editorial-head,
  .home--editorial .proof-scene__head {
    grid-column: 1;
    grid-row: auto;
  }

  .home--editorial .capabilities .editorial-head,
  .home--editorial .proof-scene .proof-scene__head {
    grid-template-columns: 1fr;
  }

  .home--editorial .proof-scene__grid {
    max-width: none;
    justify-self: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home--editorial .editorial-head h2,
  .home--editorial .proof-scene__head h2,
  .home--editorial .audience-line h2,
  .home--editorial .faq-section h2,
  .home--editorial .editorial-final h2 {
    max-width: 20ch;
  }

  .home--editorial .section__art .scene__art {
    --art-cap: 560px;
  }

  .home--editorial .audience-line__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 46rem) {
  .home--editorial .stack > .scene,
  .home--editorial .stack > .scene:not(.scene--tall),
  .home--editorial .stack > .scene:not(.scene--tall):not(:last-child),
  .home--editorial .stack > .scene.scene--tall {
    position: relative;
    top: auto;
    margin-bottom: 0;
    contain: none;
  }

  .home--editorial .scene__art {
    min-height: 0;
    height: auto;
    aspect-ratio: var(--scene-ratio, 3 / 2);
  }

  .home--editorial .flow-step h3 {
    min-height: 0;
  }

  .home--editorial .flow-step,
  .home--editorial .flow-step:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 28px 0;
  }

  .home--editorial .flow-step:nth-child(n) .flow-step__copy,
  .home--editorial .flow-step:nth-child(n) .step-art-motion {
    grid-column: 1;
    grid-row: auto;
  }

  .home--editorial .flow-step .step-art-motion {
    width: min(100%, 430px);
  }

  .home--editorial .flow-step:nth-child(n) .step-art-motion {
    margin-inline: auto;
  }

  .home--editorial .stack > .scene:not(:first-child) {
    --wave-height: 36px;
    margin-top: var(--wave-height);
    padding-top: 40px;
    padding-bottom: 48px;
    min-height: 0;
  }

  .home--editorial .stack > .scene.editorial-hero {
    height: auto;
    min-height: 0;
    padding-top: 22px;
    align-content: start;
    row-gap: 24px;
  }

  .home--editorial .editorial-hero__copy {
    max-width: none;
    order: 1;
    gap: 16px;
  }

  .home--editorial .editorial-hero__art {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 0;
    order: 2;
  }

  .home--editorial .editorial-hero h1 {
    font-size: clamp(3rem, 13vw, 4.35rem);
  }

  .hero-rise-title {
    transform: translateY(6px) rotate(-2.5deg);
  }

  .hero-rise-art {
    transform: rotate(-3deg) scale(.96);
  }

  .home--editorial .stack > .wait-scene,
  .home--editorial .stack > .flow-scene {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .home--editorial .flow-scene h2 { font-size: clamp(2rem, 8.9vw, 3.4rem); }
  .home--editorial .editorial-final > h2 { font-size: clamp(2.5rem, 11vw, 4.5rem); }

  .home--editorial .wait-scene__copy,
  .home--editorial .flow-scene__headline,
  .home--editorial .wait-scene__art,
  .home--editorial .flow-scene__art {
    grid-column: 1;
    grid-row: auto;
  }

  .home--editorial .wait-scene h2 {
    font-size: clamp(3rem, 13.7vw, 6.3rem);
    gap: .2em;
  }

  .home--editorial .wait-scene__headline {
    grid-column: 1;
    grid-row: auto;
    padding-bottom: .2em;
  }

  .home--editorial .wait-scene__art {
    width: 100%;
    margin-left: 0;
  }

  .home--editorial .flow-step__art {
    height: 180px;
  }

  .home--editorial .editorial-head h2,
  .home--editorial .proof-scene__head h2,
  .home--editorial .audience-line h2,
  .home--editorial .faq-section h2,
  .home--editorial .editorial-final h2 {
    font-size: clamp(2rem, 8.5vw, 3.75rem);
    line-height: 1.08;
  }

  .home--editorial .audience-line__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home--editorial .flow-strip {
    gap: 36px;
  }

  .home--editorial .flow-step {
    gap: 14px;
  }

  .home--editorial .flow-step h3 {
    max-width: 20ch;
  }

  .home--editorial .faq-section .faq__item {
    padding-block: 18px;
  }

  .home--editorial .capabilities__grid,
  .home--editorial .proof-scene__grid,
  .home--editorial .flow-strip {
    grid-template-columns: 1fr;
  }

  .home--editorial .capability,
  .home--editorial .proof,
  .home--editorial .flow-step {
    min-height: 0;
  }

  .home--editorial .editorial-final {
    min-height: 0;
  }

  .home--editorial .flow-scene h2 {
    font-size: clamp(2.8rem, 11.5vw, 4.4rem);
  }
}
